class Google::Apis::PlusDomainsV1::Acl
Attributes
description[RW]
Description of the access granted, suitable for display. Corresponds to the JSON property `description` @return [String]
domain_restricted[RW]
Whether access is restricted to the domain. Corresponds to the JSON property `domainRestricted` @return [Boolean]
domain_restricted?[RW]
Whether access is restricted to the domain. Corresponds to the JSON property `domainRestricted` @return [Boolean]
items[RW]
The list of access entries. Corresponds to the JSON property `items` @return [Array<Google::Apis::PlusDomainsV1::PlusDomainsAclentryResource>]
kind[RW]
Identifies this resource as a collection of access controls. Value: “plus#acl”. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/plus_domains_v1/classes.rb, line 50 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# 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