Cloud Talent Solution V4 API - Class Google::Cloud::Talent::V4::TenantService::Client (v0.7.0)

Reference documentation and code samples for the Cloud Talent Solution V4 API class Google::Cloud::Talent::V4::TenantService::Client.

Client for the TenantService service.

A service that handles tenant management, including CRUD and enumeration.

Inherits

  • Object

Methods

.configure

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

Configure the TenantService 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 TenantService clients
::Google::Cloud::Talent::V4::TenantService::Client.configure do |config|
  config.timeout = 10.0
end

#configure

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

Configure the TenantService 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_tenant

def create_tenant(request, options = nil) -> ::Google::Cloud::Talent::V4::Tenant
def create_tenant(parent: nil, tenant: nil) -> ::Google::Cloud::Talent::V4::Tenant

Creates a new tenant entity.

Overloads
def create_tenant(request, options = nil) -> ::Google::Cloud::Talent::V4::Tenant
Pass arguments to create_tenant via a request object, either of type CreateTenantRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::Talent::V4::CreateTenantRequest, ::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_tenant(parent: nil, tenant: nil) -> ::Google::Cloud::Talent::V4::Tenant
Pass arguments to create_tenant 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. Resource name of the project under which the tenant is created.

    The format is "projects/{project_id}", for example, "projects/foo".

  • tenant (::Google::Cloud::Talent::V4::Tenant, ::Hash) — Required. The tenant to be created.
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/talent/v4"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::Talent::V4::TenantService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::Talent::V4::CreateTenantRequest.new

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

# The returned object is of type Google::Cloud::Talent::V4::Tenant.
p result

#delete_tenant

def delete_tenant(request, options = nil) -> ::Google::Protobuf::Empty
def delete_tenant(name: nil) -> ::Google::Protobuf::Empty

Deletes specified tenant.

Overloads
def delete_tenant(request, options = nil) -> ::Google::Protobuf::Empty
Pass arguments to delete_tenant via a request object, either of type DeleteTenantRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::Talent::V4::DeleteTenantRequest, ::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_tenant(name: nil) -> ::Google::Protobuf::Empty
Pass arguments to delete_tenant 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 resource name of the tenant to be deleted.

    The format is "projects/{project_id}/tenants/{tenant_id}", for example, "projects/foo/tenants/bar".

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/talent/v4"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::Talent::V4::TenantService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::Talent::V4::DeleteTenantRequest.new

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

# The returned object is of type Google::Protobuf::Empty.
p result

#get_tenant

def get_tenant(request, options = nil) -> ::Google::Cloud::Talent::V4::Tenant
def get_tenant(name: nil) -> ::Google::Cloud::Talent::V4::Tenant

Retrieves specified tenant.

Overloads
def get_tenant(request, options = nil) -> ::Google::Cloud::Talent::V4::Tenant
Pass arguments to get_tenant via a request object, either of type GetTenantRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::Talent::V4::GetTenantRequest, ::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_tenant(name: nil) -> ::Google::Cloud::Talent::V4::Tenant
Pass arguments to get_tenant 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 resource name of the tenant to be retrieved.

    The format is "projects/{project_id}/tenants/{tenant_id}", for example, "projects/foo/tenants/bar".

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/talent/v4"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::Talent::V4::TenantService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::Talent::V4::GetTenantRequest.new

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

# The returned object is of type Google::Cloud::Talent::V4::Tenant.
p result

#initialize

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

Create a new TenantService client object.

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

# Create a client using a custom configuration
client = ::Google::Cloud::Talent::V4::TenantService::Client.new do |config|
  config.timeout = 10.0
end

#list_tenants

def list_tenants(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Talent::V4::Tenant>
def list_tenants(parent: nil, page_token: nil, page_size: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Talent::V4::Tenant>

Lists all tenants associated with the project.

Overloads
def list_tenants(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Talent::V4::Tenant>
Pass arguments to list_tenants via a request object, either of type ListTenantsRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::Talent::V4::ListTenantsRequest, ::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_tenants(parent: nil, page_token: nil, page_size: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Talent::V4::Tenant>
Pass arguments to list_tenants 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. Resource name of the project under which the tenant is created.

    The format is "projects/{project_id}", for example, "projects/foo".

  • page_token (::String) — The starting indicator from which to return results.
  • page_size (::Integer) — The maximum number of tenants to be returned, at most 100. Default is 100 if a non-positive number is provided.
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/talent/v4"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::Talent::V4::TenantService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::Talent::V4::ListTenantsRequest.new

# Call the list_tenants method.
result = client.list_tenants 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::Talent::V4::Tenant.
  p response
end

#update_tenant

def update_tenant(request, options = nil) -> ::Google::Cloud::Talent::V4::Tenant
def update_tenant(tenant: nil, update_mask: nil) -> ::Google::Cloud::Talent::V4::Tenant

Updates specified tenant.

Overloads
def update_tenant(request, options = nil) -> ::Google::Cloud::Talent::V4::Tenant
Pass arguments to update_tenant via a request object, either of type UpdateTenantRequest or an equivalent Hash.
Parameters
  • request (::Google::Cloud::Talent::V4::UpdateTenantRequest, ::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_tenant(tenant: nil, update_mask: nil) -> ::Google::Cloud::Talent::V4::Tenant
Pass arguments to update_tenant 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
  • tenant (::Google::Cloud::Talent::V4::Tenant, ::Hash) — Required. The tenant resource to replace the current resource in the system.
  • update_mask (::Google::Protobuf::FieldMask, ::Hash) — Strongly recommended for the best service experience.

    If update_mask is provided, only the specified fields in tenant are updated. Otherwise all the fields are updated.

    A field mask to specify the tenant fields to be updated. Only top level fields of Tenant are supported.

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/talent/v4"

# Create a client object. The client can be reused for multiple calls.
client = Google::Cloud::Talent::V4::TenantService::Client.new

# Create a request. To set request fields, pass in keyword arguments.
request = Google::Cloud::Talent::V4::UpdateTenantRequest.new

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

# The returned object is of type Google::Cloud::Talent::V4::Tenant.
p result