BeyondCorp API . organizations . locations . subscriptions

Instance Methods

close()

Close httplib2 connections.

create(parent, body=None, x__xgafv=None)

Creates a new BeyondCorp Enterprise Subscription in a given organization. Location will always be global as BeyondCorp subscriptions are per organization.

get(name, x__xgafv=None)

Gets details of a single Subscription.

list(parent, pageSize=None, pageToken=None, x__xgafv=None)

Lists Subscriptions in a given organization and location.

list_next()

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
create(parent, body=None, x__xgafv=None)
Creates a new BeyondCorp Enterprise Subscription in a given organization. Location will always be global as BeyondCorp subscriptions are per organization.

Args:
  parent: string, Required. The resource name of the subscription location using the form: `organizations/{organization_id}/locations/{location}` (required)
  body: object, The request body.
    The object takes the form of:

{ # A BeyondCorp Subscription resource represents BeyondCorp Enterprise Subscription. BeyondCorp Enterprise Subscription enables BeyondCorp Enterprise permium features for an organization.
  "autoRenewEnabled": True or False, # Output only. Represents that, if subscription will renew or end when the term ends.
  "createTime": "A String", # Output only. Create time of the subscription.
  "endTime": "A String", # Output only. End time of the subscription.
  "name": "A String", # Required. Unique resource name of the Subscription. The name is ignored when creating a subscription.
  "seatCount": "A String", # Output only. Number of seats in the subscription.
  "sku": "A String", # Required. SKU of subscription.
  "startTime": "A String", # Output only. Start time of the subscription.
  "state": "A String", # Output only. The current state of the subscription.
  "type": "A String", # Required. Type of subscription.
}

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

Returns:
  An object of the form:

    { # A BeyondCorp Subscription resource represents BeyondCorp Enterprise Subscription. BeyondCorp Enterprise Subscription enables BeyondCorp Enterprise permium features for an organization.
  "autoRenewEnabled": True or False, # Output only. Represents that, if subscription will renew or end when the term ends.
  "createTime": "A String", # Output only. Create time of the subscription.
  "endTime": "A String", # Output only. End time of the subscription.
  "name": "A String", # Required. Unique resource name of the Subscription. The name is ignored when creating a subscription.
  "seatCount": "A String", # Output only. Number of seats in the subscription.
  "sku": "A String", # Required. SKU of subscription.
  "startTime": "A String", # Output only. Start time of the subscription.
  "state": "A String", # Output only. The current state of the subscription.
  "type": "A String", # Required. Type of subscription.
}
get(name, x__xgafv=None)
Gets details of a single Subscription.

Args:
  name: string, Required. The resource name of Subscription using the form: `organizations/{organization_id}/locations/{location}/subscriptions/{subscription_id}` (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A BeyondCorp Subscription resource represents BeyondCorp Enterprise Subscription. BeyondCorp Enterprise Subscription enables BeyondCorp Enterprise permium features for an organization.
  "autoRenewEnabled": True or False, # Output only. Represents that, if subscription will renew or end when the term ends.
  "createTime": "A String", # Output only. Create time of the subscription.
  "endTime": "A String", # Output only. End time of the subscription.
  "name": "A String", # Required. Unique resource name of the Subscription. The name is ignored when creating a subscription.
  "seatCount": "A String", # Output only. Number of seats in the subscription.
  "sku": "A String", # Required. SKU of subscription.
  "startTime": "A String", # Output only. Start time of the subscription.
  "state": "A String", # Output only. The current state of the subscription.
  "type": "A String", # Required. Type of subscription.
}
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists Subscriptions in a given organization and location.

Args:
  parent: string, Required. The resource name of Subscription using the form: `organizations/{organization_id}/locations/{location}` (required)
  pageSize: integer, Optional. The maximum number of items to return. If not specified, a default value of 50 will be used by the service. Regardless of the page_size value, the response may include a partial list and a caller should only rely on response's next_page_token to determine if there are more instances left to be queried.
  pageToken: string, Optional. The next_page_token value returned from a previous ListSubscriptionsRequest, if any.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response message for BeyondCorp.ListSubscriptions.
  "nextPageToken": "A String", # A token to retrieve the next page of results, or empty if there are no more results in the list.
  "subscriptions": [ # A list of BeyondCorp Subscriptions in the organization.
    { # A BeyondCorp Subscription resource represents BeyondCorp Enterprise Subscription. BeyondCorp Enterprise Subscription enables BeyondCorp Enterprise permium features for an organization.
      "autoRenewEnabled": True or False, # Output only. Represents that, if subscription will renew or end when the term ends.
      "createTime": "A String", # Output only. Create time of the subscription.
      "endTime": "A String", # Output only. End time of the subscription.
      "name": "A String", # Required. Unique resource name of the Subscription. The name is ignored when creating a subscription.
      "seatCount": "A String", # Output only. Number of seats in the subscription.
      "sku": "A String", # Required. SKU of subscription.
      "startTime": "A String", # Output only. Start time of the subscription.
      "state": "A String", # Output only. The current state of the subscription.
      "type": "A String", # Required. Type of subscription.
    },
  ],
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.