@maxim_mazurok/gapi.client.apigee-v1 0.0.20251125 → 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 +747 -26
- 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[];
|
|
@@ -405,6 +449,8 @@ declare namespace gapi.client {
|
|
|
405
449
|
createdAt?: string;
|
|
406
450
|
/** app group name displayed in the UI */
|
|
407
451
|
displayName?: string;
|
|
452
|
+
/** Optional. Email of the AppGroup. */
|
|
453
|
+
email?: string;
|
|
408
454
|
/** Output only. Modified time as milliseconds since epoch. */
|
|
409
455
|
lastModifiedAt?: string;
|
|
410
456
|
/** Immutable. Name of the AppGroup. Characters you can use in the name are restricted to: A-Z0-9._\-$ %. */
|
|
@@ -460,6 +506,34 @@ declare namespace gapi.client {
|
|
|
460
506
|
/** Status of the credential. Valid values include `approved` or `revoked`. */
|
|
461
507
|
status?: string;
|
|
462
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
|
+
}
|
|
463
537
|
interface GoogleCloudApigeeV1ArchiveDeployment {
|
|
464
538
|
/** Output only. The time at which the Archive Deployment was created in milliseconds since the epoch. */
|
|
465
539
|
createdAt?: string;
|
|
@@ -474,6 +548,10 @@ declare namespace gapi.client {
|
|
|
474
548
|
/** Output only. The time at which the Archive Deployment was updated in milliseconds since the epoch. */
|
|
475
549
|
updatedAt?: string;
|
|
476
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
|
+
}
|
|
477
555
|
interface GoogleCloudApigeeV1AsyncQuery {
|
|
478
556
|
/** Creation time of the query. */
|
|
479
557
|
created?: string;
|
|
@@ -701,6 +779,12 @@ declare namespace gapi.client {
|
|
|
701
779
|
/** Status of the credential. Valid values include `approved` or `revoked`. */
|
|
702
780
|
status?: string;
|
|
703
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
|
+
}
|
|
704
788
|
interface GoogleCloudApigeeV1CreditDeveloperBalanceRequest {
|
|
705
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. */
|
|
706
790
|
transactionAmount?: GoogleTypeMoney;
|
|
@@ -1270,6 +1354,7 @@ declare namespace gapi.client {
|
|
|
1270
1354
|
/** A unique id for the environment group config that will only change if the environment group is deleted and recreated. */
|
|
1271
1355
|
uid?: string;
|
|
1272
1356
|
}
|
|
1357
|
+
interface GoogleCloudApigeeV1ExpireAppGroupSubscriptionRequest {}
|
|
1273
1358
|
interface GoogleCloudApigeeV1ExpireDeveloperSubscriptionRequest {}
|
|
1274
1359
|
interface GoogleCloudApigeeV1Export {
|
|
1275
1360
|
/** Output only. Time the export job was created. */
|
|
@@ -1542,6 +1627,12 @@ declare namespace gapi.client {
|
|
|
1542
1627
|
/** Status of the operation. */
|
|
1543
1628
|
status?: string;
|
|
1544
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
|
+
}
|
|
1545
1636
|
interface GoogleCloudApigeeV1ListApiProductsResponse {
|
|
1546
1637
|
/** Lists all API product names defined for an organization. */
|
|
1547
1638
|
apiProduct?: GoogleCloudApigeeV1ApiProduct[];
|
|
@@ -1563,6 +1654,12 @@ declare namespace gapi.client {
|
|
|
1563
1654
|
/** Total count of AppGroups. */
|
|
1564
1655
|
totalSize?: number;
|
|
1565
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
|
+
}
|
|
1566
1663
|
interface GoogleCloudApigeeV1ListAppsResponse {
|
|
1567
1664
|
app?: GoogleCloudApigeeV1App[];
|
|
1568
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. */
|
|
@@ -3496,6 +3593,221 @@ declare namespace gapi.client {
|
|
|
3496
3593
|
interface AnalyticsResource {
|
|
3497
3594
|
datastores: DatastoresResource;
|
|
3498
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
|
+
}
|
|
3499
3811
|
interface AttributesResource {
|
|
3500
3812
|
/** Deletes an API product attribute. */
|
|
3501
3813
|
delete(request?: {
|
|
@@ -5431,9 +5743,9 @@ declare namespace gapi.client {
|
|
|
5431
5743
|
): Request<GoogleCloudApigeeV1AppGroupApp>;
|
|
5432
5744
|
keys: KeysResource;
|
|
5433
5745
|
}
|
|
5434
|
-
interface
|
|
5435
|
-
/**
|
|
5436
|
-
|
|
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: {
|
|
5437
5749
|
/** V1 error format. */
|
|
5438
5750
|
'$.xgafv'?: string;
|
|
5439
5751
|
/** OAuth access token. */
|
|
@@ -5446,10 +5758,10 @@ declare namespace gapi.client {
|
|
|
5446
5758
|
fields?: string;
|
|
5447
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. */
|
|
5448
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;
|
|
5449
5763
|
/** OAuth 2.0 token for the current user. */
|
|
5450
5764
|
oauth_token?: string;
|
|
5451
|
-
/** Required. Name of the Apigee organization in which the AppGroup is created. Use the following structure in your request: `organizations/{org}`. */
|
|
5452
|
-
parent: string;
|
|
5453
5765
|
/** Returns response with indentations and line breaks. */
|
|
5454
5766
|
prettyPrint?: boolean;
|
|
5455
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. */
|
|
@@ -5459,9 +5771,9 @@ declare namespace gapi.client {
|
|
|
5459
5771
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5460
5772
|
uploadType?: string;
|
|
5461
5773
|
/** Request body */
|
|
5462
|
-
resource:
|
|
5463
|
-
}): Request<
|
|
5464
|
-
|
|
5774
|
+
resource: GoogleCloudApigeeV1AdjustAppGroupBalanceRequest;
|
|
5775
|
+
}): Request<GoogleCloudApigeeV1AppGroupBalance>;
|
|
5776
|
+
adjust(
|
|
5465
5777
|
request: {
|
|
5466
5778
|
/** V1 error format. */
|
|
5467
5779
|
'$.xgafv'?: string;
|
|
@@ -5475,10 +5787,10 @@ declare namespace gapi.client {
|
|
|
5475
5787
|
fields?: string;
|
|
5476
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. */
|
|
5477
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;
|
|
5478
5792
|
/** OAuth 2.0 token for the current user. */
|
|
5479
5793
|
oauth_token?: string;
|
|
5480
|
-
/** Required. Name of the Apigee organization in which the AppGroup is created. Use the following structure in your request: `organizations/{org}`. */
|
|
5481
|
-
parent: string;
|
|
5482
5794
|
/** Returns response with indentations and line breaks. */
|
|
5483
5795
|
prettyPrint?: boolean;
|
|
5484
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. */
|
|
@@ -5488,10 +5800,10 @@ declare namespace gapi.client {
|
|
|
5488
5800
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5489
5801
|
uploadType?: string;
|
|
5490
5802
|
},
|
|
5491
|
-
body:
|
|
5492
|
-
): Request<
|
|
5493
|
-
/**
|
|
5494
|
-
|
|
5803
|
+
body: GoogleCloudApigeeV1AdjustAppGroupBalanceRequest,
|
|
5804
|
+
): Request<GoogleCloudApigeeV1AppGroupBalance>;
|
|
5805
|
+
/** Credits the account balance for the AppGroup. */
|
|
5806
|
+
credit(request: {
|
|
5495
5807
|
/** V1 error format. */
|
|
5496
5808
|
'$.xgafv'?: string;
|
|
5497
5809
|
/** OAuth access token. */
|
|
@@ -5504,7 +5816,7 @@ declare namespace gapi.client {
|
|
|
5504
5816
|
fields?: string;
|
|
5505
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. */
|
|
5506
5818
|
key?: string;
|
|
5507
|
-
/** Required.
|
|
5819
|
+
/** Required. Account balance for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/balance` */
|
|
5508
5820
|
name: string;
|
|
5509
5821
|
/** OAuth 2.0 token for the current user. */
|
|
5510
5822
|
oauth_token?: string;
|
|
@@ -5516,16 +5828,283 @@ declare namespace gapi.client {
|
|
|
5516
5828
|
upload_protocol?: string;
|
|
5517
5829
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5518
5830
|
uploadType?: string;
|
|
5519
|
-
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
|
|
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>;
|
|
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. */
|
|
6100
|
+
delete(request?: {
|
|
6101
|
+
/** V1 error format. */
|
|
6102
|
+
'$.xgafv'?: string;
|
|
6103
|
+
/** OAuth access token. */
|
|
6104
|
+
access_token?: string;
|
|
6105
|
+
/** Data format for response. */
|
|
6106
|
+
alt?: string;
|
|
6107
|
+
/** JSONP */
|
|
5529
6108
|
callback?: string;
|
|
5530
6109
|
/** Selector specifying which fields to include in a partial response. */
|
|
5531
6110
|
fields?: string;
|
|
@@ -5544,6 +6123,87 @@ declare namespace gapi.client {
|
|
|
5544
6123
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5545
6124
|
uploadType?: string;
|
|
5546
6125
|
}): Request<GoogleCloudApigeeV1AppGroup>;
|
|
6126
|
+
/** Returns the AppGroup details for the provided AppGroup name in the request URI. */
|
|
6127
|
+
get(request?: {
|
|
6128
|
+
/** V1 error format. */
|
|
6129
|
+
'$.xgafv'?: string;
|
|
6130
|
+
/** OAuth access token. */
|
|
6131
|
+
access_token?: string;
|
|
6132
|
+
/** Data format for response. */
|
|
6133
|
+
alt?: string;
|
|
6134
|
+
/** JSONP */
|
|
6135
|
+
callback?: string;
|
|
6136
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6137
|
+
fields?: string;
|
|
6138
|
+
/** 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. */
|
|
6139
|
+
key?: string;
|
|
6140
|
+
/** Required. Name of the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group_name}` */
|
|
6141
|
+
name: string;
|
|
6142
|
+
/** OAuth 2.0 token for the current user. */
|
|
6143
|
+
oauth_token?: string;
|
|
6144
|
+
/** Returns response with indentations and line breaks. */
|
|
6145
|
+
prettyPrint?: boolean;
|
|
6146
|
+
/** 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. */
|
|
6147
|
+
quotaUser?: string;
|
|
6148
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6149
|
+
upload_protocol?: string;
|
|
6150
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6151
|
+
uploadType?: string;
|
|
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>;
|
|
5547
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. */
|
|
5548
6208
|
list(request?: {
|
|
5549
6209
|
/** V1 error format. */
|
|
@@ -5639,7 +6299,67 @@ declare namespace gapi.client {
|
|
|
5639
6299
|
},
|
|
5640
6300
|
body: GoogleCloudApigeeV1AppGroup,
|
|
5641
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>;
|
|
5642
6360
|
apps: AppsResource;
|
|
6361
|
+
balance: BalanceResource;
|
|
6362
|
+
subscriptions: SubscriptionsResource;
|
|
5643
6363
|
}
|
|
5644
6364
|
interface AppsResource {
|
|
5645
6365
|
/** Gets the app profile for the specified app ID. */
|
|
@@ -17711,6 +18431,7 @@ declare namespace gapi.client {
|
|
|
17711
18431
|
body: GoogleCloudApigeeV1SecuritySettings,
|
|
17712
18432
|
): Request<GoogleCloudApigeeV1SecuritySettings>;
|
|
17713
18433
|
analytics: AnalyticsResource;
|
|
18434
|
+
apimServiceExtensions: ApimServiceExtensionsResource;
|
|
17714
18435
|
apiproducts: ApiproductsResource;
|
|
17715
18436
|
apis: ApisResource;
|
|
17716
18437
|
appgroups: AppgroupsResource;
|