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

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

Overview

JSON template for Domain object in Directory API.

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) ⇒ Domains

Returns a new instance of Domains.



1516
1517
1518
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1516

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

Instance Attribute Details

#creation_timeFixnum

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

Returns:

  • (Fixnum)


1482
1483
1484
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1482

def creation_time
  @creation_time
end

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

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



1487
1488
1489
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1487

def domain_aliases
  @domain_aliases
end

#domain_nameString

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

Returns:

  • (String)


1492
1493
1494
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1492

def domain_name
  @domain_name
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


1497
1498
1499
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1497

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)


1502
1503
1504
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1502

def is_primary
  @is_primary
end

#kindString

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

Returns:

  • (String)


1508
1509
1510
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1508

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)


1513
1514
1515
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1513

def verified
  @verified
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1521
1522
1523
1524
1525
1526
1527
1528
1529
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1521

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