google-apis-apigee_v1 0.124.0 → 0.125.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73711743ea6564f7f972e36d5154a39a36b238572b5861ddb9973365f57502f5
4
- data.tar.gz: 90adae723de8d2987d173dc5b7741c34285a127fc85918f0ecae80dc55cd8567
3
+ metadata.gz: 02e02291c0eaa56568505758e4a5c1ffb186a06a58ab922e4ccbbe93ee9be17a
4
+ data.tar.gz: ac57fb8fec52ff2b5bcb7a6ad29348cb3a1008cd835c4403fec0b199c63dd2c3
5
5
  SHA512:
6
- metadata.gz: 78def4cbe1192089359dc799ff88a789cbcf13912e45b1e50149c4a4693f1206ac1b89188a093cc661650a993d89153dfc1ffc902fa97d370140fc9d65c8ad32
7
- data.tar.gz: 9ffd96413186085cea4f33c6cc7f629e4e25ad0c293ec7148de895cd25e32a29336138fa4a561fc65799349d2bfdd870ac4e9156dd42ffd18701ab1244de3360
6
+ metadata.gz: 3b5ec7f18c080b2469d9f1c19edd34e1f34de281eb6fcf83f88b309a18807cbeaf708e2be9a8d9325d18d592590c672d373025bfb4c93211bd21cad496a4ee30
7
+ data.tar.gz: d5b9004d28e989f65ca5ce5bb6f42bfc370c1faa2be109503b42484d71bd0a0b34dc679fa0fc88ca2936a70fb66a5270325402039a09d684baf8333b2d849cec
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.125.0 (2026-07-05)
4
+
5
+ * Regenerated from discovery document revision 20260622
6
+
3
7
  ### v0.124.0 (2026-06-14)
4
8
 
5
9
  * Regenerated using generator version 0.19.0
@@ -1058,6 +1058,14 @@ module Google
1058
1058
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationGroup]
1059
1059
  attr_accessor :operation_group
1060
1060
 
1061
+ # List of payload operation configuration details associated with Apigee API
1062
+ # proxies. Payload operations enable governance of protocols where operations
1063
+ # are embedded in the request body (such as JSON-RPC) rather than defined by the
1064
+ # URL path.
1065
+ # Corresponds to the JSON property `payloadOperationGroup`
1066
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1PayloadOperationGroup]
1067
+ attr_accessor :payload_operation_group
1068
+
1061
1069
  # Comma-separated list of API proxy names to which this API product is bound. By
1062
1070
  # specifying API proxies, you can associate resources in the API product with
1063
1071
  # specific API proxies, preventing developers from accessing those resources
@@ -1136,6 +1144,7 @@ module Google
1136
1144
  @llm_quota_time_unit = args[:llm_quota_time_unit] if args.key?(:llm_quota_time_unit)
1137
1145
  @name = args[:name] if args.key?(:name)
1138
1146
  @operation_group = args[:operation_group] if args.key?(:operation_group)
1147
+ @payload_operation_group = args[:payload_operation_group] if args.key?(:payload_operation_group)
1139
1148
  @proxies = args[:proxies] if args.key?(:proxies)
1140
1149
  @quota = args[:quota] if args.key?(:quota)
1141
1150
  @quota_counter_scope = args[:quota_counter_scope] if args.key?(:quota_counter_scope)
@@ -8583,6 +8592,93 @@ module Google
8583
8592
  end
8584
8593
  end
8585
8594
 
8595
+ # Represents a single operation identifier extracted from the request payload.
8596
+ class GoogleCloudApigeeV1PayloadOperation
8597
+ include Google::Apis::Core::Hashable
8598
+
8599
+ # Required. The operation name extracted from the request payload at runtime by
8600
+ # the ParsePayload policy. For example, for MCP protocol requests, this could be
8601
+ # `"tools/list"` or `"tools/call/get_weather"`. Wildcards are not supported.
8602
+ # Corresponds to the JSON property `operation`
8603
+ # @return [String]
8604
+ attr_accessor :operation
8605
+
8606
+ def initialize(**args)
8607
+ update!(**args)
8608
+ end
8609
+
8610
+ # Update properties of this object
8611
+ def update!(**args)
8612
+ @operation = args[:operation] if args.key?(:operation)
8613
+ end
8614
+ end
8615
+
8616
+ # Binds the payload operations in an API proxy with the associated quota
8617
+ # enforcement.
8618
+ class GoogleCloudApigeeV1PayloadOperationConfig
8619
+ include Google::Apis::Core::Hashable
8620
+
8621
+ # Required. Name of the API proxy with which the payload operations and quota
8622
+ # are associated.
8623
+ # Corresponds to the JSON property `apiSource`
8624
+ # @return [String]
8625
+ attr_accessor :api_source
8626
+
8627
+ # Optional. Custom attributes associated with the operation.
8628
+ # Corresponds to the JSON property `attributes`
8629
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]
8630
+ attr_accessor :attributes
8631
+
8632
+ # Required. List of payload operations for the API proxy to which quota will be
8633
+ # applied.
8634
+ # Corresponds to the JSON property `operations`
8635
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1PayloadOperation>]
8636
+ attr_accessor :operations
8637
+
8638
+ # Quota contains the essential parameters needed that can be applied on the
8639
+ # resources, methods, API source combination associated with this API product.
8640
+ # While Quota is optional, setting it prevents requests from exceeding the
8641
+ # provisioned parameters.
8642
+ # Corresponds to the JSON property `quota`
8643
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Quota]
8644
+ attr_accessor :quota
8645
+
8646
+ def initialize(**args)
8647
+ update!(**args)
8648
+ end
8649
+
8650
+ # Update properties of this object
8651
+ def update!(**args)
8652
+ @api_source = args[:api_source] if args.key?(:api_source)
8653
+ @attributes = args[:attributes] if args.key?(:attributes)
8654
+ @operations = args[:operations] if args.key?(:operations)
8655
+ @quota = args[:quota] if args.key?(:quota)
8656
+ end
8657
+ end
8658
+
8659
+ # List of payload operation configuration details associated with Apigee API
8660
+ # proxies. Payload operations enable governance of protocols where operations
8661
+ # are embedded in the request body (such as JSON-RPC) rather than defined by the
8662
+ # URL path.
8663
+ class GoogleCloudApigeeV1PayloadOperationGroup
8664
+ include Google::Apis::Core::Hashable
8665
+
8666
+ # Required. List of payload operation configurations for Apigee API proxies that
8667
+ # are associated with this API product.
8668
+ # Corresponds to the JSON property `operationConfigs`
8669
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1PayloadOperationConfig>]
8670
+ attr_accessor :operation_configs
8671
+
8672
+ def initialize(**args)
8673
+ update!(**args)
8674
+ end
8675
+
8676
+ # Update properties of this object
8677
+ def update!(**args)
8678
+ @operation_configs = args[:operation_configs] if args.key?(:operation_configs)
8679
+ end
8680
+ end
8681
+
8586
8682
  #
8587
8683
  class GoogleCloudApigeeV1PodStatus
8588
8684
  include Google::Apis::Core::Hashable
@@ -12991,6 +13087,15 @@ module Google
12991
13087
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig]
12992
13088
  attr_accessor :sampling_config
12993
13089
 
13090
+ # Optional. The trace protocol to use. Configuration Requirements (if
13091
+ # trace_protocol is OTLP): - Allowed Exporters: CLOUD_TRACE or
13092
+ # OPEN_TELEMETRY_COLLECTOR. - If Exporter is OPEN_TELEMETRY_COLLECTOR: -
13093
+ # endpoint refers to a valid OTLP collector URL. - If Exporter is CLOUD_TRACE: -
13094
+ # endpoint refers to a valid project ID.
13095
+ # Corresponds to the JSON property `traceProtocol`
13096
+ # @return [String]
13097
+ attr_accessor :trace_protocol
13098
+
12994
13099
  def initialize(**args)
12995
13100
  update!(**args)
12996
13101
  end
@@ -13000,6 +13105,7 @@ module Google
13000
13105
  @endpoint = args[:endpoint] if args.key?(:endpoint)
13001
13106
  @exporter = args[:exporter] if args.key?(:exporter)
13002
13107
  @sampling_config = args[:sampling_config] if args.key?(:sampling_config)
13108
+ @trace_protocol = args[:trace_protocol] if args.key?(:trace_protocol)
13003
13109
  end
13004
13110
  end
13005
13111
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigeeV1
18
18
  # Version of the google-apis-apigee_v1 gem
19
- GEM_VERSION = "0.124.0"
19
+ GEM_VERSION = "0.125.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260511"
25
+ REVISION = "20260622"
26
26
  end
27
27
  end
28
28
  end
@@ -1318,6 +1318,24 @@ module Google
1318
1318
  include Google::Apis::Core::JsonObjectSupport
1319
1319
  end
1320
1320
 
1321
+ class GoogleCloudApigeeV1PayloadOperation
1322
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1323
+
1324
+ include Google::Apis::Core::JsonObjectSupport
1325
+ end
1326
+
1327
+ class GoogleCloudApigeeV1PayloadOperationConfig
1328
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1329
+
1330
+ include Google::Apis::Core::JsonObjectSupport
1331
+ end
1332
+
1333
+ class GoogleCloudApigeeV1PayloadOperationGroup
1334
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1335
+
1336
+ include Google::Apis::Core::JsonObjectSupport
1337
+ end
1338
+
1321
1339
  class GoogleCloudApigeeV1PodStatus
1322
1340
  class Representation < Google::Apis::Core::JsonRepresentation; end
1323
1341
 
@@ -2343,6 +2361,8 @@ module Google
2343
2361
  property :name, as: 'name'
2344
2362
  property :operation_group, as: 'operationGroup', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationGroup, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationGroup::Representation
2345
2363
 
2364
+ property :payload_operation_group, as: 'payloadOperationGroup', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1PayloadOperationGroup, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1PayloadOperationGroup::Representation
2365
+
2346
2366
  collection :proxies, as: 'proxies'
2347
2367
  property :quota, as: 'quota'
2348
2368
  property :quota_counter_scope, as: 'quotaCounterScope'
@@ -4377,6 +4397,34 @@ module Google
4377
4397
  end
4378
4398
  end
4379
4399
 
4400
+ class GoogleCloudApigeeV1PayloadOperation
4401
+ # @private
4402
+ class Representation < Google::Apis::Core::JsonRepresentation
4403
+ property :operation, as: 'operation'
4404
+ end
4405
+ end
4406
+
4407
+ class GoogleCloudApigeeV1PayloadOperationConfig
4408
+ # @private
4409
+ class Representation < Google::Apis::Core::JsonRepresentation
4410
+ property :api_source, as: 'apiSource'
4411
+ collection :attributes, as: 'attributes', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute::Representation
4412
+
4413
+ collection :operations, as: 'operations', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1PayloadOperation, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1PayloadOperation::Representation
4414
+
4415
+ property :quota, as: 'quota', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Quota, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Quota::Representation
4416
+
4417
+ end
4418
+ end
4419
+
4420
+ class GoogleCloudApigeeV1PayloadOperationGroup
4421
+ # @private
4422
+ class Representation < Google::Apis::Core::JsonRepresentation
4423
+ collection :operation_configs, as: 'operationConfigs', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1PayloadOperationConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1PayloadOperationConfig::Representation
4424
+
4425
+ end
4426
+ end
4427
+
4380
4428
  class GoogleCloudApigeeV1PodStatus
4381
4429
  # @private
4382
4430
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5527,6 +5575,7 @@ module Google
5527
5575
  property :exporter, as: 'exporter'
5528
5576
  property :sampling_config, as: 'samplingConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig::Representation
5529
5577
 
5578
+ property :trace_protocol, as: 'traceProtocol'
5530
5579
  end
5531
5580
  end
5532
5581
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apigee_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.124.0
4
+ version: 0.125.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.124.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.125.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
62
62
  rdoc_options: []
63
63
  require_paths: