Skip to content

Commit dd0af78

Browse files
yoshi-automationmiguelvelezsa
authored andcommitted
feat(alloydb): update the API
#### alloydb:v1alpha The following keys were added: - schemas.Cluster.properties.dataplexConfig.$ref - schemas.Cluster.properties.dataplexConfig.description - schemas.DataplexConfig.description - schemas.DataplexConfig.id - schemas.DataplexConfig.properties.enabled.description - schemas.DataplexConfig.properties.enabled.type - schemas.DataplexConfig.type #### alloydb:v1beta The following keys were added: - schemas.Cluster.properties.dataplexConfig.$ref - schemas.Cluster.properties.dataplexConfig.description - schemas.DataplexConfig.description - schemas.DataplexConfig.id - schemas.DataplexConfig.properties.enabled.description - schemas.DataplexConfig.properties.enabled.type - schemas.DataplexConfig.type #### alloydb:v1 The following keys were added: - schemas.Cluster.properties.dataplexConfig.$ref - schemas.Cluster.properties.dataplexConfig.description - schemas.DataplexConfig.description - schemas.DataplexConfig.id - schemas.DataplexConfig.properties.enabled.description - schemas.DataplexConfig.properties.enabled.type - schemas.DataplexConfig.type
1 parent b7d1aee commit dd0af78

File tree

6 files changed

+99
-3
lines changed

6 files changed

+99
-3
lines changed

discovery/alloydb-v1.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1627,7 +1627,7 @@
16271627
}
16281628
}
16291629
},
1630-
"revision": "20251009",
1630+
"revision": "20251016",
16311631
"rootUrl": "https://alloydb.googleapis.com/",
16321632
"schemas": {
16331633
"AuthorizedNetwork": {
@@ -2141,6 +2141,10 @@
21412141
],
21422142
"type": "string"
21432143
},
2144+
"dataplexConfig": {
2145+
"$ref": "DataplexConfig",
2146+
"description": "Optional. Configuration for Dataplex integration."
2147+
},
21442148
"deleteTime": {
21452149
"description": "Output only. Delete time stamp",
21462150
"format": "google-datetime",
@@ -2581,6 +2585,17 @@
25812585
},
25822586
"type": "object"
25832587
},
2588+
"DataplexConfig": {
2589+
"description": "Configuration for Dataplex integration.",
2590+
"id": "DataplexConfig",
2591+
"properties": {
2592+
"enabled": {
2593+
"description": "Dataplex is enabled by default for resources such as clusters and instances. This flag controls the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex.\"",
2594+
"type": "boolean"
2595+
}
2596+
},
2597+
"type": "object"
2598+
},
25842599
"DenyMaintenancePeriod": {
25852600
"description": "DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not be scheduled to start within this deny period. The start_date must be less than the end_date.",
25862601
"id": "DenyMaintenancePeriod",

discovery/alloydb-v1alpha.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1627,7 +1627,7 @@
16271627
}
16281628
}
16291629
},
1630-
"revision": "20251009",
1630+
"revision": "20251016",
16311631
"rootUrl": "https://alloydb.googleapis.com/",
16321632
"schemas": {
16331633
"AuthorizedNetwork": {
@@ -2164,6 +2164,10 @@
21642164
],
21652165
"type": "string"
21662166
},
2167+
"dataplexConfig": {
2168+
"$ref": "DataplexConfig",
2169+
"description": "Optional. Configuration for Dataplex integration."
2170+
},
21672171
"deleteTime": {
21682172
"description": "Output only. Delete time stamp",
21692173
"format": "google-datetime",
@@ -2725,6 +2729,17 @@
27252729
},
27262730
"type": "object"
27272731
},
2732+
"DataplexConfig": {
2733+
"description": "Configuration for Dataplex integration.",
2734+
"id": "DataplexConfig",
2735+
"properties": {
2736+
"enabled": {
2737+
"description": "Dataplex is enabled by default for resources such as clusters and instances. This flag controls the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex.\"",
2738+
"type": "boolean"
2739+
}
2740+
},
2741+
"type": "object"
2742+
},
27282743
"DenyMaintenancePeriod": {
27292744
"description": "DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not be scheduled to start within this deny period. The start_date must be less than the end_date.",
27302745
"id": "DenyMaintenancePeriod",

discovery/alloydb-v1beta.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1624,7 +1624,7 @@
16241624
}
16251625
}
16261626
},
1627-
"revision": "20251009",
1627+
"revision": "20251016",
16281628
"rootUrl": "https://alloydb.googleapis.com/",
16291629
"schemas": {
16301630
"AuthorizedNetwork": {
@@ -2150,6 +2150,10 @@
21502150
],
21512151
"type": "string"
21522152
},
2153+
"dataplexConfig": {
2154+
"$ref": "DataplexConfig",
2155+
"description": "Optional. Configuration for Dataplex integration."
2156+
},
21532157
"deleteTime": {
21542158
"description": "Output only. Delete time stamp",
21552159
"format": "google-datetime",
@@ -2706,6 +2710,17 @@
27062710
},
27072711
"type": "object"
27082712
},
2713+
"DataplexConfig": {
2714+
"description": "Configuration for Dataplex integration.",
2715+
"id": "DataplexConfig",
2716+
"properties": {
2717+
"enabled": {
2718+
"description": "Dataplex is enabled by default for resources such as clusters and instances. This flag controls the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex.\"",
2719+
"type": "boolean"
2720+
}
2721+
},
2722+
"type": "object"
2723+
},
27092724
"DenyMaintenancePeriod": {
27102725
"description": "DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not be scheduled to start within this deny period. The start_date must be less than the end_date.",
27112726
"id": "DenyMaintenancePeriod",

src/apis/alloydb/v1.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,10 @@ export namespace alloydb_v1 {
455455
* Optional. The database engine major version. This is an optional field and it is populated at the Cluster creation time. If a database version is not supplied at cluster creation time, then a default database version will be used.
456456
*/
457457
databaseVersion?: string | null;
458+
/**
459+
* Optional. Configuration for Dataplex integration.
460+
*/
461+
dataplexConfig?: Schema$DataplexConfig;
458462
/**
459463
* Output only. Delete time stamp
460464
*/
@@ -717,6 +721,15 @@ export namespace alloydb_v1 {
717721
*/
718722
table?: string | null;
719723
}
724+
/**
725+
* Configuration for Dataplex integration.
726+
*/
727+
export interface Schema$DataplexConfig {
728+
/**
729+
* Dataplex is enabled by default for resources such as clusters and instances. This flag controls the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex."
730+
*/
731+
enabled?: boolean | null;
732+
}
720733
/**
721734
* DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not be scheduled to start within this deny period. The start_date must be less than the end_date.
722735
*/
@@ -3972,6 +3985,7 @@ export namespace alloydb_v1 {
39723985
* // "continuousBackupInfo": {},
39733986
* // "createTime": "my_createTime",
39743987
* // "databaseVersion": "my_databaseVersion",
3988+
* // "dataplexConfig": {},
39753989
* // "deleteTime": "my_deleteTime",
39763990
* // "displayName": "my_displayName",
39773991
* // "encryptionConfig": {},
@@ -4162,6 +4176,7 @@ export namespace alloydb_v1 {
41624176
* // "continuousBackupInfo": {},
41634177
* // "createTime": "my_createTime",
41644178
* // "databaseVersion": "my_databaseVersion",
4179+
* // "dataplexConfig": {},
41654180
* // "deleteTime": "my_deleteTime",
41664181
* // "displayName": "my_displayName",
41674182
* // "encryptionConfig": {},
@@ -4644,6 +4659,7 @@ export namespace alloydb_v1 {
46444659
* // "continuousBackupInfo": {},
46454660
* // "createTime": "my_createTime",
46464661
* // "databaseVersion": "my_databaseVersion",
4662+
* // "dataplexConfig": {},
46474663
* // "deleteTime": "my_deleteTime",
46484664
* // "displayName": "my_displayName",
46494665
* // "encryptionConfig": {},
@@ -5120,6 +5136,7 @@ export namespace alloydb_v1 {
51205136
* // "continuousBackupInfo": {},
51215137
* // "createTime": "my_createTime",
51225138
* // "databaseVersion": "my_databaseVersion",
5139+
* // "dataplexConfig": {},
51235140
* // "deleteTime": "my_deleteTime",
51245141
* // "displayName": "my_displayName",
51255142
* // "encryptionConfig": {},

src/apis/alloydb/v1alpha.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,10 @@ export namespace alloydb_v1alpha {
472472
* Optional. The database engine major version. This is an optional field and it is populated at the Cluster creation time. If a database version is not supplied at cluster creation time, then a default database version will be used.
473473
*/
474474
databaseVersion?: string | null;
475+
/**
476+
* Optional. Configuration for Dataplex integration.
477+
*/
478+
dataplexConfig?: Schema$DataplexConfig;
475479
/**
476480
* Output only. Delete time stamp
477481
*/
@@ -807,6 +811,15 @@ export namespace alloydb_v1alpha {
807811
*/
808812
table?: string | null;
809813
}
814+
/**
815+
* Configuration for Dataplex integration.
816+
*/
817+
export interface Schema$DataplexConfig {
818+
/**
819+
* Dataplex is enabled by default for resources such as clusters and instances. This flag controls the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex."
820+
*/
821+
enabled?: boolean | null;
822+
}
810823
/**
811824
* DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not be scheduled to start within this deny period. The start_date must be less than the end_date.
812825
*/
@@ -4165,6 +4178,7 @@ export namespace alloydb_v1alpha {
41654178
* // "continuousBackupInfo": {},
41664179
* // "createTime": "my_createTime",
41674180
* // "databaseVersion": "my_databaseVersion",
4181+
* // "dataplexConfig": {},
41684182
* // "deleteTime": "my_deleteTime",
41694183
* // "displayName": "my_displayName",
41704184
* // "encryptionConfig": {},
@@ -4359,6 +4373,7 @@ export namespace alloydb_v1alpha {
43594373
* // "continuousBackupInfo": {},
43604374
* // "createTime": "my_createTime",
43614375
* // "databaseVersion": "my_databaseVersion",
4376+
* // "dataplexConfig": {},
43624377
* // "deleteTime": "my_deleteTime",
43634378
* // "displayName": "my_displayName",
43644379
* // "encryptionConfig": {},
@@ -4847,6 +4862,7 @@ export namespace alloydb_v1alpha {
48474862
* // "continuousBackupInfo": {},
48484863
* // "createTime": "my_createTime",
48494864
* // "databaseVersion": "my_databaseVersion",
4865+
* // "dataplexConfig": {},
48504866
* // "deleteTime": "my_deleteTime",
48514867
* // "displayName": "my_displayName",
48524868
* // "encryptionConfig": {},
@@ -5330,6 +5346,7 @@ export namespace alloydb_v1alpha {
53305346
* // "continuousBackupInfo": {},
53315347
* // "createTime": "my_createTime",
53325348
* // "databaseVersion": "my_databaseVersion",
5349+
* // "dataplexConfig": {},
53335350
* // "deleteTime": "my_deleteTime",
53345351
* // "displayName": "my_displayName",
53355352
* // "encryptionConfig": {},

src/apis/alloydb/v1beta.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,10 @@ export namespace alloydb_v1beta {
464464
* Optional. The database engine major version. This is an optional field and it is populated at the Cluster creation time. If a database version is not supplied at cluster creation time, then a default database version will be used.
465465
*/
466466
databaseVersion?: string | null;
467+
/**
468+
* Optional. Configuration for Dataplex integration.
469+
*/
470+
dataplexConfig?: Schema$DataplexConfig;
467471
/**
468472
* Output only. Delete time stamp
469473
*/
@@ -795,6 +799,15 @@ export namespace alloydb_v1beta {
795799
*/
796800
table?: string | null;
797801
}
802+
/**
803+
* Configuration for Dataplex integration.
804+
*/
805+
export interface Schema$DataplexConfig {
806+
/**
807+
* Dataplex is enabled by default for resources such as clusters and instances. This flag controls the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex."
808+
*/
809+
enabled?: boolean | null;
810+
}
798811
/**
799812
* DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not be scheduled to start within this deny period. The start_date must be less than the end_date.
800813
*/
@@ -4146,6 +4159,7 @@ export namespace alloydb_v1beta {
41464159
* // "continuousBackupInfo": {},
41474160
* // "createTime": "my_createTime",
41484161
* // "databaseVersion": "my_databaseVersion",
4162+
* // "dataplexConfig": {},
41494163
* // "deleteTime": "my_deleteTime",
41504164
* // "displayName": "my_displayName",
41514165
* // "encryptionConfig": {},
@@ -4339,6 +4353,7 @@ export namespace alloydb_v1beta {
43394353
* // "continuousBackupInfo": {},
43404354
* // "createTime": "my_createTime",
43414355
* // "databaseVersion": "my_databaseVersion",
4356+
* // "dataplexConfig": {},
43424357
* // "deleteTime": "my_deleteTime",
43434358
* // "displayName": "my_displayName",
43444359
* // "encryptionConfig": {},
@@ -4826,6 +4841,7 @@ export namespace alloydb_v1beta {
48264841
* // "continuousBackupInfo": {},
48274842
* // "createTime": "my_createTime",
48284843
* // "databaseVersion": "my_databaseVersion",
4844+
* // "dataplexConfig": {},
48294845
* // "deleteTime": "my_deleteTime",
48304846
* // "displayName": "my_displayName",
48314847
* // "encryptionConfig": {},
@@ -5308,6 +5324,7 @@ export namespace alloydb_v1beta {
53085324
* // "continuousBackupInfo": {},
53095325
* // "createTime": "my_createTime",
53105326
* // "databaseVersion": "my_databaseVersion",
5327+
* // "dataplexConfig": {},
53115328
* // "deleteTime": "my_deleteTime",
53125329
* // "displayName": "my_displayName",
53135330
* // "encryptionConfig": {},

0 commit comments

Comments
 (0)