Skip to content

Commit a6d27cf

Browse files
feat(all): auto-regenerate discovery clients (#3315)
1 parent 0e5a06d commit a6d27cf

File tree

8 files changed

+4797
-341
lines changed

8 files changed

+4797
-341
lines changed

oracledatabase/v1/oracledatabase-api.json

Lines changed: 1756 additions & 234 deletions
Large diffs are not rendered by default.

oracledatabase/v1/oracledatabase-gen.go

Lines changed: 2734 additions & 74 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

redis/v1/redis-api.json

Lines changed: 77 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
],
145145
"parameters": {
146146
"extraLocationTypes": {
147-
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
147+
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
148148
"location": "query",
149149
"repeated": true,
150150
"type": "string"
@@ -1073,7 +1073,7 @@
10731073
}
10741074
}
10751075
},
1076-
"revision": "20250902",
1076+
"revision": "20250909",
10771077
"rootUrl": "https://redis.googleapis.com/",
10781078
"schemas": {
10791079
"AOFConfig": {
@@ -2019,7 +2019,7 @@
20192019
"type": "object"
20202020
},
20212021
"DatabaseResourceFeed": {
2022-
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 11",
2022+
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 13",
20232023
"id": "DatabaseResourceFeed",
20242024
"properties": {
20252025
"backupdrMetadata": {
@@ -2030,6 +2030,10 @@
20302030
"$ref": "ConfigBasedSignalData",
20312031
"description": "Config based signal data is used to ingest signals that are generated based on the configuration of the database resource."
20322032
},
2033+
"databaseResourceSignalData": {
2034+
"$ref": "DatabaseResourceSignalData",
2035+
"description": "Database resource signal data is used to ingest signals from database resource signal feeds."
2036+
},
20332037
"feedTimestamp": {
20342038
"description": "Required. Timestamp when feed is generated.",
20352039
"format": "google-datetime",
@@ -2044,7 +2048,8 @@
20442048
"SECURITY_FINDING_DATA",
20452049
"RECOMMENDATION_SIGNAL_DATA",
20462050
"CONFIG_BASED_SIGNAL_DATA",
2047-
"BACKUPDR_METADATA"
2051+
"BACKUPDR_METADATA",
2052+
"DATABASE_RESOURCE_SIGNAL_DATA"
20482053
],
20492054
"enumDescriptions": [
20502055
"",
@@ -2053,7 +2058,8 @@
20532058
"Database resource security health signal data",
20542059
"Database resource recommendation signal data",
20552060
"Database config based signal data",
2056-
"Database resource metadata from BackupDR"
2061+
"Database resource metadata from BackupDR",
2062+
"Database resource signal data"
20572063
],
20582064
"type": "string"
20592065
},
@@ -2569,7 +2575,7 @@
25692575
"type": "object"
25702576
},
25712577
"DatabaseResourceMetadata": {
2572-
"description": "Common model for database resource instance metadata. Next ID: 26",
2578+
"description": "Common model for database resource instance metadata. Next ID: 27",
25732579
"id": "DatabaseResourceMetadata",
25742580
"properties": {
25752581
"availabilityConfiguration": {
@@ -2774,6 +2780,10 @@
27742780
"userLabelSet": {
27752781
"$ref": "UserLabels",
27762782
"description": "User-provided labels associated with the resource"
2783+
},
2784+
"zone": {
2785+
"description": "The resource zone. This is only applicable for zonal resources and will be empty for regional and multi-regional resources.",
2786+
"type": "string"
27772787
}
27782788
},
27792789
"type": "object"
@@ -3150,6 +3160,67 @@
31503160
},
31513161
"type": "object"
31523162
},
3163+
"DatabaseResourceSignalData": {
3164+
"description": "Database resource signal data. This is used to send signals to Condor which are based on the DB/Instance/Fleet level configurations. These will be used to send signals for all inventory types. Next ID: 7",
3165+
"id": "DatabaseResourceSignalData",
3166+
"properties": {
3167+
"fullResourceName": {
3168+
"description": "Required. Full Resource name of the source resource.",
3169+
"type": "string"
3170+
},
3171+
"lastRefreshTime": {
3172+
"description": "Required. Last time signal was refreshed",
3173+
"format": "google-datetime",
3174+
"type": "string"
3175+
},
3176+
"resourceId": {
3177+
"$ref": "DatabaseResourceId",
3178+
"description": "Database resource id."
3179+
},
3180+
"signalBoolValue": {
3181+
"description": "Signal data for boolean signals.",
3182+
"type": "boolean"
3183+
},
3184+
"signalState": {
3185+
"description": "Required. Output only. Signal state of the signal",
3186+
"enum": [
3187+
"SIGNAL_STATE_UNSPECIFIED",
3188+
"ACTIVE",
3189+
"INACTIVE",
3190+
"DISMISSED"
3191+
],
3192+
"enumDescriptions": [
3193+
"Unspecified signal state.",
3194+
"Signal is active and requires attention.",
3195+
"Signal is inactive and does not require attention.",
3196+
"Signal is dismissed by the user and should not be shown to the user again."
3197+
],
3198+
"readOnly": true,
3199+
"type": "string"
3200+
},
3201+
"signalType": {
3202+
"description": "Required. Signal type of the signal",
3203+
"enum": [
3204+
"SIGNAL_TYPE_UNSPECIFIED",
3205+
"SIGNAL_TYPE_OUTDATED_MINOR_VERSION",
3206+
"SIGNAL_TYPE_DATABASE_AUDITING_DISABLED",
3207+
"SIGNAL_TYPE_NO_ROOT_PASSWORD",
3208+
"SIGNAL_TYPE_EXPOSED_TO_PUBLIC_ACCESS",
3209+
"SIGNAL_TYPE_UNENCRYPTED_CONNECTIONS"
3210+
],
3211+
"enumDescriptions": [
3212+
"Unspecified signal type.",
3213+
"Outdated Minor Version",
3214+
"Represents database auditing is disabled.",
3215+
"Represents if a database has a password configured for the root account or not.",
3216+
"Represents if a resource is exposed to public access.",
3217+
"Represents if a resources requires all incoming connections to use SSL or not."
3218+
],
3219+
"type": "string"
3220+
}
3221+
},
3222+
"type": "object"
3223+
},
31533224
"DiscoveryEndpoint": {
31543225
"description": "Endpoints on each network, for Redis clients to connect to the cluster.",
31553226
"id": "DiscoveryEndpoint",

redis/v1/redis-gen.go

Lines changed: 66 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vmmigration/v1/vmmigration-api.json

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@
567567
"imageImportJobs": {
568568
"methods": {
569569
"cancel": {
570-
"description": "Initiates the cancellation of a running clone job.",
570+
"description": "Initiates the cancellation of a running ImageImportJob.",
571571
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/imageImports/{imageImportsId}/imageImportJobs/{imageImportJobsId}:cancel",
572572
"httpMethod": "POST",
573573
"id": "vmmigration.projects.locations.imageImports.imageImportJobs.cancel",
@@ -2543,7 +2543,7 @@
25432543
}
25442544
}
25452545
},
2546-
"revision": "20250904",
2546+
"revision": "20250911",
25472547
"rootUrl": "https://vmmigration.googleapis.com/",
25482548
"schemas": {
25492549
"AccessKeyCredentials": {
@@ -2565,6 +2565,21 @@
25652565
},
25662566
"type": "object"
25672567
},
2568+
"AdaptationModifier": {
2569+
"description": "AdaptationModifier a modifier to be used for configuration of the OS adaptation process.",
2570+
"id": "AdaptationModifier",
2571+
"properties": {
2572+
"modifier": {
2573+
"description": "Optional. The modifier name.",
2574+
"type": "string"
2575+
},
2576+
"value": {
2577+
"description": "Optional. The value of the modifier. The actual value depends on the modifier and can also be empty.",
2578+
"type": "string"
2579+
}
2580+
},
2581+
"type": "object"
2582+
},
25682583
"AdaptingOSStep": {
25692584
"description": "AdaptingOSStep contains specific step details.",
25702585
"id": "AdaptingOSStep",
@@ -3565,6 +3580,13 @@
35653580
"description": "ComputeEngineTargetDefaults is a collection of details for creating a VM in a target Compute Engine project.",
35663581
"id": "ComputeEngineTargetDefaults",
35673582
"properties": {
3583+
"adaptationModifiers": {
3584+
"description": "Optional. AdaptationModifiers are the set of modifiers used during OS adaptation.",
3585+
"items": {
3586+
"$ref": "AdaptationModifier"
3587+
},
3588+
"type": "array"
3589+
},
35683590
"additionalLicenses": {
35693591
"description": "Additional licenses to assign to the VM.",
35703592
"items": {
@@ -3728,6 +3750,13 @@
37283750
"description": "ComputeEngineTargetDetails is a collection of details for creating a VM in a target Compute Engine project.",
37293751
"id": "ComputeEngineTargetDetails",
37303752
"properties": {
3753+
"adaptationModifiers": {
3754+
"description": "Optional. Modifiers to be used as configuration of the OS adaptation process.",
3755+
"items": {
3756+
"$ref": "AdaptationModifier"
3757+
},
3758+
"type": "array"
3759+
},
37313760
"additionalLicenses": {
37323761
"description": "Additional licenses to assign to the VM.",
37333762
"items": {
@@ -4832,6 +4861,13 @@
48324861
"description": "Parameters affecting the OS adaptation process.",
48334862
"id": "ImageImportOsAdaptationParameters",
48344863
"properties": {
4864+
"adaptationModifiers": {
4865+
"description": "Optional. Modifiers to be used as configuration of the OS adaptation process.",
4866+
"items": {
4867+
"$ref": "AdaptationModifier"
4868+
},
4869+
"type": "array"
4870+
},
48354871
"bootConversion": {
48364872
"description": "Optional. By default the image will keep its existing boot option. Setting this property will trigger an internal process which will convert the image from using the existing boot option to another. The size of the boot disk might be increased to allow the conversion",
48374873
"enum": [

0 commit comments

Comments
 (0)