Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAclConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Access Control Configuration.
Instance Attribute Summary collapse
-
#idp_config ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfig
Identity Provider Config.
-
#name ⇒ String
Immutable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaAclConfig
constructor
A new instance of GoogleCloudDiscoveryengineV1betaAclConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaAclConfig
Returns a new instance of GoogleCloudDiscoveryengineV1betaAclConfig.
17802 17803 17804 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 17802 def initialize(**args) update!(**args) end |
Instance Attribute Details
#idp_config ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdpConfig
Identity Provider Config.
Corresponds to the JSON property idpConfig
17793 17794 17795 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 17793 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
17800 17801 17802 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 17800 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17807 17808 17809 17810 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 17807 def update!(**args) @idp_config = args[:idp_config] if args.key?(:idp_config) @name = args[:name] if args.key?(:name) end |