Skip to content

Commit acb2592

Browse files
feat: regenerate index files
1 parent 8b5a592 commit acb2592

24 files changed

+270
-64
lines changed

discovery/apigee-v1.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2173,7 +2173,7 @@
21732173
"keys": {
21742174
"methods": {
21752175
"create": {
2176-
"description": "Creates a custom consumer key and secret for a AppGroup app. This is particularly useful if you want to migrate existing consumer keys and secrets to Apigee from another system. Consumer keys and secrets can contain letters, numbers, underscores, and hyphens. No other special characters are allowed. To avoid service disruptions, a consumer key and secret should not exceed 2 KBs each. **Note**: When creating the consumer key and secret, an association to API products will not be made. Therefore, you should not specify the associated API products in your request. Instead, use the ProductizeAppGroupAppKey API to make the association after the consumer key and secret are created. If a consumer key and secret already exist, you can keep them or delete them using the DeleteAppGroupAppKey API.",
2176+
"description": "Creates a custom consumer key and secret for a AppGroup app. This is particularly useful if you want to migrate existing consumer keys and secrets to Apigee from another system. Consumer keys and secrets can contain letters, numbers, underscores, and hyphens. No other special characters are allowed. To avoid service disruptions, a consumer key and secret should not exceed 2 KBs each. **Note**: When creating the consumer key and secret, an association to API products will not be made. Therefore, you should not specify the associated API products in your request. Instead, use the UpdateAppGroupAppKey API to make the association after the consumer key and secret are created. If a consumer key and secret already exist, you can keep them or delete them using the DeleteAppGroupAppKey API.",
21772177
"flatPath": "v1/organizations/{organizationsId}/appgroups/{appgroupsId}/apps/{appsId}/keys",
21782178
"httpMethod": "POST",
21792179
"id": "apigee.organizations.appgroups.apps.keys.create",
@@ -2251,7 +2251,7 @@
22512251
]
22522252
},
22532253
"updateAppGroupAppKey": {
2254-
"description": "Adds an API product to an AppGroupAppKey, enabling the app that holds the key to access the API resources bundled in the API product. In addition, you can add attributes to the AppGroupAppKey. This API replaces the existing attributes with those specified in the request. Include or exclude any existing attributes that you want to retain or delete, respectively. You can use the same key to access all API products associated with the app.",
2254+
"description": "Adds an API product to an AppGroupAppKey, enabling the app that holds the key to access the API resources bundled in the API product. In addition, you can add attributes and scopes to the AppGroupAppKey. This API replaces the existing attributes with those specified in the request. Include or exclude any existing attributes that you want to retain or delete, respectively. You can use the same key to access all API products associated with the app.",
22552255
"flatPath": "v1/organizations/{organizationsId}/appgroups/{appgroupsId}/apps/{appsId}/keys/{keysId}",
22562256
"httpMethod": "POST",
22572257
"id": "apigee.organizations.appgroups.apps.keys.updateAppGroupAppKey",
@@ -3402,7 +3402,7 @@
34023402
]
34033403
},
34043404
"updateDeveloperAppKey": {
3405-
"description": "Adds an API product to a developer app key, enabling the app that holds the key to access the API resources bundled in the API product. In addition, you can add attributes to a developer app key. This API replaces the existing attributes with those specified in the request. Include or exclude any existing attributes that you want to retain or delete, respectively. You can use the same key to access all API products associated with the app.",
3405+
"description": "Adds an API product to a developer app key, enabling the app that holds the key to access the API resources bundled in the API product. In addition, you can add attributes and scopes associated with the API product to the developer app key. The status of the key can be updated via \"action\" Query Parameter. None of the other fields can be updated via this API. This API replaces the existing attributes with those specified in the request. Include or exclude any existing attributes that you want to retain or delete, respectively. None of the other fields can be updated. You can use the same key to access all API products associated with the app.",
34063406
"flatPath": "v1/organizations/{organizationsId}/developers/{developersId}/apps/{appsId}/keys/{keysId}",
34073407
"httpMethod": "POST",
34083408
"id": "apigee.organizations.developers.apps.keys.updateDeveloperAppKey",
@@ -11063,7 +11063,7 @@
1106311063
}
1106411064
}
1106511065
},
11066-
"revision": "20250425",
11066+
"revision": "20250519",
1106711067
"rootUrl": "https://apigee.googleapis.com/",
1106811068
"schemas": {
1106911069
"EdgeConfigstoreBundleBadBundle": {
@@ -17136,7 +17136,7 @@
1713617136
"type": "string"
1713717137
},
1713817138
"consumptionPricingRates": {
17139-
"description": "API call volume ranges and the fees charged when the total number of API calls is within a given range. The method used to calculate the final fee depends on the selected pricing model. For example, if the pricing model is `STAIRSTEP` and the ranges are defined as follows: ``` { \"start\": 1, \"end\": 100, \"fee\": 75 }, { \"start\": 101, \"end\": 200, \"fee\": 100 }, } ``` Then the following fees would be charged based on the total number of API calls (assuming the currency selected is `USD`): * 1 call costs $75 * 50 calls cost $75 * 150 calls cost $100 The number of API calls cannot exceed 200.",
17139+
"description": "API call volume ranges and the fees charged when the total number of API calls is within a given range. The method used to calculate the final fee depends on the selected pricing model. For example, if the pricing model is `BANDED` and the ranges are defined as follows: ``` { \"start\": 1, \"end\": 100, \"fee\": 2 }, { \"start\": 101, \"end\": 200, \"fee\": 1.50 }, { \"start\": 201, \"end\": 0, \"fee\": 1 }, } ``` Then the following fees would be charged based on the total number of API calls (assuming the currency selected is `USD`): * 50 calls cost 50 x $2 = $100 * 150 calls cost 100 x $2 + 50 x $1.5 = $275 * 250 calls cost 100 x $2 + 100 x $1.5 + 50 x $1 = $400 * 500 calls cost 100 x $2 + 100 x $1.5 + 300 x $1 = $650",
1714017140
"items": {
1714117141
"$ref": "GoogleCloudApigeeV1RateRange"
1714217142
},
@@ -17154,7 +17154,7 @@
1715417154
"enumDescriptions": [
1715517155
"Pricing model not specified. This is the default.",
1715617156
"Fixed rate charged for each API call.",
17157-
"Variable rate charged for each API call based on price tiers. Example: * 1-100 calls cost $2 per call * 101-200 calls cost $1.50 per call * 201-300 calls cost $1 per call * Total price for 50 calls: 50 x $2 = $100 * Total price for 150 calls: 100 x $2 + 50 x $1.5 = $275 * Total price for 250 calls: 100 x $2 + 100 x $1.5 + 50 x $1 = $400. **Note**: Not supported by Apigee at this time.",
17157+
"Variable rate charged for each API call based on price tiers. Example: * 1-100 calls cost $2 per call * 101-200 calls cost $1.50 per call * 201-300 calls cost $1 per call * Total price for 50 calls: 50 x $2 = $100 * Total price for 150 calls: 100 x $2 + 50 x $1.5 = $275 * Total price for 250 calls: 100 x $2 + 100 x $1.5 + 50 x $1 = $400.",
1715817158
"**Note**: Not supported by Apigee at this time.",
1715917159
"**Note**: Not supported by Apigee at this time."
1716017160
],
@@ -19547,7 +19547,7 @@
1954719547
},
1954819548
"appGroupAppKey": {
1954919549
"$ref": "GoogleCloudApigeeV1AppGroupAppKey",
19550-
"description": "The new AppGroupKey to be amended. Note that the status can be updated only via action."
19550+
"description": "Note that only Scopes and Attributes of the AppGroupAppKey can be amended."
1955119551
}
1955219552
},
1955319553
"type": "object"

discovery/artifactregistry-v1.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@
8989
"endpointUrl": "https://artifactregistry.europe-north1.rep.googleapis.com/",
9090
"location": "europe-north1"
9191
},
92+
{
93+
"description": "Regional Endpoint",
94+
"endpointUrl": "https://artifactregistry.europe-north2.rep.googleapis.com/",
95+
"location": "europe-north2"
96+
},
9297
{
9398
"description": "Regional Endpoint",
9499
"endpointUrl": "https://artifactregistry.europe-southwest1.rep.googleapis.com/",
@@ -159,6 +164,11 @@
159164
"endpointUrl": "https://artifactregistry.northamerica-northeast2.rep.googleapis.com/",
160165
"location": "northamerica-northeast2"
161166
},
167+
{
168+
"description": "Regional Endpoint",
169+
"endpointUrl": "https://artifactregistry.northamerica-south1.rep.googleapis.com/",
170+
"location": "northamerica-south1"
171+
},
162172
{
163173
"description": "Regional Endpoint",
164174
"endpointUrl": "https://artifactregistry.southamerica-east1.rep.googleapis.com/",
@@ -2455,7 +2465,7 @@
24552465
}
24562466
}
24572467
},
2458-
"revision": "20250425",
2468+
"revision": "20250502",
24592469
"rootUrl": "https://artifactregistry.googleapis.com/",
24602470
"schemas": {
24612471
"AptArtifact": {

discovery/artifactregistry-v1beta1.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@
8989
"endpointUrl": "https://artifactregistry.europe-north1.rep.googleapis.com/",
9090
"location": "europe-north1"
9191
},
92+
{
93+
"description": "Regional Endpoint",
94+
"endpointUrl": "https://artifactregistry.europe-north2.rep.googleapis.com/",
95+
"location": "europe-north2"
96+
},
9297
{
9398
"description": "Regional Endpoint",
9499
"endpointUrl": "https://artifactregistry.europe-southwest1.rep.googleapis.com/",
@@ -159,6 +164,11 @@
159164
"endpointUrl": "https://artifactregistry.northamerica-northeast2.rep.googleapis.com/",
160165
"location": "northamerica-northeast2"
161166
},
167+
{
168+
"description": "Regional Endpoint",
169+
"endpointUrl": "https://artifactregistry.northamerica-south1.rep.googleapis.com/",
170+
"location": "northamerica-south1"
171+
},
162172
{
163173
"description": "Regional Endpoint",
164174
"endpointUrl": "https://artifactregistry.southamerica-east1.rep.googleapis.com/",
@@ -1172,7 +1182,7 @@
11721182
}
11731183
}
11741184
},
1175-
"revision": "20250425",
1185+
"revision": "20250502",
11761186
"rootUrl": "https://artifactregistry.googleapis.com/",
11771187
"schemas": {
11781188
"Binding": {

discovery/artifactregistry-v1beta2.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@
8989
"endpointUrl": "https://artifactregistry.europe-north1.rep.googleapis.com/",
9090
"location": "europe-north1"
9191
},
92+
{
93+
"description": "Regional Endpoint",
94+
"endpointUrl": "https://artifactregistry.europe-north2.rep.googleapis.com/",
95+
"location": "europe-north2"
96+
},
9297
{
9398
"description": "Regional Endpoint",
9499
"endpointUrl": "https://artifactregistry.europe-southwest1.rep.googleapis.com/",
@@ -159,6 +164,11 @@
159164
"endpointUrl": "https://artifactregistry.northamerica-northeast2.rep.googleapis.com/",
160165
"location": "northamerica-northeast2"
161166
},
167+
{
168+
"description": "Regional Endpoint",
169+
"endpointUrl": "https://artifactregistry.northamerica-south1.rep.googleapis.com/",
170+
"location": "northamerica-south1"
171+
},
162172
{
163173
"description": "Regional Endpoint",
164174
"endpointUrl": "https://artifactregistry.southamerica-east1.rep.googleapis.com/",
@@ -1440,7 +1450,7 @@
14401450
}
14411451
}
14421452
},
1443-
"revision": "20250425",
1453+
"revision": "20250502",
14441454
"rootUrl": "https://artifactregistry.googleapis.com/",
14451455
"schemas": {
14461456
"AptArtifact": {

discovery/developerconnect-v1.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,7 @@
14051405
}
14061406
}
14071407
},
1408-
"revision": "20250414",
1408+
"revision": "20250502",
14091409
"rootUrl": "https://developerconnect.googleapis.com/",
14101410
"schemas": {
14111411
"AccountConnector": {
@@ -2447,7 +2447,8 @@
24472447
"SENTRY",
24482448
"ROVO",
24492449
"NEW_RELIC",
2450-
"DATASTAX"
2450+
"DATASTAX",
2451+
"DYNATRACE"
24512452
],
24522453
"enumDescriptions": [
24532454
"No system provider specified.",
@@ -2457,7 +2458,8 @@
24572458
"Sentry provider. Scopes can be found at https://docs.sentry.io/api/permissions/",
24582459
"Rovo provider. Must select the \"rovo\" scope.",
24592460
"New Relic provider. No scopes are allowed.",
2460-
"Datastax provider. No scopes are allowed."
2461+
"Datastax provider. No scopes are allowed.",
2462+
"Dynatrace provider."
24612463
],
24622464
"type": "string"
24632465
}

discovery/driveactivity-v2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
}
133133
}
134134
},
135-
"revision": "20250329",
135+
"revision": "20250517",
136136
"rootUrl": "https://driveactivity.googleapis.com/",
137137
"schemas": {
138138
"Action": {
@@ -1141,7 +1141,7 @@
11411141
"The feature which changed restriction settings was not available.",
11421142
"When restricted, this prevents items from being shared outside the domain.",
11431143
"When restricted, this prevents direct sharing of individual items.",
1144-
"When restricted, this prevents actions like copy, download, and print that might result in uncontrolled duplicates of items.",
1144+
"When restricted, this prevents actions like copy, download, and print that might result in uncontrolled duplicates of items. Now deprecated in favor of READERS_CAN_DOWNLOAD.",
11451145
"When restricted, this prevents use of Drive File Stream.",
11461146
"When restricted, this limits sharing of folders to managers only."
11471147
],

discovery/gkehub-v1.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2117,7 +2117,7 @@
21172117
}
21182118
}
21192119
},
2120-
"revision": "20250423",
2120+
"revision": "20250509",
21212121
"rootUrl": "https://gkehub.googleapis.com/",
21222122
"schemas": {
21232123
"AppDevExperienceFeatureSpec": {
@@ -6259,6 +6259,7 @@
62596259
"NODEPOOL_WORKLOAD_IDENTITY_FEDERATION_REQUIRED",
62606260
"CNI_INSTALLATION_FAILED",
62616261
"CNI_POD_UNSCHEDULABLE",
6262+
"THC_POD_UNSCHEDULABLE",
62626263
"CLUSTER_HAS_ZERO_NODES",
62636264
"CANONICAL_SERVICE_ERROR",
62646265
"UNSUPPORTED_MULTIPLE_CONTROL_PLANES",
@@ -6303,6 +6304,7 @@
63036304
"Nodepool workload identity federation required error code",
63046305
"CNI installation failed error code",
63056306
"CNI pod unschedulable error code",
6307+
"THC pod unschedulable error code",
63066308
"Cluster has zero node code",
63076309
"Failure to reconcile CanonicalServices",
63086310
"Multiple control planes unsupported error code",

discovery/gkehub-v1alpha.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2261,7 +2261,7 @@
22612261
}
22622262
}
22632263
},
2264-
"revision": "20250423",
2264+
"revision": "20250509",
22652265
"rootUrl": "https://gkehub.googleapis.com/",
22662266
"schemas": {
22672267
"AppDevExperienceFeatureSpec": {
@@ -6843,6 +6843,7 @@
68436843
"NODEPOOL_WORKLOAD_IDENTITY_FEDERATION_REQUIRED",
68446844
"CNI_INSTALLATION_FAILED",
68456845
"CNI_POD_UNSCHEDULABLE",
6846+
"THC_POD_UNSCHEDULABLE",
68466847
"CLUSTER_HAS_ZERO_NODES",
68476848
"CANONICAL_SERVICE_ERROR",
68486849
"UNSUPPORTED_MULTIPLE_CONTROL_PLANES",
@@ -6887,6 +6888,7 @@
68876888
"Nodepool workload identity federation required error code",
68886889
"CNI installation failed error code",
68896890
"CNI pod unschedulable error code",
6891+
"THC pod unschedulable error code",
68906892
"Cluster has zero node code",
68916893
"Failure to reconcile CanonicalServices",
68926894
"Multiple control planes unsupported error code",
@@ -7059,6 +7061,7 @@
70597061
"NODEPOOL_WORKLOAD_IDENTITY_FEDERATION_REQUIRED",
70607062
"CNI_INSTALLATION_FAILED",
70617063
"CNI_POD_UNSCHEDULABLE",
7064+
"THC_POD_UNSCHEDULABLE",
70627065
"CLUSTER_HAS_ZERO_NODES",
70637066
"CANONICAL_SERVICE_ERROR",
70647067
"UNSUPPORTED_MULTIPLE_CONTROL_PLANES",
@@ -7103,6 +7106,7 @@
71037106
"Nodepool workload identity federation required error code",
71047107
"CNI installation failed error code",
71057108
"CNI pod unschedulable error code",
7109+
"THC pod unschedulable error code",
71067110
"Cluster has zero node code",
71077111
"Failure to reconcile CanonicalServices",
71087112
"Multiple control planes unsupported error code",

discovery/gkehub-v1beta.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2117,7 +2117,7 @@
21172117
}
21182118
}
21192119
},
2120-
"revision": "20250421",
2120+
"revision": "20250509",
21212121
"rootUrl": "https://gkehub.googleapis.com/",
21222122
"schemas": {
21232123
"AppDevExperienceFeatureSpec": {
@@ -6385,6 +6385,7 @@
63856385
"NODEPOOL_WORKLOAD_IDENTITY_FEDERATION_REQUIRED",
63866386
"CNI_INSTALLATION_FAILED",
63876387
"CNI_POD_UNSCHEDULABLE",
6388+
"THC_POD_UNSCHEDULABLE",
63886389
"CLUSTER_HAS_ZERO_NODES",
63896390
"CANONICAL_SERVICE_ERROR",
63906391
"UNSUPPORTED_MULTIPLE_CONTROL_PLANES",
@@ -6429,6 +6430,7 @@
64296430
"Nodepool workload identity federation required error code",
64306431
"CNI installation failed error code",
64316432
"CNI pod unschedulable error code",
6433+
"THC pod unschedulable error code",
64326434
"Cluster has zero node code",
64336435
"Failure to reconcile CanonicalServices",
64346436
"Multiple control planes unsupported error code",

discovery/gkehub-v2.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@
477477
}
478478
}
479479
},
480-
"revision": "20250415",
480+
"revision": "20250509",
481481
"rootUrl": "https://gkehub.googleapis.com/",
482482
"schemas": {
483483
"AppDevExperienceState": {
@@ -3030,6 +3030,7 @@
30303030
"NODEPOOL_WORKLOAD_IDENTITY_FEDERATION_REQUIRED",
30313031
"CNI_INSTALLATION_FAILED",
30323032
"CNI_POD_UNSCHEDULABLE",
3033+
"THC_POD_UNSCHEDULABLE",
30333034
"CLUSTER_HAS_ZERO_NODES",
30343035
"CANONICAL_SERVICE_ERROR",
30353036
"UNSUPPORTED_MULTIPLE_CONTROL_PLANES",
@@ -3074,6 +3075,7 @@
30743075
"Nodepool workload identity federation required error code",
30753076
"CNI installation failed error code",
30763077
"CNI pod unschedulable error code",
3078+
"THC pod unschedulable error code",
30773079
"Cluster has zero node code",
30783080
"Failure to reconcile CanonicalServices",
30793081
"Multiple control planes unsupported error code",

discovery/gkehub-v2alpha.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@
477477
}
478478
}
479479
},
480-
"revision": "20250415",
480+
"revision": "20250509",
481481
"rootUrl": "https://gkehub.googleapis.com/",
482482
"schemas": {
483483
"AppDevExperienceState": {
@@ -3030,6 +3030,7 @@
30303030
"NODEPOOL_WORKLOAD_IDENTITY_FEDERATION_REQUIRED",
30313031
"CNI_INSTALLATION_FAILED",
30323032
"CNI_POD_UNSCHEDULABLE",
3033+
"THC_POD_UNSCHEDULABLE",
30333034
"CLUSTER_HAS_ZERO_NODES",
30343035
"CANONICAL_SERVICE_ERROR",
30353036
"UNSUPPORTED_MULTIPLE_CONTROL_PLANES",
@@ -3074,6 +3075,7 @@
30743075
"Nodepool workload identity federation required error code",
30753076
"CNI installation failed error code",
30763077
"CNI pod unschedulable error code",
3078+
"THC pod unschedulable error code",
30773079
"Cluster has zero node code",
30783080
"Failure to reconcile CanonicalServices",
30793081
"Multiple control planes unsupported error code",

discovery/gkehub-v2beta.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@
477477
}
478478
}
479479
},
480-
"revision": "20250415",
480+
"revision": "20250509",
481481
"rootUrl": "https://gkehub.googleapis.com/",
482482
"schemas": {
483483
"AppDevExperienceState": {
@@ -3030,6 +3030,7 @@
30303030
"NODEPOOL_WORKLOAD_IDENTITY_FEDERATION_REQUIRED",
30313031
"CNI_INSTALLATION_FAILED",
30323032
"CNI_POD_UNSCHEDULABLE",
3033+
"THC_POD_UNSCHEDULABLE",
30333034
"CLUSTER_HAS_ZERO_NODES",
30343035
"CANONICAL_SERVICE_ERROR",
30353036
"UNSUPPORTED_MULTIPLE_CONTROL_PLANES",
@@ -3074,6 +3075,7 @@
30743075
"Nodepool workload identity federation required error code",
30753076
"CNI installation failed error code",
30763077
"CNI pod unschedulable error code",
3078+
"THC pod unschedulable error code",
30773079
"Cluster has zero node code",
30783080
"Failure to reconcile CanonicalServices",
30793081
"Multiple control planes unsupported error code",

0 commit comments

Comments
 (0)