Admin SDK . domainAliases

Instance Methods

close()

Close httplib2 connections.

delete(customer, domainAliasName, x__xgafv=None)

Deletes a domain Alias of the customer.

get(customer, domainAliasName, x__xgafv=None)

Retrieves a domain alias of the customer.

insert(customer, body=None, x__xgafv=None)

Inserts a domain alias of the customer.

list(customer, parentDomainName=None, x__xgafv=None)

Lists the domain aliases of the customer.

Method Details

close()
Close httplib2 connections.
delete(customer, domainAliasName, x__xgafv=None)
Deletes a domain Alias of the customer.

Args:
  customer: string, Immutable ID of the G Suite account. (required)
  domainAliasName: string, Name of domain alias to be retrieved. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format
get(customer, domainAliasName, x__xgafv=None)
Retrieves a domain alias of the customer.

Args:
  customer: string, Immutable ID of the G Suite account. (required)
  domainAliasName: string, Name of domain alias to be retrieved. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    {
    "domainAliasName": "A String", # The domain alias name.
    "creationTime": "A String", # The creation time of the domain alias. (Read-only).
    "verified": True or False, # Indicates the verification state of a domain alias. (Read-only)
    "parentDomainName": "A String", # The parent domain name that the domain alias is associated with. This can either be a primary or secondary domain name within a customer.
    "etag": "A String", # ETag of the resource.
    "kind": "admin#directory#domainAlias", # Kind of resource this is.
  }
insert(customer, body=None, x__xgafv=None)
Inserts a domain alias of the customer.

Args:
  customer: string, Immutable ID of the G Suite account. (required)
  body: object, The request body.
    The object takes the form of:

{
  "domainAliasName": "A String", # The domain alias name.
  "creationTime": "A String", # The creation time of the domain alias. (Read-only).
  "verified": True or False, # Indicates the verification state of a domain alias. (Read-only)
  "parentDomainName": "A String", # The parent domain name that the domain alias is associated with. This can either be a primary or secondary domain name within a customer.
  "etag": "A String", # ETag of the resource.
  "kind": "admin#directory#domainAlias", # Kind of resource this is.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    {
    "domainAliasName": "A String", # The domain alias name.
    "creationTime": "A String", # The creation time of the domain alias. (Read-only).
    "verified": True or False, # Indicates the verification state of a domain alias. (Read-only)
    "parentDomainName": "A String", # The parent domain name that the domain alias is associated with. This can either be a primary or secondary domain name within a customer.
    "etag": "A String", # ETag of the resource.
    "kind": "admin#directory#domainAlias", # Kind of resource this is.
  }
list(customer, parentDomainName=None, x__xgafv=None)
Lists the domain aliases of the customer.

Args:
  customer: string, Immutable ID of the G Suite account. (required)
  parentDomainName: string, Name of the parent domain for which domain aliases are to be fetched.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    {
    "kind": "admin#directory#domainAliases", # Kind of resource this is.
    "domainAliases": [ # List of domain alias objects.
      {
        "domainAliasName": "A String", # The domain alias name.
        "creationTime": "A String", # The creation time of the domain alias. (Read-only).
        "verified": True or False, # Indicates the verification state of a domain alias. (Read-only)
        "parentDomainName": "A String", # The parent domain name that the domain alias is associated with. This can either be a primary or secondary domain name within a customer.
        "etag": "A String", # ETag of the resource.
        "kind": "admin#directory#domainAlias", # Kind of resource this is.
      },
    ],
    "etag": "A String", # ETag of the resource.
  }