Reference documentation and code samples for the Discovery Engine V1BETA API class Google::Cloud::DiscoveryEngine::V1beta::ProjectService::Client.
Client for the ProjectService service.
Service for operations on the Project.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::Configuration
Configure the ProjectService Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all ProjectService clients ::Google::Cloud::DiscoveryEngine::V1beta::ProjectService::Client.configure do |config| config.timeout = 10.0 end
#configure
def configure() { |config| ... } -> Client::Configuration
Configure the ProjectService 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)
#initialize
def initialize() { |config| ... } -> Client
Create a new ProjectService client object.
- (config) — Configure the ProjectService client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::DiscoveryEngine::V1beta::ProjectService::Client.new # Create a client using a custom configuration client = ::Google::Cloud::DiscoveryEngine::V1beta::ProjectService::Client.new do |config| config.timeout = 10.0 end
#location_client
def location_client() -> Google::Cloud::Location::Locations::Client
Get the associated client for mix-in of the Locations.
- (Google::Cloud::Location::Locations::Client)
#operations_client
def operations_client() -> ::Google::Cloud::DiscoveryEngine::V1beta::ProjectService::Operations
Get the associated client for long-running operations.
#provision_project
def provision_project(request, options = nil) -> ::Gapic::Operation
def provision_project(name: nil, accept_data_use_terms: nil, data_use_terms_version: nil) -> ::Gapic::Operation
Provisions the project resource. During the process, related systems will get prepared and initialized.
Caller must read the Terms for data use, and optionally specify in request to provide consent to that service terms.
def provision_project(request, options = nil) -> ::Gapic::Operation
provision_project
via a request object, either of type
Google::Cloud::DiscoveryEngine::V1beta::ProvisionProjectRequest or an equivalent Hash.
- request (::Google::Cloud::DiscoveryEngine::V1beta::ProvisionProjectRequest, ::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 provision_project(name: nil, accept_data_use_terms: nil, data_use_terms_version: nil) -> ::Gapic::Operation
provision_project
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. Full resource name of a
Project, such as
projects/{project_id_or_number}
. -
accept_data_use_terms (::Boolean) — Required. Set to
true
to specify that caller has read and would like to give consent to the Terms for data use. -
data_use_terms_version (::String) — Required. The version of the Terms for data
use that caller has read
and would like to give consent to.
Acceptable version is
2022-11-23
, and this may change over time.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/discovery_engine/v1beta" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::DiscoveryEngine::V1beta::ProjectService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::DiscoveryEngine::V1beta::ProvisionProjectRequest.new # Call the provision_project method. result = client.provision_project request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#universe_domain
def universe_domain() -> String
The effective universe domain
- (String)