Skip to content

Commit

Permalink
feat(baremetalsolution): several new resources and RPCs
Browse files Browse the repository at this point in the history
feat: add RPCs Enable/Disable InteractiveSerialConsole
feat: add RPCs Rename/Evict Volume
feat: add RPC EvictLune
feat: add SSHKey resource and methods
feat: add VolumeSnapshot resource and methods
feat: add NFSShare resource and methods
feat: add ProvisioningConfig resource and methods
feat: add OsImage resource and methods
feat: add new Instance state values

PiperOrigin-RevId: 554849453

Source-Link: googleapis/googleapis@7245f35

Source-Link: googleapis/googleapis-gen@cdfdc93
Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuQmFyZU1ldGFsU29sdXRpb24uVjIvLk93bEJvdC55YW1sIiwiaCI6ImNkZmRjOTMxMmRiNTFkNTc5ZDRiOTM4ODE4NWIyODU2NzA1ZGExMDgifQ==
  • Loading branch information
gcf-owl-bot[bot] authored and hemanshv committed Aug 10, 2023
1 parent a1d57da commit 5ef43e6
Show file tree
Hide file tree
Showing 171 changed files with 48,844 additions and 5,374 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
// Copyright 2023 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 baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_async_flattened]
using Google.Cloud.BareMetalSolution.V2;
using Google.LongRunning;
using System.Threading.Tasks;

public sealed partial class GeneratedBareMetalSolutionClientSnippets
{
/// <summary>Snippet for CreateNfsShareAsync</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 CreateNfsShareAsync()
{
// Create client
BareMetalSolutionClient bareMetalSolutionClient = await BareMetalSolutionClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]";
NfsShare nfsShare = new NfsShare();
// Make the request
Operation<NfsShare, OperationMetadata> response = await bareMetalSolutionClient.CreateNfsShareAsync(parent, nfsShare);

// Poll until the returned long-running operation is complete
Operation<NfsShare, OperationMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
NfsShare 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<NfsShare, OperationMetadata> retrievedResponse = await bareMetalSolutionClient.PollOnceCreateNfsShareAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
NfsShare retrievedResult = retrievedResponse.Result;
}
}
}
// [END baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_async_flattened]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
// Copyright 2023 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 baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_async]
using Google.Api.Gax.ResourceNames;
using Google.Cloud.BareMetalSolution.V2;
using Google.LongRunning;
using System.Threading.Tasks;

public sealed partial class GeneratedBareMetalSolutionClientSnippets
{
/// <summary>Snippet for CreateNfsShareAsync</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 CreateNfsShareRequestObjectAsync()
{
// Create client
BareMetalSolutionClient bareMetalSolutionClient = await BareMetalSolutionClient.CreateAsync();
// Initialize request argument(s)
CreateNfsShareRequest request = new CreateNfsShareRequest
{
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
NfsShare = new NfsShare(),
};
// Make the request
Operation<NfsShare, OperationMetadata> response = await bareMetalSolutionClient.CreateNfsShareAsync(request);

// Poll until the returned long-running operation is complete
Operation<NfsShare, OperationMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
NfsShare 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<NfsShare, OperationMetadata> retrievedResponse = await bareMetalSolutionClient.PollOnceCreateNfsShareAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
NfsShare retrievedResult = retrievedResponse.Result;
}
}
}
// [END baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_async]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
// Copyright 2023 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 baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_sync]
using Google.Api.Gax.ResourceNames;
using Google.Cloud.BareMetalSolution.V2;
using Google.LongRunning;

public sealed partial class GeneratedBareMetalSolutionClientSnippets
{
/// <summary>Snippet for CreateNfsShare</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 CreateNfsShareRequestObject()
{
// Create client
BareMetalSolutionClient bareMetalSolutionClient = BareMetalSolutionClient.Create();
// Initialize request argument(s)
CreateNfsShareRequest request = new CreateNfsShareRequest
{
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
NfsShare = new NfsShare(),
};
// Make the request
Operation<NfsShare, OperationMetadata> response = bareMetalSolutionClient.CreateNfsShare(request);

// Poll until the returned long-running operation is complete
Operation<NfsShare, OperationMetadata> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
NfsShare 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<NfsShare, OperationMetadata> retrievedResponse = bareMetalSolutionClient.PollOnceCreateNfsShare(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
NfsShare retrievedResult = retrievedResponse.Result;
}
}
}
// [END baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_sync]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
// Copyright 2023 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 baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_async_flattened_resourceNames]
using Google.Api.Gax.ResourceNames;
using Google.Cloud.BareMetalSolution.V2;
using Google.LongRunning;
using System.Threading.Tasks;

public sealed partial class GeneratedBareMetalSolutionClientSnippets
{
/// <summary>Snippet for CreateNfsShareAsync</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 CreateNfsShareResourceNamesAsync()
{
// Create client
BareMetalSolutionClient bareMetalSolutionClient = await BareMetalSolutionClient.CreateAsync();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
NfsShare nfsShare = new NfsShare();
// Make the request
Operation<NfsShare, OperationMetadata> response = await bareMetalSolutionClient.CreateNfsShareAsync(parent, nfsShare);

// Poll until the returned long-running operation is complete
Operation<NfsShare, OperationMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
NfsShare 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<NfsShare, OperationMetadata> retrievedResponse = await bareMetalSolutionClient.PollOnceCreateNfsShareAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
NfsShare retrievedResult = retrievedResponse.Result;
}
}
}
// [END baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_async_flattened_resourceNames]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
// Copyright 2023 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 baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_sync_flattened_resourceNames]
using Google.Api.Gax.ResourceNames;
using Google.Cloud.BareMetalSolution.V2;
using Google.LongRunning;

public sealed partial class GeneratedBareMetalSolutionClientSnippets
{
/// <summary>Snippet for CreateNfsShare</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 CreateNfsShareResourceNames()
{
// Create client
BareMetalSolutionClient bareMetalSolutionClient = BareMetalSolutionClient.Create();
// Initialize request argument(s)
LocationName parent = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]");
NfsShare nfsShare = new NfsShare();
// Make the request
Operation<NfsShare, OperationMetadata> response = bareMetalSolutionClient.CreateNfsShare(parent, nfsShare);

// Poll until the returned long-running operation is complete
Operation<NfsShare, OperationMetadata> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
NfsShare 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<NfsShare, OperationMetadata> retrievedResponse = bareMetalSolutionClient.PollOnceCreateNfsShare(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
NfsShare retrievedResult = retrievedResponse.Result;
}
}
}
// [END baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_sync_flattened_resourceNames]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
// Copyright 2023 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 baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_sync_flattened]
using Google.Cloud.BareMetalSolution.V2;
using Google.LongRunning;

public sealed partial class GeneratedBareMetalSolutionClientSnippets
{
/// <summary>Snippet for CreateNfsShare</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 CreateNfsShare()
{
// Create client
BareMetalSolutionClient bareMetalSolutionClient = BareMetalSolutionClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]/locations/[LOCATION]";
NfsShare nfsShare = new NfsShare();
// Make the request
Operation<NfsShare, OperationMetadata> response = bareMetalSolutionClient.CreateNfsShare(parent, nfsShare);

// Poll until the returned long-running operation is complete
Operation<NfsShare, OperationMetadata> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
NfsShare 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<NfsShare, OperationMetadata> retrievedResponse = bareMetalSolutionClient.PollOnceCreateNfsShare(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
NfsShare retrievedResult = retrievedResponse.Result;
}
}
}
// [END baremetalsolution_v2_generated_BareMetalSolution_CreateNfsShare_sync_flattened]
}
Loading

0 comments on commit 5ef43e6

Please sign in to comment.