@maxim_mazurok/gapi.client.apigee-v1 0.0.20251105 → 0.0.20251216
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +777 -16
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://apigee.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251216
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -81,6 +81,10 @@ declare namespace gapi.client {
|
|
|
81
81
|
/** Configuration for the Monetization add-on. */
|
|
82
82
|
monetizationConfig?: GoogleCloudApigeeV1MonetizationConfig;
|
|
83
83
|
}
|
|
84
|
+
interface GoogleCloudApigeeV1AdjustAppGroupBalanceRequest {
|
|
85
|
+
/** Required. * A positive value of `adjustment` means that that the API provider wants to adjust the balance for an under-charged AppGroup i.e. the balance of the AppGroup will decrease. * A negative value of `adjustment` is not supported. Use credit balance API instead. */
|
|
86
|
+
adjustment?: GoogleTypeMoney;
|
|
87
|
+
}
|
|
84
88
|
interface GoogleCloudApigeeV1AdjustDeveloperBalanceRequest {
|
|
85
89
|
/** * A positive value of `adjustment` means that that the API provider wants to adjust the balance for an under-charged developer i.e. the balance of the developer will decrease. * A negative value of `adjustment` means that that the API provider wants to adjust the balance for an over-charged developer i.e. the balance of the developer will increase. NOTE: An adjustment cannot increase the balance of the developer beyond the balance as of the most recent credit. For example, if a developer's balance is updated to be $100, and they spend $10, a negative adjustment can only increase the balance of the developer to $100. */
|
|
86
90
|
adjustment?: GoogleTypeMoney;
|
|
@@ -183,6 +187,8 @@ declare namespace gapi.client {
|
|
|
183
187
|
visibility?: boolean;
|
|
184
188
|
}
|
|
185
189
|
interface GoogleCloudApigeeV1ApiDocDocumentation {
|
|
190
|
+
/** Optional. AsyncAPI Specification documentation. */
|
|
191
|
+
asyncApiDocumentation?: GoogleCloudApigeeV1AsyncApiDocumentation;
|
|
186
192
|
/** Optional. GraphQL documentation. */
|
|
187
193
|
graphqlDocumentation?: GoogleCloudApigeeV1GraphqlDocumentation;
|
|
188
194
|
/** Optional. OpenAPI Specification documentation. */
|
|
@@ -212,6 +218,44 @@ declare namespace gapi.client {
|
|
|
212
218
|
/** Status of the operation. */
|
|
213
219
|
status?: string;
|
|
214
220
|
}
|
|
221
|
+
interface GoogleCloudApigeeV1ApimServiceExtension {
|
|
222
|
+
/** Output only. The time that this resource was created on the server. */
|
|
223
|
+
createTime?: string;
|
|
224
|
+
/** Required. Name of the proxy deployed in the Apigee X instance. */
|
|
225
|
+
extensionProcessor?: string;
|
|
226
|
+
/** Optional. List of extensions that are part of the service extension. Refer to https://cloud.google.com/service-extensions/docs/quotas#limits for any limits. */
|
|
227
|
+
extensions?: GoogleCloudApigeeV1ApimServiceExtensionExtension[];
|
|
228
|
+
/** Required. Name of the Google Cloud LB forwarding rule. Format: projects/{project}/regions/{region}/forwardingRules/{forwarding_rule} projects/{project}/global/forwardingRules/{forwarding_rule} */
|
|
229
|
+
lbForwardingRule?: string;
|
|
230
|
+
/** Identifier. unique name of the APIM service extension. The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens, and can have a maximum length of 63 characters. Additionally, the first character must be a letter and the last a letter or a number. */
|
|
231
|
+
name?: string;
|
|
232
|
+
/** Required. The network where the forwarding rule is created. Format: projects/{project}/global/networks/{network} */
|
|
233
|
+
network?: string;
|
|
234
|
+
/** Required. List of network configurations for the APIM service extension. */
|
|
235
|
+
networkConfigs?: GoogleCloudApigeeV1ApimServiceExtensionNetworkConfig[];
|
|
236
|
+
/** Output only. State of the APIM service extension. Values other than `ACTIVE` mean the resource is not ready to use. */
|
|
237
|
+
state?: string;
|
|
238
|
+
/** Output only. The time that this resource was updated on the server. */
|
|
239
|
+
updateTime?: string;
|
|
240
|
+
}
|
|
241
|
+
interface GoogleCloudApigeeV1ApimServiceExtensionExtension {
|
|
242
|
+
/** Optional. Whether this request should fail open. */
|
|
243
|
+
failOpen?: boolean;
|
|
244
|
+
/** Required. One of the hostnames of Apigee EnvGroup where the proxy is deployed. This hostname (i.e FDQN) will be used to route traffic from the specified forwarding rule to the environment in Apigee X instance where the proxy is deployed for handling extension traffic. Format: ^([a-zA-Z0-9. _-])+$ */
|
|
245
|
+
hostname?: string;
|
|
246
|
+
/** Optional. Match Condition for CEL expression. Refer to https://cloud.google.com/service-extensions/docs/cel-matcher-language-reference for more details. */
|
|
247
|
+
matchCondition?: string;
|
|
248
|
+
/** Required. Name of the `LbTrafficExtension` resource. The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens, and can have a maximum length of 63 characters. Additionally, the first character must be a letter and the last a letter or a number. */
|
|
249
|
+
name?: string;
|
|
250
|
+
/** Optional. Supported events for the Service Extension. If not specified, all events are supported. */
|
|
251
|
+
supportedEvents?: string[];
|
|
252
|
+
}
|
|
253
|
+
interface GoogleCloudApigeeV1ApimServiceExtensionNetworkConfig {
|
|
254
|
+
/** Required. The region for the PSC NEG. */
|
|
255
|
+
region?: string;
|
|
256
|
+
/** Required. The subnet for the PSC NEG. Format: projects/{project}/regions/{region}/subnetworks/{subnet} */
|
|
257
|
+
subnet?: string;
|
|
258
|
+
}
|
|
215
259
|
interface GoogleCloudApigeeV1ApiProduct {
|
|
216
260
|
/** Comma-separated list of API resources to be bundled in the API product. By default, the resource paths are mapped from the `proxy.pathsuffix` variable. The proxy path suffix is defined as the URI fragment following the ProxyEndpoint base path. For example, if the `apiResources` element is defined to be `/forecastrss` and the base path defined for the API proxy is `/weather`, then only requests to `/weather/forecastrss` are permitted by the API product. You can select a specific path, or you can select all subpaths with the following wildcard: - `/**`: Indicates that all sub-URIs are included. - `/*` : Indicates that only URIs one level down are included. By default, / supports the same resources as /** as well as the base path defined by the API proxy. For example, if the base path of the API proxy is `/v1/weatherapikey`, then the API product supports requests to `/v1/weatherapikey` and to any sub-URIs, such as `/v1/weatherapikey/forecastrss`, `/v1/weatherapikey/region/CA`, and so on. For more information, see Managing API products. */
|
|
217
261
|
apiResources?: string[];
|
|
@@ -233,6 +277,14 @@ declare namespace gapi.client {
|
|
|
233
277
|
grpcOperationGroup?: GoogleCloudApigeeV1GrpcOperationGroup;
|
|
234
278
|
/** Response only. Modified time of this environment as milliseconds since epoch. */
|
|
235
279
|
lastModifiedAt?: string;
|
|
280
|
+
/** Optional. Configuration used to group Apigee proxies with resources, method types, LLM model and quotas. The resource refers to the resource URI (excluding the base path). With this grouping, the API product creator is able to fine-tune and give precise control over which REST methods have access to specific resources, specific LLM model and how many calls can be made (using the `quota` setting). **Note:** The `api_resources` setting cannot be specified for both the API product and llm operation group; otherwise the call will fail. */
|
|
281
|
+
llmOperationGroup?: GoogleCloudApigeeV1LlmOperationGroup;
|
|
282
|
+
/** Optional. Number of LLM tokens permitted per app by this API product for the specified `llm_quota_interval` and `llm_quota_time_unit`. For example, an `llm_quota` of 50,000, for an `llm_quota_interval` of 12 and an `llm_quota_time_unit` of hours means 50,000 llm tokens are allowed to be used every 12 hours. */
|
|
283
|
+
llmQuota?: string;
|
|
284
|
+
/** Optional. Time interval over which the number of tokens from LLM responses is calculated. */
|
|
285
|
+
llmQuotaInterval?: string;
|
|
286
|
+
/** Optional. Time unit defined for the `llm_quota_interval`. Valid values include `minute`, `hour`, `day`, or `month`. */
|
|
287
|
+
llmQuotaTimeUnit?: string;
|
|
236
288
|
/** Internal name of the API product. Characters you can use in the name are restricted to: `A-Z0-9._\-$ %`. **Note:** The internal name cannot be edited when updating the API product. */
|
|
237
289
|
name?: string;
|
|
238
290
|
/** Configuration used to group Apigee proxies or remote services with resources, method types, and quotas. The resource refers to the resource URI (excluding the base path). With this grouping, the API product creator is able to fine-tune and give precise control over which REST methods have access to specific resources and how many calls can be made (using the `quota` setting). **Note:** The `api_resources` setting cannot be specified for both the API product and operation group; otherwise the call will fail. */
|
|
@@ -397,6 +449,8 @@ declare namespace gapi.client {
|
|
|
397
449
|
createdAt?: string;
|
|
398
450
|
/** app group name displayed in the UI */
|
|
399
451
|
displayName?: string;
|
|
452
|
+
/** Optional. Email of the AppGroup. */
|
|
453
|
+
email?: string;
|
|
400
454
|
/** Output only. Modified time as milliseconds since epoch. */
|
|
401
455
|
lastModifiedAt?: string;
|
|
402
456
|
/** Immutable. Name of the AppGroup. Characters you can use in the name are restricted to: A-Z0-9._\-$ %. */
|
|
@@ -452,6 +506,34 @@ declare namespace gapi.client {
|
|
|
452
506
|
/** Status of the credential. Valid values include `approved` or `revoked`. */
|
|
453
507
|
status?: string;
|
|
454
508
|
}
|
|
509
|
+
interface GoogleCloudApigeeV1AppGroupBalance {
|
|
510
|
+
/** Output only. List of all wallets. Each individual wallet stores the account balance for a particular currency. */
|
|
511
|
+
wallets?: GoogleCloudApigeeV1AppGroupBalanceWallet[];
|
|
512
|
+
}
|
|
513
|
+
interface GoogleCloudApigeeV1AppGroupBalanceWallet {
|
|
514
|
+
/** Current remaining balance of the AppGroup for a particular currency. */
|
|
515
|
+
balance?: GoogleTypeMoney;
|
|
516
|
+
/** Output only. Time at which the AppGroup last added credit to the account in milliseconds since epoch. */
|
|
517
|
+
lastCreditTime?: string;
|
|
518
|
+
}
|
|
519
|
+
interface GoogleCloudApigeeV1AppGroupMonetizationConfig {
|
|
520
|
+
/** Required. Billing type. */
|
|
521
|
+
billingType?: string;
|
|
522
|
+
}
|
|
523
|
+
interface GoogleCloudApigeeV1AppGroupSubscription {
|
|
524
|
+
/** Required. Name of the API product for which the appgroup is purchasing a subscription. */
|
|
525
|
+
apiproduct?: string;
|
|
526
|
+
/** Output only. Time when the API product subscription was created in milliseconds since epoch. */
|
|
527
|
+
createdAt?: string;
|
|
528
|
+
/** Output only. Time when the API product subscription ends in milliseconds since epoch. */
|
|
529
|
+
endTime?: string;
|
|
530
|
+
/** Output only. Time when the API product subscription was last modified in milliseconds since epoch. */
|
|
531
|
+
lastModifiedAt?: string;
|
|
532
|
+
/** Output only. Name of the API product subscription. */
|
|
533
|
+
name?: string;
|
|
534
|
+
/** Output only. Time when the API product subscription starts in milliseconds since epoch. */
|
|
535
|
+
startTime?: string;
|
|
536
|
+
}
|
|
455
537
|
interface GoogleCloudApigeeV1ArchiveDeployment {
|
|
456
538
|
/** Output only. The time at which the Archive Deployment was created in milliseconds since the epoch. */
|
|
457
539
|
createdAt?: string;
|
|
@@ -466,6 +548,10 @@ declare namespace gapi.client {
|
|
|
466
548
|
/** Output only. The time at which the Archive Deployment was updated in milliseconds since the epoch. */
|
|
467
549
|
updatedAt?: string;
|
|
468
550
|
}
|
|
551
|
+
interface GoogleCloudApigeeV1AsyncApiDocumentation {
|
|
552
|
+
/** Required. The documentation file contents for the AsyncAPI Specification. JSON and YAML file formats are supported. */
|
|
553
|
+
spec?: GoogleCloudApigeeV1DocumentationFile;
|
|
554
|
+
}
|
|
469
555
|
interface GoogleCloudApigeeV1AsyncQuery {
|
|
470
556
|
/** Creation time of the query. */
|
|
471
557
|
created?: string;
|
|
@@ -693,6 +779,12 @@ declare namespace gapi.client {
|
|
|
693
779
|
/** Status of the credential. Valid values include `approved` or `revoked`. */
|
|
694
780
|
status?: string;
|
|
695
781
|
}
|
|
782
|
+
interface GoogleCloudApigeeV1CreditAppGroupBalanceRequest {
|
|
783
|
+
/** Required. The amount of money to be credited. The wallet corresponding to the currency specified within `transaction_amount` will be updated. For example, if you specified `currency_code` within `transaction_amount` as "USD", then the amount would be added to the wallet which has the "USD" currency or if no such wallet exists, a new wallet will be created with the "USD" currency. */
|
|
784
|
+
transactionAmount?: GoogleTypeMoney;
|
|
785
|
+
/** Required. Each transaction_id uniquely identifies a credit balance request. If multiple requests are received with the same transaction_id, only one of them will be considered. */
|
|
786
|
+
transactionId?: string;
|
|
787
|
+
}
|
|
696
788
|
interface GoogleCloudApigeeV1CreditDeveloperBalanceRequest {
|
|
697
789
|
/** The amount of money to be credited. The wallet corresponding to the currency specified within `transaction_amount` will be updated. For example, if you specified `currency_code` within `transaction_amount` as "USD", then the amount would be added to the wallet which has the "USD" currency or if no such wallet exists, a new wallet will be created with the "USD" currency. */
|
|
698
790
|
transactionAmount?: GoogleTypeMoney;
|
|
@@ -1262,6 +1354,7 @@ declare namespace gapi.client {
|
|
|
1262
1354
|
/** A unique id for the environment group config that will only change if the environment group is deleted and recreated. */
|
|
1263
1355
|
uid?: string;
|
|
1264
1356
|
}
|
|
1357
|
+
interface GoogleCloudApigeeV1ExpireAppGroupSubscriptionRequest {}
|
|
1265
1358
|
interface GoogleCloudApigeeV1ExpireDeveloperSubscriptionRequest {}
|
|
1266
1359
|
interface GoogleCloudApigeeV1Export {
|
|
1267
1360
|
/** Output only. Time the export job was created. */
|
|
@@ -1497,6 +1590,8 @@ declare namespace gapi.client {
|
|
|
1497
1590
|
interface GoogleCloudApigeeV1KeyValueMap {
|
|
1498
1591
|
/** Required. Flag that specifies whether entry values will be encrypted. This field is retained for backward compatibility and the value of encrypted will always be `true`. Apigee X and hybrid do not support unencrypted key value maps. */
|
|
1499
1592
|
encrypted?: boolean;
|
|
1593
|
+
/** Optional. Flag that specifies whether entry values will be masked when returned. */
|
|
1594
|
+
maskedValues?: boolean;
|
|
1500
1595
|
/** Required. ID of the key value map. */
|
|
1501
1596
|
name?: string;
|
|
1502
1597
|
}
|
|
@@ -1532,6 +1627,12 @@ declare namespace gapi.client {
|
|
|
1532
1627
|
/** Status of the operation. */
|
|
1533
1628
|
status?: string;
|
|
1534
1629
|
}
|
|
1630
|
+
interface GoogleCloudApigeeV1ListApimServiceExtensionsResponse {
|
|
1631
|
+
/** service extension in a given organization. */
|
|
1632
|
+
apimServiceExtensions?: GoogleCloudApigeeV1ApimServiceExtension[];
|
|
1633
|
+
/** Page token that you can include in an `ListApimServiceExtensions` request to retrieve the next page. If omitted, no subsequent pages exist. */
|
|
1634
|
+
nextPageToken?: string;
|
|
1635
|
+
}
|
|
1535
1636
|
interface GoogleCloudApigeeV1ListApiProductsResponse {
|
|
1536
1637
|
/** Lists all API product names defined for an organization. */
|
|
1537
1638
|
apiProduct?: GoogleCloudApigeeV1ApiProduct[];
|
|
@@ -1553,6 +1654,12 @@ declare namespace gapi.client {
|
|
|
1553
1654
|
/** Total count of AppGroups. */
|
|
1554
1655
|
totalSize?: number;
|
|
1555
1656
|
}
|
|
1657
|
+
interface GoogleCloudApigeeV1ListAppGroupSubscriptionsResponse {
|
|
1658
|
+
/** The list of subscriptions for an AppGroup. */
|
|
1659
|
+
appGroupSubscriptions?: GoogleCloudApigeeV1AppGroupSubscription[];
|
|
1660
|
+
/** Value that can be sent as `pageToken` to retrieve the next page of content. If this field is omitted, there are no subsequent pages. */
|
|
1661
|
+
nextPageToken?: string;
|
|
1662
|
+
}
|
|
1556
1663
|
interface GoogleCloudApigeeV1ListAppsResponse {
|
|
1557
1664
|
app?: GoogleCloudApigeeV1App[];
|
|
1558
1665
|
/** Token that can be sent as `next_page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
@@ -1740,6 +1847,36 @@ declare namespace gapi.client {
|
|
|
1740
1847
|
/** List all trace configuration overrides in an environment. */
|
|
1741
1848
|
traceConfigOverrides?: GoogleCloudApigeeV1TraceConfigOverride[];
|
|
1742
1849
|
}
|
|
1850
|
+
interface GoogleCloudApigeeV1LlmOperation {
|
|
1851
|
+
/** Optional. methods refers to the REST verbs as in https://httpwg.org/specs/rfc9110.html For example: GET, POST, PUT, DELETE, etc. They need to be in uppercase. When none specified, all verb types are allowed. */
|
|
1852
|
+
methods?: string[];
|
|
1853
|
+
/** Required. LLM model name associated with the API proxy */
|
|
1854
|
+
model?: string;
|
|
1855
|
+
/** Required. REST resource path associated with the API proxy or remote service. */
|
|
1856
|
+
resource?: string;
|
|
1857
|
+
}
|
|
1858
|
+
interface GoogleCloudApigeeV1LlmOperationConfig {
|
|
1859
|
+
/** Required. Name of the API proxy or remote service with which the resources, methods, and quota are associated. */
|
|
1860
|
+
apiSource?: string;
|
|
1861
|
+
/** Optional. Custom attributes associated with the operation. */
|
|
1862
|
+
attributes?: GoogleCloudApigeeV1Attribute[];
|
|
1863
|
+
/** Required. List of resource/method/model for the API proxy to which quota will applied. **Note**: Currently, you can specify only a single resource/method/model mapping. The call will fail if more than one resource/method/model mappings are provided. */
|
|
1864
|
+
llmOperations?: GoogleCloudApigeeV1LlmOperation[];
|
|
1865
|
+
/** Required. LLM token Quota parameters to be enforced for the resources, methods, and API source & LLM model combination. If none are specified, quota enforcement will not be done. */
|
|
1866
|
+
llmTokenQuota?: GoogleCloudApigeeV1LlmTokenQuota;
|
|
1867
|
+
}
|
|
1868
|
+
interface GoogleCloudApigeeV1LlmOperationGroup {
|
|
1869
|
+
/** Required. List of LLM operation configurations for either Apigee API proxies that are associated with this API product. */
|
|
1870
|
+
operationConfigs?: GoogleCloudApigeeV1LlmOperationConfig[];
|
|
1871
|
+
}
|
|
1872
|
+
interface GoogleCloudApigeeV1LlmTokenQuota {
|
|
1873
|
+
/** Required. Time interval over which the number of request messages is calculated. */
|
|
1874
|
+
interval?: string;
|
|
1875
|
+
/** Required. Upper limit of LLM tokens allowed for the time interval and time unit specified. Requests exceeding this limit will be rejected. */
|
|
1876
|
+
limit?: string;
|
|
1877
|
+
/** Optional. Time unit defined for the `interval`. Valid values include `minute`, `hour`, `day`, or `month`. If `limit` and `interval` are valid, the default value is `hour`; otherwise, the default is null. */
|
|
1878
|
+
timeUnit?: string;
|
|
1879
|
+
}
|
|
1743
1880
|
interface GoogleCloudApigeeV1MaintenanceUpdatePolicy {
|
|
1744
1881
|
/** Optional. Maintenance channel to specify relative scheduling for maintenance. */
|
|
1745
1882
|
maintenanceChannel?: string;
|
|
@@ -3092,7 +3229,7 @@ declare namespace gapi.client {
|
|
|
3092
3229
|
nextPageToken?: string;
|
|
3093
3230
|
/** A list of operations that matches the specified filter in the request. */
|
|
3094
3231
|
operations?: GoogleLongrunningOperation[];
|
|
3095
|
-
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections
|
|
3232
|
+
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. */
|
|
3096
3233
|
unreachable?: string[];
|
|
3097
3234
|
}
|
|
3098
3235
|
interface GoogleLongrunningOperation {
|
|
@@ -3456,6 +3593,221 @@ declare namespace gapi.client {
|
|
|
3456
3593
|
interface AnalyticsResource {
|
|
3457
3594
|
datastores: DatastoresResource;
|
|
3458
3595
|
}
|
|
3596
|
+
interface ApimServiceExtensionsResource {
|
|
3597
|
+
/** Creates an APIM ServiceExtension in an organization. */
|
|
3598
|
+
create(request: {
|
|
3599
|
+
/** V1 error format. */
|
|
3600
|
+
'$.xgafv'?: string;
|
|
3601
|
+
/** OAuth access token. */
|
|
3602
|
+
access_token?: string;
|
|
3603
|
+
/** Data format for response. */
|
|
3604
|
+
alt?: string;
|
|
3605
|
+
/** Optional. ID used to uniquely identify of the service extension. It must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens, and can have a maximum length of 63 characters. Additionally, the first character must be a letter and the last a letter or a number. */
|
|
3606
|
+
apimServiceExtensionId?: string;
|
|
3607
|
+
/** JSONP */
|
|
3608
|
+
callback?: string;
|
|
3609
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3610
|
+
fields?: string;
|
|
3611
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3612
|
+
key?: string;
|
|
3613
|
+
/** OAuth 2.0 token for the current user. */
|
|
3614
|
+
oauth_token?: string;
|
|
3615
|
+
/** Required. Name of the organization in which the service extension will be created. Use the following structure in your request: `organizations/{org}` */
|
|
3616
|
+
parent: string;
|
|
3617
|
+
/** Returns response with indentations and line breaks. */
|
|
3618
|
+
prettyPrint?: boolean;
|
|
3619
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3620
|
+
quotaUser?: string;
|
|
3621
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3622
|
+
upload_protocol?: string;
|
|
3623
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3624
|
+
uploadType?: string;
|
|
3625
|
+
/** Request body */
|
|
3626
|
+
resource: GoogleCloudApigeeV1ApimServiceExtension;
|
|
3627
|
+
}): Request<GoogleLongrunningOperation>;
|
|
3628
|
+
create(
|
|
3629
|
+
request: {
|
|
3630
|
+
/** V1 error format. */
|
|
3631
|
+
'$.xgafv'?: string;
|
|
3632
|
+
/** OAuth access token. */
|
|
3633
|
+
access_token?: string;
|
|
3634
|
+
/** Data format for response. */
|
|
3635
|
+
alt?: string;
|
|
3636
|
+
/** Optional. ID used to uniquely identify of the service extension. It must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens, and can have a maximum length of 63 characters. Additionally, the first character must be a letter and the last a letter or a number. */
|
|
3637
|
+
apimServiceExtensionId?: string;
|
|
3638
|
+
/** JSONP */
|
|
3639
|
+
callback?: string;
|
|
3640
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3641
|
+
fields?: string;
|
|
3642
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3643
|
+
key?: string;
|
|
3644
|
+
/** OAuth 2.0 token for the current user. */
|
|
3645
|
+
oauth_token?: string;
|
|
3646
|
+
/** Required. Name of the organization in which the service extension will be created. Use the following structure in your request: `organizations/{org}` */
|
|
3647
|
+
parent: string;
|
|
3648
|
+
/** Returns response with indentations and line breaks. */
|
|
3649
|
+
prettyPrint?: boolean;
|
|
3650
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3651
|
+
quotaUser?: string;
|
|
3652
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3653
|
+
upload_protocol?: string;
|
|
3654
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3655
|
+
uploadType?: string;
|
|
3656
|
+
},
|
|
3657
|
+
body: GoogleCloudApigeeV1ApimServiceExtension,
|
|
3658
|
+
): Request<GoogleLongrunningOperation>;
|
|
3659
|
+
/** Deletes APIM service extension from an organization. */
|
|
3660
|
+
delete(request?: {
|
|
3661
|
+
/** V1 error format. */
|
|
3662
|
+
'$.xgafv'?: string;
|
|
3663
|
+
/** OAuth access token. */
|
|
3664
|
+
access_token?: string;
|
|
3665
|
+
/** Data format for response. */
|
|
3666
|
+
alt?: string;
|
|
3667
|
+
/** JSONP */
|
|
3668
|
+
callback?: string;
|
|
3669
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3670
|
+
fields?: string;
|
|
3671
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3672
|
+
key?: string;
|
|
3673
|
+
/** Required. Name of the service extension. Use the following structure in your request: `organizations/{org}/apimServiceExtensions/{extension_id}` */
|
|
3674
|
+
name: string;
|
|
3675
|
+
/** OAuth 2.0 token for the current user. */
|
|
3676
|
+
oauth_token?: string;
|
|
3677
|
+
/** Returns response with indentations and line breaks. */
|
|
3678
|
+
prettyPrint?: boolean;
|
|
3679
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3680
|
+
quotaUser?: string;
|
|
3681
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3682
|
+
upload_protocol?: string;
|
|
3683
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3684
|
+
uploadType?: string;
|
|
3685
|
+
}): Request<GoogleLongrunningOperation>;
|
|
3686
|
+
/** Gets APIM service extension details. */
|
|
3687
|
+
get(request?: {
|
|
3688
|
+
/** V1 error format. */
|
|
3689
|
+
'$.xgafv'?: string;
|
|
3690
|
+
/** OAuth access token. */
|
|
3691
|
+
access_token?: string;
|
|
3692
|
+
/** Data format for response. */
|
|
3693
|
+
alt?: string;
|
|
3694
|
+
/** JSONP */
|
|
3695
|
+
callback?: string;
|
|
3696
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3697
|
+
fields?: string;
|
|
3698
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3699
|
+
key?: string;
|
|
3700
|
+
/** Required. Name of the service extension. Use the following structure in your request: `organizations/{org}/apimServiceExtensions/{extension_id}` */
|
|
3701
|
+
name: string;
|
|
3702
|
+
/** OAuth 2.0 token for the current user. */
|
|
3703
|
+
oauth_token?: string;
|
|
3704
|
+
/** Returns response with indentations and line breaks. */
|
|
3705
|
+
prettyPrint?: boolean;
|
|
3706
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3707
|
+
quotaUser?: string;
|
|
3708
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3709
|
+
upload_protocol?: string;
|
|
3710
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3711
|
+
uploadType?: string;
|
|
3712
|
+
}): Request<GoogleCloudApigeeV1ApimServiceExtension>;
|
|
3713
|
+
/** Lists all APIM service extensions in an organization. */
|
|
3714
|
+
list(request?: {
|
|
3715
|
+
/** V1 error format. */
|
|
3716
|
+
'$.xgafv'?: string;
|
|
3717
|
+
/** OAuth access token. */
|
|
3718
|
+
access_token?: string;
|
|
3719
|
+
/** Data format for response. */
|
|
3720
|
+
alt?: string;
|
|
3721
|
+
/** JSONP */
|
|
3722
|
+
callback?: string;
|
|
3723
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3724
|
+
fields?: string;
|
|
3725
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3726
|
+
key?: string;
|
|
3727
|
+
/** OAuth 2.0 token for the current user. */
|
|
3728
|
+
oauth_token?: string;
|
|
3729
|
+
/** Optional. Maximum number of items to return. If unspecified, at most 25 service extension will be returned. */
|
|
3730
|
+
pageSize?: number;
|
|
3731
|
+
/** Optional. Page token, returned from a previous `ListApimServiceExtensions` call, that you can use to retrieve the next page. */
|
|
3732
|
+
pageToken?: string;
|
|
3733
|
+
/** Required. Name of the organization for which to list the service extension. Use the following structure in your request: `organizations/{org}/apimServiceExtensions` */
|
|
3734
|
+
parent: string;
|
|
3735
|
+
/** Returns response with indentations and line breaks. */
|
|
3736
|
+
prettyPrint?: boolean;
|
|
3737
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3738
|
+
quotaUser?: string;
|
|
3739
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3740
|
+
upload_protocol?: string;
|
|
3741
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3742
|
+
uploadType?: string;
|
|
3743
|
+
}): Request<GoogleCloudApigeeV1ListApimServiceExtensionsResponse>;
|
|
3744
|
+
/** Updates an APIM service extension in an organization. */
|
|
3745
|
+
patch(request: {
|
|
3746
|
+
/** V1 error format. */
|
|
3747
|
+
'$.xgafv'?: string;
|
|
3748
|
+
/** OAuth access token. */
|
|
3749
|
+
access_token?: string;
|
|
3750
|
+
/** Optional. If set to true, and the service extension is not found, a new service extension will be created. In this situation, `update_mask` is ignored. */
|
|
3751
|
+
allowMissing?: boolean;
|
|
3752
|
+
/** Data format for response. */
|
|
3753
|
+
alt?: string;
|
|
3754
|
+
/** JSONP */
|
|
3755
|
+
callback?: string;
|
|
3756
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3757
|
+
fields?: string;
|
|
3758
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3759
|
+
key?: string;
|
|
3760
|
+
/** Identifier. unique name of the APIM service extension. The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens, and can have a maximum length of 63 characters. Additionally, the first character must be a letter and the last a letter or a number. */
|
|
3761
|
+
name: string;
|
|
3762
|
+
/** OAuth 2.0 token for the current user. */
|
|
3763
|
+
oauth_token?: string;
|
|
3764
|
+
/** Returns response with indentations and line breaks. */
|
|
3765
|
+
prettyPrint?: boolean;
|
|
3766
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3767
|
+
quotaUser?: string;
|
|
3768
|
+
/** Optional. The list of fields to update. */
|
|
3769
|
+
updateMask?: string;
|
|
3770
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3771
|
+
upload_protocol?: string;
|
|
3772
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3773
|
+
uploadType?: string;
|
|
3774
|
+
/** Request body */
|
|
3775
|
+
resource: GoogleCloudApigeeV1ApimServiceExtension;
|
|
3776
|
+
}): Request<GoogleLongrunningOperation>;
|
|
3777
|
+
patch(
|
|
3778
|
+
request: {
|
|
3779
|
+
/** V1 error format. */
|
|
3780
|
+
'$.xgafv'?: string;
|
|
3781
|
+
/** OAuth access token. */
|
|
3782
|
+
access_token?: string;
|
|
3783
|
+
/** Optional. If set to true, and the service extension is not found, a new service extension will be created. In this situation, `update_mask` is ignored. */
|
|
3784
|
+
allowMissing?: boolean;
|
|
3785
|
+
/** Data format for response. */
|
|
3786
|
+
alt?: string;
|
|
3787
|
+
/** JSONP */
|
|
3788
|
+
callback?: string;
|
|
3789
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3790
|
+
fields?: string;
|
|
3791
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3792
|
+
key?: string;
|
|
3793
|
+
/** Identifier. unique name of the APIM service extension. The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens, and can have a maximum length of 63 characters. Additionally, the first character must be a letter and the last a letter or a number. */
|
|
3794
|
+
name: string;
|
|
3795
|
+
/** OAuth 2.0 token for the current user. */
|
|
3796
|
+
oauth_token?: string;
|
|
3797
|
+
/** Returns response with indentations and line breaks. */
|
|
3798
|
+
prettyPrint?: boolean;
|
|
3799
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3800
|
+
quotaUser?: string;
|
|
3801
|
+
/** Optional. The list of fields to update. */
|
|
3802
|
+
updateMask?: string;
|
|
3803
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3804
|
+
upload_protocol?: string;
|
|
3805
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3806
|
+
uploadType?: string;
|
|
3807
|
+
},
|
|
3808
|
+
body: GoogleCloudApigeeV1ApimServiceExtension,
|
|
3809
|
+
): Request<GoogleLongrunningOperation>;
|
|
3810
|
+
}
|
|
3459
3811
|
interface AttributesResource {
|
|
3460
3812
|
/** Deletes an API product attribute. */
|
|
3461
3813
|
delete(request?: {
|
|
@@ -5391,9 +5743,9 @@ declare namespace gapi.client {
|
|
|
5391
5743
|
): Request<GoogleCloudApigeeV1AppGroupApp>;
|
|
5392
5744
|
keys: KeysResource;
|
|
5393
5745
|
}
|
|
5394
|
-
interface
|
|
5395
|
-
/**
|
|
5396
|
-
|
|
5746
|
+
interface BalanceResource {
|
|
5747
|
+
/** Adjust the prepaid balance for the AppGroup. This API will be used in scenarios where the AppGroup has been under-charged or over-charged. */
|
|
5748
|
+
adjust(request: {
|
|
5397
5749
|
/** V1 error format. */
|
|
5398
5750
|
'$.xgafv'?: string;
|
|
5399
5751
|
/** OAuth access token. */
|
|
@@ -5406,10 +5758,10 @@ declare namespace gapi.client {
|
|
|
5406
5758
|
fields?: string;
|
|
5407
5759
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5408
5760
|
key?: string;
|
|
5761
|
+
/** Required. Account balance for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/balance` */
|
|
5762
|
+
name: string;
|
|
5409
5763
|
/** OAuth 2.0 token for the current user. */
|
|
5410
5764
|
oauth_token?: string;
|
|
5411
|
-
/** Required. Name of the Apigee organization in which the AppGroup is created. Use the following structure in your request: `organizations/{org}`. */
|
|
5412
|
-
parent: string;
|
|
5413
5765
|
/** Returns response with indentations and line breaks. */
|
|
5414
5766
|
prettyPrint?: boolean;
|
|
5415
5767
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
@@ -5419,9 +5771,9 @@ declare namespace gapi.client {
|
|
|
5419
5771
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5420
5772
|
uploadType?: string;
|
|
5421
5773
|
/** Request body */
|
|
5422
|
-
resource:
|
|
5423
|
-
}): Request<
|
|
5424
|
-
|
|
5774
|
+
resource: GoogleCloudApigeeV1AdjustAppGroupBalanceRequest;
|
|
5775
|
+
}): Request<GoogleCloudApigeeV1AppGroupBalance>;
|
|
5776
|
+
adjust(
|
|
5425
5777
|
request: {
|
|
5426
5778
|
/** V1 error format. */
|
|
5427
5779
|
'$.xgafv'?: string;
|
|
@@ -5435,10 +5787,10 @@ declare namespace gapi.client {
|
|
|
5435
5787
|
fields?: string;
|
|
5436
5788
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5437
5789
|
key?: string;
|
|
5790
|
+
/** Required. Account balance for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/balance` */
|
|
5791
|
+
name: string;
|
|
5438
5792
|
/** OAuth 2.0 token for the current user. */
|
|
5439
5793
|
oauth_token?: string;
|
|
5440
|
-
/** Required. Name of the Apigee organization in which the AppGroup is created. Use the following structure in your request: `organizations/{org}`. */
|
|
5441
|
-
parent: string;
|
|
5442
5794
|
/** Returns response with indentations and line breaks. */
|
|
5443
5795
|
prettyPrint?: boolean;
|
|
5444
5796
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
@@ -5448,8 +5800,302 @@ declare namespace gapi.client {
|
|
|
5448
5800
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5449
5801
|
uploadType?: string;
|
|
5450
5802
|
},
|
|
5451
|
-
body:
|
|
5452
|
-
): Request<
|
|
5803
|
+
body: GoogleCloudApigeeV1AdjustAppGroupBalanceRequest,
|
|
5804
|
+
): Request<GoogleCloudApigeeV1AppGroupBalance>;
|
|
5805
|
+
/** Credits the account balance for the AppGroup. */
|
|
5806
|
+
credit(request: {
|
|
5807
|
+
/** V1 error format. */
|
|
5808
|
+
'$.xgafv'?: string;
|
|
5809
|
+
/** OAuth access token. */
|
|
5810
|
+
access_token?: string;
|
|
5811
|
+
/** Data format for response. */
|
|
5812
|
+
alt?: string;
|
|
5813
|
+
/** JSONP */
|
|
5814
|
+
callback?: string;
|
|
5815
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5816
|
+
fields?: string;
|
|
5817
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5818
|
+
key?: string;
|
|
5819
|
+
/** Required. Account balance for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/balance` */
|
|
5820
|
+
name: string;
|
|
5821
|
+
/** OAuth 2.0 token for the current user. */
|
|
5822
|
+
oauth_token?: string;
|
|
5823
|
+
/** Returns response with indentations and line breaks. */
|
|
5824
|
+
prettyPrint?: boolean;
|
|
5825
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5826
|
+
quotaUser?: string;
|
|
5827
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5828
|
+
upload_protocol?: string;
|
|
5829
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5830
|
+
uploadType?: string;
|
|
5831
|
+
/** Request body */
|
|
5832
|
+
resource: GoogleCloudApigeeV1CreditAppGroupBalanceRequest;
|
|
5833
|
+
}): Request<GoogleCloudApigeeV1AppGroupBalance>;
|
|
5834
|
+
credit(
|
|
5835
|
+
request: {
|
|
5836
|
+
/** V1 error format. */
|
|
5837
|
+
'$.xgafv'?: string;
|
|
5838
|
+
/** OAuth access token. */
|
|
5839
|
+
access_token?: string;
|
|
5840
|
+
/** Data format for response. */
|
|
5841
|
+
alt?: string;
|
|
5842
|
+
/** JSONP */
|
|
5843
|
+
callback?: string;
|
|
5844
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5845
|
+
fields?: string;
|
|
5846
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5847
|
+
key?: string;
|
|
5848
|
+
/** Required. Account balance for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/balance` */
|
|
5849
|
+
name: string;
|
|
5850
|
+
/** OAuth 2.0 token for the current user. */
|
|
5851
|
+
oauth_token?: string;
|
|
5852
|
+
/** Returns response with indentations and line breaks. */
|
|
5853
|
+
prettyPrint?: boolean;
|
|
5854
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5855
|
+
quotaUser?: string;
|
|
5856
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5857
|
+
upload_protocol?: string;
|
|
5858
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5859
|
+
uploadType?: string;
|
|
5860
|
+
},
|
|
5861
|
+
body: GoogleCloudApigeeV1CreditAppGroupBalanceRequest,
|
|
5862
|
+
): Request<GoogleCloudApigeeV1AppGroupBalance>;
|
|
5863
|
+
}
|
|
5864
|
+
interface SubscriptionsResource {
|
|
5865
|
+
/** Creates a subscription to an API product. */
|
|
5866
|
+
create(request: {
|
|
5867
|
+
/** V1 error format. */
|
|
5868
|
+
'$.xgafv'?: string;
|
|
5869
|
+
/** OAuth access token. */
|
|
5870
|
+
access_token?: string;
|
|
5871
|
+
/** Data format for response. */
|
|
5872
|
+
alt?: string;
|
|
5873
|
+
/** JSONP */
|
|
5874
|
+
callback?: string;
|
|
5875
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5876
|
+
fields?: string;
|
|
5877
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5878
|
+
key?: string;
|
|
5879
|
+
/** OAuth 2.0 token for the current user. */
|
|
5880
|
+
oauth_token?: string;
|
|
5881
|
+
/** Required. Name of the appgroup that is purchasing a subscription to the API product. Use the following structure in your request: `organizations/{org}/appgroups/{appgroup}` */
|
|
5882
|
+
parent: string;
|
|
5883
|
+
/** Returns response with indentations and line breaks. */
|
|
5884
|
+
prettyPrint?: boolean;
|
|
5885
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5886
|
+
quotaUser?: string;
|
|
5887
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5888
|
+
upload_protocol?: string;
|
|
5889
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5890
|
+
uploadType?: string;
|
|
5891
|
+
/** Request body */
|
|
5892
|
+
resource: GoogleCloudApigeeV1AppGroupSubscription;
|
|
5893
|
+
}): Request<GoogleCloudApigeeV1AppGroupSubscription>;
|
|
5894
|
+
create(
|
|
5895
|
+
request: {
|
|
5896
|
+
/** V1 error format. */
|
|
5897
|
+
'$.xgafv'?: string;
|
|
5898
|
+
/** OAuth access token. */
|
|
5899
|
+
access_token?: string;
|
|
5900
|
+
/** Data format for response. */
|
|
5901
|
+
alt?: string;
|
|
5902
|
+
/** JSONP */
|
|
5903
|
+
callback?: string;
|
|
5904
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5905
|
+
fields?: string;
|
|
5906
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5907
|
+
key?: string;
|
|
5908
|
+
/** OAuth 2.0 token for the current user. */
|
|
5909
|
+
oauth_token?: string;
|
|
5910
|
+
/** Required. Name of the appgroup that is purchasing a subscription to the API product. Use the following structure in your request: `organizations/{org}/appgroups/{appgroup}` */
|
|
5911
|
+
parent: string;
|
|
5912
|
+
/** Returns response with indentations and line breaks. */
|
|
5913
|
+
prettyPrint?: boolean;
|
|
5914
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5915
|
+
quotaUser?: string;
|
|
5916
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5917
|
+
upload_protocol?: string;
|
|
5918
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5919
|
+
uploadType?: string;
|
|
5920
|
+
},
|
|
5921
|
+
body: GoogleCloudApigeeV1AppGroupSubscription,
|
|
5922
|
+
): Request<GoogleCloudApigeeV1AppGroupSubscription>;
|
|
5923
|
+
/** Expires an API product subscription immediately. */
|
|
5924
|
+
expire(request: {
|
|
5925
|
+
/** V1 error format. */
|
|
5926
|
+
'$.xgafv'?: string;
|
|
5927
|
+
/** OAuth access token. */
|
|
5928
|
+
access_token?: string;
|
|
5929
|
+
/** Data format for response. */
|
|
5930
|
+
alt?: string;
|
|
5931
|
+
/** JSONP */
|
|
5932
|
+
callback?: string;
|
|
5933
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5934
|
+
fields?: string;
|
|
5935
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5936
|
+
key?: string;
|
|
5937
|
+
/** Required. Name of the API product subscription. Use the following structure in your request: `organizations/{org}/appgroups/{appgroup}/subscriptions/{subscription}` */
|
|
5938
|
+
name: string;
|
|
5939
|
+
/** OAuth 2.0 token for the current user. */
|
|
5940
|
+
oauth_token?: string;
|
|
5941
|
+
/** Returns response with indentations and line breaks. */
|
|
5942
|
+
prettyPrint?: boolean;
|
|
5943
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5944
|
+
quotaUser?: string;
|
|
5945
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5946
|
+
upload_protocol?: string;
|
|
5947
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5948
|
+
uploadType?: string;
|
|
5949
|
+
/** Request body */
|
|
5950
|
+
resource: GoogleCloudApigeeV1ExpireAppGroupSubscriptionRequest;
|
|
5951
|
+
}): Request<GoogleCloudApigeeV1AppGroupSubscription>;
|
|
5952
|
+
expire(
|
|
5953
|
+
request: {
|
|
5954
|
+
/** V1 error format. */
|
|
5955
|
+
'$.xgafv'?: string;
|
|
5956
|
+
/** OAuth access token. */
|
|
5957
|
+
access_token?: string;
|
|
5958
|
+
/** Data format for response. */
|
|
5959
|
+
alt?: string;
|
|
5960
|
+
/** JSONP */
|
|
5961
|
+
callback?: string;
|
|
5962
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5963
|
+
fields?: string;
|
|
5964
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5965
|
+
key?: string;
|
|
5966
|
+
/** Required. Name of the API product subscription. Use the following structure in your request: `organizations/{org}/appgroups/{appgroup}/subscriptions/{subscription}` */
|
|
5967
|
+
name: string;
|
|
5968
|
+
/** OAuth 2.0 token for the current user. */
|
|
5969
|
+
oauth_token?: string;
|
|
5970
|
+
/** Returns response with indentations and line breaks. */
|
|
5971
|
+
prettyPrint?: boolean;
|
|
5972
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5973
|
+
quotaUser?: string;
|
|
5974
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5975
|
+
upload_protocol?: string;
|
|
5976
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5977
|
+
uploadType?: string;
|
|
5978
|
+
},
|
|
5979
|
+
body: GoogleCloudApigeeV1ExpireAppGroupSubscriptionRequest,
|
|
5980
|
+
): Request<GoogleCloudApigeeV1AppGroupSubscription>;
|
|
5981
|
+
/** Get an api product subscription for an appgroup. */
|
|
5982
|
+
get(request?: {
|
|
5983
|
+
/** V1 error format. */
|
|
5984
|
+
'$.xgafv'?: string;
|
|
5985
|
+
/** OAuth access token. */
|
|
5986
|
+
access_token?: string;
|
|
5987
|
+
/** Data format for response. */
|
|
5988
|
+
alt?: string;
|
|
5989
|
+
/** JSONP */
|
|
5990
|
+
callback?: string;
|
|
5991
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5992
|
+
fields?: string;
|
|
5993
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5994
|
+
key?: string;
|
|
5995
|
+
/** Required. The name of the AppGroupSubscription to retrieve. Format: `organizations/{org}/appgroups/{appgroup}/subscriptions/{subscription}` */
|
|
5996
|
+
name: string;
|
|
5997
|
+
/** OAuth 2.0 token for the current user. */
|
|
5998
|
+
oauth_token?: string;
|
|
5999
|
+
/** Returns response with indentations and line breaks. */
|
|
6000
|
+
prettyPrint?: boolean;
|
|
6001
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6002
|
+
quotaUser?: string;
|
|
6003
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6004
|
+
upload_protocol?: string;
|
|
6005
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6006
|
+
uploadType?: string;
|
|
6007
|
+
}): Request<GoogleCloudApigeeV1AppGroupSubscription>;
|
|
6008
|
+
/** List all api product subscriptions for an appgroup. */
|
|
6009
|
+
list(request?: {
|
|
6010
|
+
/** V1 error format. */
|
|
6011
|
+
'$.xgafv'?: string;
|
|
6012
|
+
/** OAuth access token. */
|
|
6013
|
+
access_token?: string;
|
|
6014
|
+
/** Data format for response. */
|
|
6015
|
+
alt?: string;
|
|
6016
|
+
/** JSONP */
|
|
6017
|
+
callback?: string;
|
|
6018
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6019
|
+
fields?: string;
|
|
6020
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
6021
|
+
key?: string;
|
|
6022
|
+
/** OAuth 2.0 token for the current user. */
|
|
6023
|
+
oauth_token?: string;
|
|
6024
|
+
/** Optional. The maximum number of subscriptions to return. The service may return fewer than this value. If unspecified, at most 100 subscriptions will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. */
|
|
6025
|
+
pageSize?: number;
|
|
6026
|
+
/** Optional. A page token, received from a previous `ListAppGroupSubscriptions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListAppGroupSubscriptions` must match the call that provided the page token. */
|
|
6027
|
+
pageToken?: string;
|
|
6028
|
+
/** Required. Name of the appgroup. Use the following structure in your request: `organizations/{org}/appgroups/{appgroup}` */
|
|
6029
|
+
parent: string;
|
|
6030
|
+
/** Returns response with indentations and line breaks. */
|
|
6031
|
+
prettyPrint?: boolean;
|
|
6032
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6033
|
+
quotaUser?: string;
|
|
6034
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6035
|
+
upload_protocol?: string;
|
|
6036
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6037
|
+
uploadType?: string;
|
|
6038
|
+
}): Request<GoogleCloudApigeeV1ListAppGroupSubscriptionsResponse>;
|
|
6039
|
+
}
|
|
6040
|
+
interface AppgroupsResource {
|
|
6041
|
+
/** Creates an AppGroup. Once created, user can register apps under the AppGroup to obtain secret key and password. At creation time, the AppGroup's state is set as `active`. */
|
|
6042
|
+
create(request: {
|
|
6043
|
+
/** V1 error format. */
|
|
6044
|
+
'$.xgafv'?: string;
|
|
6045
|
+
/** OAuth access token. */
|
|
6046
|
+
access_token?: string;
|
|
6047
|
+
/** Data format for response. */
|
|
6048
|
+
alt?: string;
|
|
6049
|
+
/** JSONP */
|
|
6050
|
+
callback?: string;
|
|
6051
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6052
|
+
fields?: string;
|
|
6053
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
6054
|
+
key?: string;
|
|
6055
|
+
/** OAuth 2.0 token for the current user. */
|
|
6056
|
+
oauth_token?: string;
|
|
6057
|
+
/** Required. Name of the Apigee organization in which the AppGroup is created. Use the following structure in your request: `organizations/{org}`. */
|
|
6058
|
+
parent: string;
|
|
6059
|
+
/** Returns response with indentations and line breaks. */
|
|
6060
|
+
prettyPrint?: boolean;
|
|
6061
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6062
|
+
quotaUser?: string;
|
|
6063
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6064
|
+
upload_protocol?: string;
|
|
6065
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6066
|
+
uploadType?: string;
|
|
6067
|
+
/** Request body */
|
|
6068
|
+
resource: GoogleCloudApigeeV1AppGroup;
|
|
6069
|
+
}): Request<GoogleCloudApigeeV1AppGroup>;
|
|
6070
|
+
create(
|
|
6071
|
+
request: {
|
|
6072
|
+
/** V1 error format. */
|
|
6073
|
+
'$.xgafv'?: string;
|
|
6074
|
+
/** OAuth access token. */
|
|
6075
|
+
access_token?: string;
|
|
6076
|
+
/** Data format for response. */
|
|
6077
|
+
alt?: string;
|
|
6078
|
+
/** JSONP */
|
|
6079
|
+
callback?: string;
|
|
6080
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6081
|
+
fields?: string;
|
|
6082
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
6083
|
+
key?: string;
|
|
6084
|
+
/** OAuth 2.0 token for the current user. */
|
|
6085
|
+
oauth_token?: string;
|
|
6086
|
+
/** Required. Name of the Apigee organization in which the AppGroup is created. Use the following structure in your request: `organizations/{org}`. */
|
|
6087
|
+
parent: string;
|
|
6088
|
+
/** Returns response with indentations and line breaks. */
|
|
6089
|
+
prettyPrint?: boolean;
|
|
6090
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6091
|
+
quotaUser?: string;
|
|
6092
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6093
|
+
upload_protocol?: string;
|
|
6094
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6095
|
+
uploadType?: string;
|
|
6096
|
+
},
|
|
6097
|
+
body: GoogleCloudApigeeV1AppGroup,
|
|
6098
|
+
): Request<GoogleCloudApigeeV1AppGroup>;
|
|
5453
6099
|
/** Deletes an AppGroup. All app and API keys associations with the AppGroup are also removed. **Warning**: This API will permanently delete the AppGroup and related artifacts. **Note**: The delete operation is asynchronous. The AppGroup is deleted immediately, but its associated resources, such as apps and API keys, may take anywhere from a few seconds to a few minutes to be deleted. */
|
|
5454
6100
|
delete(request?: {
|
|
5455
6101
|
/** V1 error format. */
|
|
@@ -5504,6 +6150,60 @@ declare namespace gapi.client {
|
|
|
5504
6150
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5505
6151
|
uploadType?: string;
|
|
5506
6152
|
}): Request<GoogleCloudApigeeV1AppGroup>;
|
|
6153
|
+
/** Gets the account balance for the AppGroup. */
|
|
6154
|
+
getBalance(request?: {
|
|
6155
|
+
/** V1 error format. */
|
|
6156
|
+
'$.xgafv'?: string;
|
|
6157
|
+
/** OAuth access token. */
|
|
6158
|
+
access_token?: string;
|
|
6159
|
+
/** Data format for response. */
|
|
6160
|
+
alt?: string;
|
|
6161
|
+
/** JSONP */
|
|
6162
|
+
callback?: string;
|
|
6163
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6164
|
+
fields?: string;
|
|
6165
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
6166
|
+
key?: string;
|
|
6167
|
+
/** Required. Account balance for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/balance` */
|
|
6168
|
+
name: string;
|
|
6169
|
+
/** OAuth 2.0 token for the current user. */
|
|
6170
|
+
oauth_token?: string;
|
|
6171
|
+
/** Returns response with indentations and line breaks. */
|
|
6172
|
+
prettyPrint?: boolean;
|
|
6173
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6174
|
+
quotaUser?: string;
|
|
6175
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6176
|
+
upload_protocol?: string;
|
|
6177
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6178
|
+
uploadType?: string;
|
|
6179
|
+
}): Request<GoogleCloudApigeeV1AppGroupBalance>;
|
|
6180
|
+
/** Gets the monetization configuration for the AppGroup. */
|
|
6181
|
+
getMonetizationConfig(request?: {
|
|
6182
|
+
/** V1 error format. */
|
|
6183
|
+
'$.xgafv'?: string;
|
|
6184
|
+
/** OAuth access token. */
|
|
6185
|
+
access_token?: string;
|
|
6186
|
+
/** Data format for response. */
|
|
6187
|
+
alt?: string;
|
|
6188
|
+
/** JSONP */
|
|
6189
|
+
callback?: string;
|
|
6190
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6191
|
+
fields?: string;
|
|
6192
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
6193
|
+
key?: string;
|
|
6194
|
+
/** Required. Monetization configuration for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/monetizationConfig` */
|
|
6195
|
+
name: string;
|
|
6196
|
+
/** OAuth 2.0 token for the current user. */
|
|
6197
|
+
oauth_token?: string;
|
|
6198
|
+
/** Returns response with indentations and line breaks. */
|
|
6199
|
+
prettyPrint?: boolean;
|
|
6200
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6201
|
+
quotaUser?: string;
|
|
6202
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6203
|
+
upload_protocol?: string;
|
|
6204
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6205
|
+
uploadType?: string;
|
|
6206
|
+
}): Request<GoogleCloudApigeeV1AppGroupMonetizationConfig>;
|
|
5507
6207
|
/** Lists all AppGroups in an organization. A maximum of 1000 AppGroups are returned in the response if PageSize is not specified, or if the PageSize is greater than 1000. */
|
|
5508
6208
|
list(request?: {
|
|
5509
6209
|
/** V1 error format. */
|
|
@@ -5599,7 +6299,67 @@ declare namespace gapi.client {
|
|
|
5599
6299
|
},
|
|
5600
6300
|
body: GoogleCloudApigeeV1AppGroup,
|
|
5601
6301
|
): Request<GoogleCloudApigeeV1AppGroup>;
|
|
6302
|
+
/** Updates the monetization configuration for the AppGroup. */
|
|
6303
|
+
updateMonetizationConfig(request: {
|
|
6304
|
+
/** V1 error format. */
|
|
6305
|
+
'$.xgafv'?: string;
|
|
6306
|
+
/** OAuth access token. */
|
|
6307
|
+
access_token?: string;
|
|
6308
|
+
/** Data format for response. */
|
|
6309
|
+
alt?: string;
|
|
6310
|
+
/** JSONP */
|
|
6311
|
+
callback?: string;
|
|
6312
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6313
|
+
fields?: string;
|
|
6314
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
6315
|
+
key?: string;
|
|
6316
|
+
/** Required. Monetization configuration for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/monetizationConfig` */
|
|
6317
|
+
name: string;
|
|
6318
|
+
/** OAuth 2.0 token for the current user. */
|
|
6319
|
+
oauth_token?: string;
|
|
6320
|
+
/** Returns response with indentations and line breaks. */
|
|
6321
|
+
prettyPrint?: boolean;
|
|
6322
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6323
|
+
quotaUser?: string;
|
|
6324
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6325
|
+
upload_protocol?: string;
|
|
6326
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6327
|
+
uploadType?: string;
|
|
6328
|
+
/** Request body */
|
|
6329
|
+
resource: GoogleCloudApigeeV1AppGroupMonetizationConfig;
|
|
6330
|
+
}): Request<GoogleCloudApigeeV1AppGroupMonetizationConfig>;
|
|
6331
|
+
updateMonetizationConfig(
|
|
6332
|
+
request: {
|
|
6333
|
+
/** V1 error format. */
|
|
6334
|
+
'$.xgafv'?: string;
|
|
6335
|
+
/** OAuth access token. */
|
|
6336
|
+
access_token?: string;
|
|
6337
|
+
/** Data format for response. */
|
|
6338
|
+
alt?: string;
|
|
6339
|
+
/** JSONP */
|
|
6340
|
+
callback?: string;
|
|
6341
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6342
|
+
fields?: string;
|
|
6343
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
6344
|
+
key?: string;
|
|
6345
|
+
/** Required. Monetization configuration for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/monetizationConfig` */
|
|
6346
|
+
name: string;
|
|
6347
|
+
/** OAuth 2.0 token for the current user. */
|
|
6348
|
+
oauth_token?: string;
|
|
6349
|
+
/** Returns response with indentations and line breaks. */
|
|
6350
|
+
prettyPrint?: boolean;
|
|
6351
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6352
|
+
quotaUser?: string;
|
|
6353
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6354
|
+
upload_protocol?: string;
|
|
6355
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6356
|
+
uploadType?: string;
|
|
6357
|
+
},
|
|
6358
|
+
body: GoogleCloudApigeeV1AppGroupMonetizationConfig,
|
|
6359
|
+
): Request<GoogleCloudApigeeV1AppGroupMonetizationConfig>;
|
|
5602
6360
|
apps: AppsResource;
|
|
6361
|
+
balance: BalanceResource;
|
|
6362
|
+
subscriptions: SubscriptionsResource;
|
|
5603
6363
|
}
|
|
5604
6364
|
interface AppsResource {
|
|
5605
6365
|
/** Gets the app profile for the specified app ID. */
|
|
@@ -10792,7 +11552,7 @@ declare namespace gapi.client {
|
|
|
10792
11552
|
fields?: string;
|
|
10793
11553
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
10794
11554
|
key?: string;
|
|
10795
|
-
/** Required. The name of the security
|
|
11555
|
+
/** Required. The name of the security action to delete. Format: `organizations/{org}/environment/{env}/securityActions/{security_action}` */
|
|
10796
11556
|
name: string;
|
|
10797
11557
|
/** OAuth 2.0 token for the current user. */
|
|
10798
11558
|
oauth_token?: string;
|
|
@@ -14491,7 +15251,7 @@ declare namespace gapi.client {
|
|
|
14491
15251
|
prettyPrint?: boolean;
|
|
14492
15252
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
14493
15253
|
quotaUser?: string;
|
|
14494
|
-
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the
|
|
15254
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
14495
15255
|
returnPartialSuccess?: boolean;
|
|
14496
15256
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14497
15257
|
upload_protocol?: string;
|
|
@@ -17671,6 +18431,7 @@ declare namespace gapi.client {
|
|
|
17671
18431
|
body: GoogleCloudApigeeV1SecuritySettings,
|
|
17672
18432
|
): Request<GoogleCloudApigeeV1SecuritySettings>;
|
|
17673
18433
|
analytics: AnalyticsResource;
|
|
18434
|
+
apimServiceExtensions: ApimServiceExtensionsResource;
|
|
17674
18435
|
apiproducts: ApiproductsResource;
|
|
17675
18436
|
apis: ApisResource;
|
|
17676
18437
|
appgroups: AppgroupsResource;
|