class Google::Apis::AdminDirectoryV1::Domains
Attributes
Creation time of the domain. Expressed in [Unix time](en.wikipedia.org/ wiki/Epoch_time) format. (Read-only). Corresponds to the JSON property `creationTime` @return [Fixnum]
List of domain alias objects. (Read-only) Corresponds to the JSON property `domainAliases` @return [Array<Google::Apis::AdminDirectoryV1::DomainAlias>]
The domain name of the customer. Corresponds to the JSON property `domainName` @return [String]
ETag of the resource. Corresponds to the JSON property `etag` @return [String]
Indicates if the domain is a primary domain (Read-only). Corresponds to the JSON property `isPrimary` @return [Boolean]
Indicates if the domain is a primary domain (Read-only). Corresponds to the JSON property `isPrimary` @return [Boolean]
Kind of resource this is. Corresponds to the JSON property `kind` @return [String]
Indicates the verification state of a domain. (Read-only). Corresponds to the JSON property `verified` @return [Boolean]
Indicates the verification state of a domain. (Read-only). Corresponds to the JSON property `verified` @return [Boolean]
Public Class Methods
# File lib/google/apis/admin_directory_v1/classes.rb, line 1852 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/admin_directory_v1/classes.rb, line 1857 def update!(**args) @creation_time = args[:creation_time] if args.key?(:creation_time) @domain_aliases = args[:domain_aliases] if args.key?(:domain_aliases) @domain_name = args[:domain_name] if args.key?(:domain_name) @etag = args[:etag] if args.key?(:etag) @is_primary = args[:is_primary] if args.key?(:is_primary) @kind = args[:kind] if args.key?(:kind) @verified = args[:verified] if args.key?(:verified) end