Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1604)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jun 29, 2022
1 parent 8937b91 commit 5e7eede
Show file tree
Hide file tree
Showing 14 changed files with 2,831 additions and 181 deletions.
19 changes: 18 additions & 1 deletion assuredworkloads/v1/assuredworkloads-api.json
Expand Up @@ -379,7 +379,7 @@
}
}
},
"revision": "20220609",
"revision": "20220623",
"rootUrl": "https://assuredworkloads.googleapis.com/",
"schemas": {
"GoogleCloudAssuredworkloadsV1CreateWorkloadOperationMetadata": {
Expand Down Expand Up @@ -1163,6 +1163,11 @@
],
"type": "string"
},
"complianceStatus": {
"$ref": "GoogleCloudAssuredworkloadsVersioningV1mainWorkloadComplianceStatus",
"description": "Output only. Count of active Violations in the Workload.",
"readOnly": true
},
"createTime": {
"description": "Output only. Immutable. The Workload creation timestamp.",
"format": "google-datetime",
Expand Down Expand Up @@ -1261,6 +1266,18 @@
},
"type": "object"
},
"GoogleCloudAssuredworkloadsVersioningV1mainWorkloadComplianceStatus": {
"description": "Represents the Compliance Status of this workload",
"id": "GoogleCloudAssuredworkloadsVersioningV1mainWorkloadComplianceStatus",
"properties": {
"activeViolationCount": {
"description": "Optional. Count of active Violations in the Workload.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampHighSettings": {
"description": "Settings specific to resources needed for FedRAMP High.",
"id": "GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampHighSettings",
Expand Down
36 changes: 36 additions & 0 deletions assuredworkloads/v1/assuredworkloads-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 31 additions & 1 deletion bigquery/v2/bigquery-api.json
Expand Up @@ -1710,7 +1710,7 @@
}
}
},
"revision": "20220528",
"revision": "20220611",
"rootUrl": "https://bigquery.googleapis.com/",
"schemas": {
"AggregateClassificationMetrics": {
Expand Down Expand Up @@ -5561,6 +5561,11 @@
"format": "int64",
"type": "string"
},
"estimatedRunnableUnits": {
"description": "Units of work that can be scheduled immediately. Providing additional slots for these units of work will speed up the query, provided no other query in the reservation needs additional slots.",
"format": "int64",
"type": "string"
},
"pendingUnits": {
"description": "Total parallel units of work remaining for the active stages.",
"format": "int64",
Expand Down Expand Up @@ -6217,6 +6222,11 @@
"$ref": "MaterializedViewDefinition",
"description": "[Optional] Materialized view definition."
},
"maxStaleness": {
"description": "[Optional] Max staleness of data that could be returned when table or materialized view is queried (formatted as Google SQL Interval type).",
"format": "byte",
"type": "string"
},
"model": {
"$ref": "ModelDefinition",
"description": "[Output-only, Beta] Present iff this table represents a ML model. Describes the training information for the model, and it is required to run 'PREDICT' queries."
Expand Down Expand Up @@ -7199,6 +7209,11 @@
"format": "int64",
"type": "string"
},
"maxTimeSeriesLength": {
"description": "Get truncated length by last n points in time series. Use separately from time_series_length_fraction and min_time_series_length.",
"format": "int64",
"type": "string"
},
"maxTreeDepth": {
"description": "Maximum depth of a tree for boosted tree models.",
"format": "int64",
Expand All @@ -7214,6 +7229,11 @@
"format": "double",
"type": "number"
},
"minTimeSeriesLength": {
"description": "Set fast trend ARIMA_PLUS model minimum training length. Use in pair with time_series_length_fraction.",
"format": "int64",
"type": "string"
},
"minTreeChildWeight": {
"description": "Minimum sum of instance weight needed in a child for boosted tree models.",
"format": "int64",
Expand Down Expand Up @@ -7290,6 +7310,11 @@
},
"type": "array"
},
"timeSeriesLengthFraction": {
"description": "Get truncated length by fraction in time series.",
"format": "double",
"type": "number"
},
"timeSeriesTimestampColumn": {
"description": "Column to be designated as time series timestamp for ARIMA model.",
"type": "string"
Expand All @@ -7312,6 +7337,11 @@
],
"type": "string"
},
"trendSmoothingWindowSize": {
"description": "The smoothing window size for the trend component of the time series.",
"format": "int64",
"type": "string"
},
"userColumn": {
"description": "User column specified for matrix factorization models.",
"type": "string"
Expand Down
56 changes: 43 additions & 13 deletions bigquery/v2/bigquery-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5e7eede

Please sign in to comment.