Close httplib2 connections.
Gets details about a Resource deployed by Infra Manager.
list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists Resources in a given revision.
Retrieves the next page of results.
close()
Close httplib2 connections.
get(name, x__xgafv=None)
Gets details about a Resource deployed by Infra Manager. Args: name: string, Required. The name of the Resource in the format: 'projects/{project_id}/locations/{location}/deployments/{deployment}/revisions/{revision}/resource/{resource}'. (required) x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Resource represents a Google Cloud Platform resource actuated by IM. Resources are child resources of Revisions. "caiAssets": { # Output only. Map of Cloud Asset Inventory (CAI) type to CAI info (e.g. CAI ID). CAI type format follows https://cloud.google.com/asset-inventory/docs/supported-asset-types "a_key": { # CAI info of a Resource. "fullResourceName": "A String", # CAI resource name in the format following https://cloud.google.com/apis/design/resource_names#full_resource_name }, }, "intent": "A String", # Output only. Intent of the resource. "name": "A String", # Output only. Resource name. Format: `projects/{project}/locations/{location}/deployments/{deployment}/revisions/{revision}/resources/{resource}` "state": "A String", # Output only. Current state of the resource. "terraformInfo": { # Terraform info of a Resource. # Output only. Terraform-specific info if this resource was created using Terraform. "address": "A String", # TF resource address that uniquely identifies this resource within this deployment. "id": "A String", # ID attribute of the TF resource "type": "A String", # TF resource type }, }
list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists Resources in a given revision. Args: parent: string, Required. The parent in whose context the Resources are listed. The parent value is in the format: 'projects/{project_id}/locations/{location}/deployments/{deployment}/revisions/{revision}'. (required) filter: string, Lists the Resources that match the filter expression. A filter expression filters the resources listed in the response. The expression must be of the form '{field} {operator} {value}' where operators: '<', '>', '<=', '>=', '!=', '=', ':' are supported (colon ':' represents a HAS operator which is roughly synonymous with equality). {field} can refer to a proto or JSON field, or a synthetic field. Field names can be camelCase or snake_case. Examples: - Filter by name: name = "projects/foo/locations/us-central1/deployments/dep/revisions/bar/resources/baz orderBy: string, Field to use to sort the list. pageSize: integer, When requesting a page of resources, 'page_size' specifies number of resources to return. If unspecified, at most 500 will be returned. The maximum value is 1000. pageToken: string, Token returned by previous call to 'ListResources' which specifies the position in the list from where to continue listing the resources. x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # A response to a 'ListResources' call. Contains a list of Resources. "nextPageToken": "A String", # A token to request the next page of resources from the 'ListResources' method. The value of an empty string means that there are no more resources to return. "resources": [ # List of Resourcess. { # Resource represents a Google Cloud Platform resource actuated by IM. Resources are child resources of Revisions. "caiAssets": { # Output only. Map of Cloud Asset Inventory (CAI) type to CAI info (e.g. CAI ID). CAI type format follows https://cloud.google.com/asset-inventory/docs/supported-asset-types "a_key": { # CAI info of a Resource. "fullResourceName": "A String", # CAI resource name in the format following https://cloud.google.com/apis/design/resource_names#full_resource_name }, }, "intent": "A String", # Output only. Intent of the resource. "name": "A String", # Output only. Resource name. Format: `projects/{project}/locations/{location}/deployments/{deployment}/revisions/{revision}/resources/{resource}` "state": "A String", # Output only. Current state of the resource. "terraformInfo": { # Terraform info of a Resource. # Output only. Terraform-specific info if this resource was created using Terraform. "address": "A String", # TF resource address that uniquely identifies this resource within this deployment. "id": "A String", # ID attribute of the TF resource "type": "A String", # TF resource type }, }, ], "unreachable": [ # 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.