Skip to content

Commit 71ff84c

Browse files
yoshi-automationleahecole
authored andcommitted
feat(alloydb): update the API
#### alloydb:v1alpha The following keys were added: - schemas.StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed.properties.skipIngestion.description - schemas.StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed.properties.skipIngestion.type The following keys were changed: - schemas.StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed.description #### alloydb:v1beta The following keys were added: - schemas.StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed.properties.skipIngestion.description - schemas.StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed.properties.skipIngestion.type The following keys were changed: - schemas.StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed.description #### alloydb:v1 The following keys were added: - schemas.StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed.properties.skipIngestion.description - schemas.StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed.properties.skipIngestion.type The following keys were changed: - schemas.StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed.description
1 parent 4e85651 commit 71ff84c

File tree

6 files changed

+33
-9
lines changed

6 files changed

+33
-9
lines changed

discovery/alloydb-v1.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@
16221622
}
16231623
}
16241624
},
1625-
"revision": "20250731",
1625+
"revision": "20250807",
16261626
"rootUrl": "https://alloydb.googleapis.com/",
16271627
"schemas": {
16281628
"AuthorizedNetwork": {
@@ -4243,7 +4243,7 @@
42434243
"type": "object"
42444244
},
42454245
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed": {
4246-
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 10",
4246+
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 11",
42474247
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed",
42484248
"properties": {
42494249
"backupdrMetadata": {
@@ -4297,6 +4297,10 @@
42974297
},
42984298
"resourceMetadata": {
42994299
"$ref": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata"
4300+
},
4301+
"skipIngestion": {
4302+
"description": "Optional. If true, the feed won't be ingested by DB Center. This indicates that the feed is intentionally skipped. For example, BackupDR feeds are only needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB). Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can be skipped.",
4303+
"type": "boolean"
43004304
}
43014305
},
43024306
"type": "object"

discovery/alloydb-v1alpha.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@
16221622
}
16231623
}
16241624
},
1625-
"revision": "20250731",
1625+
"revision": "20250807",
16261626
"rootUrl": "https://alloydb.googleapis.com/",
16271627
"schemas": {
16281628
"AuthorizedNetwork": {
@@ -4420,7 +4420,7 @@
44204420
"type": "object"
44214421
},
44224422
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed": {
4423-
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 10",
4423+
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 11",
44244424
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed",
44254425
"properties": {
44264426
"backupdrMetadata": {
@@ -4474,6 +4474,10 @@
44744474
},
44754475
"resourceMetadata": {
44764476
"$ref": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata"
4477+
},
4478+
"skipIngestion": {
4479+
"description": "Optional. If true, the feed won't be ingested by DB Center. This indicates that the feed is intentionally skipped. For example, BackupDR feeds are only needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB). Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can be skipped.",
4480+
"type": "boolean"
44774481
}
44784482
},
44794483
"type": "object"

discovery/alloydb-v1beta.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1619,7 +1619,7 @@
16191619
}
16201620
}
16211621
},
1622-
"revision": "20250731",
1622+
"revision": "20250807",
16231623
"rootUrl": "https://alloydb.googleapis.com/",
16241624
"schemas": {
16251625
"AuthorizedNetwork": {
@@ -4396,7 +4396,7 @@
43964396
"type": "object"
43974397
},
43984398
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed": {
4399-
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 10",
4399+
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 11",
44004400
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed",
44014401
"properties": {
44024402
"backupdrMetadata": {
@@ -4450,6 +4450,10 @@
44504450
},
44514451
"resourceMetadata": {
44524452
"$ref": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata"
4453+
},
4454+
"skipIngestion": {
4455+
"description": "Optional. If true, the feed won't be ingested by DB Center. This indicates that the feed is intentionally skipped. For example, BackupDR feeds are only needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB). Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can be skipped.",
4456+
"type": "boolean"
44534457
}
44544458
},
44554459
"type": "object"

src/apis/alloydb/v1.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1812,7 +1812,7 @@ export namespace alloydb_v1 {
18121812
internalResourceMetadata?: Schema$StorageDatabasecenterPartnerapiV1mainInternalResourceMetadata[];
18131813
}
18141814
/**
1815-
* DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 10
1815+
* DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 11
18161816
*/
18171817
export interface Schema$StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed {
18181818
/**
@@ -1839,6 +1839,10 @@ export namespace alloydb_v1 {
18391839
*/
18401840
resourceId?: Schema$StorageDatabasecenterPartnerapiV1mainDatabaseResourceId;
18411841
resourceMetadata?: Schema$StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata;
1842+
/**
1843+
* Optional. If true, the feed won't be ingested by DB Center. This indicates that the feed is intentionally skipped. For example, BackupDR feeds are only needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB). Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can be skipped.
1844+
*/
1845+
skipIngestion?: boolean | null;
18421846
}
18431847
/**
18441848
* Common model for database resource health signal data.

src/apis/alloydb/v1alpha.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1930,7 +1930,7 @@ export namespace alloydb_v1alpha {
19301930
internalResourceMetadata?: Schema$StorageDatabasecenterPartnerapiV1mainInternalResourceMetadata[];
19311931
}
19321932
/**
1933-
* DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 10
1933+
* DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 11
19341934
*/
19351935
export interface Schema$StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed {
19361936
/**
@@ -1957,6 +1957,10 @@ export namespace alloydb_v1alpha {
19571957
*/
19581958
resourceId?: Schema$StorageDatabasecenterPartnerapiV1mainDatabaseResourceId;
19591959
resourceMetadata?: Schema$StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata;
1960+
/**
1961+
* Optional. If true, the feed won't be ingested by DB Center. This indicates that the feed is intentionally skipped. For example, BackupDR feeds are only needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB). Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can be skipped.
1962+
*/
1963+
skipIngestion?: boolean | null;
19601964
}
19611965
/**
19621966
* Common model for database resource health signal data.

src/apis/alloydb/v1beta.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1914,7 +1914,7 @@ export namespace alloydb_v1beta {
19141914
internalResourceMetadata?: Schema$StorageDatabasecenterPartnerapiV1mainInternalResourceMetadata[];
19151915
}
19161916
/**
1917-
* DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 10
1917+
* DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 11
19181918
*/
19191919
export interface Schema$StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed {
19201920
/**
@@ -1941,6 +1941,10 @@ export namespace alloydb_v1beta {
19411941
*/
19421942
resourceId?: Schema$StorageDatabasecenterPartnerapiV1mainDatabaseResourceId;
19431943
resourceMetadata?: Schema$StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata;
1944+
/**
1945+
* Optional. If true, the feed won't be ingested by DB Center. This indicates that the feed is intentionally skipped. For example, BackupDR feeds are only needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB). Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can be skipped.
1946+
*/
1947+
skipIngestion?: boolean | null;
19441948
}
19451949
/**
19461950
* Common model for database resource health signal data.

0 commit comments

Comments
 (0)