Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAclConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb

Overview

Access Control Configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaAclConfig

Returns a new instance of GoogleCloudDiscoveryengineV1alphaAclConfig.



2581
2582
2583
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2581

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#idp_configGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaIdpConfig

Identity Provider Config. Corresponds to the JSON property idpConfig



2572
2573
2574
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2572

def idp_config
  @idp_config
end

#nameString

Immutable. The full resource name of the acl configuration. Format: projects/ project/locations/location/aclConfig. This field must be a UTF-8 encoded string with a length limit of 1024 characters. Corresponds to the JSON property name

Returns:

  • (String)


2579
2580
2581
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2579

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2586
2587
2588
2589
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2586

def update!(**args)
  @idp_config = args[:idp_config] if args.key?(:idp_config)
  @name = args[:name] if args.key?(:name)
end