Skip to content

Commit f12f503

Browse files
authoredMar 17, 2025··
feat(all): auto-regenerate discovery clients (#3069)
1 parent c6396b1 commit f12f503

File tree

4 files changed

+76
-10
lines changed

4 files changed

+76
-10
lines changed
 

‎datastream/v1/datastream-api.json

+20-4
Original file line numberDiff line numberDiff line change
@@ -1250,7 +1250,7 @@
12501250
}
12511251
}
12521252
},
1253-
"revision": "20250219",
1253+
"revision": "20250310",
12541254
"rootUrl": "https://datastream.googleapis.com/",
12551255
"schemas": {
12561256
"AppendOnly": {
@@ -2207,6 +2207,10 @@
22072207
"format": "int32",
22082208
"type": "integer"
22092209
},
2210+
"secretManagerStoredPassword": {
2211+
"description": "Optional. A reference to a Secret Manager resource name storing the MySQL connection password. Mutually exclusive with the `password` field.",
2212+
"type": "string"
2213+
},
22102214
"sslConfig": {
22112215
"$ref": "MysqlSslConfig",
22122216
"description": "SSL configuration for the MySQL connection."
@@ -2288,7 +2292,7 @@
22882292
"type": "boolean"
22892293
},
22902294
"clientKey": {
2291-
"description": "Optional. Input only. PEM-encoded private key associated with the Client Certificate. If this field is used then the 'client_certificate' and the 'ca_certificate' fields are mandatory. Mutually exclusive with the `secret_manager_stored_client_key` field.",
2295+
"description": "Optional. Input only. PEM-encoded private key associated with the Client Certificate. If this field is used then the 'client_certificate' and the 'ca_certificate' fields are mandatory.",
22922296
"type": "string"
22932297
},
22942298
"clientKeySet": {
@@ -2450,14 +2454,18 @@
24502454
"description": "Optional. SSL configuration for the Oracle connection."
24512455
},
24522456
"password": {
2453-
"description": "Optional. Password for the Oracle ASM connection.",
2457+
"description": "Optional. Password for the Oracle ASM connection. Mutually exclusive with the `secret_manager_stored_password` field.",
24542458
"type": "string"
24552459
},
24562460
"port": {
24572461
"description": "Required. Port for the Oracle ASM connection.",
24582462
"format": "int32",
24592463
"type": "integer"
24602464
},
2465+
"secretManagerStoredPassword": {
2466+
"description": "Optional. A reference to a Secret Manager resource name storing the Oracle ASM connection password. Mutually exclusive with the `password` field.",
2467+
"type": "string"
2468+
},
24612469
"username": {
24622470
"description": "Required. Username for the Oracle ASM connection.",
24632471
"type": "string"
@@ -2778,6 +2786,10 @@
27782786
"format": "int32",
27792787
"type": "integer"
27802788
},
2789+
"secretManagerStoredPassword": {
2790+
"description": "Optional. A reference to a Secret Manager resource name storing the PostgreSQL connection password. Mutually exclusive with the `password` field.",
2791+
"type": "string"
2792+
},
27812793
"sslConfig": {
27822794
"$ref": "PostgresqlSslConfig",
27832795
"description": "Optional. SSL configuration for the PostgreSQL connection. In case PostgresqlSslConfig is not set, the connection will use the default SSL mode, which is `prefer` (i.e. this mode will only use encryption if enabled from database side, otherwise will use unencrypted communication)"
@@ -3141,7 +3153,7 @@
31413153
"type": "string"
31423154
},
31433155
"clientKey": {
3144-
"description": "Optional. Input only. PEM-encoded private key associated with the client certificate. This value will be used during the SSL/TLS handshake, allowing the PostgreSQL server to authenticate the client's identity, i.e. identity of the Datastream. Mutually exclusive with the `secret_manager_stored_client_key` field.",
3156+
"description": "Optional. Input only. PEM-encoded private key associated with the client certificate. This value will be used during the SSL/TLS handshake, allowing the PostgreSQL server to authenticate the client's identity, i.e. identity of the Datastream.",
31453157
"type": "string"
31463158
}
31473159
},
@@ -3357,6 +3369,10 @@
33573369
"format": "int32",
33583370
"type": "integer"
33593371
},
3372+
"secretManagerStoredPassword": {
3373+
"description": "Optional. A reference to a Secret Manager resource name storing the SQLServer connection password. Mutually exclusive with the `password` field.",
3374+
"type": "string"
3375+
},
33603376
"username": {
33613377
"description": "Required. Username for the SQLServer connection.",
33623378
"type": "string"

‎datastream/v1/datastream-gen.go

+20-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎workloadmanager/v1/workloadmanager-api.json

+20-1
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,25 @@
864864
"location": "query",
865865
"type": "string"
866866
},
867+
"evaluationType": {
868+
"description": "Optional. The evaluation type of the rules will be applied to. The Cloud Storage bucket name for custom rules.",
869+
"enum": [
870+
"EVALUATION_TYPE_UNSPECIFIED",
871+
"SAP",
872+
"SQL_SERVER",
873+
"OTHER",
874+
"SCC_IAC"
875+
],
876+
"enumDescriptions": [
877+
"Not specified",
878+
"SAP best practices",
879+
"SQL best practices",
880+
"Customized best practices",
881+
"SCC IaC (Infra as Code) best practices"
882+
],
883+
"location": "query",
884+
"type": "string"
885+
},
867886
"filter": {
868887
"description": "Filter based on primary_category, secondary_category",
869888
"location": "query",
@@ -903,7 +922,7 @@
903922
}
904923
}
905924
},
906-
"revision": "20250226",
925+
"revision": "20250310",
907926
"rootUrl": "https://workloadmanager.googleapis.com/",
908927
"schemas": {
909928
"APILayerServer": {

‎workloadmanager/v1/workloadmanager-gen.go

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.