Migrate to Virtual Machines API . projects . locations . sources . migratingVms . replicationCycles

Instance Methods

close()

Close httplib2 connections.

get(name, x__xgafv=None)

Gets details of a single ReplicationCycle.

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

Lists ReplicationCycles in a given MigratingVM.

list_next()

Retrieves the next page of results.

Method Details

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

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

Returns:
  An object of the form:

    { # ReplicationCycle contains information about the current replication cycle status.
  "progressPercent": 42, # The current progress in percentage of this cycle.
  "startTime": "A String", # The time the replication cycle has started.
}
list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists ReplicationCycles in a given MigratingVM.

Args:
  parent: string, Required. The parent, which owns this collection of ReplicationCycles. (required)
  filter: string, Optional. The filter request.
  orderBy: string, Optional. the order by fields for the result.
  pageSize: integer, Optional. The maximum number of replication cycles to return. The service may return fewer than this value. If unspecified, at most 100 migrating VMs will be returned. The maximum value is 100; values above 100 will be coerced to 100.
  pageToken: string, Required. A page token, received from a previous `ListReplicationCycles` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListReplicationCycles` must match the call that provided the page token.
  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 'ListReplicationCycles' request.
  "nextPageToken": "A String", # Output only. A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
  "replicationCycles": [ # Output only. The list of replication cycles response.
    { # ReplicationCycle contains information about the current replication cycle status.
      "progressPercent": 42, # The current progress in percentage of this cycle.
      "startTime": "A String", # The time the replication cycle has started.
    },
  ],
  "unreachable": [ # Output only. 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.