google-apis-apigee_v1 0.116.0 → 0.118.0

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.
@@ -358,6 +358,25 @@ module Google
358
358
  end
359
359
  end
360
360
 
361
+ # Request for AdjustAppGroupBalance.
362
+ class GoogleCloudApigeeV1AdjustAppGroupBalanceRequest
363
+ include Google::Apis::Core::Hashable
364
+
365
+ # Represents an amount of money with its currency type.
366
+ # Corresponds to the JSON property `adjustment`
367
+ # @return [Google::Apis::ApigeeV1::GoogleTypeMoney]
368
+ attr_accessor :adjustment
369
+
370
+ def initialize(**args)
371
+ update!(**args)
372
+ end
373
+
374
+ # Update properties of this object
375
+ def update!(**args)
376
+ @adjustment = args[:adjustment] if args.key?(:adjustment)
377
+ end
378
+ end
379
+
361
380
  # Request for AdjustDeveloperBalance.
362
381
  class GoogleCloudApigeeV1AdjustDeveloperBalanceRequest
363
382
  include Google::Apis::Core::Hashable
@@ -790,6 +809,11 @@ module Google
790
809
  class GoogleCloudApigeeV1ApiDocDocumentation
791
810
  include Google::Apis::Core::Hashable
792
811
 
812
+ # AsyncAPI Specification documentation for a catalog item.
813
+ # Corresponds to the JSON property `asyncApiDocumentation`
814
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AsyncApiDocumentation]
815
+ attr_accessor :async_api_documentation
816
+
793
817
  # GraphQL documentation for a catalog item.
794
818
  # Corresponds to the JSON property `graphqlDocumentation`
795
819
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1GraphqlDocumentation]
@@ -806,6 +830,7 @@ module Google
806
830
 
807
831
  # Update properties of this object
808
832
  def update!(**args)
833
+ @async_api_documentation = args[:async_api_documentation] if args.key?(:async_api_documentation)
809
834
  @graphql_documentation = args[:graphql_documentation] if args.key?(:graphql_documentation)
810
835
  @oas_documentation = args[:oas_documentation] if args.key?(:oas_documentation)
811
836
  end
@@ -994,6 +1019,32 @@ module Google
994
1019
  # @return [Fixnum]
995
1020
  attr_accessor :last_modified_at
996
1021
 
1022
+ # List of LLM operation configuration details associated with Apigee API proxies.
1023
+ # Corresponds to the JSON property `llmOperationGroup`
1024
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperationGroup]
1025
+ attr_accessor :llm_operation_group
1026
+
1027
+ # Optional. Number of LLM tokens permitted per app by this API product for the
1028
+ # specified `llm_quota_interval` and `llm_quota_time_unit`. For example, an `
1029
+ # llm_quota` of 50,000, for an `llm_quota_interval` of 12 and an `
1030
+ # llm_quota_time_unit` of hours means 50,000 llm tokens are allowed to be used
1031
+ # every 12 hours.
1032
+ # Corresponds to the JSON property `llmQuota`
1033
+ # @return [String]
1034
+ attr_accessor :llm_quota
1035
+
1036
+ # Optional. Time interval over which the number of tokens from LLM responses is
1037
+ # calculated.
1038
+ # Corresponds to the JSON property `llmQuotaInterval`
1039
+ # @return [String]
1040
+ attr_accessor :llm_quota_interval
1041
+
1042
+ # Optional. Time unit defined for the `llm_quota_interval`. Valid values include
1043
+ # `minute`, `hour`, `day`, or `month`.
1044
+ # Corresponds to the JSON property `llmQuotaTimeUnit`
1045
+ # @return [String]
1046
+ attr_accessor :llm_quota_time_unit
1047
+
997
1048
  # Internal name of the API product. Characters you can use in the name are
998
1049
  # restricted to: `A-Z0-9._\-$ %`. **Note:** The internal name cannot be edited
999
1050
  # when updating the API product.
@@ -1079,6 +1130,10 @@ module Google
1079
1130
  @graphql_operation_group = args[:graphql_operation_group] if args.key?(:graphql_operation_group)
1080
1131
  @grpc_operation_group = args[:grpc_operation_group] if args.key?(:grpc_operation_group)
1081
1132
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
1133
+ @llm_operation_group = args[:llm_operation_group] if args.key?(:llm_operation_group)
1134
+ @llm_quota = args[:llm_quota] if args.key?(:llm_quota)
1135
+ @llm_quota_interval = args[:llm_quota_interval] if args.key?(:llm_quota_interval)
1136
+ @llm_quota_time_unit = args[:llm_quota_time_unit] if args.key?(:llm_quota_time_unit)
1082
1137
  @name = args[:name] if args.key?(:name)
1083
1138
  @operation_group = args[:operation_group] if args.key?(:operation_group)
1084
1139
  @proxies = args[:proxies] if args.key?(:proxies)
@@ -1441,6 +1496,160 @@ module Google
1441
1496
  end
1442
1497
  end
1443
1498
 
1499
+ # APIM Service Extension is a resource under an Apigee Organization that is used
1500
+ # to create APIM Service Extension to route traffic to existing X instances.
1501
+ class GoogleCloudApigeeV1ApimServiceExtension
1502
+ include Google::Apis::Core::Hashable
1503
+
1504
+ # Output only. The time that this resource was created on the server.
1505
+ # Corresponds to the JSON property `createTime`
1506
+ # @return [String]
1507
+ attr_accessor :create_time
1508
+
1509
+ # Required. Name of the proxy deployed in the Apigee X instance.
1510
+ # Corresponds to the JSON property `extensionProcessor`
1511
+ # @return [String]
1512
+ attr_accessor :extension_processor
1513
+
1514
+ # Optional. List of extensions that are part of the service extension. Refer to
1515
+ # https://cloud.google.com/service-extensions/docs/quotas#limits for any limits.
1516
+ # Corresponds to the JSON property `extensions`
1517
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApimServiceExtensionExtension>]
1518
+ attr_accessor :extensions
1519
+
1520
+ # Required. Name of the Google Cloud LB forwarding rule. Format: projects/`
1521
+ # project`/regions/`region`/forwardingRules/`forwarding_rule` projects/`project`/
1522
+ # global/forwardingRules/`forwarding_rule`
1523
+ # Corresponds to the JSON property `lbForwardingRule`
1524
+ # @return [String]
1525
+ attr_accessor :lb_forwarding_rule
1526
+
1527
+ # Identifier. unique name of the APIM service extension. The name must conform
1528
+ # with RFC-1034, is restricted to lower-cased letters, numbers and hyphens, and
1529
+ # can have a maximum length of 63 characters. Additionally, the first character
1530
+ # must be a letter and the last a letter or a number.
1531
+ # Corresponds to the JSON property `name`
1532
+ # @return [String]
1533
+ attr_accessor :name
1534
+
1535
+ # Required. The network where the forwarding rule is created. Format: projects/`
1536
+ # project`/global/networks/`network`
1537
+ # Corresponds to the JSON property `network`
1538
+ # @return [String]
1539
+ attr_accessor :network
1540
+
1541
+ # Required. List of network configurations for the APIM service extension.
1542
+ # Corresponds to the JSON property `networkConfigs`
1543
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApimServiceExtensionNetworkConfig>]
1544
+ attr_accessor :network_configs
1545
+
1546
+ # Output only. State of the APIM service extension. Values other than `ACTIVE`
1547
+ # mean the resource is not ready to use.
1548
+ # Corresponds to the JSON property `state`
1549
+ # @return [String]
1550
+ attr_accessor :state
1551
+
1552
+ # Output only. The time that this resource was updated on the server.
1553
+ # Corresponds to the JSON property `updateTime`
1554
+ # @return [String]
1555
+ attr_accessor :update_time
1556
+
1557
+ def initialize(**args)
1558
+ update!(**args)
1559
+ end
1560
+
1561
+ # Update properties of this object
1562
+ def update!(**args)
1563
+ @create_time = args[:create_time] if args.key?(:create_time)
1564
+ @extension_processor = args[:extension_processor] if args.key?(:extension_processor)
1565
+ @extensions = args[:extensions] if args.key?(:extensions)
1566
+ @lb_forwarding_rule = args[:lb_forwarding_rule] if args.key?(:lb_forwarding_rule)
1567
+ @name = args[:name] if args.key?(:name)
1568
+ @network = args[:network] if args.key?(:network)
1569
+ @network_configs = args[:network_configs] if args.key?(:network_configs)
1570
+ @state = args[:state] if args.key?(:state)
1571
+ @update_time = args[:update_time] if args.key?(:update_time)
1572
+ end
1573
+ end
1574
+
1575
+ # Extension configuration for Apigee extension processor service extension.
1576
+ class GoogleCloudApigeeV1ApimServiceExtensionExtension
1577
+ include Google::Apis::Core::Hashable
1578
+
1579
+ # Optional. Whether this request should fail open.
1580
+ # Corresponds to the JSON property `failOpen`
1581
+ # @return [Boolean]
1582
+ attr_accessor :fail_open
1583
+ alias_method :fail_open?, :fail_open
1584
+
1585
+ # Required. One of the hostnames of Apigee EnvGroup where the proxy is deployed.
1586
+ # This hostname (i.e FDQN) will be used to route traffic from the specified
1587
+ # forwarding rule to the environment in Apigee X instance where the proxy is
1588
+ # deployed for handling extension traffic. Format: ^([a-zA-Z0-9. _-])+$
1589
+ # Corresponds to the JSON property `hostname`
1590
+ # @return [String]
1591
+ attr_accessor :hostname
1592
+
1593
+ # Optional. Match Condition for CEL expression. Refer to https://cloud.google.
1594
+ # com/service-extensions/docs/cel-matcher-language-reference for more details.
1595
+ # Corresponds to the JSON property `matchCondition`
1596
+ # @return [String]
1597
+ attr_accessor :match_condition
1598
+
1599
+ # Required. Name of the `LbTrafficExtension` resource. The name must conform
1600
+ # with RFC-1034, is restricted to lower-cased letters, numbers and hyphens, and
1601
+ # can have a maximum length of 63 characters. Additionally, the first character
1602
+ # must be a letter and the last a letter or a number.
1603
+ # Corresponds to the JSON property `name`
1604
+ # @return [String]
1605
+ attr_accessor :name
1606
+
1607
+ # Optional. Supported events for the Service Extension. If not specified, all
1608
+ # events are supported.
1609
+ # Corresponds to the JSON property `supportedEvents`
1610
+ # @return [Array<String>]
1611
+ attr_accessor :supported_events
1612
+
1613
+ def initialize(**args)
1614
+ update!(**args)
1615
+ end
1616
+
1617
+ # Update properties of this object
1618
+ def update!(**args)
1619
+ @fail_open = args[:fail_open] if args.key?(:fail_open)
1620
+ @hostname = args[:hostname] if args.key?(:hostname)
1621
+ @match_condition = args[:match_condition] if args.key?(:match_condition)
1622
+ @name = args[:name] if args.key?(:name)
1623
+ @supported_events = args[:supported_events] if args.key?(:supported_events)
1624
+ end
1625
+ end
1626
+
1627
+ # Network configuration for the APIM service extension.
1628
+ class GoogleCloudApigeeV1ApimServiceExtensionNetworkConfig
1629
+ include Google::Apis::Core::Hashable
1630
+
1631
+ # Required. The region for the PSC NEG.
1632
+ # Corresponds to the JSON property `region`
1633
+ # @return [String]
1634
+ attr_accessor :region
1635
+
1636
+ # Required. The subnet for the PSC NEG. Format: projects/`project`/regions/`
1637
+ # region`/subnetworks/`subnet`
1638
+ # Corresponds to the JSON property `subnet`
1639
+ # @return [String]
1640
+ attr_accessor :subnet
1641
+
1642
+ def initialize(**args)
1643
+ update!(**args)
1644
+ end
1645
+
1646
+ # Update properties of this object
1647
+ def update!(**args)
1648
+ @region = args[:region] if args.key?(:region)
1649
+ @subnet = args[:subnet] if args.key?(:subnet)
1650
+ end
1651
+ end
1652
+
1444
1653
  #
1445
1654
  class GoogleCloudApigeeV1App
1446
1655
  include Google::Apis::Core::Hashable
@@ -1586,6 +1795,11 @@ module Google
1586
1795
  # @return [String]
1587
1796
  attr_accessor :display_name
1588
1797
 
1798
+ # Optional. Email of the AppGroup.
1799
+ # Corresponds to the JSON property `email`
1800
+ # @return [String]
1801
+ attr_accessor :email
1802
+
1589
1803
  # Output only. Modified time as milliseconds since epoch.
1590
1804
  # Corresponds to the JSON property `lastModifiedAt`
1591
1805
  # @return [Fixnum]
@@ -1621,6 +1835,7 @@ module Google
1621
1835
  @channel_uri = args[:channel_uri] if args.key?(:channel_uri)
1622
1836
  @created_at = args[:created_at] if args.key?(:created_at)
1623
1837
  @display_name = args[:display_name] if args.key?(:display_name)
1838
+ @email = args[:email] if args.key?(:email)
1624
1839
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
1625
1840
  @name = args[:name] if args.key?(:name)
1626
1841
  @organization = args[:organization] if args.key?(:organization)
@@ -1794,6 +2009,125 @@ module Google
1794
2009
  end
1795
2010
  end
1796
2011
 
2012
+ # AppGroupBalance for the AppGroup.
2013
+ class GoogleCloudApigeeV1AppGroupBalance
2014
+ include Google::Apis::Core::Hashable
2015
+
2016
+ # Output only. List of all wallets. Each individual wallet stores the account
2017
+ # balance for a particular currency.
2018
+ # Corresponds to the JSON property `wallets`
2019
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroupBalanceWallet>]
2020
+ attr_accessor :wallets
2021
+
2022
+ def initialize(**args)
2023
+ update!(**args)
2024
+ end
2025
+
2026
+ # Update properties of this object
2027
+ def update!(**args)
2028
+ @wallets = args[:wallets] if args.key?(:wallets)
2029
+ end
2030
+ end
2031
+
2032
+ # Wallet used to manage an account balance for a particular currency.
2033
+ class GoogleCloudApigeeV1AppGroupBalanceWallet
2034
+ include Google::Apis::Core::Hashable
2035
+
2036
+ # Represents an amount of money with its currency type.
2037
+ # Corresponds to the JSON property `balance`
2038
+ # @return [Google::Apis::ApigeeV1::GoogleTypeMoney]
2039
+ attr_accessor :balance
2040
+
2041
+ # Output only. Time at which the AppGroup last added credit to the account in
2042
+ # milliseconds since epoch.
2043
+ # Corresponds to the JSON property `lastCreditTime`
2044
+ # @return [Fixnum]
2045
+ attr_accessor :last_credit_time
2046
+
2047
+ def initialize(**args)
2048
+ update!(**args)
2049
+ end
2050
+
2051
+ # Update properties of this object
2052
+ def update!(**args)
2053
+ @balance = args[:balance] if args.key?(:balance)
2054
+ @last_credit_time = args[:last_credit_time] if args.key?(:last_credit_time)
2055
+ end
2056
+ end
2057
+
2058
+ # Monetization configuration for the AppGroup.
2059
+ class GoogleCloudApigeeV1AppGroupMonetizationConfig
2060
+ include Google::Apis::Core::Hashable
2061
+
2062
+ # Required. Billing type.
2063
+ # Corresponds to the JSON property `billingType`
2064
+ # @return [String]
2065
+ attr_accessor :billing_type
2066
+
2067
+ def initialize(**args)
2068
+ update!(**args)
2069
+ end
2070
+
2071
+ # Update properties of this object
2072
+ def update!(**args)
2073
+ @billing_type = args[:billing_type] if args.key?(:billing_type)
2074
+ end
2075
+ end
2076
+
2077
+ # AppGroup Subscription details.
2078
+ class GoogleCloudApigeeV1AppGroupSubscription
2079
+ include Google::Apis::Core::Hashable
2080
+
2081
+ # Required. Name of the API product for which the appgroup is purchasing a
2082
+ # subscription.
2083
+ # Corresponds to the JSON property `apiproduct`
2084
+ # @return [String]
2085
+ attr_accessor :apiproduct
2086
+
2087
+ # Output only. Time when the API product subscription was created in
2088
+ # milliseconds since epoch.
2089
+ # Corresponds to the JSON property `createdAt`
2090
+ # @return [Fixnum]
2091
+ attr_accessor :created_at
2092
+
2093
+ # Output only. Time when the API product subscription ends in milliseconds since
2094
+ # epoch.
2095
+ # Corresponds to the JSON property `endTime`
2096
+ # @return [Fixnum]
2097
+ attr_accessor :end_time
2098
+
2099
+ # Output only. Time when the API product subscription was last modified in
2100
+ # milliseconds since epoch.
2101
+ # Corresponds to the JSON property `lastModifiedAt`
2102
+ # @return [Fixnum]
2103
+ attr_accessor :last_modified_at
2104
+
2105
+ # Output only. Name of the API product subscription.
2106
+ # Corresponds to the JSON property `name`
2107
+ # @return [String]
2108
+ attr_accessor :name
2109
+
2110
+ # Output only. Time when the API product subscription starts in milliseconds
2111
+ # since epoch.
2112
+ # Corresponds to the JSON property `startTime`
2113
+ # @return [Fixnum]
2114
+ attr_accessor :start_time
2115
+
2116
+ def initialize(**args)
2117
+ update!(**args)
2118
+ end
2119
+
2120
+ # Update properties of this object
2121
+ def update!(**args)
2122
+ @apiproduct = args[:apiproduct] if args.key?(:apiproduct)
2123
+ @created_at = args[:created_at] if args.key?(:created_at)
2124
+ @end_time = args[:end_time] if args.key?(:end_time)
2125
+ @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
2126
+ @name = args[:name] if args.key?(:name)
2127
+ @start_time = args[:start_time] if args.key?(:start_time)
2128
+ end
2129
+ end
2130
+
1797
2131
  # Archive Deployment information.
1798
2132
  class GoogleCloudApigeeV1ArchiveDeployment
1799
2133
  include Google::Apis::Core::Hashable
@@ -1854,6 +2188,25 @@ module Google
1854
2188
  end
1855
2189
  end
1856
2190
 
2191
+ # AsyncAPI Specification documentation for a catalog item.
2192
+ class GoogleCloudApigeeV1AsyncApiDocumentation
2193
+ include Google::Apis::Core::Hashable
2194
+
2195
+ # Documentation file contents for a catalog item.
2196
+ # Corresponds to the JSON property `spec`
2197
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1DocumentationFile]
2198
+ attr_accessor :spec
2199
+
2200
+ def initialize(**args)
2201
+ update!(**args)
2202
+ end
2203
+
2204
+ # Update properties of this object
2205
+ def update!(**args)
2206
+ @spec = args[:spec] if args.key?(:spec)
2207
+ end
2208
+ end
2209
+
1857
2210
  #
1858
2211
  class GoogleCloudApigeeV1AsyncQuery
1859
2212
  include Google::Apis::Core::Hashable
@@ -2782,6 +3135,33 @@ module Google
2782
3135
  end
2783
3136
  end
2784
3137
 
3138
+ # Request for CreditAppGroupBalance.
3139
+ class GoogleCloudApigeeV1CreditAppGroupBalanceRequest
3140
+ include Google::Apis::Core::Hashable
3141
+
3142
+ # Represents an amount of money with its currency type.
3143
+ # Corresponds to the JSON property `transactionAmount`
3144
+ # @return [Google::Apis::ApigeeV1::GoogleTypeMoney]
3145
+ attr_accessor :transaction_amount
3146
+
3147
+ # Required. Each transaction_id uniquely identifies a credit balance request. If
3148
+ # multiple requests are received with the same transaction_id, only one of them
3149
+ # will be considered.
3150
+ # Corresponds to the JSON property `transactionId`
3151
+ # @return [String]
3152
+ attr_accessor :transaction_id
3153
+
3154
+ def initialize(**args)
3155
+ update!(**args)
3156
+ end
3157
+
3158
+ # Update properties of this object
3159
+ def update!(**args)
3160
+ @transaction_amount = args[:transaction_amount] if args.key?(:transaction_amount)
3161
+ @transaction_id = args[:transaction_id] if args.key?(:transaction_id)
3162
+ end
3163
+ end
3164
+
2785
3165
  # Request for CreditDeveloperBalance.
2786
3166
  class GoogleCloudApigeeV1CreditDeveloperBalanceRequest
2787
3167
  include Google::Apis::Core::Hashable
@@ -4981,6 +5361,19 @@ module Google
4981
5361
  end
4982
5362
  end
4983
5363
 
5364
+ # Request for ExpireAppGroupSubscription.
5365
+ class GoogleCloudApigeeV1ExpireAppGroupSubscriptionRequest
5366
+ include Google::Apis::Core::Hashable
5367
+
5368
+ def initialize(**args)
5369
+ update!(**args)
5370
+ end
5371
+
5372
+ # Update properties of this object
5373
+ def update!(**args)
5374
+ end
5375
+ end
5376
+
4984
5377
  # Request for ExpireDeveloperSubscription.
4985
5378
  class GoogleCloudApigeeV1ExpireDeveloperSubscriptionRequest
4986
5379
  include Google::Apis::Core::Hashable
@@ -5963,6 +6356,13 @@ module Google
5963
6356
  attr_accessor :encrypted
5964
6357
  alias_method :encrypted?, :encrypted
5965
6358
 
6359
+ # Optional. Flag that specifies whether entry values will be masked when
6360
+ # returned.
6361
+ # Corresponds to the JSON property `maskedValues`
6362
+ # @return [Boolean]
6363
+ attr_accessor :masked_values
6364
+ alias_method :masked_values?, :masked_values
6365
+
5966
6366
  # Required. ID of the key value map.
5967
6367
  # Corresponds to the JSON property `name`
5968
6368
  # @return [String]
@@ -5975,6 +6375,7 @@ module Google
5975
6375
  # Update properties of this object
5976
6376
  def update!(**args)
5977
6377
  @encrypted = args[:encrypted] if args.key?(:encrypted)
6378
+ @masked_values = args[:masked_values] if args.key?(:masked_values)
5978
6379
  @name = args[:name] if args.key?(:name)
5979
6380
  end
5980
6381
  end
@@ -6189,6 +6590,32 @@ module Google
6189
6590
  end
6190
6591
  end
6191
6592
 
6593
+ # Response for list service extensions.
6594
+ class GoogleCloudApigeeV1ListApimServiceExtensionsResponse
6595
+ include Google::Apis::Core::Hashable
6596
+
6597
+ # service extension in a given organization.
6598
+ # Corresponds to the JSON property `apimServiceExtensions`
6599
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApimServiceExtension>]
6600
+ attr_accessor :apim_service_extensions
6601
+
6602
+ # Page token that you can include in an `ListApimServiceExtensions` request to
6603
+ # retrieve the next page. If omitted, no subsequent pages exist.
6604
+ # Corresponds to the JSON property `nextPageToken`
6605
+ # @return [String]
6606
+ attr_accessor :next_page_token
6607
+
6608
+ def initialize(**args)
6609
+ update!(**args)
6610
+ end
6611
+
6612
+ # Update properties of this object
6613
+ def update!(**args)
6614
+ @apim_service_extensions = args[:apim_service_extensions] if args.key?(:apim_service_extensions)
6615
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
6616
+ end
6617
+ end
6618
+
6192
6619
  # Response for ListAppGroupApps
6193
6620
  class GoogleCloudApigeeV1ListAppGroupAppsResponse
6194
6621
  include Google::Apis::Core::Hashable
@@ -6215,6 +6642,32 @@ module Google
6215
6642
  end
6216
6643
  end
6217
6644
 
6645
+ # Response for ListAppGroupSubscriptions.
6646
+ class GoogleCloudApigeeV1ListAppGroupSubscriptionsResponse
6647
+ include Google::Apis::Core::Hashable
6648
+
6649
+ # The list of subscriptions for an AppGroup.
6650
+ # Corresponds to the JSON property `appGroupSubscriptions`
6651
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroupSubscription>]
6652
+ attr_accessor :app_group_subscriptions
6653
+
6654
+ # Value that can be sent as `pageToken` to retrieve the next page of content. If
6655
+ # this field is omitted, there are no subsequent pages.
6656
+ # Corresponds to the JSON property `nextPageToken`
6657
+ # @return [String]
6658
+ attr_accessor :next_page_token
6659
+
6660
+ def initialize(**args)
6661
+ update!(**args)
6662
+ end
6663
+
6664
+ # Update properties of this object
6665
+ def update!(**args)
6666
+ @app_group_subscriptions = args[:app_group_subscriptions] if args.key?(:app_group_subscriptions)
6667
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
6668
+ end
6669
+ end
6670
+
6218
6671
  # ListAppGroupsResponse contains the 0 or more AppGroups, along with the
6219
6672
  # optional page token and the total count of apps.
6220
6673
  class GoogleCloudApigeeV1ListAppGroupsResponse
@@ -7095,6 +7548,143 @@ module Google
7095
7548
  end
7096
7549
  end
7097
7550
 
7551
+ # Represents the pairing of REST resource path, model and the actions (verbs)
7552
+ # allowed on the resource path.
7553
+ class GoogleCloudApigeeV1LlmOperation
7554
+ include Google::Apis::Core::Hashable
7555
+
7556
+ # Optional. methods refers to the REST verbs as in https://httpwg.org/specs/
7557
+ # rfc9110.html For example: GET, POST, PUT, DELETE, etc. They need to be in
7558
+ # uppercase. When none specified, all verb types are allowed.
7559
+ # Corresponds to the JSON property `methods`
7560
+ # @return [Array<String>]
7561
+ attr_accessor :methods_prop
7562
+
7563
+ # Required. LLM model name associated with the API proxy
7564
+ # Corresponds to the JSON property `model`
7565
+ # @return [String]
7566
+ attr_accessor :model
7567
+
7568
+ # Required. REST resource path associated with the API proxy or remote service.
7569
+ # Corresponds to the JSON property `resource`
7570
+ # @return [String]
7571
+ attr_accessor :resource
7572
+
7573
+ def initialize(**args)
7574
+ update!(**args)
7575
+ end
7576
+
7577
+ # Update properties of this object
7578
+ def update!(**args)
7579
+ @methods_prop = args[:methods_prop] if args.key?(:methods_prop)
7580
+ @model = args[:model] if args.key?(:model)
7581
+ @resource = args[:resource] if args.key?(:resource)
7582
+ end
7583
+ end
7584
+
7585
+ # Binds the resources in an API proxy or remote service with the allowed REST
7586
+ # methods and associated quota enforcement.
7587
+ class GoogleCloudApigeeV1LlmOperationConfig
7588
+ include Google::Apis::Core::Hashable
7589
+
7590
+ # Required. Name of the API proxy or remote service with which the resources,
7591
+ # methods, and quota are associated.
7592
+ # Corresponds to the JSON property `apiSource`
7593
+ # @return [String]
7594
+ attr_accessor :api_source
7595
+
7596
+ # Optional. Custom attributes associated with the operation.
7597
+ # Corresponds to the JSON property `attributes`
7598
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]
7599
+ attr_accessor :attributes
7600
+
7601
+ # Required. List of resource/method/model for the API proxy to which quota will
7602
+ # applied. **Note**: Currently, you can specify only a single resource/method/
7603
+ # model mapping. The call will fail if more than one resource/method/model
7604
+ # mappings are provided.
7605
+ # Corresponds to the JSON property `llmOperations`
7606
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperation>]
7607
+ attr_accessor :llm_operations
7608
+
7609
+ # LLM Token Quota contains the essential parameters needed that can be applied
7610
+ # on the resources, methods, models, API source combination associated with this
7611
+ # API product. While LLM Token Quota is optional, setting it prevents requests
7612
+ # from exceeding the provisioned parameters.
7613
+ # Corresponds to the JSON property `llmTokenQuota`
7614
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmTokenQuota]
7615
+ attr_accessor :llm_token_quota
7616
+
7617
+ def initialize(**args)
7618
+ update!(**args)
7619
+ end
7620
+
7621
+ # Update properties of this object
7622
+ def update!(**args)
7623
+ @api_source = args[:api_source] if args.key?(:api_source)
7624
+ @attributes = args[:attributes] if args.key?(:attributes)
7625
+ @llm_operations = args[:llm_operations] if args.key?(:llm_operations)
7626
+ @llm_token_quota = args[:llm_token_quota] if args.key?(:llm_token_quota)
7627
+ end
7628
+ end
7629
+
7630
+ # List of LLM operation configuration details associated with Apigee API proxies.
7631
+ class GoogleCloudApigeeV1LlmOperationGroup
7632
+ include Google::Apis::Core::Hashable
7633
+
7634
+ # Required. List of LLM operation configurations for either Apigee API proxies
7635
+ # that are associated with this API product.
7636
+ # Corresponds to the JSON property `operationConfigs`
7637
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1LlmOperationConfig>]
7638
+ attr_accessor :operation_configs
7639
+
7640
+ def initialize(**args)
7641
+ update!(**args)
7642
+ end
7643
+
7644
+ # Update properties of this object
7645
+ def update!(**args)
7646
+ @operation_configs = args[:operation_configs] if args.key?(:operation_configs)
7647
+ end
7648
+ end
7649
+
7650
+ # LLM Token Quota contains the essential parameters needed that can be applied
7651
+ # on the resources, methods, models, API source combination associated with this
7652
+ # API product. While LLM Token Quota is optional, setting it prevents requests
7653
+ # from exceeding the provisioned parameters.
7654
+ class GoogleCloudApigeeV1LlmTokenQuota
7655
+ include Google::Apis::Core::Hashable
7656
+
7657
+ # Required. Time interval over which the number of request messages is
7658
+ # calculated.
7659
+ # Corresponds to the JSON property `interval`
7660
+ # @return [String]
7661
+ attr_accessor :interval
7662
+
7663
+ # Required. Upper limit of LLM tokens allowed for the time interval and time
7664
+ # unit specified. Requests exceeding this limit will be rejected.
7665
+ # Corresponds to the JSON property `limit`
7666
+ # @return [String]
7667
+ attr_accessor :limit
7668
+
7669
+ # Optional. Time unit defined for the `interval`. Valid values include `minute`,
7670
+ # `hour`, `day`, or `month`. If `limit` and `interval` are valid, the default
7671
+ # value is `hour`; otherwise, the default is null.
7672
+ # Corresponds to the JSON property `timeUnit`
7673
+ # @return [String]
7674
+ attr_accessor :time_unit
7675
+
7676
+ def initialize(**args)
7677
+ update!(**args)
7678
+ end
7679
+
7680
+ # Update properties of this object
7681
+ def update!(**args)
7682
+ @interval = args[:interval] if args.key?(:interval)
7683
+ @limit = args[:limit] if args.key?(:limit)
7684
+ @time_unit = args[:time_unit] if args.key?(:time_unit)
7685
+ end
7686
+ end
7687
+
7098
7688
  # MaintenanceUpdatePolicy specifies the preferred window to perform maintenance
7099
7689
  # on the instance (day of the week and time of day).
7100
7690
  class GoogleCloudApigeeV1MaintenanceUpdatePolicy
@@ -12873,8 +13463,9 @@ module Google
12873
13463
  attr_accessor :operations
12874
13464
 
12875
13465
  # Unordered list. Unreachable resources. Populated when the request sets `
12876
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
12877
- # when attempting to list all resources across all supported locations.
13466
+ # ListOperationsRequest.return_partial_success` and reads across collections.
13467
+ # For example, when attempting to list all resources across all supported
13468
+ # locations.
12878
13469
  # Corresponds to the JSON property `unreachable`
12879
13470
  # @return [Array<String>]
12880
13471
  attr_accessor :unreachable