Skip to content

Commit

Permalink
feat: added Terraform Plan
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 597969500

Source-Link: googleapis/googleapis@ea0432d

Source-Link: googleapis/googleapis-gen@970abcc
Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuQ29uZmlnLlYxLy5Pd2xCb3QueWFtbCIsImgiOiI5NzBhYmNjMjA1MDg1MjNiYjRkZTZlNmM3N2U2YzY1OGY4OTM0MDBiIn0=
  • Loading branch information
gcf-owl-bot[bot] authored and jskeet committed Jan 15, 2024
1 parent 9c9f138 commit 99a1ff8
Show file tree
Hide file tree
Showing 33 changed files with 9,440 additions and 335 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START config_v1_generated_Config_CreatePreview_async_flattened]
using Google.Cloud.Config.V1;
using Google.LongRunning;
using System.Threading.Tasks;

public sealed partial class GeneratedConfigClientSnippets
{
/// <summary>Snippet for CreatePreviewAsync</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public async Task CreatePreviewAsync()
{
// Create client
ConfigClient configClient = await ConfigClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]";
Preview preview = new Preview();
// Make the request
Operation<Preview, OperationMetadata> response = await configClient.CreatePreviewAsync(parent, preview);

// Poll until the returned long-running operation is complete
Operation<Preview, OperationMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Preview result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<Preview, OperationMetadata> retrievedResponse = await configClient.PollOnceCreatePreviewAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Preview retrievedResult = retrievedResponse.Result;
}
}
}
// [END config_v1_generated_Config_CreatePreview_async_flattened]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START config_v1_generated_Config_CreatePreview_async]
using Google.Api.Gax.ResourceNames;
using Google.Cloud.Config.V1;
using Google.LongRunning;
using System.Threading.Tasks;

public sealed partial class GeneratedConfigClientSnippets
{
/// <summary>Snippet for CreatePreviewAsync</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public async Task CreatePreviewRequestObjectAsync()
{
// Create client
ConfigClient configClient = await ConfigClient.CreateAsync();
// Initialize request argument(s)
CreatePreviewRequest request = new CreatePreviewRequest
{
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
PreviewId = "",
Preview = new Preview(),
RequestId = "",
};
// Make the request
Operation<Preview, OperationMetadata> response = await configClient.CreatePreviewAsync(request);

// Poll until the returned long-running operation is complete
Operation<Preview, OperationMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Preview result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<Preview, OperationMetadata> retrievedResponse = await configClient.PollOnceCreatePreviewAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Preview retrievedResult = retrievedResponse.Result;
}
}
}
// [END config_v1_generated_Config_CreatePreview_async]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START config_v1_generated_Config_CreatePreview_sync]
using Google.Api.Gax.ResourceNames;
using Google.Cloud.Config.V1;
using Google.LongRunning;

public sealed partial class GeneratedConfigClientSnippets
{
/// <summary>Snippet for CreatePreview</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public void CreatePreviewRequestObject()
{
// Create client
ConfigClient configClient = ConfigClient.Create();
// Initialize request argument(s)
CreatePreviewRequest request = new CreatePreviewRequest
{
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
PreviewId = "",
Preview = new Preview(),
RequestId = "",
};
// Make the request
Operation<Preview, OperationMetadata> response = configClient.CreatePreview(request);

// Poll until the returned long-running operation is complete
Operation<Preview, OperationMetadata> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Preview result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<Preview, OperationMetadata> retrievedResponse = configClient.PollOnceCreatePreview(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Preview retrievedResult = retrievedResponse.Result;
}
}
}
// [END config_v1_generated_Config_CreatePreview_sync]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START config_v1_generated_Config_CreatePreview_async_flattened_resourceNames]
using Google.Api.Gax.ResourceNames;
using Google.Cloud.Config.V1;
using Google.LongRunning;
using System.Threading.Tasks;

public sealed partial class GeneratedConfigClientSnippets
{
/// <summary>Snippet for CreatePreviewAsync</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public async Task CreatePreviewResourceNamesAsync()
{
// Create client
ConfigClient configClient = await ConfigClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
Preview preview = new Preview();
// Make the request
Operation<Preview, OperationMetadata> response = await configClient.CreatePreviewAsync(parent, preview);

// Poll until the returned long-running operation is complete
Operation<Preview, OperationMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Preview result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<Preview, OperationMetadata> retrievedResponse = await configClient.PollOnceCreatePreviewAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Preview retrievedResult = retrievedResponse.Result;
}
}
}
// [END config_v1_generated_Config_CreatePreview_async_flattened_resourceNames]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START config_v1_generated_Config_CreatePreview_sync_flattened_resourceNames]
using Google.Api.Gax.ResourceNames;
using Google.Cloud.Config.V1;
using Google.LongRunning;

public sealed partial class GeneratedConfigClientSnippets
{
/// <summary>Snippet for CreatePreview</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public void CreatePreviewResourceNames()
{
// Create client
ConfigClient configClient = ConfigClient.Create();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
Preview preview = new Preview();
// Make the request
Operation<Preview, OperationMetadata> response = configClient.CreatePreview(parent, preview);

// Poll until the returned long-running operation is complete
Operation<Preview, OperationMetadata> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Preview result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<Preview, OperationMetadata> retrievedResponse = configClient.PollOnceCreatePreview(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Preview retrievedResult = retrievedResponse.Result;
}
}
}
// [END config_v1_generated_Config_CreatePreview_sync_flattened_resourceNames]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START config_v1_generated_Config_CreatePreview_sync_flattened]
using Google.Cloud.Config.V1;
using Google.LongRunning;

public sealed partial class GeneratedConfigClientSnippets
{
/// <summary>Snippet for CreatePreview</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public void CreatePreview()
{
// Create client
ConfigClient configClient = ConfigClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]";
Preview preview = new Preview();
// Make the request
Operation<Preview, OperationMetadata> response = configClient.CreatePreview(parent, preview);

// Poll until the returned long-running operation is complete
Operation<Preview, OperationMetadata> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Preview result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
Operation<Preview, OperationMetadata> retrievedResponse = configClient.PollOnceCreatePreview(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
Preview retrievedResult = retrievedResponse.Result;
}
}
}
// [END config_v1_generated_Config_CreatePreview_sync_flattened]
}
Loading

0 comments on commit 99a1ff8

Please sign in to comment.