@maxim_mazurok/gapi.client.apigee-v1 0.0.20251125 → 0.0.20260106

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.
Files changed (2) hide show
  1. package/index.d.ts +750 -27
  2. 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: 20251125
12
+ // Revision: 20260106
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. */
@@ -1927,8 +2024,10 @@ declare namespace gapi.client {
1927
2024
  authorizedNetwork?: string;
1928
2025
  /** Optional. Billing type of the Apigee organization. See [Apigee pricing](https://cloud.google.com/apigee/pricing). */
1929
2026
  billingType?: string;
1930
- /** Output only. Base64-encoded public certificate for the root CA of the Apigee organization. Valid only when [RuntimeType](#RuntimeType) is `CLOUD`. */
2027
+ /** Output only. Deprecated: Use `ca_certificates` instead. Base64-encoded public certificate for the root CA of the Apigee organization. Valid only when [RuntimeType](#RuntimeType) is `CLOUD`. */
1931
2028
  caCertificate?: string;
2029
+ /** Output only. Base64-encoded public certificates for the root CA of the Apigee organization. Valid only when [RuntimeType](#RuntimeType) is `CLOUD`. Multiple certificates are used to support certificate rotation. */
2030
+ caCertificates?: string[];
1932
2031
  /** Optional. Cloud KMS key name used for encrypting control plane data that is stored in a multi region. Only used for the data residency region "US" or "EU". If not specified or [BillingType](#BillingType) is `EVALUATION`, a Google-Managed encryption key will be used. Format: `projects/*‍/locations/*‍/keyRings/*‍/cryptoKeys/*` */
1933
2032
  controlPlaneEncryptionKeyName?: string;
1934
2033
  /** Output only. Time that the Apigee organization was created in milliseconds since epoch. */
@@ -3496,6 +3595,221 @@ declare namespace gapi.client {
3496
3595
  interface AnalyticsResource {
3497
3596
  datastores: DatastoresResource;
3498
3597
  }
3598
+ interface ApimServiceExtensionsResource {
3599
+ /** Creates an APIM ServiceExtension in an organization. */
3600
+ create(request: {
3601
+ /** V1 error format. */
3602
+ '$.xgafv'?: string;
3603
+ /** OAuth access token. */
3604
+ access_token?: string;
3605
+ /** Data format for response. */
3606
+ alt?: string;
3607
+ /** 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. */
3608
+ apimServiceExtensionId?: string;
3609
+ /** JSONP */
3610
+ callback?: string;
3611
+ /** Selector specifying which fields to include in a partial response. */
3612
+ fields?: string;
3613
+ /** 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. */
3614
+ key?: string;
3615
+ /** OAuth 2.0 token for the current user. */
3616
+ oauth_token?: string;
3617
+ /** Required. Name of the organization in which the service extension will be created. Use the following structure in your request: `organizations/{org}` */
3618
+ parent: string;
3619
+ /** Returns response with indentations and line breaks. */
3620
+ prettyPrint?: boolean;
3621
+ /** 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. */
3622
+ quotaUser?: string;
3623
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3624
+ upload_protocol?: string;
3625
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3626
+ uploadType?: string;
3627
+ /** Request body */
3628
+ resource: GoogleCloudApigeeV1ApimServiceExtension;
3629
+ }): Request<GoogleLongrunningOperation>;
3630
+ create(
3631
+ request: {
3632
+ /** V1 error format. */
3633
+ '$.xgafv'?: string;
3634
+ /** OAuth access token. */
3635
+ access_token?: string;
3636
+ /** Data format for response. */
3637
+ alt?: string;
3638
+ /** 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. */
3639
+ apimServiceExtensionId?: string;
3640
+ /** JSONP */
3641
+ callback?: string;
3642
+ /** Selector specifying which fields to include in a partial response. */
3643
+ fields?: string;
3644
+ /** 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. */
3645
+ key?: string;
3646
+ /** OAuth 2.0 token for the current user. */
3647
+ oauth_token?: string;
3648
+ /** Required. Name of the organization in which the service extension will be created. Use the following structure in your request: `organizations/{org}` */
3649
+ parent: string;
3650
+ /** Returns response with indentations and line breaks. */
3651
+ prettyPrint?: boolean;
3652
+ /** 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. */
3653
+ quotaUser?: string;
3654
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3655
+ upload_protocol?: string;
3656
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3657
+ uploadType?: string;
3658
+ },
3659
+ body: GoogleCloudApigeeV1ApimServiceExtension,
3660
+ ): Request<GoogleLongrunningOperation>;
3661
+ /** Deletes APIM service extension from an organization. */
3662
+ delete(request?: {
3663
+ /** V1 error format. */
3664
+ '$.xgafv'?: string;
3665
+ /** OAuth access token. */
3666
+ access_token?: string;
3667
+ /** Data format for response. */
3668
+ alt?: string;
3669
+ /** JSONP */
3670
+ callback?: string;
3671
+ /** Selector specifying which fields to include in a partial response. */
3672
+ fields?: string;
3673
+ /** 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. */
3674
+ key?: string;
3675
+ /** Required. Name of the service extension. Use the following structure in your request: `organizations/{org}/apimServiceExtensions/{extension_id}` */
3676
+ name: string;
3677
+ /** OAuth 2.0 token for the current user. */
3678
+ oauth_token?: string;
3679
+ /** Returns response with indentations and line breaks. */
3680
+ prettyPrint?: boolean;
3681
+ /** 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. */
3682
+ quotaUser?: string;
3683
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3684
+ upload_protocol?: string;
3685
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3686
+ uploadType?: string;
3687
+ }): Request<GoogleLongrunningOperation>;
3688
+ /** Gets APIM service extension details. */
3689
+ get(request?: {
3690
+ /** V1 error format. */
3691
+ '$.xgafv'?: string;
3692
+ /** OAuth access token. */
3693
+ access_token?: string;
3694
+ /** Data format for response. */
3695
+ alt?: string;
3696
+ /** JSONP */
3697
+ callback?: string;
3698
+ /** Selector specifying which fields to include in a partial response. */
3699
+ fields?: string;
3700
+ /** 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. */
3701
+ key?: string;
3702
+ /** Required. Name of the service extension. Use the following structure in your request: `organizations/{org}/apimServiceExtensions/{extension_id}` */
3703
+ name: string;
3704
+ /** OAuth 2.0 token for the current user. */
3705
+ oauth_token?: string;
3706
+ /** Returns response with indentations and line breaks. */
3707
+ prettyPrint?: boolean;
3708
+ /** 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. */
3709
+ quotaUser?: string;
3710
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3711
+ upload_protocol?: string;
3712
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3713
+ uploadType?: string;
3714
+ }): Request<GoogleCloudApigeeV1ApimServiceExtension>;
3715
+ /** Lists all APIM service extensions in an organization. */
3716
+ list(request?: {
3717
+ /** V1 error format. */
3718
+ '$.xgafv'?: string;
3719
+ /** OAuth access token. */
3720
+ access_token?: string;
3721
+ /** Data format for response. */
3722
+ alt?: string;
3723
+ /** JSONP */
3724
+ callback?: string;
3725
+ /** Selector specifying which fields to include in a partial response. */
3726
+ fields?: string;
3727
+ /** 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. */
3728
+ key?: string;
3729
+ /** OAuth 2.0 token for the current user. */
3730
+ oauth_token?: string;
3731
+ /** Optional. Maximum number of items to return. If unspecified, at most 25 service extension will be returned. */
3732
+ pageSize?: number;
3733
+ /** Optional. Page token, returned from a previous `ListApimServiceExtensions` call, that you can use to retrieve the next page. */
3734
+ pageToken?: string;
3735
+ /** Required. Name of the organization for which to list the service extension. Use the following structure in your request: `organizations/{org}/apimServiceExtensions` */
3736
+ parent: string;
3737
+ /** Returns response with indentations and line breaks. */
3738
+ prettyPrint?: boolean;
3739
+ /** 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. */
3740
+ quotaUser?: string;
3741
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3742
+ upload_protocol?: string;
3743
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3744
+ uploadType?: string;
3745
+ }): Request<GoogleCloudApigeeV1ListApimServiceExtensionsResponse>;
3746
+ /** Updates an APIM service extension in an organization. */
3747
+ patch(request: {
3748
+ /** V1 error format. */
3749
+ '$.xgafv'?: string;
3750
+ /** OAuth access token. */
3751
+ access_token?: string;
3752
+ /** 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. */
3753
+ allowMissing?: boolean;
3754
+ /** Data format for response. */
3755
+ alt?: string;
3756
+ /** JSONP */
3757
+ callback?: string;
3758
+ /** Selector specifying which fields to include in a partial response. */
3759
+ fields?: string;
3760
+ /** 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. */
3761
+ key?: string;
3762
+ /** 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. */
3763
+ name: string;
3764
+ /** OAuth 2.0 token for the current user. */
3765
+ oauth_token?: string;
3766
+ /** Returns response with indentations and line breaks. */
3767
+ prettyPrint?: boolean;
3768
+ /** 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. */
3769
+ quotaUser?: string;
3770
+ /** Optional. The list of fields to update. */
3771
+ updateMask?: string;
3772
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3773
+ upload_protocol?: string;
3774
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3775
+ uploadType?: string;
3776
+ /** Request body */
3777
+ resource: GoogleCloudApigeeV1ApimServiceExtension;
3778
+ }): Request<GoogleLongrunningOperation>;
3779
+ patch(
3780
+ request: {
3781
+ /** V1 error format. */
3782
+ '$.xgafv'?: string;
3783
+ /** OAuth access token. */
3784
+ access_token?: string;
3785
+ /** 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. */
3786
+ allowMissing?: boolean;
3787
+ /** Data format for response. */
3788
+ alt?: string;
3789
+ /** JSONP */
3790
+ callback?: string;
3791
+ /** Selector specifying which fields to include in a partial response. */
3792
+ fields?: string;
3793
+ /** 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. */
3794
+ key?: string;
3795
+ /** 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. */
3796
+ name: string;
3797
+ /** OAuth 2.0 token for the current user. */
3798
+ oauth_token?: string;
3799
+ /** Returns response with indentations and line breaks. */
3800
+ prettyPrint?: boolean;
3801
+ /** 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. */
3802
+ quotaUser?: string;
3803
+ /** Optional. The list of fields to update. */
3804
+ updateMask?: string;
3805
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3806
+ upload_protocol?: string;
3807
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3808
+ uploadType?: string;
3809
+ },
3810
+ body: GoogleCloudApigeeV1ApimServiceExtension,
3811
+ ): Request<GoogleLongrunningOperation>;
3812
+ }
3499
3813
  interface AttributesResource {
3500
3814
  /** Deletes an API product attribute. */
3501
3815
  delete(request?: {
@@ -5431,9 +5745,9 @@ declare namespace gapi.client {
5431
5745
  ): Request<GoogleCloudApigeeV1AppGroupApp>;
5432
5746
  keys: KeysResource;
5433
5747
  }
5434
- interface AppgroupsResource {
5435
- /** 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`. */
5436
- create(request: {
5748
+ interface BalanceResource {
5749
+ /** Adjust the prepaid balance for the AppGroup. This API will be used in scenarios where the AppGroup has been under-charged or over-charged. */
5750
+ adjust(request: {
5437
5751
  /** V1 error format. */
5438
5752
  '$.xgafv'?: string;
5439
5753
  /** OAuth access token. */
@@ -5446,10 +5760,10 @@ declare namespace gapi.client {
5446
5760
  fields?: string;
5447
5761
  /** 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
5762
  key?: string;
5763
+ /** Required. Account balance for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/balance` */
5764
+ name: string;
5449
5765
  /** OAuth 2.0 token for the current user. */
5450
5766
  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
5767
  /** Returns response with indentations and line breaks. */
5454
5768
  prettyPrint?: boolean;
5455
5769
  /** 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 +5773,9 @@ declare namespace gapi.client {
5459
5773
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5460
5774
  uploadType?: string;
5461
5775
  /** Request body */
5462
- resource: GoogleCloudApigeeV1AppGroup;
5463
- }): Request<GoogleCloudApigeeV1AppGroup>;
5464
- create(
5776
+ resource: GoogleCloudApigeeV1AdjustAppGroupBalanceRequest;
5777
+ }): Request<GoogleCloudApigeeV1AppGroupBalance>;
5778
+ adjust(
5465
5779
  request: {
5466
5780
  /** V1 error format. */
5467
5781
  '$.xgafv'?: string;
@@ -5475,10 +5789,10 @@ declare namespace gapi.client {
5475
5789
  fields?: string;
5476
5790
  /** 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
5791
  key?: string;
5792
+ /** Required. Account balance for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/balance` */
5793
+ name: string;
5478
5794
  /** OAuth 2.0 token for the current user. */
5479
5795
  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
5796
  /** Returns response with indentations and line breaks. */
5483
5797
  prettyPrint?: boolean;
5484
5798
  /** 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 +5802,10 @@ declare namespace gapi.client {
5488
5802
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5489
5803
  uploadType?: string;
5490
5804
  },
5491
- body: GoogleCloudApigeeV1AppGroup,
5492
- ): Request<GoogleCloudApigeeV1AppGroup>;
5493
- /** 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. */
5494
- delete(request?: {
5805
+ body: GoogleCloudApigeeV1AdjustAppGroupBalanceRequest,
5806
+ ): Request<GoogleCloudApigeeV1AppGroupBalance>;
5807
+ /** Credits the account balance for the AppGroup. */
5808
+ credit(request: {
5495
5809
  /** V1 error format. */
5496
5810
  '$.xgafv'?: string;
5497
5811
  /** OAuth access token. */
@@ -5504,7 +5818,7 @@ declare namespace gapi.client {
5504
5818
  fields?: string;
5505
5819
  /** 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
5820
  key?: string;
5507
- /** Required. Name of the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group_name}` */
5821
+ /** Required. Account balance for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/balance` */
5508
5822
  name: string;
5509
5823
  /** OAuth 2.0 token for the current user. */
5510
5824
  oauth_token?: string;
@@ -5516,16 +5830,283 @@ declare namespace gapi.client {
5516
5830
  upload_protocol?: string;
5517
5831
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5518
5832
  uploadType?: string;
5519
- }): Request<GoogleCloudApigeeV1AppGroup>;
5520
- /** Returns the AppGroup details for the provided AppGroup name in the request URI. */
5521
- get(request?: {
5522
- /** V1 error format. */
5523
- '$.xgafv'?: string;
5524
- /** OAuth access token. */
5525
- access_token?: string;
5526
- /** Data format for response. */
5527
- alt?: string;
5528
- /** JSONP */
5833
+ /** Request body */
5834
+ resource: GoogleCloudApigeeV1CreditAppGroupBalanceRequest;
5835
+ }): Request<GoogleCloudApigeeV1AppGroupBalance>;
5836
+ credit(
5837
+ request: {
5838
+ /** V1 error format. */
5839
+ '$.xgafv'?: string;
5840
+ /** OAuth access token. */
5841
+ access_token?: string;
5842
+ /** Data format for response. */
5843
+ alt?: string;
5844
+ /** JSONP */
5845
+ callback?: string;
5846
+ /** Selector specifying which fields to include in a partial response. */
5847
+ fields?: string;
5848
+ /** 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. */
5849
+ key?: string;
5850
+ /** Required. Account balance for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/balance` */
5851
+ name: string;
5852
+ /** OAuth 2.0 token for the current user. */
5853
+ oauth_token?: string;
5854
+ /** Returns response with indentations and line breaks. */
5855
+ prettyPrint?: boolean;
5856
+ /** 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. */
5857
+ quotaUser?: string;
5858
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
5859
+ upload_protocol?: string;
5860
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5861
+ uploadType?: string;
5862
+ },
5863
+ body: GoogleCloudApigeeV1CreditAppGroupBalanceRequest,
5864
+ ): Request<GoogleCloudApigeeV1AppGroupBalance>;
5865
+ }
5866
+ interface SubscriptionsResource {
5867
+ /** Creates a subscription to an API product. */
5868
+ create(request: {
5869
+ /** V1 error format. */
5870
+ '$.xgafv'?: string;
5871
+ /** OAuth access token. */
5872
+ access_token?: string;
5873
+ /** Data format for response. */
5874
+ alt?: string;
5875
+ /** JSONP */
5876
+ callback?: string;
5877
+ /** Selector specifying which fields to include in a partial response. */
5878
+ fields?: string;
5879
+ /** 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. */
5880
+ key?: string;
5881
+ /** OAuth 2.0 token for the current user. */
5882
+ oauth_token?: string;
5883
+ /** 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}` */
5884
+ parent: string;
5885
+ /** Returns response with indentations and line breaks. */
5886
+ prettyPrint?: boolean;
5887
+ /** 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. */
5888
+ quotaUser?: string;
5889
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
5890
+ upload_protocol?: string;
5891
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5892
+ uploadType?: string;
5893
+ /** Request body */
5894
+ resource: GoogleCloudApigeeV1AppGroupSubscription;
5895
+ }): Request<GoogleCloudApigeeV1AppGroupSubscription>;
5896
+ create(
5897
+ request: {
5898
+ /** V1 error format. */
5899
+ '$.xgafv'?: string;
5900
+ /** OAuth access token. */
5901
+ access_token?: string;
5902
+ /** Data format for response. */
5903
+ alt?: string;
5904
+ /** JSONP */
5905
+ callback?: string;
5906
+ /** Selector specifying which fields to include in a partial response. */
5907
+ fields?: string;
5908
+ /** 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. */
5909
+ key?: string;
5910
+ /** OAuth 2.0 token for the current user. */
5911
+ oauth_token?: string;
5912
+ /** 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}` */
5913
+ parent: string;
5914
+ /** Returns response with indentations and line breaks. */
5915
+ prettyPrint?: boolean;
5916
+ /** 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. */
5917
+ quotaUser?: string;
5918
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
5919
+ upload_protocol?: string;
5920
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5921
+ uploadType?: string;
5922
+ },
5923
+ body: GoogleCloudApigeeV1AppGroupSubscription,
5924
+ ): Request<GoogleCloudApigeeV1AppGroupSubscription>;
5925
+ /** Expires an API product subscription immediately. */
5926
+ expire(request: {
5927
+ /** V1 error format. */
5928
+ '$.xgafv'?: string;
5929
+ /** OAuth access token. */
5930
+ access_token?: string;
5931
+ /** Data format for response. */
5932
+ alt?: string;
5933
+ /** JSONP */
5934
+ callback?: string;
5935
+ /** Selector specifying which fields to include in a partial response. */
5936
+ fields?: string;
5937
+ /** 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. */
5938
+ key?: string;
5939
+ /** Required. Name of the API product subscription. Use the following structure in your request: `organizations/{org}/appgroups/{appgroup}/subscriptions/{subscription}` */
5940
+ name: string;
5941
+ /** OAuth 2.0 token for the current user. */
5942
+ oauth_token?: string;
5943
+ /** Returns response with indentations and line breaks. */
5944
+ prettyPrint?: boolean;
5945
+ /** 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. */
5946
+ quotaUser?: string;
5947
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
5948
+ upload_protocol?: string;
5949
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5950
+ uploadType?: string;
5951
+ /** Request body */
5952
+ resource: GoogleCloudApigeeV1ExpireAppGroupSubscriptionRequest;
5953
+ }): Request<GoogleCloudApigeeV1AppGroupSubscription>;
5954
+ expire(
5955
+ request: {
5956
+ /** V1 error format. */
5957
+ '$.xgafv'?: string;
5958
+ /** OAuth access token. */
5959
+ access_token?: string;
5960
+ /** Data format for response. */
5961
+ alt?: string;
5962
+ /** JSONP */
5963
+ callback?: string;
5964
+ /** Selector specifying which fields to include in a partial response. */
5965
+ fields?: string;
5966
+ /** 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. */
5967
+ key?: string;
5968
+ /** Required. Name of the API product subscription. Use the following structure in your request: `organizations/{org}/appgroups/{appgroup}/subscriptions/{subscription}` */
5969
+ name: string;
5970
+ /** OAuth 2.0 token for the current user. */
5971
+ oauth_token?: string;
5972
+ /** Returns response with indentations and line breaks. */
5973
+ prettyPrint?: boolean;
5974
+ /** 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. */
5975
+ quotaUser?: string;
5976
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
5977
+ upload_protocol?: string;
5978
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5979
+ uploadType?: string;
5980
+ },
5981
+ body: GoogleCloudApigeeV1ExpireAppGroupSubscriptionRequest,
5982
+ ): Request<GoogleCloudApigeeV1AppGroupSubscription>;
5983
+ /** Get an api product subscription for an appgroup. */
5984
+ get(request?: {
5985
+ /** V1 error format. */
5986
+ '$.xgafv'?: string;
5987
+ /** OAuth access token. */
5988
+ access_token?: string;
5989
+ /** Data format for response. */
5990
+ alt?: string;
5991
+ /** JSONP */
5992
+ callback?: string;
5993
+ /** Selector specifying which fields to include in a partial response. */
5994
+ fields?: string;
5995
+ /** 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. */
5996
+ key?: string;
5997
+ /** Required. The name of the AppGroupSubscription to retrieve. Format: `organizations/{org}/appgroups/{appgroup}/subscriptions/{subscription}` */
5998
+ name: string;
5999
+ /** OAuth 2.0 token for the current user. */
6000
+ oauth_token?: string;
6001
+ /** Returns response with indentations and line breaks. */
6002
+ prettyPrint?: boolean;
6003
+ /** 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. */
6004
+ quotaUser?: string;
6005
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6006
+ upload_protocol?: string;
6007
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6008
+ uploadType?: string;
6009
+ }): Request<GoogleCloudApigeeV1AppGroupSubscription>;
6010
+ /** List all api product subscriptions for an appgroup. */
6011
+ list(request?: {
6012
+ /** V1 error format. */
6013
+ '$.xgafv'?: string;
6014
+ /** OAuth access token. */
6015
+ access_token?: string;
6016
+ /** Data format for response. */
6017
+ alt?: string;
6018
+ /** JSONP */
6019
+ callback?: string;
6020
+ /** Selector specifying which fields to include in a partial response. */
6021
+ fields?: string;
6022
+ /** 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. */
6023
+ key?: string;
6024
+ /** OAuth 2.0 token for the current user. */
6025
+ oauth_token?: string;
6026
+ /** 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. */
6027
+ pageSize?: number;
6028
+ /** 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. */
6029
+ pageToken?: string;
6030
+ /** Required. Name of the appgroup. Use the following structure in your request: `organizations/{org}/appgroups/{appgroup}` */
6031
+ parent: string;
6032
+ /** Returns response with indentations and line breaks. */
6033
+ prettyPrint?: boolean;
6034
+ /** 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. */
6035
+ quotaUser?: string;
6036
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6037
+ upload_protocol?: string;
6038
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6039
+ uploadType?: string;
6040
+ }): Request<GoogleCloudApigeeV1ListAppGroupSubscriptionsResponse>;
6041
+ }
6042
+ interface AppgroupsResource {
6043
+ /** 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`. */
6044
+ create(request: {
6045
+ /** V1 error format. */
6046
+ '$.xgafv'?: string;
6047
+ /** OAuth access token. */
6048
+ access_token?: string;
6049
+ /** Data format for response. */
6050
+ alt?: string;
6051
+ /** JSONP */
6052
+ callback?: string;
6053
+ /** Selector specifying which fields to include in a partial response. */
6054
+ fields?: string;
6055
+ /** 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. */
6056
+ key?: string;
6057
+ /** OAuth 2.0 token for the current user. */
6058
+ oauth_token?: string;
6059
+ /** Required. Name of the Apigee organization in which the AppGroup is created. Use the following structure in your request: `organizations/{org}`. */
6060
+ parent: string;
6061
+ /** Returns response with indentations and line breaks. */
6062
+ prettyPrint?: boolean;
6063
+ /** 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. */
6064
+ quotaUser?: string;
6065
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6066
+ upload_protocol?: string;
6067
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6068
+ uploadType?: string;
6069
+ /** Request body */
6070
+ resource: GoogleCloudApigeeV1AppGroup;
6071
+ }): Request<GoogleCloudApigeeV1AppGroup>;
6072
+ create(
6073
+ request: {
6074
+ /** V1 error format. */
6075
+ '$.xgafv'?: string;
6076
+ /** OAuth access token. */
6077
+ access_token?: string;
6078
+ /** Data format for response. */
6079
+ alt?: string;
6080
+ /** JSONP */
6081
+ callback?: string;
6082
+ /** Selector specifying which fields to include in a partial response. */
6083
+ fields?: string;
6084
+ /** 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. */
6085
+ key?: string;
6086
+ /** OAuth 2.0 token for the current user. */
6087
+ oauth_token?: string;
6088
+ /** Required. Name of the Apigee organization in which the AppGroup is created. Use the following structure in your request: `organizations/{org}`. */
6089
+ parent: string;
6090
+ /** Returns response with indentations and line breaks. */
6091
+ prettyPrint?: boolean;
6092
+ /** 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. */
6093
+ quotaUser?: string;
6094
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6095
+ upload_protocol?: string;
6096
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6097
+ uploadType?: string;
6098
+ },
6099
+ body: GoogleCloudApigeeV1AppGroup,
6100
+ ): Request<GoogleCloudApigeeV1AppGroup>;
6101
+ /** 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. */
6102
+ delete(request?: {
6103
+ /** V1 error format. */
6104
+ '$.xgafv'?: string;
6105
+ /** OAuth access token. */
6106
+ access_token?: string;
6107
+ /** Data format for response. */
6108
+ alt?: string;
6109
+ /** JSONP */
5529
6110
  callback?: string;
5530
6111
  /** Selector specifying which fields to include in a partial response. */
5531
6112
  fields?: string;
@@ -5544,6 +6125,87 @@ declare namespace gapi.client {
5544
6125
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5545
6126
  uploadType?: string;
5546
6127
  }): Request<GoogleCloudApigeeV1AppGroup>;
6128
+ /** Returns the AppGroup details for the provided AppGroup name in the request URI. */
6129
+ get(request?: {
6130
+ /** V1 error format. */
6131
+ '$.xgafv'?: string;
6132
+ /** OAuth access token. */
6133
+ access_token?: string;
6134
+ /** Data format for response. */
6135
+ alt?: string;
6136
+ /** JSONP */
6137
+ callback?: string;
6138
+ /** Selector specifying which fields to include in a partial response. */
6139
+ fields?: string;
6140
+ /** 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. */
6141
+ key?: string;
6142
+ /** Required. Name of the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group_name}` */
6143
+ name: string;
6144
+ /** OAuth 2.0 token for the current user. */
6145
+ oauth_token?: string;
6146
+ /** Returns response with indentations and line breaks. */
6147
+ prettyPrint?: boolean;
6148
+ /** 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. */
6149
+ quotaUser?: string;
6150
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6151
+ upload_protocol?: string;
6152
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6153
+ uploadType?: string;
6154
+ }): Request<GoogleCloudApigeeV1AppGroup>;
6155
+ /** Gets the account balance for the AppGroup. */
6156
+ getBalance(request?: {
6157
+ /** V1 error format. */
6158
+ '$.xgafv'?: string;
6159
+ /** OAuth access token. */
6160
+ access_token?: string;
6161
+ /** Data format for response. */
6162
+ alt?: string;
6163
+ /** JSONP */
6164
+ callback?: string;
6165
+ /** Selector specifying which fields to include in a partial response. */
6166
+ fields?: string;
6167
+ /** 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. */
6168
+ key?: string;
6169
+ /** Required. Account balance for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/balance` */
6170
+ name: string;
6171
+ /** OAuth 2.0 token for the current user. */
6172
+ oauth_token?: string;
6173
+ /** Returns response with indentations and line breaks. */
6174
+ prettyPrint?: boolean;
6175
+ /** 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. */
6176
+ quotaUser?: string;
6177
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6178
+ upload_protocol?: string;
6179
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6180
+ uploadType?: string;
6181
+ }): Request<GoogleCloudApigeeV1AppGroupBalance>;
6182
+ /** Gets the monetization configuration for the AppGroup. */
6183
+ getMonetizationConfig(request?: {
6184
+ /** V1 error format. */
6185
+ '$.xgafv'?: string;
6186
+ /** OAuth access token. */
6187
+ access_token?: string;
6188
+ /** Data format for response. */
6189
+ alt?: string;
6190
+ /** JSONP */
6191
+ callback?: string;
6192
+ /** Selector specifying which fields to include in a partial response. */
6193
+ fields?: string;
6194
+ /** 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. */
6195
+ key?: string;
6196
+ /** Required. Monetization configuration for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/monetizationConfig` */
6197
+ name: string;
6198
+ /** OAuth 2.0 token for the current user. */
6199
+ oauth_token?: string;
6200
+ /** Returns response with indentations and line breaks. */
6201
+ prettyPrint?: boolean;
6202
+ /** 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. */
6203
+ quotaUser?: string;
6204
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6205
+ upload_protocol?: string;
6206
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6207
+ uploadType?: string;
6208
+ }): Request<GoogleCloudApigeeV1AppGroupMonetizationConfig>;
5547
6209
  /** 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
6210
  list(request?: {
5549
6211
  /** V1 error format. */
@@ -5639,7 +6301,67 @@ declare namespace gapi.client {
5639
6301
  },
5640
6302
  body: GoogleCloudApigeeV1AppGroup,
5641
6303
  ): Request<GoogleCloudApigeeV1AppGroup>;
6304
+ /** Updates the monetization configuration for the AppGroup. */
6305
+ updateMonetizationConfig(request: {
6306
+ /** V1 error format. */
6307
+ '$.xgafv'?: string;
6308
+ /** OAuth access token. */
6309
+ access_token?: string;
6310
+ /** Data format for response. */
6311
+ alt?: string;
6312
+ /** JSONP */
6313
+ callback?: string;
6314
+ /** Selector specifying which fields to include in a partial response. */
6315
+ fields?: string;
6316
+ /** 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. */
6317
+ key?: string;
6318
+ /** Required. Monetization configuration for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/monetizationConfig` */
6319
+ name: string;
6320
+ /** OAuth 2.0 token for the current user. */
6321
+ oauth_token?: string;
6322
+ /** Returns response with indentations and line breaks. */
6323
+ prettyPrint?: boolean;
6324
+ /** 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. */
6325
+ quotaUser?: string;
6326
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6327
+ upload_protocol?: string;
6328
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6329
+ uploadType?: string;
6330
+ /** Request body */
6331
+ resource: GoogleCloudApigeeV1AppGroupMonetizationConfig;
6332
+ }): Request<GoogleCloudApigeeV1AppGroupMonetizationConfig>;
6333
+ updateMonetizationConfig(
6334
+ request: {
6335
+ /** V1 error format. */
6336
+ '$.xgafv'?: string;
6337
+ /** OAuth access token. */
6338
+ access_token?: string;
6339
+ /** Data format for response. */
6340
+ alt?: string;
6341
+ /** JSONP */
6342
+ callback?: string;
6343
+ /** Selector specifying which fields to include in a partial response. */
6344
+ fields?: string;
6345
+ /** 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. */
6346
+ key?: string;
6347
+ /** Required. Monetization configuration for the AppGroup. Use the following structure in your request: `organizations/{org}/appgroups/{app_group}/monetizationConfig` */
6348
+ name: string;
6349
+ /** OAuth 2.0 token for the current user. */
6350
+ oauth_token?: string;
6351
+ /** Returns response with indentations and line breaks. */
6352
+ prettyPrint?: boolean;
6353
+ /** 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. */
6354
+ quotaUser?: string;
6355
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
6356
+ upload_protocol?: string;
6357
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6358
+ uploadType?: string;
6359
+ },
6360
+ body: GoogleCloudApigeeV1AppGroupMonetizationConfig,
6361
+ ): Request<GoogleCloudApigeeV1AppGroupMonetizationConfig>;
5642
6362
  apps: AppsResource;
6363
+ balance: BalanceResource;
6364
+ subscriptions: SubscriptionsResource;
5643
6365
  }
5644
6366
  interface AppsResource {
5645
6367
  /** Gets the app profile for the specified app ID. */
@@ -17711,6 +18433,7 @@ declare namespace gapi.client {
17711
18433
  body: GoogleCloudApigeeV1SecuritySettings,
17712
18434
  ): Request<GoogleCloudApigeeV1SecuritySettings>;
17713
18435
  analytics: AnalyticsResource;
18436
+ apimServiceExtensions: ApimServiceExtensionsResource;
17714
18437
  apiproducts: ApiproductsResource;
17715
18438
  apis: ApisResource;
17716
18439
  appgroups: AppgroupsResource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.apigee-v1",
3
- "version": "0.0.20251125",
3
+ "version": "0.0.20260106",
4
4
  "description": "TypeScript typings for Apigee API v1",
5
5
  "repository": {
6
6
  "type": "git",