diff --git a/docs/dyn/migrationcenter_v1.projects.locations.assets.html b/docs/dyn/migrationcenter_v1.projects.locations.assets.html index 080249dd62..24081c30ab 100644 --- a/docs/dyn/migrationcenter_v1.projects.locations.assets.html +++ b/docs/dyn/migrationcenter_v1.projects.locations.assets.html @@ -2310,6 +2310,7 @@

Method Details

"attributes": { # Generic asset attributes. "a_key": "A String", }, + "collectionType": "A String", # Optional. Frame collection type, if not specified the collection type will be based on the source type of the source the frame was reported on. "labels": { # Labels as key value pairs. "a_key": "A String", }, diff --git a/docs/dyn/migrationcenter_v1.projects.locations.discoveryClients.html b/docs/dyn/migrationcenter_v1.projects.locations.discoveryClients.html new file mode 100644 index 0000000000..09e498cf33 --- /dev/null +++ b/docs/dyn/migrationcenter_v1.projects.locations.discoveryClients.html @@ -0,0 +1,452 @@ + + + +

Migration Center API . projects . locations . discoveryClients

+

Instance Methods

+

+ close()

+

Close httplib2 connections.

+

+ create(parent, body=None, discoveryClientId=None, requestId=None, x__xgafv=None)

+

Creates a new discovery client.

+

+ delete(name, requestId=None, x__xgafv=None)

+

Deletes a discovery client.

+

+ get(name, x__xgafv=None)

+

Gets the details of a discovery client.

+

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

+

Lists all the discovery clients in a given project and location.

+

+ list_next()

+

Retrieves the next page of results.

+

+ patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)

+

Updates a discovery client.

+

+ sendHeartbeat(name, body=None, x__xgafv=None)

+

Sends a discovery client heartbeat. Healthy clients are expected to send heartbeats regularly (normally every few minutes).

+

Method Details

+
+ close() +
Close httplib2 connections.
+
+ +
+ create(parent, body=None, discoveryClientId=None, requestId=None, x__xgafv=None) +
Creates a new discovery client.
+
+Args:
+  parent: string, Required. Parent resource. (required)
+  body: object, The request body.
+    The object takes the form of:
+
+{ # Represents an installed Migration Center Discovery Client instance.
+  "createTime": "A String", # Output only. Time when the discovery client was first created.
+  "description": "A String", # Optional. Free text description. Maximum length is 1000 characters.
+  "displayName": "A String", # Optional. Free text display name. Maximum length is 63 characters.
+  "errors": [ # Output only. Errors affecting client functionality.
+    { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
+      "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+      "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+        {
+          "a_key": "", # Properties of the object. Contains field @type with type URL.
+        },
+      ],
+      "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+    },
+  ],
+  "expireTime": "A String", # Optional. Client expiration time in UTC. If specified, the backend will not accept new frames after this time.
+  "heartbeatTime": "A String", # Output only. Last heartbeat time. Healthy clients are expected to send heartbeats regularly (normally every few minutes).
+  "labels": { # Optional. Labels as key value pairs.
+    "a_key": "A String",
+  },
+  "name": "A String", # Output only. Identifier. Full name of this discovery client.
+  "serviceAccount": "A String", # Required. Service account used by the discovery client for various operation.
+  "signalsEndpoint": "A String", # Output only. This field is intended for internal use.
+  "source": "A String", # Required. Immutable. Full name of the source object associated with this discovery client.
+  "state": "A String", # Output only. Current state of the discovery client.
+  "ttl": "A String", # Optional. Input only. Client time-to-live. If specified, the backend will not accept new frames after this time. This field is input only. The derived expiration time is provided as output through the `expire_time` field.
+  "updateTime": "A String", # Output only. Time when the discovery client was last updated. This value is not updated by heartbeats, to view the last heartbeat time please refer to the `heartbeat_time` field.
+  "version": "A String", # Output only. Client version, as reported in recent heartbeat.
+}
+
+  discoveryClientId: string, Required. User specified ID for the discovery client. It will become the last component of the discovery client name. The ID must be unique within the project, is restricted to lower-cased letters and has a maximum length of 63 characters. The ID must match the regular expression: `[a-z]([a-z0-9-]{0,61}[a-z0-9])?`.
+  requestId: string, Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
+
+Returns:
+  An object of the form:
+
+    { # This resource represents a long-running operation that is the result of a network API call.
+  "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
+  "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
+    "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+    "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+      {
+        "a_key": "", # Properties of the object. Contains field @type with type URL.
+      },
+    ],
+    "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+  },
+  "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+  "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
+  "response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+}
+
+ +
+ delete(name, requestId=None, x__xgafv=None) +
Deletes a discovery client.
+
+Args:
+  name: string, Required. The discovery client name. (required)
+  requestId: string, Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
+
+Returns:
+  An object of the form:
+
+    { # This resource represents a long-running operation that is the result of a network API call.
+  "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
+  "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
+    "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+    "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+      {
+        "a_key": "", # Properties of the object. Contains field @type with type URL.
+      },
+    ],
+    "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+  },
+  "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+  "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
+  "response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+}
+
+ +
+ get(name, x__xgafv=None) +
Gets the details of a discovery client.
+
+Args:
+  name: string, Required. The discovery client 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 an installed Migration Center Discovery Client instance.
+  "createTime": "A String", # Output only. Time when the discovery client was first created.
+  "description": "A String", # Optional. Free text description. Maximum length is 1000 characters.
+  "displayName": "A String", # Optional. Free text display name. Maximum length is 63 characters.
+  "errors": [ # Output only. Errors affecting client functionality.
+    { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
+      "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+      "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+        {
+          "a_key": "", # Properties of the object. Contains field @type with type URL.
+        },
+      ],
+      "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+    },
+  ],
+  "expireTime": "A String", # Optional. Client expiration time in UTC. If specified, the backend will not accept new frames after this time.
+  "heartbeatTime": "A String", # Output only. Last heartbeat time. Healthy clients are expected to send heartbeats regularly (normally every few minutes).
+  "labels": { # Optional. Labels as key value pairs.
+    "a_key": "A String",
+  },
+  "name": "A String", # Output only. Identifier. Full name of this discovery client.
+  "serviceAccount": "A String", # Required. Service account used by the discovery client for various operation.
+  "signalsEndpoint": "A String", # Output only. This field is intended for internal use.
+  "source": "A String", # Required. Immutable. Full name of the source object associated with this discovery client.
+  "state": "A String", # Output only. Current state of the discovery client.
+  "ttl": "A String", # Optional. Input only. Client time-to-live. If specified, the backend will not accept new frames after this time. This field is input only. The derived expiration time is provided as output through the `expire_time` field.
+  "updateTime": "A String", # Output only. Time when the discovery client was last updated. This value is not updated by heartbeats, to view the last heartbeat time please refer to the `heartbeat_time` field.
+  "version": "A String", # Output only. Client version, as reported in recent heartbeat.
+}
+
+ +
+ list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None) +
Lists all the discovery clients in a given project and location.
+
+Args:
+  parent: string, Required. Parent resource. (required)
+  filter: string, Optional. Filter expression to filter results by.
+  orderBy: string, Optional. Field to sort by.
+  pageSize: integer, Optional. The maximum number of items to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default value.
+  pageToken: string, Optional. A page token, received from a previous `ListDiscoveryClients` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListDiscoveryClients` 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 listing discovery clients.
+  "discoveryClients": [ # List of discovery clients.
+    { # Represents an installed Migration Center Discovery Client instance.
+      "createTime": "A String", # Output only. Time when the discovery client was first created.
+      "description": "A String", # Optional. Free text description. Maximum length is 1000 characters.
+      "displayName": "A String", # Optional. Free text display name. Maximum length is 63 characters.
+      "errors": [ # Output only. Errors affecting client functionality.
+        { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
+          "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+          "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+            {
+              "a_key": "", # Properties of the object. Contains field @type with type URL.
+            },
+          ],
+          "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+        },
+      ],
+      "expireTime": "A String", # Optional. Client expiration time in UTC. If specified, the backend will not accept new frames after this time.
+      "heartbeatTime": "A String", # Output only. Last heartbeat time. Healthy clients are expected to send heartbeats regularly (normally every few minutes).
+      "labels": { # Optional. Labels as key value pairs.
+        "a_key": "A String",
+      },
+      "name": "A String", # Output only. Identifier. Full name of this discovery client.
+      "serviceAccount": "A String", # Required. Service account used by the discovery client for various operation.
+      "signalsEndpoint": "A String", # Output only. This field is intended for internal use.
+      "source": "A String", # Required. Immutable. Full name of the source object associated with this discovery client.
+      "state": "A String", # Output only. Current state of the discovery client.
+      "ttl": "A String", # Optional. Input only. Client time-to-live. If specified, the backend will not accept new frames after this time. This field is input only. The derived expiration time is provided as output through the `expire_time` field.
+      "updateTime": "A String", # Output only. Time when the discovery client was last updated. This value is not updated by heartbeats, to view the last heartbeat time please refer to the `heartbeat_time` field.
+      "version": "A String", # Output only. Client version, as reported in recent heartbeat.
+    },
+  ],
+  "nextPageToken": "A String", # A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
+  "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.
+        
+
+ +
+ patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None) +
Updates a discovery client.
+
+Args:
+  name: string, Output only. Identifier. Full name of this discovery client. (required)
+  body: object, The request body.
+    The object takes the form of:
+
+{ # Represents an installed Migration Center Discovery Client instance.
+  "createTime": "A String", # Output only. Time when the discovery client was first created.
+  "description": "A String", # Optional. Free text description. Maximum length is 1000 characters.
+  "displayName": "A String", # Optional. Free text display name. Maximum length is 63 characters.
+  "errors": [ # Output only. Errors affecting client functionality.
+    { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
+      "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+      "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+        {
+          "a_key": "", # Properties of the object. Contains field @type with type URL.
+        },
+      ],
+      "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+    },
+  ],
+  "expireTime": "A String", # Optional. Client expiration time in UTC. If specified, the backend will not accept new frames after this time.
+  "heartbeatTime": "A String", # Output only. Last heartbeat time. Healthy clients are expected to send heartbeats regularly (normally every few minutes).
+  "labels": { # Optional. Labels as key value pairs.
+    "a_key": "A String",
+  },
+  "name": "A String", # Output only. Identifier. Full name of this discovery client.
+  "serviceAccount": "A String", # Required. Service account used by the discovery client for various operation.
+  "signalsEndpoint": "A String", # Output only. This field is intended for internal use.
+  "source": "A String", # Required. Immutable. Full name of the source object associated with this discovery client.
+  "state": "A String", # Output only. Current state of the discovery client.
+  "ttl": "A String", # Optional. Input only. Client time-to-live. If specified, the backend will not accept new frames after this time. This field is input only. The derived expiration time is provided as output through the `expire_time` field.
+  "updateTime": "A String", # Output only. Time when the discovery client was last updated. This value is not updated by heartbeats, to view the last heartbeat time please refer to the `heartbeat_time` field.
+  "version": "A String", # Output only. Client version, as reported in recent heartbeat.
+}
+
+  requestId: string, Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
+  updateMask: string, Required. Update mask is used to specify the fields to be overwritten in the `DiscoveryClient` resource by the update. The values specified in the `update_mask` field are relative to the resource, not the full request. A field will be overwritten if it is in the mask. A single * value in the mask lets you to overwrite all fields.
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
+
+Returns:
+  An object of the form:
+
+    { # This resource represents a long-running operation that is the result of a network API call.
+  "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
+  "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
+    "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+    "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+      {
+        "a_key": "", # Properties of the object. Contains field @type with type URL.
+      },
+    ],
+    "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+  },
+  "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+  "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
+  "response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+}
+
+ +
+ sendHeartbeat(name, body=None, x__xgafv=None) +
Sends a discovery client heartbeat. Healthy clients are expected to send heartbeats regularly (normally every few minutes).
+
+Args:
+  name: string, Required. The discovery client name. (required)
+  body: object, The request body.
+    The object takes the form of:
+
+{ # A request to send a discovery client heartbeat.
+  "errors": [ # Optional. Errors affecting client functionality.
+    { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
+      "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+      "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+        {
+          "a_key": "", # Properties of the object. Contains field @type with type URL.
+        },
+      ],
+      "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+    },
+  ],
+  "version": "A String", # Optional. Client application version.
+}
+
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
+
+Returns:
+  An object of the form:
+
+    { # This resource represents a long-running operation that is the result of a network API call.
+  "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
+  "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
+    "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+    "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+      {
+        "a_key": "", # Properties of the object. Contains field @type with type URL.
+      },
+    ],
+    "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+  },
+  "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+  "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
+  "response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+}
+
+ + \ No newline at end of file diff --git a/docs/dyn/migrationcenter_v1.projects.locations.html b/docs/dyn/migrationcenter_v1.projects.locations.html index dcac27ef9d..b82a4b17aa 100644 --- a/docs/dyn/migrationcenter_v1.projects.locations.html +++ b/docs/dyn/migrationcenter_v1.projects.locations.html @@ -79,6 +79,11 @@

Instance Methods

Returns the assets Resource.

+

+ discoveryClients() +

+

Returns the discoveryClients Resource.

+

groups()

diff --git a/docs/dyn/migrationcenter_v1.projects.locations.sources.errorFrames.html b/docs/dyn/migrationcenter_v1.projects.locations.sources.errorFrames.html index 02dbc6de3d..dddfbcda7e 100644 --- a/docs/dyn/migrationcenter_v1.projects.locations.sources.errorFrames.html +++ b/docs/dyn/migrationcenter_v1.projects.locations.sources.errorFrames.html @@ -118,6 +118,7 @@

Method Details

"attributes": { # Generic asset attributes. "a_key": "A String", }, + "collectionType": "A String", # Optional. Frame collection type, if not specified the collection type will be based on the source type of the source the frame was reported on. "labels": { # Labels as key value pairs. "a_key": "A String", }, @@ -406,6 +407,7 @@

Method Details

"attributes": { # Generic asset attributes. "a_key": "A String", }, + "collectionType": "A String", # Optional. Frame collection type, if not specified the collection type will be based on the source type of the source the frame was reported on. "labels": { # Labels as key value pairs. "a_key": "A String", }, diff --git a/docs/dyn/migrationcenter_v1alpha1.projects.locations.assets.html b/docs/dyn/migrationcenter_v1alpha1.projects.locations.assets.html index 4cdec28199..daab373f04 100644 --- a/docs/dyn/migrationcenter_v1alpha1.projects.locations.assets.html +++ b/docs/dyn/migrationcenter_v1alpha1.projects.locations.assets.html @@ -2530,6 +2530,7 @@

Method Details

"attributes": { # Generic asset attributes. "a_key": "A String", }, + "collectionType": "A String", # Optional. Frame collection type, if not specified the collection type will be based on the source type of the source the frame was reported on. "labels": { # Labels as key value pairs. "a_key": "A String", }, diff --git a/docs/dyn/migrationcenter_v1alpha1.projects.locations.discoveryClients.html b/docs/dyn/migrationcenter_v1alpha1.projects.locations.discoveryClients.html new file mode 100644 index 0000000000..439ae12473 --- /dev/null +++ b/docs/dyn/migrationcenter_v1alpha1.projects.locations.discoveryClients.html @@ -0,0 +1,452 @@ + + + +

Migration Center API . projects . locations . discoveryClients

+

Instance Methods

+

+ close()

+

Close httplib2 connections.

+

+ create(parent, body=None, discoveryClientId=None, requestId=None, x__xgafv=None)

+

Creates a new discovery client.

+

+ delete(name, requestId=None, x__xgafv=None)

+

Deletes a discovery client.

+

+ get(name, x__xgafv=None)

+

Gets the details of a discovery client.

+

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

+

Lists all the discovery clients in a given project and location.

+

+ list_next()

+

Retrieves the next page of results.

+

+ patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)

+

Updates a discovery client.

+

+ sendHeartbeat(name, body=None, x__xgafv=None)

+

Sends a discovery client heartbeat. Healthy clients are expected to send heartbeats regularly (normally every few minutes).

+

Method Details

+
+ close() +
Close httplib2 connections.
+
+ +
+ create(parent, body=None, discoveryClientId=None, requestId=None, x__xgafv=None) +
Creates a new discovery client.
+
+Args:
+  parent: string, Required. Parent resource. (required)
+  body: object, The request body.
+    The object takes the form of:
+
+{ # Represents an installed Migration Center Discovery Client instance.
+  "createTime": "A String", # Output only. Time when the discovery client was first created.
+  "description": "A String", # Optional. Free text description. Maximum length is 1000 characters.
+  "displayName": "A String", # Optional. Free text display name. Maximum length is 63 characters.
+  "errors": [ # Output only. Errors affecting client functionality.
+    { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
+      "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+      "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+        {
+          "a_key": "", # Properties of the object. Contains field @type with type URL.
+        },
+      ],
+      "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+    },
+  ],
+  "expireTime": "A String", # Optional. Client expiration time in UTC. If specified, the backend will not accept new frames after this time.
+  "heartbeatTime": "A String", # Output only. Last heartbeat time. Healthy clients are expected to send heartbeats regularly (normally every few minutes).
+  "labels": { # Optional. Labels as key value pairs.
+    "a_key": "A String",
+  },
+  "name": "A String", # Output only. Identifier. Full name of this discovery client.
+  "serviceAccount": "A String", # Required. Service account used by the discovery client for various operation.
+  "signalsEndpoint": "A String", # Output only. This field is intended for internal use.
+  "source": "A String", # Required. Full name of the source object associated with this discovery client.
+  "state": "A String", # Output only. Current state of the discovery client.
+  "ttl": "A String", # Optional. Input only. Client time-to-live. If specified, the backend will not accept new frames after this time. This field is input only. The derived expiration time is provided as output through the `expire_time` field.
+  "updateTime": "A String", # Output only. Time when the discovery client was last updated. This value is not updated by heartbeats, to view the last heartbeat time please refer to the `heartbeat_time` field.
+  "version": "A String", # Output only. Client version, as reported in recent heartbeat.
+}
+
+  discoveryClientId: string, Required. User specified ID for the discovery client. It will become the last component of the discovery client name. The ID must be unique within the project, is restricted to lower-cased letters and has a maximum length of 63 characters. The ID must match the regular expression: `[a-z]([a-z0-9-]{0,61}[a-z0-9])?`.
+  requestId: string, Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
+
+Returns:
+  An object of the form:
+
+    { # This resource represents a long-running operation that is the result of a network API call.
+  "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
+  "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
+    "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+    "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+      {
+        "a_key": "", # Properties of the object. Contains field @type with type URL.
+      },
+    ],
+    "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+  },
+  "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+  "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
+  "response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+}
+
+ +
+ delete(name, requestId=None, x__xgafv=None) +
Deletes a discovery client.
+
+Args:
+  name: string, Required. The discovery client name. (required)
+  requestId: string, Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
+
+Returns:
+  An object of the form:
+
+    { # This resource represents a long-running operation that is the result of a network API call.
+  "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
+  "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
+    "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+    "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+      {
+        "a_key": "", # Properties of the object. Contains field @type with type URL.
+      },
+    ],
+    "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+  },
+  "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+  "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
+  "response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+}
+
+ +
+ get(name, x__xgafv=None) +
Gets the details of a discovery client.
+
+Args:
+  name: string, Required. The discovery client 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 an installed Migration Center Discovery Client instance.
+  "createTime": "A String", # Output only. Time when the discovery client was first created.
+  "description": "A String", # Optional. Free text description. Maximum length is 1000 characters.
+  "displayName": "A String", # Optional. Free text display name. Maximum length is 63 characters.
+  "errors": [ # Output only. Errors affecting client functionality.
+    { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
+      "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+      "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+        {
+          "a_key": "", # Properties of the object. Contains field @type with type URL.
+        },
+      ],
+      "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+    },
+  ],
+  "expireTime": "A String", # Optional. Client expiration time in UTC. If specified, the backend will not accept new frames after this time.
+  "heartbeatTime": "A String", # Output only. Last heartbeat time. Healthy clients are expected to send heartbeats regularly (normally every few minutes).
+  "labels": { # Optional. Labels as key value pairs.
+    "a_key": "A String",
+  },
+  "name": "A String", # Output only. Identifier. Full name of this discovery client.
+  "serviceAccount": "A String", # Required. Service account used by the discovery client for various operation.
+  "signalsEndpoint": "A String", # Output only. This field is intended for internal use.
+  "source": "A String", # Required. Full name of the source object associated with this discovery client.
+  "state": "A String", # Output only. Current state of the discovery client.
+  "ttl": "A String", # Optional. Input only. Client time-to-live. If specified, the backend will not accept new frames after this time. This field is input only. The derived expiration time is provided as output through the `expire_time` field.
+  "updateTime": "A String", # Output only. Time when the discovery client was last updated. This value is not updated by heartbeats, to view the last heartbeat time please refer to the `heartbeat_time` field.
+  "version": "A String", # Output only. Client version, as reported in recent heartbeat.
+}
+
+ +
+ list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None) +
Lists all the discovery clients in a given project and location.
+
+Args:
+  parent: string, Required. Parent resource. (required)
+  filter: string, Optional. Filter expression to filter results by.
+  orderBy: string, Optional. Field to sort by.
+  pageSize: integer, Optional. The maximum number of items to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default value.
+  pageToken: string, Optional. A page token, received from a previous `ListDiscoveryClients` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListDiscoveryClients` 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 listing discovery clients.
+  "discoveryClients": [ # List of discovery clients.
+    { # Represents an installed Migration Center Discovery Client instance.
+      "createTime": "A String", # Output only. Time when the discovery client was first created.
+      "description": "A String", # Optional. Free text description. Maximum length is 1000 characters.
+      "displayName": "A String", # Optional. Free text display name. Maximum length is 63 characters.
+      "errors": [ # Output only. Errors affecting client functionality.
+        { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
+          "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+          "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+            {
+              "a_key": "", # Properties of the object. Contains field @type with type URL.
+            },
+          ],
+          "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+        },
+      ],
+      "expireTime": "A String", # Optional. Client expiration time in UTC. If specified, the backend will not accept new frames after this time.
+      "heartbeatTime": "A String", # Output only. Last heartbeat time. Healthy clients are expected to send heartbeats regularly (normally every few minutes).
+      "labels": { # Optional. Labels as key value pairs.
+        "a_key": "A String",
+      },
+      "name": "A String", # Output only. Identifier. Full name of this discovery client.
+      "serviceAccount": "A String", # Required. Service account used by the discovery client for various operation.
+      "signalsEndpoint": "A String", # Output only. This field is intended for internal use.
+      "source": "A String", # Required. Full name of the source object associated with this discovery client.
+      "state": "A String", # Output only. Current state of the discovery client.
+      "ttl": "A String", # Optional. Input only. Client time-to-live. If specified, the backend will not accept new frames after this time. This field is input only. The derived expiration time is provided as output through the `expire_time` field.
+      "updateTime": "A String", # Output only. Time when the discovery client was last updated. This value is not updated by heartbeats, to view the last heartbeat time please refer to the `heartbeat_time` field.
+      "version": "A String", # Output only. Client version, as reported in recent heartbeat.
+    },
+  ],
+  "nextPageToken": "A String", # A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
+  "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.
+        
+
+ +
+ patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None) +
Updates a discovery client.
+
+Args:
+  name: string, Output only. Identifier. Full name of this discovery client. (required)
+  body: object, The request body.
+    The object takes the form of:
+
+{ # Represents an installed Migration Center Discovery Client instance.
+  "createTime": "A String", # Output only. Time when the discovery client was first created.
+  "description": "A String", # Optional. Free text description. Maximum length is 1000 characters.
+  "displayName": "A String", # Optional. Free text display name. Maximum length is 63 characters.
+  "errors": [ # Output only. Errors affecting client functionality.
+    { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
+      "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+      "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+        {
+          "a_key": "", # Properties of the object. Contains field @type with type URL.
+        },
+      ],
+      "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+    },
+  ],
+  "expireTime": "A String", # Optional. Client expiration time in UTC. If specified, the backend will not accept new frames after this time.
+  "heartbeatTime": "A String", # Output only. Last heartbeat time. Healthy clients are expected to send heartbeats regularly (normally every few minutes).
+  "labels": { # Optional. Labels as key value pairs.
+    "a_key": "A String",
+  },
+  "name": "A String", # Output only. Identifier. Full name of this discovery client.
+  "serviceAccount": "A String", # Required. Service account used by the discovery client for various operation.
+  "signalsEndpoint": "A String", # Output only. This field is intended for internal use.
+  "source": "A String", # Required. Full name of the source object associated with this discovery client.
+  "state": "A String", # Output only. Current state of the discovery client.
+  "ttl": "A String", # Optional. Input only. Client time-to-live. If specified, the backend will not accept new frames after this time. This field is input only. The derived expiration time is provided as output through the `expire_time` field.
+  "updateTime": "A String", # Output only. Time when the discovery client was last updated. This value is not updated by heartbeats, to view the last heartbeat time please refer to the `heartbeat_time` field.
+  "version": "A String", # Output only. Client version, as reported in recent heartbeat.
+}
+
+  requestId: string, Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
+  updateMask: string, Required. Update mask is used to specify the fields to be overwritten in the `DiscoveryClient` resource by the update. The values specified in the `update_mask` field are relative to the resource, not the full request. A field will be overwritten if it is in the mask. A single * value in the mask lets you to overwrite all fields.
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
+
+Returns:
+  An object of the form:
+
+    { # This resource represents a long-running operation that is the result of a network API call.
+  "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
+  "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
+    "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+    "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+      {
+        "a_key": "", # Properties of the object. Contains field @type with type URL.
+      },
+    ],
+    "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+  },
+  "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+  "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
+  "response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+}
+
+ +
+ sendHeartbeat(name, body=None, x__xgafv=None) +
Sends a discovery client heartbeat. Healthy clients are expected to send heartbeats regularly (normally every few minutes).
+
+Args:
+  name: string, Required. The discovery client name. (required)
+  body: object, The request body.
+    The object takes the form of:
+
+{ # A request to send a discovery client heartbeat.
+  "errors": [ # Optional. Errors affecting client functionality.
+    { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
+      "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+      "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+        {
+          "a_key": "", # Properties of the object. Contains field @type with type URL.
+        },
+      ],
+      "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+    },
+  ],
+  "version": "A String", # Optional. Client application version.
+}
+
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
+
+Returns:
+  An object of the form:
+
+    { # This resource represents a long-running operation that is the result of a network API call.
+  "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
+  "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
+    "code": 42, # The status code, which should be an enum value of google.rpc.Code.
+    "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
+      {
+        "a_key": "", # Properties of the object. Contains field @type with type URL.
+      },
+    ],
+    "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
+  },
+  "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+  "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
+  "response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
+    "a_key": "", # Properties of the object. Contains field @type with type URL.
+  },
+}
+
+ + \ No newline at end of file diff --git a/docs/dyn/migrationcenter_v1alpha1.projects.locations.html b/docs/dyn/migrationcenter_v1alpha1.projects.locations.html index 7bfd8d62f7..07f0920af7 100644 --- a/docs/dyn/migrationcenter_v1alpha1.projects.locations.html +++ b/docs/dyn/migrationcenter_v1alpha1.projects.locations.html @@ -79,6 +79,11 @@

Instance Methods

Returns the assets Resource.

+

+ discoveryClients() +

+

Returns the discoveryClients Resource.

+

groups()

diff --git a/docs/dyn/migrationcenter_v1alpha1.projects.locations.sources.errorFrames.html b/docs/dyn/migrationcenter_v1alpha1.projects.locations.sources.errorFrames.html index 9062bc6fee..606be53b26 100644 --- a/docs/dyn/migrationcenter_v1alpha1.projects.locations.sources.errorFrames.html +++ b/docs/dyn/migrationcenter_v1alpha1.projects.locations.sources.errorFrames.html @@ -118,6 +118,7 @@

Method Details

"attributes": { # Generic asset attributes. "a_key": "A String", }, + "collectionType": "A String", # Optional. Frame collection type, if not specified the collection type will be based on the source type of the source the frame was reported on. "labels": { # Labels as key value pairs. "a_key": "A String", }, @@ -427,6 +428,7 @@

Method Details

"attributes": { # Generic asset attributes. "a_key": "A String", }, + "collectionType": "A String", # Optional. Frame collection type, if not specified the collection type will be based on the source type of the source the frame was reported on. "labels": { # Labels as key value pairs. "a_key": "A String", }, diff --git a/googleapiclient/discovery_cache/documents/migrationcenter.v1.json b/googleapiclient/discovery_cache/documents/migrationcenter.v1.json index 0f3e8479b0..4c21f24e28 100644 --- a/googleapiclient/discovery_cache/documents/migrationcenter.v1.json +++ b/googleapiclient/discovery_cache/documents/migrationcenter.v1.json @@ -532,6 +532,216 @@ } } }, +"discoveryClients": { +"methods": { +"create": { +"description": "Creates a new discovery client.", +"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/discoveryClients", +"httpMethod": "POST", +"id": "migrationcenter.projects.locations.discoveryClients.create", +"parameterOrder": [ +"parent" +], +"parameters": { +"discoveryClientId": { +"description": "Required. User specified ID for the discovery client. It will become the last component of the discovery client name. The ID must be unique within the project, is restricted to lower-cased letters and has a maximum length of 63 characters. The ID must match the regular expression: `[a-z]([a-z0-9-]{0,61}[a-z0-9])?`.", +"location": "query", +"type": "string" +}, +"parent": { +"description": "Required. Parent resource.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+$", +"required": true, +"type": "string" +}, +"requestId": { +"description": "Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).", +"location": "query", +"type": "string" +} +}, +"path": "v1/{+parent}/discoveryClients", +"request": { +"$ref": "DiscoveryClient" +}, +"response": { +"$ref": "Operation" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +}, +"delete": { +"description": "Deletes a discovery client.", +"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/discoveryClients/{discoveryClientsId}", +"httpMethod": "DELETE", +"id": "migrationcenter.projects.locations.discoveryClients.delete", +"parameterOrder": [ +"name" +], +"parameters": { +"name": { +"description": "Required. The discovery client name.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+/discoveryClients/[^/]+$", +"required": true, +"type": "string" +}, +"requestId": { +"description": "Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).", +"location": "query", +"type": "string" +} +}, +"path": "v1/{+name}", +"response": { +"$ref": "Operation" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +}, +"get": { +"description": "Gets the details of a discovery client.", +"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/discoveryClients/{discoveryClientsId}", +"httpMethod": "GET", +"id": "migrationcenter.projects.locations.discoveryClients.get", +"parameterOrder": [ +"name" +], +"parameters": { +"name": { +"description": "Required. The discovery client name.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+/discoveryClients/[^/]+$", +"required": true, +"type": "string" +} +}, +"path": "v1/{+name}", +"response": { +"$ref": "DiscoveryClient" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +}, +"list": { +"description": "Lists all the discovery clients in a given project and location.", +"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/discoveryClients", +"httpMethod": "GET", +"id": "migrationcenter.projects.locations.discoveryClients.list", +"parameterOrder": [ +"parent" +], +"parameters": { +"filter": { +"description": "Optional. Filter expression to filter results by.", +"location": "query", +"type": "string" +}, +"orderBy": { +"description": "Optional. Field to sort by.", +"location": "query", +"type": "string" +}, +"pageSize": { +"description": "Optional. The maximum number of items to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default value.", +"format": "int32", +"location": "query", +"type": "integer" +}, +"pageToken": { +"description": "Optional. A page token, received from a previous `ListDiscoveryClients` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListDiscoveryClients` must match the call that provided the page token.", +"location": "query", +"type": "string" +}, +"parent": { +"description": "Required. Parent resource.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+$", +"required": true, +"type": "string" +} +}, +"path": "v1/{+parent}/discoveryClients", +"response": { +"$ref": "ListDiscoveryClientsResponse" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +}, +"patch": { +"description": "Updates a discovery client.", +"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/discoveryClients/{discoveryClientsId}", +"httpMethod": "PATCH", +"id": "migrationcenter.projects.locations.discoveryClients.patch", +"parameterOrder": [ +"name" +], +"parameters": { +"name": { +"description": "Output only. Identifier. Full name of this discovery client.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+/discoveryClients/[^/]+$", +"required": true, +"type": "string" +}, +"requestId": { +"description": "Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).", +"location": "query", +"type": "string" +}, +"updateMask": { +"description": "Required. Update mask is used to specify the fields to be overwritten in the `DiscoveryClient` resource by the update. The values specified in the `update_mask` field are relative to the resource, not the full request. A field will be overwritten if it is in the mask. A single * value in the mask lets you to overwrite all fields.", +"format": "google-fieldmask", +"location": "query", +"type": "string" +} +}, +"path": "v1/{+name}", +"request": { +"$ref": "DiscoveryClient" +}, +"response": { +"$ref": "Operation" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +}, +"sendHeartbeat": { +"description": "Sends a discovery client heartbeat. Healthy clients are expected to send heartbeats regularly (normally every few minutes).", +"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/discoveryClients/{discoveryClientsId}:sendHeartbeat", +"httpMethod": "POST", +"id": "migrationcenter.projects.locations.discoveryClients.sendHeartbeat", +"parameterOrder": [ +"name" +], +"parameters": { +"name": { +"description": "Required. The discovery client name.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+/discoveryClients/[^/]+$", +"required": true, +"type": "string" +} +}, +"path": "v1/{+name}:sendHeartbeat", +"request": { +"$ref": "SendDiscoveryClientHeartbeatRequest" +}, +"response": { +"$ref": "Operation" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +} +} +}, "groups": { "methods": { "addAssets": { @@ -2099,7 +2309,7 @@ } } }, -"revision": "20240314", +"revision": "20240328", "rootUrl": "https://migrationcenter.googleapis.com/", "schemas": { "AddAssetsToGroupRequest": { @@ -2387,6 +2597,26 @@ "description": "Generic asset attributes.", "type": "object" }, +"collectionType": { +"description": "Optional. Frame collection type, if not specified the collection type will be based on the source type of the source the frame was reported on.", +"enum": [ +"SOURCE_TYPE_UNKNOWN", +"SOURCE_TYPE_UPLOAD", +"SOURCE_TYPE_GUEST_OS_SCAN", +"SOURCE_TYPE_INVENTORY_SCAN", +"SOURCE_TYPE_CUSTOM", +"SOURCE_TYPE_DISCOVERY_CLIENT" +], +"enumDescriptions": [ +"Unspecified", +"Manually uploaded file (e.g. CSV)", +"Guest-level info", +"Inventory-level scan", +"Third-party owned sources.", +"Discovery clients" +], +"type": "string" +}, "labels": { "additionalProperties": { "type": "string" @@ -2816,6 +3046,106 @@ }, "type": "object" }, +"DiscoveryClient": { +"description": "Represents an installed Migration Center Discovery Client instance.", +"id": "DiscoveryClient", +"properties": { +"createTime": { +"description": "Output only. Time when the discovery client was first created.", +"format": "google-datetime", +"readOnly": true, +"type": "string" +}, +"description": { +"description": "Optional. Free text description. Maximum length is 1000 characters.", +"type": "string" +}, +"displayName": { +"description": "Optional. Free text display name. Maximum length is 63 characters.", +"type": "string" +}, +"errors": { +"description": "Output only. Errors affecting client functionality.", +"items": { +"$ref": "Status" +}, +"readOnly": true, +"type": "array" +}, +"expireTime": { +"description": "Optional. Client expiration time in UTC. If specified, the backend will not accept new frames after this time.", +"format": "google-datetime", +"type": "string" +}, +"heartbeatTime": { +"description": "Output only. Last heartbeat time. Healthy clients are expected to send heartbeats regularly (normally every few minutes).", +"format": "google-datetime", +"readOnly": true, +"type": "string" +}, +"labels": { +"additionalProperties": { +"type": "string" +}, +"description": "Optional. Labels as key value pairs.", +"type": "object" +}, +"name": { +"description": "Output only. Identifier. Full name of this discovery client.", +"readOnly": true, +"type": "string" +}, +"serviceAccount": { +"description": "Required. Service account used by the discovery client for various operation.", +"type": "string" +}, +"signalsEndpoint": { +"description": "Output only. This field is intended for internal use.", +"readOnly": true, +"type": "string" +}, +"source": { +"description": "Required. Immutable. Full name of the source object associated with this discovery client.", +"type": "string" +}, +"state": { +"description": "Output only. Current state of the discovery client.", +"enum": [ +"STATE_UNSPECIFIED", +"ACTIVE", +"OFFLINE", +"DEGRADED", +"EXPIRED" +], +"enumDescriptions": [ +"Client state is unspecified.", +"Client is active.", +"Client is offline.", +"Client is in a degraded state. See the `errors` field for details.", +"Client has expired. See the expire_time field for the expire time." +], +"readOnly": true, +"type": "string" +}, +"ttl": { +"description": "Optional. Input only. Client time-to-live. If specified, the backend will not accept new frames after this time. This field is input only. The derived expiration time is provided as output through the `expire_time` field.", +"format": "google-duration", +"type": "string" +}, +"updateTime": { +"description": "Output only. Time when the discovery client was last updated. This value is not updated by heartbeats, to view the last heartbeat time please refer to the `heartbeat_time` field.", +"format": "google-datetime", +"readOnly": true, +"type": "string" +}, +"version": { +"description": "Output only. Client version, as reported in recent heartbeat.", +"readOnly": true, +"type": "string" +} +}, +"type": "object" +}, "DiskEntry": { "description": "Single disk entry.", "id": "DiskEntry", @@ -3675,6 +4005,31 @@ }, "type": "object" }, +"ListDiscoveryClientsResponse": { +"description": "Response message for listing discovery clients.", +"id": "ListDiscoveryClientsResponse", +"properties": { +"discoveryClients": { +"description": "List of discovery clients.", +"items": { +"$ref": "DiscoveryClient" +}, +"type": "array" +}, +"nextPageToken": { +"description": "A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.", +"type": "string" +}, +"unreachable": { +"description": "Locations that could not be reached.", +"items": { +"type": "string" +}, +"type": "array" +} +}, +"type": "object" +}, "ListErrorFramesResponse": { "description": "A response for listing error frames.", "id": "ListErrorFramesResponse", @@ -5328,6 +5683,24 @@ }, "type": "object" }, +"SendDiscoveryClientHeartbeatRequest": { +"description": "A request to send a discovery client heartbeat.", +"id": "SendDiscoveryClientHeartbeatRequest", +"properties": { +"errors": { +"description": "Optional. Errors affecting client functionality.", +"items": { +"$ref": "Status" +}, +"type": "array" +}, +"version": { +"description": "Optional. Client application version.", +"type": "string" +} +}, +"type": "object" +}, "Settings": { "description": "Describes the Migration Center settings related to the project.", "id": "Settings", @@ -5478,14 +5851,16 @@ "SOURCE_TYPE_UPLOAD", "SOURCE_TYPE_GUEST_OS_SCAN", "SOURCE_TYPE_INVENTORY_SCAN", -"SOURCE_TYPE_CUSTOM" +"SOURCE_TYPE_CUSTOM", +"SOURCE_TYPE_DISCOVERY_CLIENT" ], "enumDescriptions": [ "Unspecified", "Manually uploaded file (e.g. CSV)", "Guest-level info", "Inventory-level scan", -"Third-party owned sources." +"Third-party owned sources.", +"Discovery clients" ], "type": "string" }, diff --git a/googleapiclient/discovery_cache/documents/migrationcenter.v1alpha1.json b/googleapiclient/discovery_cache/documents/migrationcenter.v1alpha1.json index 34b7a15c24..6be1fabdf0 100644 --- a/googleapiclient/discovery_cache/documents/migrationcenter.v1alpha1.json +++ b/googleapiclient/discovery_cache/documents/migrationcenter.v1alpha1.json @@ -541,6 +541,216 @@ } } }, +"discoveryClients": { +"methods": { +"create": { +"description": "Creates a new discovery client.", +"flatPath": "v1alpha1/projects/{projectsId}/locations/{locationsId}/discoveryClients", +"httpMethod": "POST", +"id": "migrationcenter.projects.locations.discoveryClients.create", +"parameterOrder": [ +"parent" +], +"parameters": { +"discoveryClientId": { +"description": "Required. User specified ID for the discovery client. It will become the last component of the discovery client name. The ID must be unique within the project, is restricted to lower-cased letters and has a maximum length of 63 characters. The ID must match the regular expression: `[a-z]([a-z0-9-]{0,61}[a-z0-9])?`.", +"location": "query", +"type": "string" +}, +"parent": { +"description": "Required. Parent resource.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+$", +"required": true, +"type": "string" +}, +"requestId": { +"description": "Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).", +"location": "query", +"type": "string" +} +}, +"path": "v1alpha1/{+parent}/discoveryClients", +"request": { +"$ref": "DiscoveryClient" +}, +"response": { +"$ref": "Operation" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +}, +"delete": { +"description": "Deletes a discovery client.", +"flatPath": "v1alpha1/projects/{projectsId}/locations/{locationsId}/discoveryClients/{discoveryClientsId}", +"httpMethod": "DELETE", +"id": "migrationcenter.projects.locations.discoveryClients.delete", +"parameterOrder": [ +"name" +], +"parameters": { +"name": { +"description": "Required. The discovery client name.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+/discoveryClients/[^/]+$", +"required": true, +"type": "string" +}, +"requestId": { +"description": "Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).", +"location": "query", +"type": "string" +} +}, +"path": "v1alpha1/{+name}", +"response": { +"$ref": "Operation" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +}, +"get": { +"description": "Gets the details of a discovery client.", +"flatPath": "v1alpha1/projects/{projectsId}/locations/{locationsId}/discoveryClients/{discoveryClientsId}", +"httpMethod": "GET", +"id": "migrationcenter.projects.locations.discoveryClients.get", +"parameterOrder": [ +"name" +], +"parameters": { +"name": { +"description": "Required. The discovery client name.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+/discoveryClients/[^/]+$", +"required": true, +"type": "string" +} +}, +"path": "v1alpha1/{+name}", +"response": { +"$ref": "DiscoveryClient" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +}, +"list": { +"description": "Lists all the discovery clients in a given project and location.", +"flatPath": "v1alpha1/projects/{projectsId}/locations/{locationsId}/discoveryClients", +"httpMethod": "GET", +"id": "migrationcenter.projects.locations.discoveryClients.list", +"parameterOrder": [ +"parent" +], +"parameters": { +"filter": { +"description": "Optional. Filter expression to filter results by.", +"location": "query", +"type": "string" +}, +"orderBy": { +"description": "Optional. Field to sort by.", +"location": "query", +"type": "string" +}, +"pageSize": { +"description": "Optional. The maximum number of items to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default value.", +"format": "int32", +"location": "query", +"type": "integer" +}, +"pageToken": { +"description": "Optional. A page token, received from a previous `ListDiscoveryClients` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListDiscoveryClients` must match the call that provided the page token.", +"location": "query", +"type": "string" +}, +"parent": { +"description": "Required. Parent resource.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+$", +"required": true, +"type": "string" +} +}, +"path": "v1alpha1/{+parent}/discoveryClients", +"response": { +"$ref": "ListDiscoveryClientsResponse" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +}, +"patch": { +"description": "Updates a discovery client.", +"flatPath": "v1alpha1/projects/{projectsId}/locations/{locationsId}/discoveryClients/{discoveryClientsId}", +"httpMethod": "PATCH", +"id": "migrationcenter.projects.locations.discoveryClients.patch", +"parameterOrder": [ +"name" +], +"parameters": { +"name": { +"description": "Output only. Identifier. Full name of this discovery client.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+/discoveryClients/[^/]+$", +"required": true, +"type": "string" +}, +"requestId": { +"description": "Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).", +"location": "query", +"type": "string" +}, +"updateMask": { +"description": "Required. Update mask is used to specify the fields to be overwritten in the `DiscoveryClient` resource by the update. The values specified in the `update_mask` field are relative to the resource, not the full request. A field will be overwritten if it is in the mask. A single * value in the mask lets you to overwrite all fields.", +"format": "google-fieldmask", +"location": "query", +"type": "string" +} +}, +"path": "v1alpha1/{+name}", +"request": { +"$ref": "DiscoveryClient" +}, +"response": { +"$ref": "Operation" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +}, +"sendHeartbeat": { +"description": "Sends a discovery client heartbeat. Healthy clients are expected to send heartbeats regularly (normally every few minutes).", +"flatPath": "v1alpha1/projects/{projectsId}/locations/{locationsId}/discoveryClients/{discoveryClientsId}:sendHeartbeat", +"httpMethod": "POST", +"id": "migrationcenter.projects.locations.discoveryClients.sendHeartbeat", +"parameterOrder": [ +"name" +], +"parameters": { +"name": { +"description": "Required. The discovery client name.", +"location": "path", +"pattern": "^projects/[^/]+/locations/[^/]+/discoveryClients/[^/]+$", +"required": true, +"type": "string" +} +}, +"path": "v1alpha1/{+name}:sendHeartbeat", +"request": { +"$ref": "SendDiscoveryClientHeartbeatRequest" +}, +"response": { +"$ref": "Operation" +}, +"scopes": [ +"https://www.googleapis.com/auth/cloud-platform" +] +} +} +}, "groups": { "methods": { "addAssets": { @@ -2107,7 +2317,7 @@ } } }, -"revision": "20240314", +"revision": "20240321", "rootUrl": "https://migrationcenter.googleapis.com/", "schemas": { "AddAssetsToGroupRequest": { @@ -2413,6 +2623,26 @@ "description": "Generic asset attributes.", "type": "object" }, +"collectionType": { +"description": "Optional. Frame collection type, if not specified the collection type will be based on the source type of the source the frame was reported on.", +"enum": [ +"SOURCE_TYPE_UNKNOWN", +"SOURCE_TYPE_UPLOAD", +"SOURCE_TYPE_GUEST_OS_SCAN", +"SOURCE_TYPE_INVENTORY_SCAN", +"SOURCE_TYPE_CUSTOM", +"SOURCE_TYPE_DISCOVERY_CLIENT" +], +"enumDescriptions": [ +"Unspecified", +"Manually uploaded file (e.g. CSV)", +"Guest-level info", +"Inventory-level scan", +"Third-party owned sources.", +"Discovery clients" +], +"type": "string" +}, "labels": { "additionalProperties": { "type": "string" @@ -2911,6 +3141,106 @@ }, "type": "object" }, +"DiscoveryClient": { +"description": "Represents an installed Migration Center Discovery Client instance.", +"id": "DiscoveryClient", +"properties": { +"createTime": { +"description": "Output only. Time when the discovery client was first created.", +"format": "google-datetime", +"readOnly": true, +"type": "string" +}, +"description": { +"description": "Optional. Free text description. Maximum length is 1000 characters.", +"type": "string" +}, +"displayName": { +"description": "Optional. Free text display name. Maximum length is 63 characters.", +"type": "string" +}, +"errors": { +"description": "Output only. Errors affecting client functionality.", +"items": { +"$ref": "Status" +}, +"readOnly": true, +"type": "array" +}, +"expireTime": { +"description": "Optional. Client expiration time in UTC. If specified, the backend will not accept new frames after this time.", +"format": "google-datetime", +"type": "string" +}, +"heartbeatTime": { +"description": "Output only. Last heartbeat time. Healthy clients are expected to send heartbeats regularly (normally every few minutes).", +"format": "google-datetime", +"readOnly": true, +"type": "string" +}, +"labels": { +"additionalProperties": { +"type": "string" +}, +"description": "Optional. Labels as key value pairs.", +"type": "object" +}, +"name": { +"description": "Output only. Identifier. Full name of this discovery client.", +"readOnly": true, +"type": "string" +}, +"serviceAccount": { +"description": "Required. Service account used by the discovery client for various operation.", +"type": "string" +}, +"signalsEndpoint": { +"description": "Output only. This field is intended for internal use.", +"readOnly": true, +"type": "string" +}, +"source": { +"description": "Required. Full name of the source object associated with this discovery client.", +"type": "string" +}, +"state": { +"description": "Output only. Current state of the discovery client.", +"enum": [ +"STATE_UNSPECIFIED", +"ACTIVE", +"OFFLINE", +"DEGRADED", +"EXPIRED" +], +"enumDescriptions": [ +"Client state is unspecified.", +"Client is active.", +"Client is offline.", +"Client is in a degraded state. See the `errors` field for details.", +"Client has expired. See the expire_time field for the expire time." +], +"readOnly": true, +"type": "string" +}, +"ttl": { +"description": "Optional. Input only. Client time-to-live. If specified, the backend will not accept new frames after this time. This field is input only. The derived expiration time is provided as output through the `expire_time` field.", +"format": "google-duration", +"type": "string" +}, +"updateTime": { +"description": "Output only. Time when the discovery client was last updated. This value is not updated by heartbeats, to view the last heartbeat time please refer to the `heartbeat_time` field.", +"format": "google-datetime", +"readOnly": true, +"type": "string" +}, +"version": { +"description": "Output only. Client version, as reported in recent heartbeat.", +"readOnly": true, +"type": "string" +} +}, +"type": "object" +}, "DiskEntry": { "description": "Single disk entry.", "id": "DiskEntry", @@ -3256,9 +3586,9 @@ false "Configuration management DB format.", "RVTools format (XLSX).", "RVTools format (CSV).", -"CSV format exported from AWS using the AWS collection script.", -"CSV format exported from Azure using the Azure collection script.", -"CSV format created manually. For more information, see Manually create and upload data tables." +"CSV format exported from AWS using the [AWS collection script](https://github.com/GoogleCloudPlatform/aws-to-stratozone-export).", +"CSV format exported from Azure using the [Azure collection script](https://github.com/GoogleCloudPlatform/azure-to-stratozone-export).", +"CSV format created manually. For more information, see [Manually create and upload data tables](https://cloud.google.com/migrate/stratozone/docs/import-data-portal)." ], "type": "string" }, @@ -3551,9 +3881,9 @@ false "Configuration management DB format.", "RVTools format (XLSX).", "RVTools format (CSV).", -"CSV format exported from AWS using the AWS collection script.", -"CSV format exported from Azure using the Azure collection script.", -"CSV format created manually. For more information, see Manually create and upload data tables." +"CSV format exported from AWS using the [AWS collection script](https://github.com/GoogleCloudPlatform/aws-to-stratozone-export).", +"CSV format exported from Azure using the [Azure collection script](https://github.com/GoogleCloudPlatform/azure-to-stratozone-export).", +"CSV format created manually. For more information, see [Manually create and upload data tables](https://cloud.google.com/migrate/stratozone/docs/import-data-portal)." ], "type": "string" }, @@ -3757,9 +4087,9 @@ false "Configuration management DB format.", "RVTools format (XLSX).", "RVTools format (CSV).", -"CSV format exported from AWS using the AWS collection script.", -"CSV format exported from Azure using the Azure collection script.", -"CSV format created manually. For more information, see Manually create and upload data tables." +"CSV format exported from AWS using the [AWS collection script](https://github.com/GoogleCloudPlatform/aws-to-stratozone-export).", +"CSV format exported from Azure using the [Azure collection script](https://github.com/GoogleCloudPlatform/azure-to-stratozone-export).", +"CSV format created manually. For more information, see [Manually create and upload data tables](https://cloud.google.com/migrate/stratozone/docs/import-data-portal)." ], "type": "string" }, @@ -3841,6 +4171,31 @@ false }, "type": "object" }, +"ListDiscoveryClientsResponse": { +"description": "Response message for listing discovery clients.", +"id": "ListDiscoveryClientsResponse", +"properties": { +"discoveryClients": { +"description": "List of discovery clients.", +"items": { +"$ref": "DiscoveryClient" +}, +"type": "array" +}, +"nextPageToken": { +"description": "A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.", +"type": "string" +}, +"unreachable": { +"description": "Locations that could not be reached.", +"items": { +"type": "string" +}, +"type": "array" +} +}, +"type": "object" +}, "ListErrorFramesResponse": { "description": "A response for listing error frames.", "id": "ListErrorFramesResponse", @@ -5357,6 +5712,24 @@ false }, "type": "object" }, +"SendDiscoveryClientHeartbeatRequest": { +"description": "A request to send a discovery client heartbeat.", +"id": "SendDiscoveryClientHeartbeatRequest", +"properties": { +"errors": { +"description": "Optional. Errors affecting client functionality.", +"items": { +"$ref": "Status" +}, +"type": "array" +}, +"version": { +"description": "Optional. Client application version.", +"type": "string" +} +}, +"type": "object" +}, "Settings": { "description": "Describes the Migration Center settings related to the project.", "id": "Settings", @@ -5519,14 +5892,16 @@ false "SOURCE_TYPE_UPLOAD", "SOURCE_TYPE_GUEST_OS_SCAN", "SOURCE_TYPE_INVENTORY_SCAN", -"SOURCE_TYPE_CUSTOM" +"SOURCE_TYPE_CUSTOM", +"SOURCE_TYPE_DISCOVERY_CLIENT" ], "enumDescriptions": [ "Unspecified", "Manually uploaded file (e.g. CSV)", "Guest-level info", "Inventory-level scan", -"Third-party owned sources." +"Third-party owned sources.", +"Discovery clients" ], "type": "string" },