Reference documentation and code samples for the Cloud Talent Solution V4beta1 API class Google::Cloud::Talent::V4beta1::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.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all TenantService clients ::Google::Cloud::Talent::V4beta1::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.
- (config) — Configure the Client client.
- config (Client::Configuration)
#create_tenant
def create_tenant(request, options = nil) -> ::Google::Cloud::Talent::V4beta1::Tenant
def create_tenant(parent: nil, tenant: nil) -> ::Google::Cloud::Talent::V4beta1::Tenant
Creates a new tenant entity.
def create_tenant(request, options = nil) -> ::Google::Cloud::Talent::V4beta1::Tenant
create_tenant
via a request object, either of type
CreateTenantRequest or an equivalent Hash.
- request (::Google::Cloud::Talent::V4beta1::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::V4beta1::Tenant
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).
-
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::V4beta1::Tenant, ::Hash) — Required. The tenant to be created.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Talent::V4beta1::Tenant)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/talent/v4beta1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Talent::V4beta1::TenantService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Talent::V4beta1::CreateTenantRequest.new # Call the create_tenant method. result = client.create_tenant request # The returned object is of type Google::Cloud::Talent::V4beta1::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.
def delete_tenant(request, options = nil) -> ::Google::Protobuf::Empty
delete_tenant
via a request object, either of type
DeleteTenantRequest or an equivalent Hash.
- request (::Google::Cloud::Talent::V4beta1::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
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).
-
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".
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Protobuf::Empty)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/talent/v4beta1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Talent::V4beta1::TenantService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Talent::V4beta1::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::V4beta1::Tenant
def get_tenant(name: nil) -> ::Google::Cloud::Talent::V4beta1::Tenant
Retrieves specified tenant.
def get_tenant(request, options = nil) -> ::Google::Cloud::Talent::V4beta1::Tenant
get_tenant
via a request object, either of type
GetTenantRequest or an equivalent Hash.
- request (::Google::Cloud::Talent::V4beta1::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::V4beta1::Tenant
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).
-
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".
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Talent::V4beta1::Tenant)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/talent/v4beta1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Talent::V4beta1::TenantService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Talent::V4beta1::GetTenantRequest.new # Call the get_tenant method. result = client.get_tenant request # The returned object is of type Google::Cloud::Talent::V4beta1::Tenant. p result
#initialize
def initialize() { |config| ... } -> Client
Create a new TenantService client object.
- (config) — Configure the TenantService client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::Talent::V4beta1::TenantService::Client.new # Create a client using a custom configuration client = ::Google::Cloud::Talent::V4beta1::TenantService::Client.new do |config| config.timeout = 10.0 end
#list_tenants
def list_tenants(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Talent::V4beta1::Tenant>
def list_tenants(parent: nil, page_token: nil, page_size: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Talent::V4beta1::Tenant>
Lists all tenants associated with the project.
def list_tenants(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Talent::V4beta1::Tenant>
list_tenants
via a request object, either of type
ListTenantsRequest or an equivalent Hash.
- request (::Google::Cloud::Talent::V4beta1::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.