Skip to content

Commit 161a8e5

Browse files
feat(all): auto-regenerate discovery clients (#2295)
1 parent c059038 commit 161a8e5

File tree

77 files changed

+8346
-964
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+8346
-964
lines changed

alloydb/v1/alloydb-api.json

+85-4
Original file line numberDiff line numberDiff line change
@@ -1489,7 +1489,7 @@
14891489
}
14901490
}
14911491
},
1492-
"revision": "20231109",
1492+
"revision": "20231128",
14931493
"rootUrl": "https://alloydb.googleapis.com/",
14941494
"schemas": {
14951495
"AutomatedBackupPolicy": {
@@ -1639,6 +1639,11 @@
16391639
"readOnly": true,
16401640
"type": "boolean"
16411641
},
1642+
"satisfiesPzs": {
1643+
"description": "Output only. Reserved for future use.",
1644+
"readOnly": true,
1645+
"type": "boolean"
1646+
},
16421647
"sizeBytes": {
16431648
"description": "Output only. The size of the backup in bytes.",
16441649
"format": "int64",
@@ -1896,6 +1901,11 @@
18961901
"readOnly": true,
18971902
"type": "boolean"
18981903
},
1904+
"satisfiesPzs": {
1905+
"description": "Output only. Reserved for future use.",
1906+
"readOnly": true,
1907+
"type": "boolean"
1908+
},
18991909
"secondaryConfig": {
19001910
"$ref": "SecondaryConfig",
19011911
"description": "Cross Region replication config specific to SECONDARY cluster."
@@ -2386,6 +2396,11 @@
23862396
"readOnly": true,
23872397
"type": "boolean"
23882398
},
2399+
"satisfiesPzs": {
2400+
"description": "Output only. Reserved for future use.",
2401+
"readOnly": true,
2402+
"type": "boolean"
2403+
},
23892404
"state": {
23902405
"description": "Output only. The current serving state of the instance.",
23912406
"enum": [
@@ -3175,7 +3190,7 @@
31753190
"type": "string"
31763191
},
31773192
"resourceContainer": {
3178-
"description": "Closest parent container of this resource. In GCP, 'container' refers to a Cloud Resource Manager project. It must be resource name of a Cloud Resource Manager project with the format of \"provider//\", such as \"gcp/projects/123\". For GCP provided resources, number should be project number.",
3193+
"description": "Closest parent container of this resource. In GCP, 'container' refers to a Cloud Resource Manager project. It must be resource name of a Cloud Resource Manager project with the format of \"provider//\", such as \"projects/123\". For GCP provided resources, number should be project number.",
31793194
"type": "string"
31803195
},
31813196
"resourceName": {
@@ -3502,13 +3517,35 @@
35023517
"description": "The type of the instance. Specified at creation time.",
35033518
"enum": [
35043519
"INSTANCE_TYPE_UNSPECIFIED",
3520+
"SUB_RESOURCE_TYPE_UNSPECIFIED",
35053521
"PRIMARY",
35063522
"SECONDARY",
35073523
"READ_REPLICA",
3508-
"OTHER"
3524+
"OTHER",
3525+
"SUB_RESOURCE_TYPE_PRIMARY",
3526+
"SUB_RESOURCE_TYPE_SECONDARY",
3527+
"SUB_RESOURCE_TYPE_READ_REPLICA",
3528+
"SUB_RESOURCE_TYPE_OTHER"
3529+
],
3530+
"enumDeprecated": [
3531+
true,
3532+
false,
3533+
true,
3534+
true,
3535+
true,
3536+
true,
3537+
false,
3538+
false,
3539+
false,
3540+
false
35093541
],
35103542
"enumDescriptions": [
35113543
"",
3544+
"For rest of the other categories.",
3545+
"A regular primary database instance.",
3546+
"A cluster or an instance acting as a secondary.",
3547+
"An instance acting as a read-replica.",
3548+
"For rest of the other categories.",
35123549
"A regular primary database instance.",
35133550
"A cluster or an instance acting as a secondary.",
35143551
"An instance acting as a read-replica.",
@@ -3529,7 +3566,7 @@
35293566
"description": "The product this resource represents."
35303567
},
35313568
"resourceContainer": {
3532-
"description": "Closest parent Cloud Resource Manager container of this resource. It must be resource name of a Cloud Resource Manager project with the format of \"provider//\", such as \"gcp/projects/123\". For GCP provided resources, number should be project number.",
3569+
"description": "Closest parent Cloud Resource Manager container of this resource. It must be resource name of a Cloud Resource Manager project with the format of \"/\", such as \"projects/123\". For GCP provided resources, number should be project number.",
35333570
"type": "string"
35343571
},
35353572
"resourceName": {
@@ -3604,20 +3641,44 @@
36043641
"description": "The specific engine that the underlying database is running.",
36053642
"enum": [
36063643
"ENGINE_UNSPECIFIED",
3644+
"ENGINE_MYSQL",
36073645
"MYSQL",
3646+
"ENGINE_POSTGRES",
36083647
"POSTGRES",
3648+
"ENGINE_SQL_SERVER",
36093649
"SQL_SERVER",
3650+
"ENGINE_NATIVE",
36103651
"NATIVE",
3652+
"ENGINE_CLOUD_SPANNER_WITH_POSTGRES_DIALECT",
36113653
"SPANGRES",
36123654
"ENGINE_OTHER"
36133655
],
3656+
"enumDeprecated": [
3657+
false,
3658+
false,
3659+
true,
3660+
false,
3661+
true,
3662+
false,
3663+
true,
3664+
false,
3665+
true,
3666+
false,
3667+
true,
3668+
false
3669+
],
36143670
"enumDescriptions": [
36153671
"UNSPECIFIED means engine type is not known or available.",
3672+
"MySQL binary running as an engine in the database instance.",
36163673
"MySQL binary running as engine in database instance.",
36173674
"Postgres binary running as engine in database instance.",
3675+
"Postgres binary running as engine in database instance.",
36183676
"SQLServer binary running as engine in database instance.",
3677+
"SQLServer binary running as engine in database instance.",
3678+
"Native database binary running as engine in instance.",
36193679
"Native database binary running as engine in instance.",
36203680
"Cloud Spanner with Postgres dialect.",
3681+
"Cloud Spanner with Postgres dialect.",
36213682
"Other refers to rest of other database engine. This is to be when engine is known, but it is not present in this enum."
36223683
],
36233684
"type": "string"
@@ -3626,18 +3687,38 @@
36263687
"description": "Type of specific database product. It could be CloudSQL, AlloyDB etc..",
36273688
"enum": [
36283689
"PRODUCT_TYPE_UNSPECIFIED",
3690+
"PRODUCT_TYPE_CLOUD_SQL",
36293691
"CLOUD_SQL",
3692+
"PRODUCT_TYPE_ALLOYDB",
36303693
"ALLOYDB",
3694+
"PRODUCT_TYPE_SPANNER",
36313695
"SPANNER",
3696+
"PRODUCT_TYPE_ON_PREM",
36323697
"ON_PREM",
36333698
"PRODUCT_TYPE_OTHER"
36343699
],
3700+
"enumDeprecated": [
3701+
false,
3702+
false,
3703+
true,
3704+
false,
3705+
true,
3706+
false,
3707+
true,
3708+
false,
3709+
true,
3710+
false
3711+
],
36353712
"enumDescriptions": [
36363713
"UNSPECIFIED means product type is not known or available.",
36373714
"Cloud SQL product area in GCP",
3715+
"Cloud SQL product area in GCP",
36383716
"AlloyDB product area in GCP",
3717+
"AlloyDB product area in GCP",
3718+
"Spanner product area in GCP",
36393719
"Spanner product area in GCP",
36403720
"On premises database product.",
3721+
"On premises database product.",
36413722
"Other refers to rest of other product type. This is to be when product type is known, but it is not present in this enum."
36423723
],
36433724
"type": "string"

alloydb/v1/alloydb-gen.go

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

0 commit comments

Comments
 (0)