google-apis-apigee_v1 0.124.0 → 0.126.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/apigee_v1/classes.rb +130 -3
- data/lib/google/apis/apigee_v1/gem_version.rb +2 -2
- data/lib/google/apis/apigee_v1/representations.rb +52 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97e7a35cca0ffe006e7ac14ffc23273458aa112b52cc3851b7d910539646e926
|
|
4
|
+
data.tar.gz: f4e526fab93cc0f3047b41eb3cb13351e4a0b090e60707c282203303709ff1f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 52cccbdbc696568e7ae1473f9127e7ece9407782ed001c0901cfbfe920e90567753b45752b74a95fedc0525f8538a3405b01ca29ca09bbcdb928937cce46ef86
|
|
7
|
+
data.tar.gz: 5a25c55dc388cf05d2e7263632fd6b1a551d1753ffdd76bad23738d73e9bdb6d708a0f3e7261b0c184e24f1eb0f49ef1ba20b2b40ababb0d098bb88e3862c419
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
|
2
2
|
|
|
3
|
+
### v0.126.0 (2026-07-12)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260626
|
|
6
|
+
|
|
7
|
+
### v0.125.0 (2026-07-05)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260622
|
|
10
|
+
|
|
3
11
|
### v0.124.0 (2026-06-14)
|
|
4
12
|
|
|
5
13
|
* 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)
|
|
@@ -5132,7 +5141,7 @@ module Google
|
|
|
5132
5141
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1TargetServerConfig>]
|
|
5133
5142
|
attr_accessor :targets
|
|
5134
5143
|
|
|
5135
|
-
# NEXT ID:
|
|
5144
|
+
# NEXT ID: 11 RuntimeTraceConfig defines the configurations for distributed
|
|
5136
5145
|
# trace in an environment.
|
|
5137
5146
|
# Corresponds to the JSON property `traceConfig`
|
|
5138
5147
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceConfig]
|
|
@@ -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
|
|
@@ -10203,7 +10299,7 @@ module Google
|
|
|
10203
10299
|
end
|
|
10204
10300
|
end
|
|
10205
10301
|
|
|
10206
|
-
# NEXT ID:
|
|
10302
|
+
# NEXT ID: 11 RuntimeTraceConfig defines the configurations for distributed
|
|
10207
10303
|
# trace in an environment.
|
|
10208
10304
|
class GoogleCloudApigeeV1RuntimeTraceConfig
|
|
10209
10305
|
include Google::Apis::Core::Hashable
|
|
@@ -10261,6 +10357,12 @@ module Google
|
|
|
10261
10357
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceSamplingConfig]
|
|
10262
10358
|
attr_accessor :sampling_config
|
|
10263
10359
|
|
|
10360
|
+
# Optional. The span semantics to use. Configuration Requirements (if `
|
|
10361
|
+
# span_semantics` is `OTEL`): - `trace_protocol` must be `OTLP`.
|
|
10362
|
+
# Corresponds to the JSON property `spanSemantics`
|
|
10363
|
+
# @return [String]
|
|
10364
|
+
attr_accessor :span_semantics
|
|
10365
|
+
|
|
10264
10366
|
# Optional. The trace protocol to use.
|
|
10265
10367
|
# Corresponds to the JSON property `traceProtocol`
|
|
10266
10368
|
# @return [String]
|
|
@@ -10280,11 +10382,12 @@ module Google
|
|
|
10280
10382
|
@revision_create_time = args[:revision_create_time] if args.key?(:revision_create_time)
|
|
10281
10383
|
@revision_id = args[:revision_id] if args.key?(:revision_id)
|
|
10282
10384
|
@sampling_config = args[:sampling_config] if args.key?(:sampling_config)
|
|
10385
|
+
@span_semantics = args[:span_semantics] if args.key?(:span_semantics)
|
|
10283
10386
|
@trace_protocol = args[:trace_protocol] if args.key?(:trace_protocol)
|
|
10284
10387
|
end
|
|
10285
10388
|
end
|
|
10286
10389
|
|
|
10287
|
-
# NEXT ID:
|
|
10390
|
+
# NEXT ID: 10 Trace configuration override for a specific API proxy in an
|
|
10288
10391
|
# environment.
|
|
10289
10392
|
class GoogleCloudApigeeV1RuntimeTraceConfigOverride
|
|
10290
10393
|
include Google::Apis::Core::Hashable
|
|
@@ -10331,6 +10434,12 @@ module Google
|
|
|
10331
10434
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceSamplingConfig]
|
|
10332
10435
|
attr_accessor :sampling_config
|
|
10333
10436
|
|
|
10437
|
+
# Optional. The span semantics to use. Configuration Requirements (if `
|
|
10438
|
+
# span_semantics` is `OTEL`): - `trace_protocol` must be `OTLP`.
|
|
10439
|
+
# Corresponds to the JSON property `spanSemantics`
|
|
10440
|
+
# @return [String]
|
|
10441
|
+
attr_accessor :span_semantics
|
|
10442
|
+
|
|
10334
10443
|
# Optional. The trace protocol to use.
|
|
10335
10444
|
# Corresponds to the JSON property `traceProtocol`
|
|
10336
10445
|
# @return [String]
|
|
@@ -10354,6 +10463,7 @@ module Google
|
|
|
10354
10463
|
@revision_create_time = args[:revision_create_time] if args.key?(:revision_create_time)
|
|
10355
10464
|
@revision_id = args[:revision_id] if args.key?(:revision_id)
|
|
10356
10465
|
@sampling_config = args[:sampling_config] if args.key?(:sampling_config)
|
|
10466
|
+
@span_semantics = args[:span_semantics] if args.key?(:span_semantics)
|
|
10357
10467
|
@trace_protocol = args[:trace_protocol] if args.key?(:trace_protocol)
|
|
10358
10468
|
@uid = args[:uid] if args.key?(:uid)
|
|
10359
10469
|
end
|
|
@@ -12991,6 +13101,21 @@ module Google
|
|
|
12991
13101
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig]
|
|
12992
13102
|
attr_accessor :sampling_config
|
|
12993
13103
|
|
|
13104
|
+
# Optional. The span semantics to use. Configuration Requirements (if
|
|
13105
|
+
# span_semantics is OTEL): - trace_protocol must be OTLP.
|
|
13106
|
+
# Corresponds to the JSON property `spanSemantics`
|
|
13107
|
+
# @return [String]
|
|
13108
|
+
attr_accessor :span_semantics
|
|
13109
|
+
|
|
13110
|
+
# Optional. The trace protocol to use. Configuration Requirements (if
|
|
13111
|
+
# trace_protocol is OTLP): - Allowed Exporters: CLOUD_TRACE or
|
|
13112
|
+
# OPEN_TELEMETRY_COLLECTOR. - If Exporter is OPEN_TELEMETRY_COLLECTOR: -
|
|
13113
|
+
# endpoint refers to a valid OTLP collector URL. - If Exporter is CLOUD_TRACE: -
|
|
13114
|
+
# endpoint refers to a valid project ID.
|
|
13115
|
+
# Corresponds to the JSON property `traceProtocol`
|
|
13116
|
+
# @return [String]
|
|
13117
|
+
attr_accessor :trace_protocol
|
|
13118
|
+
|
|
12994
13119
|
def initialize(**args)
|
|
12995
13120
|
update!(**args)
|
|
12996
13121
|
end
|
|
@@ -13000,6 +13125,8 @@ module Google
|
|
|
13000
13125
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
|
13001
13126
|
@exporter = args[:exporter] if args.key?(:exporter)
|
|
13002
13127
|
@sampling_config = args[:sampling_config] if args.key?(:sampling_config)
|
|
13128
|
+
@span_semantics = args[:span_semantics] if args.key?(:span_semantics)
|
|
13129
|
+
@trace_protocol = args[:trace_protocol] if args.key?(:trace_protocol)
|
|
13003
13130
|
end
|
|
13004
13131
|
end
|
|
13005
13132
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.126.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 = "
|
|
25
|
+
REVISION = "20260626"
|
|
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
|
|
@@ -4824,6 +4872,7 @@ module Google
|
|
|
4824
4872
|
property :revision_id, as: 'revisionId'
|
|
4825
4873
|
property :sampling_config, as: 'samplingConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceSamplingConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceSamplingConfig::Representation
|
|
4826
4874
|
|
|
4875
|
+
property :span_semantics, as: 'spanSemantics'
|
|
4827
4876
|
property :trace_protocol, as: 'traceProtocol'
|
|
4828
4877
|
end
|
|
4829
4878
|
end
|
|
@@ -4838,6 +4887,7 @@ module Google
|
|
|
4838
4887
|
property :revision_id, as: 'revisionId'
|
|
4839
4888
|
property :sampling_config, as: 'samplingConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceSamplingConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceSamplingConfig::Representation
|
|
4840
4889
|
|
|
4890
|
+
property :span_semantics, as: 'spanSemantics'
|
|
4841
4891
|
property :trace_protocol, as: 'traceProtocol'
|
|
4842
4892
|
property :uid, as: 'uid'
|
|
4843
4893
|
end
|
|
@@ -5527,6 +5577,8 @@ module Google
|
|
|
5527
5577
|
property :exporter, as: 'exporter'
|
|
5528
5578
|
property :sampling_config, as: 'samplingConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig::Representation
|
|
5529
5579
|
|
|
5580
|
+
property :span_semantics, as: 'spanSemantics'
|
|
5581
|
+
property :trace_protocol, as: 'traceProtocol'
|
|
5530
5582
|
end
|
|
5531
5583
|
end
|
|
5532
5584
|
|
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.
|
|
4
|
+
version: 0.126.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.126.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:
|