Network Connectivity API . projects . locations . remoteTransportProfiles

Instance Methods

close()

Close httplib2 connections.

get(name, x__xgafv=None)

Gets details of a single RemoteTransportProfile.

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

Lists RemoteTransportProfiles in a given project and location.

list_next()

Retrieves the next page of results.

Method Details

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

Args:
  name: string, Required. Name of the resource (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Message describing RemoteTransportProfile object
  "createTime": "A String", # Output only. [Output only] Create time stamp
  "labels": { # Optional. Labels as key value pairs
    "a_key": "A String",
  },
  "name": "A String", # Identifier. name of resource
  "updateTime": "A String", # Output only. [Output only] Update time stamp
}
list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists RemoteTransportProfiles in a given project and location.

Args:
  parent: string, Required. Parent value for ListRemoteTransportProfilesRequest (required)
  filter: string, Optional. Filtering results
  orderBy: string, Optional. Hint for how to order the results
  pageSize: integer, Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
  pageToken: string, Optional. A token identifying a page of results the server should return.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Message for response to listing RemoteTransportProfiles
  "nextPageToken": "A String", # A token identifying a page of results the server should return.
  "remoteTransportProfiles": [ # The list of RemoteTransportProfiles
    { # Message describing RemoteTransportProfile object
      "createTime": "A String", # Output only. [Output only] Create time stamp
      "labels": { # Optional. Labels as key value pairs
        "a_key": "A String",
      },
      "name": "A String", # Identifier. name of resource
      "updateTime": "A String", # Output only. [Output only] Update time stamp
    },
  ],
  "unreachable": [ # Unordered list. 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.