Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAclConfig
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAclConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Access Control Configuration.
Instance Attribute Summary collapse
-
#idp_config ⇒ Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaIdpConfig
Identity Provider Config.
-
#name ⇒ String
Immutable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaAclConfig
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaAclConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaAclConfig
Returns a new instance of GoogleCloudDiscoveryengineV1alphaAclConfig.
8859 8860 8861 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 8859 def initialize(**args) update!(**args) end |
Instance Attribute Details
#idp_config ⇒ Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaIdpConfig
Identity Provider Config.
Corresponds to the JSON property idpConfig
8850 8851 8852 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 8850 def idp_config @idp_config end |
#name ⇒ String
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
8857 8858 8859 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 8857 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8864 8865 8866 8867 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 8864 def update!(**args) @idp_config = args[:idp_config] if args.key?(:idp_config) @name = args[:name] if args.key?(:name) end |