Class: Google::Apis::PlusDomainsV1::Acl

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

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

#descriptionString

Description of the access granted, suitable for display. Corresponds to the JSON property description

Returns:

  • (String)


32
33
34
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 32

def description
  @description
end

#domain_restrictedBoolean Also known as: domain_restricted?

Whether access is restricted to the domain. Corresponds to the JSON property domainRestricted

Returns:

  • (Boolean)


37
38
39
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 37

def domain_restricted
  @domain_restricted
end

#itemsArray<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

#kindString

Identifies this resource as a collection of access controls. Value: "plus#acl". Corresponds to the JSON property kind

Returns:

  • (String)


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