Class: Google::Apis::AdminDirectoryV1::Domains

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Domains

Returns a new instance of Domains.



2329
2330
2331
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2329

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#creation_timeFixnum

Creation time of the domain. Expressed in Unix time format. (Read-only). Corresponds to the JSON property creationTime

Returns:

  • (Fixnum)


2295
2296
2297
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2295

def creation_time
  @creation_time
end

#domain_aliasesArray<Google::Apis::AdminDirectoryV1::DomainAlias>

A list of domain alias objects. (Read-only) Corresponds to the JSON property domainAliases



2300
2301
2302
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2300

def domain_aliases
  @domain_aliases
end

#domain_nameString

The domain name of the customer. Corresponds to the JSON property domainName

Returns:

  • (String)


2305
2306
2307
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2305

def domain_name
  @domain_name
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


2310
2311
2312
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2310

def etag
  @etag
end

#is_primaryBoolean Also known as: is_primary?

Indicates if the domain is a primary domain (Read-only). Corresponds to the JSON property isPrimary

Returns:

  • (Boolean)


2315
2316
2317
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2315

def is_primary
  @is_primary
end

#kindString

Kind of resource this is. Corresponds to the JSON property kind

Returns:

  • (String)


2321
2322
2323
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2321

def kind
  @kind
end

#verifiedBoolean Also known as: verified?

Indicates the verification state of a domain. (Read-only). Corresponds to the JSON property verified

Returns:

  • (Boolean)


2326
2327
2328
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2326

def verified
  @verified
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2334
2335
2336
2337
2338
2339
2340
2341
2342
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2334

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