diff --git a/docs/dyn/workloadmanager_v1.projects.locations.html b/docs/dyn/workloadmanager_v1.projects.locations.html index a269026e345..ec408ae5321 100644 --- a/docs/dyn/workloadmanager_v1.projects.locations.html +++ b/docs/dyn/workloadmanager_v1.projects.locations.html @@ -126,7 +126,7 @@

Method Details

Returns: An object of the form: - { # A resource that represents Google Cloud Platform location. + { # A resource that represents a Google Cloud location. "displayName": "A String", # The friendly name for this location, typically a nearby city name. For example, "Tokyo". "labels": { # Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} "a_key": "A String", @@ -158,7 +158,7 @@

Method Details

{ # The response message for Locations.ListLocations. "locations": [ # A list of locations that matches the specified filter in the request. - { # A resource that represents Google Cloud Platform location. + { # A resource that represents a Google Cloud location. "displayName": "A String", # The friendly name for this location, typically a nearby city name. For example, "Tokyo". "labels": { # Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} "a_key": "A String", diff --git a/docs/dyn/workloadmanager_v1.projects.locations.insights.html b/docs/dyn/workloadmanager_v1.projects.locations.insights.html index 379cedafd3c..afb14526f1b 100644 --- a/docs/dyn/workloadmanager_v1.projects.locations.insights.html +++ b/docs/dyn/workloadmanager_v1.projects.locations.insights.html @@ -108,7 +108,6 @@

Method Details

"A String", ], "resourceKind": "A String", # ComputeInstance, ComputeDisk, VPC, Bare Metal server, etc. - "resourceState": "A String", # Indicates whether this is a new, updated, or missing resource. "resourceType": "A String", # The type of this resource. "resourceUri": "A String", # URI of the resource, includes project, location, and name. "updateTime": "A String", # Unix timestamp of when this resource last had its discovery data updated. @@ -126,7 +125,6 @@

Method Details

"A String", ], "resourceKind": "A String", # ComputeInstance, ComputeDisk, VPC, Bare Metal server, etc. - "resourceState": "A String", # Indicates whether this is a new, updated, or missing resource. "resourceType": "A String", # The type of this resource. "resourceUri": "A String", # URI of the resource, includes project, location, and name. "updateTime": "A String", # Unix timestamp of when this resource last had its discovery data updated. @@ -154,6 +152,18 @@

Method Details

], }, "sentTime": "A String", # Output only. [Output only] Create time stamp + "sqlserverValidation": { # A presentation of SQLServer workload insight. The schema of SqlServer workloads validation related data. # The insights data for the sqlserver workload validation. + "agentVersion": "A String", # The agent version collected this data point + "validationDetails": [ # A list of SqlServer validation metrics data. + { # Message describing the Sqlserver validation metrics. + "details": { # The pairs of metrics data: field name & field value. + "a_key": "A String", + }, + "instanceId": "A String", # The instance id where the ValidationDetail is generated from + "type": "A String", # The Sqlserver system that the validation data is from. + }, + ], + }, }, "requestId": "A 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). } diff --git a/googleapiclient/discovery_cache/documents/workloadmanager.v1.json b/googleapiclient/discovery_cache/documents/workloadmanager.v1.json index b875d22a800..4ce251f8295 100644 --- a/googleapiclient/discovery_cache/documents/workloadmanager.v1.json +++ b/googleapiclient/discovery_cache/documents/workloadmanager.v1.json @@ -702,7 +702,7 @@ } } }, - "revision": "20230406", + "revision": "20230503", "rootUrl": "https://workloadmanager.googleapis.com/", "schemas": { "CancelOperationRequest": { @@ -913,6 +913,10 @@ "format": "google-datetime", "readOnly": true, "type": "string" + }, + "sqlserverValidation": { + "$ref": "SqlserverValidation", + "description": "The insights data for the sqlserver workload validation." } }, "type": "object" @@ -1058,7 +1062,7 @@ "type": "object" }, "Location": { - "description": "A resource that represents Google Cloud Platform location.", + "description": "A resource that represents a Google Cloud location.", "id": "Location", "properties": { "displayName": { @@ -1414,26 +1418,6 @@ "description": "ComputeInstance, ComputeDisk, VPC, Bare Metal server, etc.", "type": "string" }, - "resourceState": { - "description": "Indicates whether this is a new, updated, or missing resource.", - "enum": [ - "RESOURCE_STATE_UNSPECIFIED", - "ADDED", - "UPDATED", - "REMOVED", - "REPLACED", - "MISSING" - ], - "enumDescriptions": [ - "Undefined resource state", - "Resource was added this cycle", - "Resource already discovered, just updated this cycle", - "Resource already discovered, but has been explicitly removed this cycle", - "Resource already discovered, but has been replaced by a new resource this cycle", - "Resource already discovered, but is missing or unresponsive this cycle" - ], - "type": "string" - }, "resourceType": { "description": "The type of this resource.", "enum": [ @@ -1521,6 +1505,56 @@ }, "type": "object" }, + "SqlserverValidation": { + "description": "A presentation of SQLServer workload insight. The schema of SqlServer workloads validation related data.", + "id": "SqlserverValidation", + "properties": { + "agentVersion": { + "description": "The agent version collected this data point", + "type": "string" + }, + "validationDetails": { + "description": "A list of SqlServer validation metrics data.", + "items": { + "$ref": "SqlserverValidationValidationDetail" + }, + "type": "array" + } + }, + "type": "object" + }, + "SqlserverValidationValidationDetail": { + "description": "Message describing the Sqlserver validation metrics.", + "id": "SqlserverValidationValidationDetail", + "properties": { + "details": { + "additionalProperties": { + "type": "string" + }, + "description": "The pairs of metrics data: field name & field value.", + "type": "object" + }, + "instanceId": { + "description": "The instance id where the ValidationDetail is generated from", + "type": "string" + }, + "type": { + "description": "The Sqlserver system that the validation data is from.", + "enum": [ + "SQLSERVER_VALIDATION_TYPE_UNSPECIFIED", + "OS", + "DB" + ], + "enumDescriptions": [ + "Unspecified type.", + "The Sqlserver system named OS", + "The Sqlserver system named DB" + ], + "type": "string" + } + }, + "type": "object" + }, "Status": { "description": "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).", "id": "Status",