Managed Service for Microsoft Active Directory API . projects . locations . global_ . domains . sqlIntegrations

Instance Methods

close()

Close httplib2 connections.

get(name, x__xgafv=None)

Gets details of a single sqlIntegration.

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

Lists SQLIntegrations in a given domain.

list_next()

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
get(name, x__xgafv=None)
Gets details of a single sqlIntegration.

Args:
  name: string, Required. MangedOU resource name using the form: `projects/{project_id}/locations/global/domains/*/sqlIntegrations/{name}` (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Represents the SQL instance integrated with AD.
  "createTime": "A String", # Output only. The time the instance was created.
  "name": "A String", # The unique name of the sql integration in the form of `projects/{project_id}/locations/global/domains/{domain_name}/sqlIntegrations/{sql_integration}`
  "sqlInstance": "A String", # The full resource name of an integrated sql instance
  "state": "A String", # Output only. The current state of the managed OU.
  "updateTime": "A String", # Output only. Last update time for this SQL instance.
}
list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists SQLIntegrations in a given domain.

Args:
  parent: string, Required. The resource name of the SqlIntegrations using the form: `projects/{project_id}/locations/global/domains/*` (required)
  filter: string, Optional. Filter specifying constraints of a list operation. For example, `SqlIntegration.name="sql"`.
  orderBy: string, Optional. Specifies the ordering of results following syntax at https://cloud.google.com/apis/design/design_patterns#sorting_order.
  pageSize: integer, Optional. The maximum number of items to return. If not specified, a default value of 1000 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'ANIZATIONs 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 List request, if any.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # ListSQLIntegrationsResponse is the response message for ListSQLIntegrations method.
  "nextPageToken": "A String", # Token to retrieve the next page of results, or empty if there are no more results in the list.
  "sqlIntegrations": [ # A list of SQLIntegrations of a domain.
    { # Represents the SQL instance integrated with AD.
      "createTime": "A String", # Output only. The time the instance was created.
      "name": "A String", # The unique name of the sql integration in the form of `projects/{project_id}/locations/global/domains/{domain_name}/sqlIntegrations/{sql_integration}`
      "sqlInstance": "A String", # The full resource name of an integrated sql instance
      "state": "A String", # Output only. The current state of the managed OU.
      "updateTime": "A String", # Output only. Last update time for this SQL instance.
    },
  ],
  "unreachable": [ # A list of locations that could not be reached.
    "A String",
  ],
}
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.