public abstract class ModelGardenServiceClient
Reference documentation and code samples for the Cloud AI Platform v1beta1 API class ModelGardenServiceClient.
ModelGardenService client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.AIPlatform.V1Beta1Assembly
Google.Cloud.AIPlatform.V1Beta1.dll
Remarks
The interface of Model Garden Service.
Properties
DefaultEndpoint
public static string DefaultEndpoint { get; }
The default endpoint for the ModelGardenService service, which is a host of "aiplatform.googleapis.com" and a port of 443.
Property Value | |
---|---|
Type | Description |
string |
DefaultScopes
public static IReadOnlyList<string> DefaultScopes { get; }
The default ModelGardenService scopes.
Property Value | |
---|---|
Type | Description |
IReadOnlyListstring |
The default ModelGardenService scopes are:
DeployPublisherModelOperationsClient
public virtual OperationsClient DeployPublisherModelOperationsClient { get; }
The long-running operations client for DeployPublisherModel
.
Property Value | |
---|---|
Type | Description |
OperationsClient |
GrpcClient
public virtual ModelGardenService.ModelGardenServiceClient GrpcClient { get; }
The underlying gRPC ModelGardenService client
Property Value | |
---|---|
Type | Description |
ModelGardenServiceModelGardenServiceClient |
IAMPolicyClient
public virtual IAMPolicyClient IAMPolicyClient { get; }
The IAMPolicyClient associated with this client.
Property Value | |
---|---|
Type | Description |
IAMPolicyClient |
LocationsClient
public virtual LocationsClient LocationsClient { get; }
The LocationsClient associated with this client.
Property Value | |
---|---|
Type | Description |
LocationsClient |
ServiceMetadata
public static ServiceMetadata ServiceMetadata { get; }
The service metadata associated with this client type.
Property Value | |
---|---|
Type | Description |
ServiceMetadata |
Methods
Create()
public static ModelGardenServiceClient Create()
Synchronously creates a ModelGardenServiceClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use ModelGardenServiceClientBuilder .
Returns | |
---|---|
Type | Description |
ModelGardenServiceClient |
The created ModelGardenServiceClient. |
CreateAsync(CancellationToken)
public static Task<ModelGardenServiceClient> CreateAsync(CancellationToken cancellationToken = default)
Asynchronously creates a ModelGardenServiceClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use ModelGardenServiceClientBuilder .
Parameter | |
---|---|
Name | Description |
cancellationToken |
CancellationToken The CancellationToken to use while creating the client. |
Returns | |
---|---|
Type | Description |
TaskModelGardenServiceClient |
The task representing the created ModelGardenServiceClient. |
DeployPublisherModel(DeployPublisherModelRequest, CallSettings)
public virtual Operation<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata> DeployPublisherModel(DeployPublisherModelRequest request, CallSettings callSettings = null)
Deploys publisher models.
Parameters | |
---|---|
Name | Description |
request |
DeployPublisherModelRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationDeployPublisherModelResponseDeployPublisherModelOperationMetadata |
The RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = ModelGardenServiceClient.Create();
// Initialize request argument(s)
DeployPublisherModelRequest request = new DeployPublisherModelRequest
{
Model = "",
DestinationAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
EndpointDisplayName = "",
DedicatedResources = new DedicatedResources(),
ModelDisplayName = "",
HuggingFaceAccessToken = "",
AcceptEula = false,
};
// Make the request
Operation<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata> response = modelGardenServiceClient.DeployPublisherModel(request);
// Poll until the returned long-running operation is complete
Operation<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
DeployPublisherModelResponse 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<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata> retrievedResponse = modelGardenServiceClient.PollOnceDeployPublisherModel(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
DeployPublisherModelResponse retrievedResult = retrievedResponse.Result;
}
DeployPublisherModelAsync(DeployPublisherModelRequest, CallSettings)
public virtual Task<Operation<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata>> DeployPublisherModelAsync(DeployPublisherModelRequest request, CallSettings callSettings = null)
Deploys publisher models.
Parameters | |
---|---|
Name | Description |
request |
DeployPublisherModelRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationDeployPublisherModelResponseDeployPublisherModelOperationMetadata |
A Task containing the RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = await ModelGardenServiceClient.CreateAsync();
// Initialize request argument(s)
DeployPublisherModelRequest request = new DeployPublisherModelRequest
{
Model = "",
DestinationAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
EndpointDisplayName = "",
DedicatedResources = new DedicatedResources(),
ModelDisplayName = "",
HuggingFaceAccessToken = "",
AcceptEula = false,
};
// Make the request
Operation<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata> response = await modelGardenServiceClient.DeployPublisherModelAsync(request);
// Poll until the returned long-running operation is complete
Operation<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
DeployPublisherModelResponse 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<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata> retrievedResponse = await modelGardenServiceClient.PollOnceDeployPublisherModelAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
DeployPublisherModelResponse retrievedResult = retrievedResponse.Result;
}
DeployPublisherModelAsync(DeployPublisherModelRequest, CancellationToken)
public virtual Task<Operation<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata>> DeployPublisherModelAsync(DeployPublisherModelRequest request, CancellationToken cancellationToken)
Deploys publisher models.
Parameters | |
---|---|
Name | Description |
request |
DeployPublisherModelRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationDeployPublisherModelResponseDeployPublisherModelOperationMetadata |
A Task containing the RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = await ModelGardenServiceClient.CreateAsync();
// Initialize request argument(s)
DeployPublisherModelRequest request = new DeployPublisherModelRequest
{
Model = "",
DestinationAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
EndpointDisplayName = "",
DedicatedResources = new DedicatedResources(),
ModelDisplayName = "",
HuggingFaceAccessToken = "",
AcceptEula = false,
};
// Make the request
Operation<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata> response = await modelGardenServiceClient.DeployPublisherModelAsync(request);
// Poll until the returned long-running operation is complete
Operation<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
DeployPublisherModelResponse 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<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata> retrievedResponse = await modelGardenServiceClient.PollOnceDeployPublisherModelAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
// If it has completed, then access the result
DeployPublisherModelResponse retrievedResult = retrievedResponse.Result;
}
GetPublisherModel(GetPublisherModelRequest, CallSettings)
public virtual PublisherModel GetPublisherModel(GetPublisherModelRequest request, CallSettings callSettings = null)
Gets a Model Garden publisher model.
Parameters | |
---|---|
Name | Description |
request |
GetPublisherModelRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PublisherModel |
The RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = ModelGardenServiceClient.Create();
// Initialize request argument(s)
GetPublisherModelRequest request = new GetPublisherModelRequest
{
PublisherModelName = PublisherModelName.FromPublisherModel("[PUBLISHER]", "[MODEL]"),
LanguageCode = "",
View = PublisherModelView.Unspecified,
IsHuggingFaceModel = false,
HuggingFaceToken = "",
};
// Make the request
PublisherModel response = modelGardenServiceClient.GetPublisherModel(request);
GetPublisherModel(PublisherModelName, CallSettings)
public virtual PublisherModel GetPublisherModel(PublisherModelName name, CallSettings callSettings = null)
Gets a Model Garden publisher model.
Parameters | |
---|---|
Name | Description |
name |
PublisherModelName Required. The name of the PublisherModel resource.
Format:
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PublisherModel |
The RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = ModelGardenServiceClient.Create();
// Initialize request argument(s)
PublisherModelName name = PublisherModelName.FromPublisherModel("[PUBLISHER]", "[MODEL]");
// Make the request
PublisherModel response = modelGardenServiceClient.GetPublisherModel(name);
GetPublisherModel(string, CallSettings)
public virtual PublisherModel GetPublisherModel(string name, CallSettings callSettings = null)
Gets a Model Garden publisher model.
Parameters | |
---|---|
Name | Description |
name |
string Required. The name of the PublisherModel resource.
Format:
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PublisherModel |
The RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = ModelGardenServiceClient.Create();
// Initialize request argument(s)
string name = "publishers/[PUBLISHER]/models/[MODEL]";
// Make the request
PublisherModel response = modelGardenServiceClient.GetPublisherModel(name);
GetPublisherModelAsync(GetPublisherModelRequest, CallSettings)
public virtual Task<PublisherModel> GetPublisherModelAsync(GetPublisherModelRequest request, CallSettings callSettings = null)
Gets a Model Garden publisher model.
Parameters | |
---|---|
Name | Description |
request |
GetPublisherModelRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskPublisherModel |
A Task containing the RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = await ModelGardenServiceClient.CreateAsync();
// Initialize request argument(s)
GetPublisherModelRequest request = new GetPublisherModelRequest
{
PublisherModelName = PublisherModelName.FromPublisherModel("[PUBLISHER]", "[MODEL]"),
LanguageCode = "",
View = PublisherModelView.Unspecified,
IsHuggingFaceModel = false,
HuggingFaceToken = "",
};
// Make the request
PublisherModel response = await modelGardenServiceClient.GetPublisherModelAsync(request);
GetPublisherModelAsync(GetPublisherModelRequest, CancellationToken)
public virtual Task<PublisherModel> GetPublisherModelAsync(GetPublisherModelRequest request, CancellationToken cancellationToken)
Gets a Model Garden publisher model.
Parameters | |
---|---|
Name | Description |
request |
GetPublisherModelRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskPublisherModel |
A Task containing the RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = await ModelGardenServiceClient.CreateAsync();
// Initialize request argument(s)
GetPublisherModelRequest request = new GetPublisherModelRequest
{
PublisherModelName = PublisherModelName.FromPublisherModel("[PUBLISHER]", "[MODEL]"),
LanguageCode = "",
View = PublisherModelView.Unspecified,
IsHuggingFaceModel = false,
HuggingFaceToken = "",
};
// Make the request
PublisherModel response = await modelGardenServiceClient.GetPublisherModelAsync(request);
GetPublisherModelAsync(PublisherModelName, CallSettings)
public virtual Task<PublisherModel> GetPublisherModelAsync(PublisherModelName name, CallSettings callSettings = null)
Gets a Model Garden publisher model.
Parameters | |
---|---|
Name | Description |
name |
PublisherModelName Required. The name of the PublisherModel resource.
Format:
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskPublisherModel |
A Task containing the RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = await ModelGardenServiceClient.CreateAsync();
// Initialize request argument(s)
PublisherModelName name = PublisherModelName.FromPublisherModel("[PUBLISHER]", "[MODEL]");
// Make the request
PublisherModel response = await modelGardenServiceClient.GetPublisherModelAsync(name);
GetPublisherModelAsync(PublisherModelName, CancellationToken)
public virtual Task<PublisherModel> GetPublisherModelAsync(PublisherModelName name, CancellationToken cancellationToken)
Gets a Model Garden publisher model.
Parameters | |
---|---|
Name | Description |
name |
PublisherModelName Required. The name of the PublisherModel resource.
Format:
|
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskPublisherModel |
A Task containing the RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = await ModelGardenServiceClient.CreateAsync();
// Initialize request argument(s)
PublisherModelName name = PublisherModelName.FromPublisherModel("[PUBLISHER]", "[MODEL]");
// Make the request
PublisherModel response = await modelGardenServiceClient.GetPublisherModelAsync(name);
GetPublisherModelAsync(string, CallSettings)
public virtual Task<PublisherModel> GetPublisherModelAsync(string name, CallSettings callSettings = null)
Gets a Model Garden publisher model.
Parameters | |
---|---|
Name | Description |
name |
string Required. The name of the PublisherModel resource.
Format:
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskPublisherModel |
A Task containing the RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = await ModelGardenServiceClient.CreateAsync();
// Initialize request argument(s)
string name = "publishers/[PUBLISHER]/models/[MODEL]";
// Make the request
PublisherModel response = await modelGardenServiceClient.GetPublisherModelAsync(name);
GetPublisherModelAsync(string, CancellationToken)
public virtual Task<PublisherModel> GetPublisherModelAsync(string name, CancellationToken cancellationToken)
Gets a Model Garden publisher model.
Parameters | |
---|---|
Name | Description |
name |
string Required. The name of the PublisherModel resource.
Format:
|
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskPublisherModel |
A Task containing the RPC response. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = await ModelGardenServiceClient.CreateAsync();
// Initialize request argument(s)
string name = "publishers/[PUBLISHER]/models/[MODEL]";
// Make the request
PublisherModel response = await modelGardenServiceClient.GetPublisherModelAsync(name);
ListPublisherModels(ListPublisherModelsRequest, CallSettings)
public virtual PagedEnumerable<ListPublisherModelsResponse, PublisherModel> ListPublisherModels(ListPublisherModelsRequest request, CallSettings callSettings = null)
Lists publisher models in Model Garden.
Parameters | |
---|---|
Name | Description |
request |
ListPublisherModelsRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListPublisherModelsResponsePublisherModel |
A pageable sequence of PublisherModel resources. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = ModelGardenServiceClient.Create();
// Initialize request argument(s)
ListPublisherModelsRequest request = new ListPublisherModelsRequest
{
Parent = "",
Filter = "",
View = PublisherModelView.Unspecified,
OrderBy = "",
LanguageCode = "",
ListAllVersions = false,
};
// Make the request
PagedEnumerable<ListPublisherModelsResponse, PublisherModel> response = modelGardenServiceClient.ListPublisherModels(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (PublisherModel 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 (ListPublisherModelsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (PublisherModel 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<PublisherModel> 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 (PublisherModel 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;
ListPublisherModels(string, string, int?, CallSettings)
public virtual PagedEnumerable<ListPublisherModelsResponse, PublisherModel> ListPublisherModels(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists publisher models in Model Garden.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The name of the Publisher from which to list the PublisherModels.
Format: |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableListPublisherModelsResponsePublisherModel |
A pageable sequence of PublisherModel resources. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = ModelGardenServiceClient.Create();
// Initialize request argument(s)
string parent = "";
// Make the request
PagedEnumerable<ListPublisherModelsResponse, PublisherModel> response = modelGardenServiceClient.ListPublisherModels(parent);
// Iterate over all response items, lazily performing RPCs as required
foreach (PublisherModel 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 (ListPublisherModelsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (PublisherModel 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<PublisherModel> 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 (PublisherModel 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;
ListPublisherModelsAsync(ListPublisherModelsRequest, CallSettings)
public virtual PagedAsyncEnumerable<ListPublisherModelsResponse, PublisherModel> ListPublisherModelsAsync(ListPublisherModelsRequest request, CallSettings callSettings = null)
Lists publisher models in Model Garden.
Parameters | |
---|---|
Name | Description |
request |
ListPublisherModelsRequest The request object containing all of the parameters for the API call. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableListPublisherModelsResponsePublisherModel |
A pageable asynchronous sequence of PublisherModel resources. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = await ModelGardenServiceClient.CreateAsync();
// Initialize request argument(s)
ListPublisherModelsRequest request = new ListPublisherModelsRequest
{
Parent = "",
Filter = "",
View = PublisherModelView.Unspecified,
OrderBy = "",
LanguageCode = "",
ListAllVersions = false,
};
// Make the request
PagedAsyncEnumerable<ListPublisherModelsResponse, PublisherModel> response = modelGardenServiceClient.ListPublisherModelsAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((PublisherModel 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((ListPublisherModelsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (PublisherModel 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<PublisherModel> 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 (PublisherModel 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;
ListPublisherModelsAsync(string, string, int?, CallSettings)
public virtual PagedAsyncEnumerable<ListPublisherModelsResponse, PublisherModel> ListPublisherModelsAsync(string parent, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists publisher models in Model Garden.
Parameters | |
---|---|
Name | Description |
parent |
string Required. The name of the Publisher from which to list the PublisherModels.
Format: |
pageToken |
string The token returned from the previous request. A value of |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableListPublisherModelsResponsePublisherModel |
A pageable asynchronous sequence of PublisherModel resources. |
// Create client
ModelGardenServiceClient modelGardenServiceClient = await ModelGardenServiceClient.CreateAsync();
// Initialize request argument(s)
string parent = "";
// Make the request
PagedAsyncEnumerable<ListPublisherModelsResponse, PublisherModel> response = modelGardenServiceClient.ListPublisherModelsAsync(parent);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((PublisherModel 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((ListPublisherModelsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (PublisherModel 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<PublisherModel> 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 (PublisherModel 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;
PollOnceDeployPublisherModel(string, CallSettings)
public virtual Operation<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata> PollOnceDeployPublisherModel(string operationName, CallSettings callSettings = null)
Poll an operation once, using an operationName
from a previous invocation of DeployPublisherModel
.
Parameters | |
---|---|
Name | Description |
operationName |
string The name of a previously invoked operation. Must not be |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationDeployPublisherModelResponseDeployPublisherModelOperationMetadata |
The result of polling the operation. |
PollOnceDeployPublisherModelAsync(string, CallSettings)
public virtual Task<Operation<DeployPublisherModelResponse, DeployPublisherModelOperationMetadata>> PollOnceDeployPublisherModelAsync(string operationName, CallSettings callSettings = null)
Asynchronously poll an operation once, using an operationName
from a previous invocation of
DeployPublisherModel
.
Parameters | |
---|---|
Name | Description |
operationName |
string The name of a previously invoked operation. Must not be |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationDeployPublisherModelResponseDeployPublisherModelOperationMetadata |
A task representing the result of polling the operation. |
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.