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

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 +44 -4
  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: 20251105
12
+ // Revision: 20251125
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -233,6 +233,14 @@ declare namespace gapi.client {
233
233
  grpcOperationGroup?: GoogleCloudApigeeV1GrpcOperationGroup;
234
234
  /** Response only. Modified time of this environment as milliseconds since epoch. */
235
235
  lastModifiedAt?: string;
236
+ /** Optional. Configuration used to group Apigee proxies with resources, method types, LLM model and quotas. The resource refers to the resource URI (excluding the base path). With this grouping, the API product creator is able to fine-tune and give precise control over which REST methods have access to specific resources, specific LLM model and how many calls can be made (using the `quota` setting). **Note:** The `api_resources` setting cannot be specified for both the API product and llm operation group; otherwise the call will fail. */
237
+ llmOperationGroup?: GoogleCloudApigeeV1LlmOperationGroup;
238
+ /** Optional. Number of LLM tokens permitted per app by this API product for the specified `llm_quota_interval` and `llm_quota_time_unit`. For example, an `llm_quota` of 50,000, for an `llm_quota_interval` of 12 and an `llm_quota_time_unit` of hours means 50,000 llm tokens are allowed to be used every 12 hours. */
239
+ llmQuota?: string;
240
+ /** Optional. Time interval over which the number of tokens from LLM responses is calculated. */
241
+ llmQuotaInterval?: string;
242
+ /** Optional. Time unit defined for the `llm_quota_interval`. Valid values include `minute`, `hour`, `day`, or `month`. */
243
+ llmQuotaTimeUnit?: string;
236
244
  /** Internal name of the API product. Characters you can use in the name are restricted to: `A-Z0-9._\-$ %`. **Note:** The internal name cannot be edited when updating the API product. */
237
245
  name?: string;
238
246
  /** Configuration used to group Apigee proxies or remote services with resources, method types, and quotas. The resource refers to the resource URI (excluding the base path). With this grouping, the API product creator is able to fine-tune and give precise control over which REST methods have access to specific resources and how many calls can be made (using the `quota` setting). **Note:** The `api_resources` setting cannot be specified for both the API product and operation group; otherwise the call will fail. */
@@ -1497,6 +1505,8 @@ declare namespace gapi.client {
1497
1505
  interface GoogleCloudApigeeV1KeyValueMap {
1498
1506
  /** Required. Flag that specifies whether entry values will be encrypted. This field is retained for backward compatibility and the value of encrypted will always be `true`. Apigee X and hybrid do not support unencrypted key value maps. */
1499
1507
  encrypted?: boolean;
1508
+ /** Optional. Flag that specifies whether entry values will be masked when returned. */
1509
+ maskedValues?: boolean;
1500
1510
  /** Required. ID of the key value map. */
1501
1511
  name?: string;
1502
1512
  }
@@ -1740,6 +1750,36 @@ declare namespace gapi.client {
1740
1750
  /** List all trace configuration overrides in an environment. */
1741
1751
  traceConfigOverrides?: GoogleCloudApigeeV1TraceConfigOverride[];
1742
1752
  }
1753
+ interface GoogleCloudApigeeV1LlmOperation {
1754
+ /** Optional. methods refers to the REST verbs as in https://httpwg.org/specs/rfc9110.html For example: GET, POST, PUT, DELETE, etc. They need to be in uppercase. When none specified, all verb types are allowed. */
1755
+ methods?: string[];
1756
+ /** Required. LLM model name associated with the API proxy */
1757
+ model?: string;
1758
+ /** Required. REST resource path associated with the API proxy or remote service. */
1759
+ resource?: string;
1760
+ }
1761
+ interface GoogleCloudApigeeV1LlmOperationConfig {
1762
+ /** Required. Name of the API proxy or remote service with which the resources, methods, and quota are associated. */
1763
+ apiSource?: string;
1764
+ /** Optional. Custom attributes associated with the operation. */
1765
+ attributes?: GoogleCloudApigeeV1Attribute[];
1766
+ /** Required. List of resource/method/model for the API proxy to which quota will applied. **Note**: Currently, you can specify only a single resource/method/model mapping. The call will fail if more than one resource/method/model mappings are provided. */
1767
+ llmOperations?: GoogleCloudApigeeV1LlmOperation[];
1768
+ /** Required. LLM token Quota parameters to be enforced for the resources, methods, and API source & LLM model combination. If none are specified, quota enforcement will not be done. */
1769
+ llmTokenQuota?: GoogleCloudApigeeV1LlmTokenQuota;
1770
+ }
1771
+ interface GoogleCloudApigeeV1LlmOperationGroup {
1772
+ /** Required. List of LLM operation configurations for either Apigee API proxies that are associated with this API product. */
1773
+ operationConfigs?: GoogleCloudApigeeV1LlmOperationConfig[];
1774
+ }
1775
+ interface GoogleCloudApigeeV1LlmTokenQuota {
1776
+ /** Required. Time interval over which the number of request messages is calculated. */
1777
+ interval?: string;
1778
+ /** Required. Upper limit of LLM tokens allowed for the time interval and time unit specified. Requests exceeding this limit will be rejected. */
1779
+ limit?: string;
1780
+ /** Optional. Time unit defined for the `interval`. Valid values include `minute`, `hour`, `day`, or `month`. If `limit` and `interval` are valid, the default value is `hour`; otherwise, the default is null. */
1781
+ timeUnit?: string;
1782
+ }
1743
1783
  interface GoogleCloudApigeeV1MaintenanceUpdatePolicy {
1744
1784
  /** Optional. Maintenance channel to specify relative scheduling for maintenance. */
1745
1785
  maintenanceChannel?: string;
@@ -3092,7 +3132,7 @@ declare namespace gapi.client {
3092
3132
  nextPageToken?: string;
3093
3133
  /** A list of operations that matches the specified filter in the request. */
3094
3134
  operations?: GoogleLongrunningOperation[];
3095
- /** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations. */
3135
+ /** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. */
3096
3136
  unreachable?: string[];
3097
3137
  }
3098
3138
  interface GoogleLongrunningOperation {
@@ -10792,7 +10832,7 @@ declare namespace gapi.client {
10792
10832
  fields?: string;
10793
10833
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
10794
10834
  key?: string;
10795
- /** Required. The name of the security monitoring condition to delete. Format: `organizations/{org}/environment/{env}/securityActions/{security_action}` */
10835
+ /** Required. The name of the security action to delete. Format: `organizations/{org}/environment/{env}/securityActions/{security_action}` */
10796
10836
  name: string;
10797
10837
  /** OAuth 2.0 token for the current user. */
10798
10838
  oauth_token?: string;
@@ -14491,7 +14531,7 @@ declare namespace gapi.client {
14491
14531
  prettyPrint?: boolean;
14492
14532
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14493
14533
  quotaUser?: string;
14494
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14534
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14495
14535
  returnPartialSuccess?: boolean;
14496
14536
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14497
14537
  upload_protocol?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.apigee-v1",
3
- "version": "0.0.20251105",
3
+ "version": "0.0.20251125",
4
4
  "description": "TypeScript typings for Apigee API v1",
5
5
  "repository": {
6
6
  "type": "git",