Reference documentation and code samples for the Discovery Engine V1BETA API class Google::Cloud::DiscoveryEngine::V1beta::AclConfigService::Rest::Client.
REST client for the AclConfigService service.
Service for managing Acl Configuration.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::ConfigurationConfigure the AclConfigService Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all AclConfigService clients ::Google::Cloud::DiscoveryEngine::V1beta::AclConfigService::Rest::Client.configure do |config| config.timeout = 10.0 end
#configure
def configure() { |config| ... } -> Client::ConfigurationConfigure the AclConfigService 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)
#get_acl_config
def get_acl_config(request, options = nil) -> ::Google::Cloud::DiscoveryEngine::V1beta::AclConfig
def get_acl_config(name: nil) -> ::Google::Cloud::DiscoveryEngine::V1beta::AclConfigGets the AclConfig.
def get_acl_config(request, options = nil) -> ::Google::Cloud::DiscoveryEngine::V1beta::AclConfigget_acl_config via a request object, either of type
GetAclConfigRequest or an equivalent Hash.
- request (::Google::Cloud::DiscoveryEngine::V1beta::GetAclConfigRequest, ::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_acl_config(name: nil) -> ::Google::Cloud::DiscoveryEngine::V1beta::AclConfigget_acl_config 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).
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::DiscoveryEngine::V1beta::AclConfig)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call 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::AclConfigService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::DiscoveryEngine::V1beta::GetAclConfigRequest.new # Call the get_acl_config method. result = client.get_acl_config request # The returned object is of type Google::Cloud::DiscoveryEngine::V1beta::AclConfig. p result
#initialize
def initialize() { |config| ... } -> ClientCreate a new AclConfigService REST client object.
- (config) — Configure the AclConfigService client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::DiscoveryEngine::V1beta::AclConfigService::Rest::Client.new # Create a client using a custom configuration client = ::Google::Cloud::DiscoveryEngine::V1beta::AclConfigService::Rest::Client.new do |config| config.timeout = 10.0 end
#location_client
def location_client() -> Google::Cloud::Location::Locations::Rest::ClientGet the associated client for mix-in of the Locations.
- (Google::Cloud::Location::Locations::Rest::Client)
#logger
def logger() -> LoggerThe logger used for request/response debug logging.
- (Logger)
#universe_domain
def universe_domain() -> StringThe effective universe domain
- (String)
#update_acl_config
def update_acl_config(request, options = nil) -> ::Google::Cloud::DiscoveryEngine::V1beta::AclConfig
def update_acl_config(acl_config: nil) -> ::Google::Cloud::DiscoveryEngine::V1beta::AclConfigDefault ACL configuration for use in a location of a customer's project. Updates will only reflect to new data stores. Existing data stores will still use the old value.
def update_acl_config(request, options = nil) -> ::Google::Cloud::DiscoveryEngine::V1beta::AclConfigupdate_acl_config via a request object, either of type
UpdateAclConfigRequest or an equivalent Hash.
- request (::Google::Cloud::DiscoveryEngine::V1beta::UpdateAclConfigRequest, ::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_acl_config(acl_config: nil) -> ::Google::Cloud::DiscoveryEngine::V1beta::AclConfigupdate_acl_config 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).
- acl_config (::Google::Cloud::DiscoveryEngine::V1beta::AclConfig, ::Hash)
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::DiscoveryEngine::V1beta::AclConfig)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call 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::AclConfigService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::DiscoveryEngine::V1beta::UpdateAclConfigRequest.new # Call the update_acl_config method. result = client.update_acl_config request # The returned object is of type Google::Cloud::DiscoveryEngine::V1beta::AclConfig. p result