public abstract class MachineImagesClientReference documentation and code samples for the Compute Engine v1 API class MachineImagesClient.
MachineImages client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Compute.V1Assembly
Google.Cloud.Compute.V1.dll
Remarks
The MachineImages API.
Properties
DefaultEndpoint
public static string DefaultEndpoint { get; }The default endpoint for the MachineImages service, which is a host of "compute.googleapis.com" and a port of 443.
| Property Value | |
|---|---|
| Type | Description | 
| string | |
DefaultScopes
public static IReadOnlyList<string> DefaultScopes { get; }The default MachineImages scopes.
| Property Value | |
|---|---|
| Type | Description | 
| IReadOnlyListstring | |
The default MachineImages scopes are:
DeleteOperationsClient
public virtual OperationsClient DeleteOperationsClient { get; }The long-running operations client for Delete.
| Property Value | |
|---|---|
| Type | Description | 
| OperationsClient | |
GrpcClient
public virtual MachineImages.MachineImagesClient GrpcClient { get; }The underlying gRPC MachineImages client
| Property Value | |
|---|---|
| Type | Description | 
| MachineImagesMachineImagesClient | |
InsertOperationsClient
public virtual OperationsClient InsertOperationsClient { get; }The long-running operations client for Insert.
| Property Value | |
|---|---|
| Type | Description | 
| OperationsClient | |
ServiceMetadata
public static ServiceMetadata ServiceMetadata { get; }The service metadata associated with this client type.
| Property Value | |
|---|---|
| Type | Description | 
| ServiceMetadata | |
SetLabelsOperationsClient
public virtual OperationsClient SetLabelsOperationsClient { get; }The long-running operations client for SetLabels.
| Property Value | |
|---|---|
| Type | Description | 
| OperationsClient | |
Methods
Create()
public static MachineImagesClient Create()Synchronously creates a MachineImagesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use MachineImagesClientBuilder.
| Returns | |
|---|---|
| Type | Description | 
| MachineImagesClient | The created MachineImagesClient. | 
CreateAsync(CancellationToken)
public static Task<MachineImagesClient> CreateAsync(CancellationToken cancellationToken = default)Asynchronously creates a MachineImagesClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use MachineImagesClientBuilder.
| Parameter | |
|---|---|
| Name | Description | 
| cancellationToken | CancellationTokenThe CancellationToken to use while creating the client. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskMachineImagesClient | The task representing the created MachineImagesClient. | 
Delete(DeleteMachineImageRequest, CallSettings)
public virtual Operation<Operation, Operation> Delete(DeleteMachineImageRequest request, CallSettings callSettings = null)Deletes the specified machine image. Deleting a machine image is permanent and cannot be undone.
| Parameters | |
|---|---|
| Name | Description | 
| request | DeleteMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| OperationOperationOperation | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
DeleteMachineImageRequest request = new DeleteMachineImageRequest
{
    RequestId = "",
    MachineImage = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = machineImagesClient.Delete(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = machineImagesClient.PollOnceDelete(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
Delete(string, string, CallSettings)
public virtual Operation<Operation, Operation> Delete(string project, string machineImage, CallSettings callSettings = null)Deletes the specified machine image. Deleting a machine image is permanent and cannot be undone.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| machineImage | stringThe name of the machine image to delete. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| OperationOperationOperation | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
string project = "";
string machineImage = "";
// Make the request
lro::Operation<Operation, Operation> response = machineImagesClient.Delete(project, machineImage);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = machineImagesClient.PollOnceDelete(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(DeleteMachineImageRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteMachineImageRequest request, CallSettings callSettings = null)Deletes the specified machine image. Deleting a machine image is permanent and cannot be undone.
| Parameters | |
|---|---|
| Name | Description | 
| request | DeleteMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
DeleteMachineImageRequest request = new DeleteMachineImageRequest
{
    RequestId = "",
    MachineImage = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.DeleteAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(DeleteMachineImageRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteMachineImageRequest request, CancellationToken cancellationToken)Deletes the specified machine image. Deleting a machine image is permanent and cannot be undone.
| Parameters | |
|---|---|
| Name | Description | 
| request | DeleteMachineImageRequestThe request object containing all of the parameters for the API call. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
DeleteMachineImageRequest request = new DeleteMachineImageRequest
{
    RequestId = "",
    MachineImage = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.DeleteAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(string, string, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string machineImage, CallSettings callSettings = null)Deletes the specified machine image. Deleting a machine image is permanent and cannot be undone.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| machineImage | stringThe name of the machine image to delete. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string machineImage = "";
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.DeleteAsync(project, machineImage);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
DeleteAsync(string, string, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string machineImage, CancellationToken cancellationToken)Deletes the specified machine image. Deleting a machine image is permanent and cannot be undone.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| machineImage | stringThe name of the machine image to delete. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string machineImage = "";
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.DeleteAsync(project, machineImage);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
Get(GetMachineImageRequest, CallSettings)
public virtual MachineImage Get(GetMachineImageRequest request, CallSettings callSettings = null)Returns the specified machine image.
| Parameters | |
|---|---|
| Name | Description | 
| request | GetMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| MachineImage | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
GetMachineImageRequest request = new GetMachineImageRequest
{
    MachineImage = "",
    Project = "",
};
// Make the request
MachineImage response = machineImagesClient.Get(request);
Get(string, string, CallSettings)
public virtual MachineImage Get(string project, string machineImage, CallSettings callSettings = null)Returns the specified machine image.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| machineImage | stringThe name of the machine image. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| MachineImage | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
string project = "";
string machineImage = "";
// Make the request
MachineImage response = machineImagesClient.Get(project, machineImage);
GetAsync(GetMachineImageRequest, CallSettings)
public virtual Task<MachineImage> GetAsync(GetMachineImageRequest request, CallSettings callSettings = null)Returns the specified machine image.
| Parameters | |
|---|---|
| Name | Description | 
| request | GetMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskMachineImage | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
GetMachineImageRequest request = new GetMachineImageRequest
{
    MachineImage = "",
    Project = "",
};
// Make the request
MachineImage response = await machineImagesClient.GetAsync(request);
GetAsync(GetMachineImageRequest, CancellationToken)
public virtual Task<MachineImage> GetAsync(GetMachineImageRequest request, CancellationToken cancellationToken)Returns the specified machine image.
| Parameters | |
|---|---|
| Name | Description | 
| request | GetMachineImageRequestThe request object containing all of the parameters for the API call. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskMachineImage | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
GetMachineImageRequest request = new GetMachineImageRequest
{
    MachineImage = "",
    Project = "",
};
// Make the request
MachineImage response = await machineImagesClient.GetAsync(request);
GetAsync(string, string, CallSettings)
public virtual Task<MachineImage> GetAsync(string project, string machineImage, CallSettings callSettings = null)Returns the specified machine image.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| machineImage | stringThe name of the machine image. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskMachineImage | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string machineImage = "";
// Make the request
MachineImage response = await machineImagesClient.GetAsync(project, machineImage);
GetAsync(string, string, CancellationToken)
public virtual Task<MachineImage> GetAsync(string project, string machineImage, CancellationToken cancellationToken)Returns the specified machine image.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| machineImage | stringThe name of the machine image. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskMachineImage | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string machineImage = "";
// Make the request
MachineImage response = await machineImagesClient.GetAsync(project, machineImage);
GetIamPolicy(GetIamPolicyMachineImageRequest, CallSettings)
public virtual Policy GetIamPolicy(GetIamPolicyMachineImageRequest request, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
| request | GetIamPolicyMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| Policy | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
GetIamPolicyMachineImageRequest request = new GetIamPolicyMachineImageRequest
{
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = machineImagesClient.GetIamPolicy(request);
GetIamPolicy(string, string, CallSettings)
public virtual Policy GetIamPolicy(string project, string resource, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| Policy | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
string project = "";
string resource = "";
// Make the request
Policy response = machineImagesClient.GetIamPolicy(project, resource);
GetIamPolicyAsync(GetIamPolicyMachineImageRequest, CallSettings)
public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyMachineImageRequest request, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
| request | GetIamPolicyMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskPolicy | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyMachineImageRequest request = new GetIamPolicyMachineImageRequest
{
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await machineImagesClient.GetIamPolicyAsync(request);
GetIamPolicyAsync(GetIamPolicyMachineImageRequest, CancellationToken)
public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyMachineImageRequest request, CancellationToken cancellationToken)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
| request | GetIamPolicyMachineImageRequestThe request object containing all of the parameters for the API call. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskPolicy | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyMachineImageRequest request = new GetIamPolicyMachineImageRequest
{
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await machineImagesClient.GetIamPolicyAsync(request);
GetIamPolicyAsync(string, string, CallSettings)
public virtual Task<Policy> GetIamPolicyAsync(string project, string resource, CallSettings callSettings = null)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskPolicy | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
// Make the request
Policy response = await machineImagesClient.GetIamPolicyAsync(project, resource);
GetIamPolicyAsync(string, string, CancellationToken)
public virtual Task<Policy> GetIamPolicyAsync(string project, string resource, CancellationToken cancellationToken)Gets the access control policy for a resource. May be empty if no such policy or resource exists.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskPolicy | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
// Make the request
Policy response = await machineImagesClient.GetIamPolicyAsync(project, resource);
Insert(InsertMachineImageRequest, CallSettings)
public virtual Operation<Operation, Operation> Insert(InsertMachineImageRequest request, CallSettings callSettings = null)Creates a machine image in the specified project using the data that is included in the request. If you are creating a new machine image to update an existing instance, your new machine image should use the same network or, if applicable, the same subnetwork as the original instance.
| Parameters | |
|---|---|
| Name | Description | 
| request | InsertMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| OperationOperationOperation | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
InsertMachineImageRequest request = new InsertMachineImageRequest
{
    RequestId = "",
    MachineImageResource = new MachineImage(),
    Project = "",
    SourceInstance = "",
};
// Make the request
lro::Operation<Operation, Operation> response = machineImagesClient.Insert(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = machineImagesClient.PollOnceInsert(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
Insert(string, MachineImage, CallSettings)
public virtual Operation<Operation, Operation> Insert(string project, MachineImage machineImageResource, CallSettings callSettings = null)Creates a machine image in the specified project using the data that is included in the request. If you are creating a new machine image to update an existing instance, your new machine image should use the same network or, if applicable, the same subnetwork as the original instance.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| machineImageResource | MachineImageThe body resource for this request | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| OperationOperationOperation | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
string project = "";
MachineImage machineImageResource = new MachineImage();
// Make the request
lro::Operation<Operation, Operation> response = machineImagesClient.Insert(project, machineImageResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = machineImagesClient.PollOnceInsert(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(InsertMachineImageRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertMachineImageRequest request, CallSettings callSettings = null)Creates a machine image in the specified project using the data that is included in the request. If you are creating a new machine image to update an existing instance, your new machine image should use the same network or, if applicable, the same subnetwork as the original instance.
| Parameters | |
|---|---|
| Name | Description | 
| request | InsertMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
InsertMachineImageRequest request = new InsertMachineImageRequest
{
    RequestId = "",
    MachineImageResource = new MachineImage(),
    Project = "",
    SourceInstance = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.InsertAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(InsertMachineImageRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertMachineImageRequest request, CancellationToken cancellationToken)Creates a machine image in the specified project using the data that is included in the request. If you are creating a new machine image to update an existing instance, your new machine image should use the same network or, if applicable, the same subnetwork as the original instance.
| Parameters | |
|---|---|
| Name | Description | 
| request | InsertMachineImageRequestThe request object containing all of the parameters for the API call. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
InsertMachineImageRequest request = new InsertMachineImageRequest
{
    RequestId = "",
    MachineImageResource = new MachineImage(),
    Project = "",
    SourceInstance = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.InsertAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(string, MachineImage, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, MachineImage machineImageResource, CallSettings callSettings = null)Creates a machine image in the specified project using the data that is included in the request. If you are creating a new machine image to update an existing instance, your new machine image should use the same network or, if applicable, the same subnetwork as the original instance.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| machineImageResource | MachineImageThe body resource for this request | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
MachineImage machineImageResource = new MachineImage();
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.InsertAsync(project, machineImageResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
InsertAsync(string, MachineImage, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, MachineImage machineImageResource, CancellationToken cancellationToken)Creates a machine image in the specified project using the data that is included in the request. If you are creating a new machine image to update an existing instance, your new machine image should use the same network or, if applicable, the same subnetwork as the original instance.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| machineImageResource | MachineImageThe body resource for this request | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
MachineImage machineImageResource = new MachineImage();
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.InsertAsync(project, machineImageResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
List(ListMachineImagesRequest, CallSettings)
public virtual PagedEnumerable<MachineImageList, MachineImage> List(ListMachineImagesRequest request, CallSettings callSettings = null)Retrieves a list of machine images that are contained within the specified project.
| Parameters | |
|---|---|
| Name | Description | 
| request | ListMachineImagesRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedEnumerableMachineImageListMachineImage | A pageable sequence of MachineImage resources. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
ListMachineImagesRequest request = new ListMachineImagesRequest
{
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<MachineImageList, MachineImage> response = machineImagesClient.List(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (MachineImage item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (MachineImageList page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MachineImage item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MachineImage> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MachineImage item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
List(string, string, int?, CallSettings)
public virtual PagedEnumerable<MachineImageList, MachineImage> List(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves a list of machine images that are contained within the specified project.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| pageToken | stringThe token returned from the previous request. A value of  | 
| pageSize | intThe size of page to request. The response will not be larger than this, but may be smaller. A value of
 | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedEnumerableMachineImageListMachineImage | A pageable sequence of MachineImage resources. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<MachineImageList, MachineImage> response = machineImagesClient.List(project);
// Iterate over all response items, lazily performing RPCs as required
foreach (MachineImage item in response)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Or iterate over pages (of server-defined size), performing one RPC per page
foreach (MachineImageList page in response.AsRawResponses())
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MachineImage item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
}
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MachineImage> singlePage = response.ReadPage(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MachineImage item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListAsync(ListMachineImagesRequest, CallSettings)
public virtual PagedAsyncEnumerable<MachineImageList, MachineImage> ListAsync(ListMachineImagesRequest request, CallSettings callSettings = null)Retrieves a list of machine images that are contained within the specified project.
| Parameters | |
|---|---|
| Name | Description | 
| request | ListMachineImagesRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedAsyncEnumerableMachineImageListMachineImage | A pageable asynchronous sequence of MachineImage resources. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
ListMachineImagesRequest request = new ListMachineImagesRequest
{
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<MachineImageList, MachineImage> response = machineImagesClient.ListAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((MachineImage item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((MachineImageList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MachineImage item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MachineImage> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MachineImage item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
ListAsync(string, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<MachineImageList, MachineImage> ListAsync(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)Retrieves a list of machine images that are contained within the specified project.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| pageToken | stringThe token returned from the previous request. A value of  | 
| pageSize | intThe size of page to request. The response will not be larger than this, but may be smaller. A value of
 | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| PagedAsyncEnumerableMachineImageListMachineImage | A pageable asynchronous sequence of MachineImage resources. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<MachineImageList, MachineImage> response = machineImagesClient.ListAsync(project);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((MachineImage item) =>
{
    // Do something with each item
    Console.WriteLine(item);
});
// Or iterate over pages (of server-defined size), performing one RPC per page
await response.AsRawResponses().ForEachAsync((MachineImageList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (MachineImage item in page)
    {
        // Do something with each item
        Console.WriteLine(item);
    }
});
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
int pageSize = 10;
Page<MachineImage> singlePage = await response.ReadPageAsync(pageSize);
// Do something with the page of items
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
foreach (MachineImage item in singlePage)
{
    // Do something with each item
    Console.WriteLine(item);
}
// Store the pageToken, for when the next page is required.
string nextPageToken = singlePage.NextPageToken;
PollOnceDelete(string, CallSettings)
public virtual Operation<Operation, Operation> PollOnceDelete(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of Delete.
| Parameters | |
|---|---|
| Name | Description | 
| operationName | stringThe name of a previously invoked operation. Must not be  | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| OperationOperationOperation | The result of polling the operation. | 
PollOnceDeleteAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceDeleteAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of Delete
.
| Parameters | |
|---|---|
| Name | Description | 
| operationName | stringThe name of a previously invoked operation. Must not be  | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A task representing the result of polling the operation. | 
PollOnceInsert(string, CallSettings)
public virtual Operation<Operation, Operation> PollOnceInsert(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of Insert.
| Parameters | |
|---|---|
| Name | Description | 
| operationName | stringThe name of a previously invoked operation. Must not be  | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| OperationOperationOperation | The result of polling the operation. | 
PollOnceInsertAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceInsertAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of Insert
.
| Parameters | |
|---|---|
| Name | Description | 
| operationName | stringThe name of a previously invoked operation. Must not be  | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A task representing the result of polling the operation. | 
PollOnceSetLabels(string, CallSettings)
public virtual Operation<Operation, Operation> PollOnceSetLabels(string operationName, CallSettings callSettings = null)Poll an operation once, using an operationName from a previous invocation of SetLabels.
| Parameters | |
|---|---|
| Name | Description | 
| operationName | stringThe name of a previously invoked operation. Must not be  | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| OperationOperationOperation | The result of polling the operation. | 
PollOnceSetLabelsAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceSetLabelsAsync(string operationName, CallSettings callSettings = null)Asynchronously poll an operation once, using an operationName from a previous invocation of
SetLabels.
| Parameters | |
|---|---|
| Name | Description | 
| operationName | stringThe name of a previously invoked operation. Must not be  | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A task representing the result of polling the operation. | 
SetIamPolicy(SetIamPolicyMachineImageRequest, CallSettings)
public virtual Policy SetIamPolicy(SetIamPolicyMachineImageRequest request, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
| request | SetIamPolicyMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| Policy | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
SetIamPolicyMachineImageRequest request = new SetIamPolicyMachineImageRequest
{
    Resource = "",
    Project = "",
    GlobalSetPolicyRequestResource = new GlobalSetPolicyRequest(),
};
// Make the request
Policy response = machineImagesClient.SetIamPolicy(request);
SetIamPolicy(string, string, GlobalSetPolicyRequest, CallSettings)
public virtual Policy SetIamPolicy(string project, string resource, GlobalSetPolicyRequest globalSetPolicyRequestResource, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| globalSetPolicyRequestResource | GlobalSetPolicyRequestThe body resource for this request | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| Policy | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetPolicyRequest globalSetPolicyRequestResource = new GlobalSetPolicyRequest();
// Make the request
Policy response = machineImagesClient.SetIamPolicy(project, resource, globalSetPolicyRequestResource);
SetIamPolicyAsync(SetIamPolicyMachineImageRequest, CallSettings)
public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyMachineImageRequest request, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
| request | SetIamPolicyMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskPolicy | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyMachineImageRequest request = new SetIamPolicyMachineImageRequest
{
    Resource = "",
    Project = "",
    GlobalSetPolicyRequestResource = new GlobalSetPolicyRequest(),
};
// Make the request
Policy response = await machineImagesClient.SetIamPolicyAsync(request);
SetIamPolicyAsync(SetIamPolicyMachineImageRequest, CancellationToken)
public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyMachineImageRequest request, CancellationToken cancellationToken)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
| request | SetIamPolicyMachineImageRequestThe request object containing all of the parameters for the API call. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskPolicy | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyMachineImageRequest request = new SetIamPolicyMachineImageRequest
{
    Resource = "",
    Project = "",
    GlobalSetPolicyRequestResource = new GlobalSetPolicyRequest(),
};
// Make the request
Policy response = await machineImagesClient.SetIamPolicyAsync(request);
SetIamPolicyAsync(string, string, GlobalSetPolicyRequest, CallSettings)
public virtual Task<Policy> SetIamPolicyAsync(string project, string resource, GlobalSetPolicyRequest globalSetPolicyRequestResource, CallSettings callSettings = null)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| globalSetPolicyRequestResource | GlobalSetPolicyRequestThe body resource for this request | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskPolicy | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetPolicyRequest globalSetPolicyRequestResource = new GlobalSetPolicyRequest();
// Make the request
Policy response = await machineImagesClient.SetIamPolicyAsync(project, resource, globalSetPolicyRequestResource);
SetIamPolicyAsync(string, string, GlobalSetPolicyRequest, CancellationToken)
public virtual Task<Policy> SetIamPolicyAsync(string project, string resource, GlobalSetPolicyRequest globalSetPolicyRequestResource, CancellationToken cancellationToken)Sets the access control policy on the specified resource. Replaces any existing policy.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| globalSetPolicyRequestResource | GlobalSetPolicyRequestThe body resource for this request | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskPolicy | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetPolicyRequest globalSetPolicyRequestResource = new GlobalSetPolicyRequest();
// Make the request
Policy response = await machineImagesClient.SetIamPolicyAsync(project, resource, globalSetPolicyRequestResource);
SetLabels(SetLabelsMachineImageRequest, CallSettings)
public virtual Operation<Operation, Operation> SetLabels(SetLabelsMachineImageRequest request, CallSettings callSettings = null)Sets the labels on a machine image. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description | 
| request | SetLabelsMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| OperationOperationOperation | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
SetLabelsMachineImageRequest request = new SetLabelsMachineImageRequest
{
    Resource = "",
    Project = "",
    GlobalSetLabelsRequestResource = new GlobalSetLabelsRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = machineImagesClient.SetLabels(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = machineImagesClient.PollOnceSetLabels(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
SetLabels(string, string, GlobalSetLabelsRequest, CallSettings)
public virtual Operation<Operation, Operation> SetLabels(string project, string resource, GlobalSetLabelsRequest globalSetLabelsRequestResource, CallSettings callSettings = null)Sets the labels on a machine image. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| globalSetLabelsRequestResource | GlobalSetLabelsRequestThe body resource for this request | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| OperationOperationOperation | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetLabelsRequest globalSetLabelsRequestResource = new GlobalSetLabelsRequest();
// Make the request
lro::Operation<Operation, Operation> response = machineImagesClient.SetLabels(project, resource, globalSetLabelsRequestResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = machineImagesClient.PollOnceSetLabels(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
SetLabelsAsync(SetLabelsMachineImageRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(SetLabelsMachineImageRequest request, CallSettings callSettings = null)Sets the labels on a machine image. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description | 
| request | SetLabelsMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
SetLabelsMachineImageRequest request = new SetLabelsMachineImageRequest
{
    Resource = "",
    Project = "",
    GlobalSetLabelsRequestResource = new GlobalSetLabelsRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.SetLabelsAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceSetLabelsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
SetLabelsAsync(SetLabelsMachineImageRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(SetLabelsMachineImageRequest request, CancellationToken cancellationToken)Sets the labels on a machine image. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description | 
| request | SetLabelsMachineImageRequestThe request object containing all of the parameters for the API call. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
SetLabelsMachineImageRequest request = new SetLabelsMachineImageRequest
{
    Resource = "",
    Project = "",
    GlobalSetLabelsRequestResource = new GlobalSetLabelsRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.SetLabelsAsync(request);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceSetLabelsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
SetLabelsAsync(string, string, GlobalSetLabelsRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(string project, string resource, GlobalSetLabelsRequest globalSetLabelsRequestResource, CallSettings callSettings = null)Sets the labels on a machine image. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| globalSetLabelsRequestResource | GlobalSetLabelsRequestThe body resource for this request | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetLabelsRequest globalSetLabelsRequestResource = new GlobalSetLabelsRequest();
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.SetLabelsAsync(project, resource, globalSetLabelsRequestResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceSetLabelsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
SetLabelsAsync(string, string, GlobalSetLabelsRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(string project, string resource, GlobalSetLabelsRequest globalSetLabelsRequestResource, CancellationToken cancellationToken)Sets the labels on a machine image. To learn more about labels, read the Labeling Resources documentation.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| globalSetLabelsRequestResource | GlobalSetLabelsRequestThe body resource for this request | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskOperationOperationOperation | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetLabelsRequest globalSetLabelsRequestResource = new GlobalSetLabelsRequest();
// Make the request
lro::Operation<Operation, Operation> response = await machineImagesClient.SetLabelsAsync(project, resource, globalSetLabelsRequestResource);
// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation 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
lro::Operation<Operation, Operation> retrievedResponse = await machineImagesClient.PollOnceSetLabelsAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}
ShutdownDefaultChannelsAsync()
public static Task ShutdownDefaultChannelsAsync()Shuts down any channels automatically created by Create() and CreateAsync(CancellationToken). Channels which weren't automatically created are not affected.
| Returns | |
|---|---|
| Type | Description | 
| Task | A task representing the asynchronous shutdown operation. | 
After calling this method, further calls to Create() and CreateAsync(CancellationToken) will create new channels, which could in turn be shut down by another call to this method.
TestIamPermissions(TestIamPermissionsMachineImageRequest, CallSettings)
public virtual TestPermissionsResponse TestIamPermissions(TestIamPermissionsMachineImageRequest request, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
| request | TestIamPermissionsMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TestPermissionsResponse | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
TestIamPermissionsMachineImageRequest request = new TestIamPermissionsMachineImageRequest
{
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = machineImagesClient.TestIamPermissions(request);
TestIamPermissions(string, string, TestPermissionsRequest, CallSettings)
public virtual TestPermissionsResponse TestIamPermissions(string project, string resource, TestPermissionsRequest testPermissionsRequestResource, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| testPermissionsRequestResource | TestPermissionsRequestThe body resource for this request | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TestPermissionsResponse | The RPC response. | 
// Create client
MachineImagesClient machineImagesClient = MachineImagesClient.Create();
// Initialize request argument(s)
string project = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = machineImagesClient.TestIamPermissions(project, resource, testPermissionsRequestResource);
TestIamPermissionsAsync(TestIamPermissionsMachineImageRequest, CallSettings)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsMachineImageRequest request, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
| request | TestIamPermissionsMachineImageRequestThe request object containing all of the parameters for the API call. | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskTestPermissionsResponse | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsMachineImageRequest request = new TestIamPermissionsMachineImageRequest
{
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await machineImagesClient.TestIamPermissionsAsync(request);
TestIamPermissionsAsync(TestIamPermissionsMachineImageRequest, CancellationToken)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsMachineImageRequest request, CancellationToken cancellationToken)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
| request | TestIamPermissionsMachineImageRequestThe request object containing all of the parameters for the API call. | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskTestPermissionsResponse | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsMachineImageRequest request = new TestIamPermissionsMachineImageRequest
{
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await machineImagesClient.TestIamPermissionsAsync(request);
TestIamPermissionsAsync(string, string, TestPermissionsRequest, CallSettings)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(string project, string resource, TestPermissionsRequest testPermissionsRequestResource, CallSettings callSettings = null)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| testPermissionsRequestResource | TestPermissionsRequestThe body resource for this request | 
| callSettings | CallSettingsIf not null, applies overrides to this RPC call. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskTestPermissionsResponse | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await machineImagesClient.TestIamPermissionsAsync(project, resource, testPermissionsRequestResource);
TestIamPermissionsAsync(string, string, TestPermissionsRequest, CancellationToken)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(string project, string resource, TestPermissionsRequest testPermissionsRequestResource, CancellationToken cancellationToken)Returns permissions that a caller has on the specified resource.
| Parameters | |
|---|---|
| Name | Description | 
| project | stringProject ID for this request. | 
| resource | stringName or id of the resource for this request. | 
| testPermissionsRequestResource | TestPermissionsRequestThe body resource for this request | 
| cancellationToken | CancellationTokenA CancellationToken to use for this RPC. | 
| Returns | |
|---|---|
| Type | Description | 
| TaskTestPermissionsResponse | A Task containing the RPC response. | 
// Create client
MachineImagesClient machineImagesClient = await MachineImagesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await machineImagesClient.TestIamPermissionsAsync(project, resource, testPermissionsRequestResource);