Class: Google::Apis::PlusDomainsV1::Acl
- Inherits:
-
Object
- Object
- Google::Apis::PlusDomainsV1::Acl
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/plus_domains_v1/classes.rb,
generated/google/apis/plus_domains_v1/representations.rb,
generated/google/apis/plus_domains_v1/representations.rb
Instance Attribute Summary collapse
-
#description ⇒ String
Description of the access granted, suitable for display.
-
#domain_restricted ⇒ Boolean
(also: #domain_restricted?)
Whether access is restricted to the domain.
-
#items ⇒ Array<Google::Apis::PlusDomainsV1::PlusDomainsAclentryResource>
The list of access entries.
-
#kind ⇒ String
Identifies this resource as a collection of access controls.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Acl
constructor
A new instance of Acl.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Acl
Returns a new instance of Acl
50 51 52 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 50 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Description of the access granted, suitable for display.
Corresponds to the JSON property description
32 33 34 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 32 def description @description end |
#domain_restricted ⇒ Boolean Also known as: domain_restricted?
Whether access is restricted to the domain.
Corresponds to the JSON property domainRestricted
37 38 39 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 37 def domain_restricted @domain_restricted end |
#items ⇒ Array<Google::Apis::PlusDomainsV1::PlusDomainsAclentryResource>
The list of access entries.
Corresponds to the JSON property items
43 44 45 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 43 def items @items end |
#kind ⇒ String
Identifies this resource as a collection of access controls. Value: "plus#acl".
Corresponds to the JSON property kind
48 49 50 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 48 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
55 56 57 58 59 60 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 55 def update!(**args) @description = args[:description] if args.key?(:description) @domain_restricted = args[:domain_restricted] if args.key?(:domain_restricted) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |