Class Google::Cloud::AIPlatform::V1::SpecialistPoolService::Client (v0.1.0)

Client for the SpecialistPoolService service.

A service for creating and managing Customer SpecialistPools. When customers start Data Labeling jobs, they can reuse/create Specialist Pools to bring their own Specialists to label the data. Customers can add/remove Managers for the Specialist Pool on Cloud console, then Managers will get email notifications to manage Specialists and tasks on CrowdCompute console.

Inherits

  • Object

Methods

.configure

def self.configure() { |config| ... } -> Client::Configuration

Configure the SpecialistPoolService Client class.

See Configuration for a description of the configuration fields.

Yields
  • (config) — Configure the Client client.
Yield Parameter
Example
# Modify the configuration for all SpecialistPoolService clients
::Google::Cloud::AIPlatform::V1::SpecialistPoolService::Client.configure do |config|
  config.timeout = 10.0
end

#configure

def configure() { |config| ... } -> Client::Configuration

Configure the SpecialistPoolService Client instance.

The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.

See Configuration for a description of the configuration fields.

Yields
  • (config) — Configure the Client client.
Yield Parameter

#create_specialist_pool

def create_specialist_pool(request, options = nil) -> ::Gapic::Operation
def create_specialist_pool(parent: nil, specialist_pool: nil) -> ::Gapic::Operation

Creates a SpecialistPool.

Overloads
def create_specialist_pool(request, options = nil) -> ::Gapic::Operation
Pass arguments to create_specialist_pool via a request object, either of type CreateSpecialistPoolRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::AIPlatform::V1::CreateSpecialistPoolRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
  • options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def create_specialist_pool(parent: nil, specialist_pool: nil) -> ::Gapic::Operation
Pass arguments to create_specialist_pool via keyword arguments. Note that at least one keyword argument is required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash as a request object (see above).
Parameters
  • parent (::String) — Required. The parent Project name for the new SpecialistPool. The form is projects/{project}/locations/{location}.
  • specialist_pool (::Google::Cloud::AIPlatform::V1::SpecialistPool, ::Hash) — Required. The SpecialistPool to create.
Yields
  • (response, operation) — Access the result along with the RPC operation
Yield Parameters
  • response (::Gapic::Operation)
  • operation (::GRPC::ActiveCall::Operation)
Returns
  • (::Gapic::Operation)
Raises
  • (::Google::Cloud::Error) — if the RPC is aborted.
Example

Basic example

require "google/cloud/ai_platform/v1"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::AIPlatform::V1::SpecialistPoolService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::AIPlatform::V1::CreateSpecialistPoolRequest.new

# Call the create_specialist_pool method.
result = client.create_specialist_pool request

# The returned object is of type Gapic::Operation. You can use this
# object to check the status of an operation, cancel it, or wait
# for results. Here is how to block until completion:
result.wait_until_done! timeout: 60
if result.response?
  p result.response
else
  puts "Error!"
end

#delete_specialist_pool

def delete_specialist_pool(request, options = nil) -> ::Gapic::Operation
def delete_specialist_pool(name: nil, force: nil) -> ::Gapic::Operation

Deletes a SpecialistPool as well as all Specialists in the pool.

Overloads
def delete_specialist_pool(request, options = nil) -> ::Gapic::Operation
Pass arguments to delete_specialist_pool via a request object, either of type DeleteSpecialistPoolRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::AIPlatform::V1::DeleteSpecialistPoolRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
  • options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def delete_specialist_pool(name: nil, force: nil) -> ::Gapic::Operation
Pass arguments to delete_specialist_pool via keyword arguments. Note that at least one keyword argument is required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash as a request object (see above).
Parameters
  • name (::String) — Required. The resource name of the SpecialistPool to delete. Format: projects/{project}/locations/{location}/specialistPools/{specialist_pool}
  • force (::Boolean) — If set to true, any specialist managers in this SpecialistPool will also be deleted. (Otherwise, the request will only work if the SpecialistPool has no specialist managers.)
Yields
  • (response, operation) — Access the result along with the RPC operation
Yield Parameters
  • response (::Gapic::Operation)
  • operation (::GRPC::ActiveCall::Operation)
Returns
  • (::Gapic::Operation)
Raises
  • (::Google::Cloud::Error) — if the RPC is aborted.
Example

Basic example

require "google/cloud/ai_platform/v1"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::AIPlatform::V1::SpecialistPoolService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::AIPlatform::V1::DeleteSpecialistPoolRequest.new

# Call the delete_specialist_pool method.
result = client.delete_specialist_pool request

# The returned object is of type Gapic::Operation. You can use this
# object to check the status of an operation, cancel it, or wait
# for results. Here is how to block until completion:
result.wait_until_done! timeout: 60
if result.response?
  p result.response
else
  puts "Error!"
end

#get_specialist_pool

def get_specialist_pool(request, options = nil) -> ::Google::Cloud::AIPlatform::V1::SpecialistPool
def get_specialist_pool(name: nil) -> ::Google::Cloud::AIPlatform::V1::SpecialistPool

Gets a SpecialistPool.

Overloads
def get_specialist_pool(request, options = nil) -> ::Google::Cloud::AIPlatform::V1::SpecialistPool
Pass arguments to get_specialist_pool via a request object, either of type GetSpecialistPoolRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::AIPlatform::V1::GetSpecialistPoolRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
  • options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_specialist_pool(name: nil) -> ::Google::Cloud::AIPlatform::V1::SpecialistPool
Pass arguments to get_specialist_pool via keyword arguments. Note that at least one keyword argument is required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash as a request object (see above).
Parameter
  • name (::String) — Required. The name of the SpecialistPool resource. The form is projects/{project}/locations/{location}/specialistPools/{specialist_pool}.
Yields
  • (response, operation) — Access the result along with the RPC operation
Yield Parameters
Raises
  • (::Google::Cloud::Error) — if the RPC is aborted.
Example

Basic example

require "google/cloud/ai_platform/v1"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::AIPlatform::V1::SpecialistPoolService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::AIPlatform::V1::GetSpecialistPoolRequest.new

# Call the get_specialist_pool method.
result = client.get_specialist_pool request

# The returned object is of type Google::Cloud::AIPlatform::V1::SpecialistPool.
p result

#initialize

def initialize() { |config| ... } -> Client

Create a new SpecialistPoolService client object.

Yields
  • (config) — Configure the SpecialistPoolService client.
Yield Parameter
Returns
  • (Client) — a new instance of Client
Example
# Create a client using the default configuration
client = ::Google::Cloud::AIPlatform::V1::SpecialistPoolService::Client.new

# Create a client using a custom configuration
client = ::Google::Cloud::AIPlatform::V1::SpecialistPoolService::Client.new do |config|
  config.timeout = 10.0
end

#list_specialist_pools

def list_specialist_pools(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::AIPlatform::V1::SpecialistPool>
def list_specialist_pools(parent: nil, page_size: nil, page_token: nil, read_mask: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::AIPlatform::V1::SpecialistPool>

Lists SpecialistPools in a Location.

Overloads
def list_specialist_pools(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::AIPlatform::V1::SpecialistPool>
Pass arguments to list_specialist_pools via a request object, either of type ListSpecialistPoolsRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::AIPlatform::V1::ListSpecialistPoolsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
  • options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def list_specialist_pools(parent: nil, page_size: nil, page_token: nil, read_mask: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::AIPlatform::V1::SpecialistPool>
Pass arguments to list_specialist_pools via keyword arguments. Note that at least one keyword argument is required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash as a request object (see above).
Parameters
Yields
  • (response, operation) — Access the result along with the RPC operation
Yield Parameters
Returns
Raises
  • (::Google::Cloud::Error) — if the RPC is aborted.
Example

Basic example

require "google/cloud/ai_platform/v1"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::AIPlatform::V1::SpecialistPoolService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::AIPlatform::V1::ListSpecialistPoolsRequest.new

# Call the list_specialist_pools method.
result = client.list_specialist_pools request

# The returned object is of type Gapic::PagedEnumerable. You can
# iterate over all elements by calling #each, and the enumerable
# will lazily make API calls to fetch subsequent pages. Other
# methods are also available for managing paging directly.
result.each do |response|
  # Each element is of type ::Google::Cloud::AIPlatform::V1::SpecialistPool.
  p response
end

#operations_client

def operations_client() -> ::Google::Cloud::AIPlatform::V1::SpecialistPoolService::Operations

Get the associated client for long-running operations.

#update_specialist_pool

def update_specialist_pool(request, options = nil) -> ::Gapic::Operation
def update_specialist_pool(specialist_pool: nil, update_mask: nil) -> ::Gapic::Operation

Updates a SpecialistPool.

Overloads
def update_specialist_pool(request, options = nil) -> ::Gapic::Operation
Pass arguments to update_specialist_pool via a request object, either of type UpdateSpecialistPoolRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::AIPlatform::V1::UpdateSpecialistPoolRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
  • options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def update_specialist_pool(specialist_pool: nil, update_mask: nil) -> ::Gapic::Operation
Pass arguments to update_specialist_pool via keyword arguments. Note that at least one keyword argument is required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash as a request object (see above).
Parameters
Yields
  • (response, operation) — Access the result along with the RPC operation
Yield Parameters
  • response (::Gapic::Operation)
  • operation (::GRPC::ActiveCall::Operation)
Returns
  • (::Gapic::Operation)
Raises
  • (::Google::Cloud::Error) — if the RPC is aborted.
Example

Basic example

require "google/cloud/ai_platform/v1"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::AIPlatform::V1::SpecialistPoolService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::AIPlatform::V1::UpdateSpecialistPoolRequest.new

# Call the update_specialist_pool method.
result = client.update_specialist_pool request

# The returned object is of type Gapic::Operation. You can use this
# object to check the status of an operation, cancel it, or wait
# for results. Here is how to block until completion:
result.wait_until_done! timeout: 60
if result.response?
  p result.response
else
  puts "Error!"
end