google-apis-apigee_v1 0.11.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7854405c11cf690dba40e71c6fdf82c28c6670e8425a91f3ac0c13d0bcefc83f
|
4
|
+
data.tar.gz: 7d5dfcd509c123e6db7fbf122134550058bb91edf1f89307baf4566f8019df30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db2d86581fddf6071915d0de676b05e058aaa79eee3d4377191f79bc1885c62f3351cc88786ed684347e21739c67d77a1f5a6c80d7a2252f5a328ab14105910e
|
7
|
+
data.tar.gz: f8fcd21112d77d8e285ae1a48e9cd8c0bc5df1cf3d1a0dc76be148e530cc3418ff39e300a8278ff7d2e19ce3a645b5861368b6fa6361a5d2279fb869b808d122
|
data/CHANGELOG.md
CHANGED
@@ -2044,6 +2044,12 @@ module Google
|
|
2044
2044
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict>]
|
2045
2045
|
attr_accessor :route_conflicts
|
2046
2046
|
|
2047
|
+
# The full resource name of Cloud IAM Service Account that this deployment is
|
2048
|
+
# using, eg, `projects/-/serviceAccounts/`email``.
|
2049
|
+
# Corresponds to the JSON property `serviceAccount`
|
2050
|
+
# @return [String]
|
2051
|
+
attr_accessor :service_account
|
2052
|
+
|
2047
2053
|
# Current state of the deployment. This field is not populated in List APIs.
|
2048
2054
|
# Corresponds to the JSON property `state`
|
2049
2055
|
# @return [String]
|
@@ -2063,6 +2069,7 @@ module Google
|
|
2063
2069
|
@pods = args[:pods] if args.key?(:pods)
|
2064
2070
|
@revision = args[:revision] if args.key?(:revision)
|
2065
2071
|
@route_conflicts = args[:route_conflicts] if args.key?(:route_conflicts)
|
2072
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
2066
2073
|
@state = args[:state] if args.key?(:state)
|
2067
2074
|
end
|
2068
2075
|
end
|
@@ -3196,20 +3203,20 @@ module Google
|
|
3196
3203
|
end
|
3197
3204
|
end
|
3198
3205
|
|
3199
|
-
#
|
3200
|
-
#
|
3206
|
+
# Represents the pairing of GraphQL operation types and the GraphQL operation
|
3207
|
+
# name.
|
3201
3208
|
class GoogleCloudApigeeV1GraphQlOperation
|
3202
3209
|
include Google::Apis::Core::Hashable
|
3203
3210
|
|
3204
|
-
# GraphQL operation name
|
3205
|
-
#
|
3206
|
-
#
|
3211
|
+
# GraphQL operation name. The name and operation type will be used to apply
|
3212
|
+
# quotas. If no name is specified, the quota will be applied to all GraphQL
|
3213
|
+
# operations irrespective of their operation names in the payload.
|
3207
3214
|
# Corresponds to the JSON property `operation`
|
3208
3215
|
# @return [String]
|
3209
3216
|
attr_accessor :operation
|
3210
3217
|
|
3211
|
-
# Required.
|
3212
|
-
#
|
3218
|
+
# Required. GraphQL operation types. Valid values include `query` or `mutation`.
|
3219
|
+
# **Note**: Apigee does not currently support `subscription` types.
|
3213
3220
|
# Corresponds to the JSON property `operationTypes`
|
3214
3221
|
# @return [Array<String>]
|
3215
3222
|
attr_accessor :operation_types
|
@@ -3225,13 +3232,13 @@ module Google
|
|
3225
3232
|
end
|
3226
3233
|
end
|
3227
3234
|
|
3228
|
-
#
|
3229
|
-
#
|
3235
|
+
# Binds the resources in a proxy or remote service with the GraphQL operation
|
3236
|
+
# and its associated quota enforcement.
|
3230
3237
|
class GoogleCloudApigeeV1GraphQlOperationConfig
|
3231
3238
|
include Google::Apis::Core::Hashable
|
3232
3239
|
|
3233
|
-
# Required. API proxy endpoint or remote service
|
3234
|
-
# operation
|
3240
|
+
# Required. Name of the API proxy endpoint or remote service with which the
|
3241
|
+
# GraphQL operation and quota are associated.
|
3235
3242
|
# Corresponds to the JSON property `apiSource`
|
3236
3243
|
# @return [String]
|
3237
3244
|
attr_accessor :api_source
|
@@ -3241,20 +3248,19 @@ module Google
|
|
3241
3248
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]
|
3242
3249
|
attr_accessor :attributes
|
3243
3250
|
|
3244
|
-
# Required. List of
|
3245
|
-
# service
|
3246
|
-
# the
|
3247
|
-
#
|
3248
|
-
#
|
3249
|
-
# in failure of the operation.
|
3251
|
+
# Required. List of GraphQL name/operation type pairs for the proxy or remote
|
3252
|
+
# service to which quota will be applied. If only operation types are specified,
|
3253
|
+
# the quota will be applied to all GraphQL requests irrespective of the GraphQL
|
3254
|
+
# name. **Note**: Currently, you can specify only a single GraphQLOperation.
|
3255
|
+
# Specifying more than one will cause the operation to fail.
|
3250
3256
|
# Corresponds to the JSON property `operations`
|
3251
3257
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1GraphQlOperation>]
|
3252
3258
|
attr_accessor :operations
|
3253
3259
|
|
3254
|
-
# Quota contains the essential parameters needed that can be applied on
|
3255
|
-
#
|
3256
|
-
#
|
3257
|
-
#
|
3260
|
+
# Quota contains the essential parameters needed that can be applied on the
|
3261
|
+
# resources, methods, API source combination associated with this API product.
|
3262
|
+
# While Quota is optional, setting it prevents requests from exceeding the
|
3263
|
+
# provisioned parameters.
|
3258
3264
|
# Corresponds to the JSON property `quota`
|
3259
3265
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Quota]
|
3260
3266
|
attr_accessor :quota
|
@@ -3278,8 +3284,8 @@ module Google
|
|
3278
3284
|
class GoogleCloudApigeeV1GraphQlOperationGroup
|
3279
3285
|
include Google::Apis::Core::Hashable
|
3280
3286
|
|
3281
|
-
# Flag that
|
3282
|
-
# remote service. Valid values
|
3287
|
+
# Flag that specifies whether the configuration is for Apigee API proxy or a
|
3288
|
+
# remote service. Valid values include `proxy` or `remoteservice`. Defaults to `
|
3283
3289
|
# proxy`. Set to `proxy` when Apigee API proxies are associated with the API
|
3284
3290
|
# product. Set to `remoteservice` when non-Apigee proxies like Istio-Envoy are
|
3285
3291
|
# associated with the API product.
|
@@ -4365,8 +4371,8 @@ module Google
|
|
4365
4371
|
end
|
4366
4372
|
end
|
4367
4373
|
|
4368
|
-
#
|
4369
|
-
#
|
4374
|
+
# Represents the pairing of REST resource path and the actions (verbs) allowed
|
4375
|
+
# on the resource path.
|
4370
4376
|
class GoogleCloudApigeeV1Operation
|
4371
4377
|
include Google::Apis::Core::Hashable
|
4372
4378
|
|
@@ -4376,8 +4382,7 @@ module Google
|
|
4376
4382
|
# @return [Array<String>]
|
4377
4383
|
attr_accessor :methods_prop
|
4378
4384
|
|
4379
|
-
# Required.
|
4380
|
-
# remote service.
|
4385
|
+
# Required. REST resource path associated with the API proxy or remote service.
|
4381
4386
|
# Corresponds to the JSON property `resource`
|
4382
4387
|
# @return [String]
|
4383
4388
|
attr_accessor :resource
|
@@ -4393,13 +4398,13 @@ module Google
|
|
4393
4398
|
end
|
4394
4399
|
end
|
4395
4400
|
|
4396
|
-
#
|
4397
|
-
#
|
4401
|
+
# Binds the resources in an API proxy or remote service with the allowed REST
|
4402
|
+
# methods and associated quota enforcement.
|
4398
4403
|
class GoogleCloudApigeeV1OperationConfig
|
4399
4404
|
include Google::Apis::Core::Hashable
|
4400
4405
|
|
4401
|
-
# Required. API proxy or remote service
|
4402
|
-
# and quota are associated.
|
4406
|
+
# Required. Name of the API proxy or remote service with which the resources,
|
4407
|
+
# methods, and quota are associated.
|
4403
4408
|
# Corresponds to the JSON property `apiSource`
|
4404
4409
|
# @return [String]
|
4405
4410
|
attr_accessor :api_source
|
@@ -4409,18 +4414,18 @@ module Google
|
|
4409
4414
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]
|
4410
4415
|
attr_accessor :attributes
|
4411
4416
|
|
4412
|
-
# List of resource/method pairs for the proxy
|
4413
|
-
# will applied. **Note**: Currently, you can specify only a single
|
4414
|
-
# method pair. The call will fail if more than one resource/method pair
|
4415
|
-
# provided.
|
4417
|
+
# List of resource/method pairs for the API proxy or remote service to which
|
4418
|
+
# quota will applied. **Note**: Currently, you can specify only a single
|
4419
|
+
# resource/method pair. The call will fail if more than one resource/method pair
|
4420
|
+
# is provided.
|
4416
4421
|
# Corresponds to the JSON property `operations`
|
4417
4422
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Operation>]
|
4418
4423
|
attr_accessor :operations
|
4419
4424
|
|
4420
|
-
# Quota contains the essential parameters needed that can be applied on
|
4421
|
-
#
|
4422
|
-
#
|
4423
|
-
#
|
4425
|
+
# Quota contains the essential parameters needed that can be applied on the
|
4426
|
+
# resources, methods, API source combination associated with this API product.
|
4427
|
+
# While Quota is optional, setting it prevents requests from exceeding the
|
4428
|
+
# provisioned parameters.
|
4424
4429
|
# Corresponds to the JSON property `quota`
|
4425
4430
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Quota]
|
4426
4431
|
attr_accessor :quota
|
@@ -4444,7 +4449,7 @@ module Google
|
|
4444
4449
|
include Google::Apis::Core::Hashable
|
4445
4450
|
|
4446
4451
|
# Flag that specifes whether the configuration is for Apigee API proxy or a
|
4447
|
-
# remote service. Valid values
|
4452
|
+
# remote service. Valid values include `proxy` or `remoteservice`. Defaults to `
|
4448
4453
|
# proxy`. Set to `proxy` when Apigee API proxies are associated with the API
|
4449
4454
|
# product. Set to `remoteservice` when non-Apigee proxies like Istio-Envoy are
|
4450
4455
|
# associated with the API product.
|
@@ -5205,10 +5210,10 @@ module Google
|
|
5205
5210
|
end
|
5206
5211
|
end
|
5207
5212
|
|
5208
|
-
# Quota contains the essential parameters needed that can be applied on
|
5209
|
-
#
|
5210
|
-
#
|
5211
|
-
#
|
5213
|
+
# Quota contains the essential parameters needed that can be applied on the
|
5214
|
+
# resources, methods, API source combination associated with this API product.
|
5215
|
+
# While Quota is optional, setting it prevents requests from exceeding the
|
5216
|
+
# provisioned parameters.
|
5212
5217
|
class GoogleCloudApigeeV1Quota
|
5213
5218
|
include Google::Apis::Core::Hashable
|
5214
5219
|
|
@@ -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.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210522"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1619,6 +1619,7 @@ module Google
|
|
1619
1619
|
property :revision, as: 'revision'
|
1620
1620
|
collection :route_conflicts, as: 'routeConflicts', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict::Representation
|
1621
1621
|
|
1622
|
+
property :service_account, as: 'serviceAccount'
|
1622
1623
|
property :state, as: 'state'
|
1623
1624
|
end
|
1624
1625
|
end
|
@@ -653,12 +653,12 @@ module Google
|
|
653
653
|
# collection of API resources combined with quota settings and metadata that you
|
654
654
|
# can use to deliver customized and productized API bundles to your developer
|
655
655
|
# community. This metadata can include: - Scope - Environments - API proxies -
|
656
|
-
# Extensible profile API products enable you repackage APIs on
|
656
|
+
# Extensible profile API products enable you repackage APIs on the fly, without
|
657
657
|
# having to do any additional coding or configuration. Apigee recommends that
|
658
658
|
# you start with a simple API product including only required elements. You then
|
659
659
|
# provision credentials to apps to enable them to start testing your APIs. After
|
660
660
|
# you have authentication and authorization working against a simple API product,
|
661
|
-
# you can iterate to create finer
|
661
|
+
# you can iterate to create finer-grained API products, defining different sets
|
662
662
|
# of API resources for each API product. **WARNING:** - If you don't specify an
|
663
663
|
# API proxy in the request body, *any* app associated with the product can make
|
664
664
|
# calls to *any* API in your entire organization. - If you don't specify an
|
@@ -771,9 +771,9 @@ module Google
|
|
771
771
|
end
|
772
772
|
|
773
773
|
# Lists all API product names for an organization. Filter the list by passing an
|
774
|
-
# `attributename` and `attibutevalue`. The
|
775
|
-
# returned
|
776
|
-
#
|
774
|
+
# `attributename` and `attibutevalue`. The maximum number of API products
|
775
|
+
# returned is 1000. You can paginate the list of API products returned using the
|
776
|
+
# `startKey` and `count` query parameters.
|
777
777
|
# @param [String] parent
|
778
778
|
# Required. Name of the organization. Use the following structure in your
|
779
779
|
# request: `organizations/`org``
|
@@ -828,7 +828,7 @@ module Google
|
|
828
828
|
# Updates an existing API product. You must include all required values, whether
|
829
829
|
# or not you are updating them, as well as any optional values that you are
|
830
830
|
# updating. The API product name required in the request URL is the internal
|
831
|
-
# name of the product, not the
|
831
|
+
# name of the product, not the display name. While they may be the same, it
|
832
832
|
# depends on whether the API product was created via UI or API. View the list of
|
833
833
|
# API products to identify their internal names.
|
834
834
|
# @param [String] name
|
@@ -2641,12 +2641,12 @@ module Google
|
|
2641
2641
|
|
2642
2642
|
# Creates a custom consumer key and secret for a developer app. This is
|
2643
2643
|
# particularly useful if you want to migrate existing consumer keys and secrets
|
2644
|
-
# to Apigee
|
2645
|
-
#
|
2646
|
-
#
|
2647
|
-
#
|
2648
|
-
#
|
2649
|
-
#
|
2644
|
+
# to Apigee from another system. Consumer keys and secrets can contain letters,
|
2645
|
+
# numbers, underscores, and hyphens. No other special characters are allowed. To
|
2646
|
+
# avoid service disruptions, a consumer key and secret should not exceed 2 KBs
|
2647
|
+
# each. **Note**: When creating the consumer key and secret, an association to
|
2648
|
+
# API products will not be made. Therefore, you should not specify the
|
2649
|
+
# associated API products in your request. Instead, use the
|
2650
2650
|
# UpdateDeveloperAppKey API to make the association after the consumer key and
|
2651
2651
|
# secret are created. If a consumer key and secret already exist, you can keep
|
2652
2652
|
# them or delete them using the DeleteDeveloperAppKey API.
|
@@ -2720,7 +2720,7 @@ module Google
|
|
2720
2720
|
execute_or_queue_command(command, &block)
|
2721
2721
|
end
|
2722
2722
|
|
2723
|
-
#
|
2723
|
+
# Gets details for a consumer key for a developer app, including the key and
|
2724
2724
|
# secret value, associated API products, and other information.
|
2725
2725
|
# @param [String] name
|
2726
2726
|
# Name of the developer app key. Use the following structure in your request: `
|
@@ -2868,11 +2868,11 @@ module Google
|
|
2868
2868
|
execute_or_queue_command(command, &block)
|
2869
2869
|
end
|
2870
2870
|
|
2871
|
-
#
|
2872
|
-
# app can use it to access APIs. A consumer key that is revoked
|
2873
|
-
# cannot be used to access an API. Any access tokens associated with
|
2874
|
-
# consumer key will remain active. However, Apigee
|
2875
|
-
# the consumer key and if set to `revoked` will not allow access to the API.
|
2871
|
+
# Approves or revokes the consumer key for an API product. After a consumer key
|
2872
|
+
# is approved, the app can use it to access APIs. A consumer key that is revoked
|
2873
|
+
# or pending cannot be used to access an API. Any access tokens associated with
|
2874
|
+
# a revoked consumer key will remain active. However, Apigee checks the status
|
2875
|
+
# of the consumer key and if set to `revoked` will not allow access to the API.
|
2876
2876
|
# @param [String] name
|
2877
2877
|
# Name of the API product in the developer app key in the following format: `
|
2878
2878
|
# organizations/`org`/developers/`developer_email`/apps/`app`/keys/`key`/
|
@@ -2910,12 +2910,12 @@ module Google
|
|
2910
2910
|
|
2911
2911
|
# Creates a custom consumer key and secret for a developer app. This is
|
2912
2912
|
# particularly useful if you want to migrate existing consumer keys and secrets
|
2913
|
-
# to Apigee
|
2914
|
-
#
|
2915
|
-
#
|
2916
|
-
#
|
2917
|
-
#
|
2918
|
-
#
|
2913
|
+
# to Apigee from another system. Consumer keys and secrets can contain letters,
|
2914
|
+
# numbers, underscores, and hyphens. No other special characters are allowed. To
|
2915
|
+
# avoid service disruptions, a consumer key and secret should not exceed 2 KBs
|
2916
|
+
# each. **Note**: When creating the consumer key and secret, an association to
|
2917
|
+
# API products will not be made. Therefore, you should not specify the
|
2918
|
+
# associated API products in your request. Instead, use the
|
2919
2919
|
# UpdateDeveloperAppKey API to make the association after the consumer key and
|
2920
2920
|
# secret are created. If a consumer key and secret already exist, you can keep
|
2921
2921
|
# them or delete them using the DeleteDeveloperAppKey API.
|
@@ -4281,6 +4281,10 @@ module Google
|
|
4281
4281
|
# GenerateDeployChangeReport) may be used to examine routing changes before
|
4282
4282
|
# issuing the deployment request, and its response will indicate if a sequenced
|
4283
4283
|
# rollout is recommended for the deployment.
|
4284
|
+
# @param [String] service_account
|
4285
|
+
# Google Cloud IAM service account. The service account represents the identity
|
4286
|
+
# of the deployed proxy, and determines what permissions it has. The format must
|
4287
|
+
# be ``ACCOUNT_ID`@`PROJECT`.iam.gserviceaccount.com`.
|
4284
4288
|
# @param [String] fields
|
4285
4289
|
# Selector specifying which fields to include in a partial response.
|
4286
4290
|
# @param [String] quota_user
|
@@ -4298,13 +4302,14 @@ module Google
|
|
4298
4302
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4299
4303
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4300
4304
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4301
|
-
def deploy_organization_environment_api_revision(name, override: nil, sequenced_rollout: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4305
|
+
def deploy_organization_environment_api_revision(name, override: nil, sequenced_rollout: nil, service_account: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4302
4306
|
command = make_simple_command(:post, 'v1/{+name}/deployments', options)
|
4303
4307
|
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment::Representation
|
4304
4308
|
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment
|
4305
4309
|
command.params['name'] = name unless name.nil?
|
4306
4310
|
command.query['override'] = override unless override.nil?
|
4307
4311
|
command.query['sequencedRollout'] = sequenced_rollout unless sequenced_rollout.nil?
|
4312
|
+
command.query['serviceAccount'] = service_account unless service_account.nil?
|
4308
4313
|
command.query['fields'] = fields unless fields.nil?
|
4309
4314
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4310
4315
|
execute_or_queue_command(command, &block)
|
@@ -5896,6 +5901,10 @@ module Google
|
|
5896
5901
|
# replace other deployed revisions. By default, `override` is `false` and the
|
5897
5902
|
# deployment is rejected if other revisions of the shared flow are deployed in
|
5898
5903
|
# the environment.
|
5904
|
+
# @param [String] service_account
|
5905
|
+
# Google Cloud IAM service account. The service account represents the identity
|
5906
|
+
# of the deployed proxy, and determines what permissions it has. The format must
|
5907
|
+
# be ``ACCOUNT_ID`@`PROJECT`.iam.gserviceaccount.com`.
|
5899
5908
|
# @param [String] fields
|
5900
5909
|
# Selector specifying which fields to include in a partial response.
|
5901
5910
|
# @param [String] quota_user
|
@@ -5913,12 +5922,13 @@ module Google
|
|
5913
5922
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5914
5923
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5915
5924
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5916
|
-
def deploy_organization_environment_sharedflow_revision(name, override: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5925
|
+
def deploy_organization_environment_sharedflow_revision(name, override: nil, service_account: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5917
5926
|
command = make_simple_command(:post, 'v1/{+name}/deployments', options)
|
5918
5927
|
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment::Representation
|
5919
5928
|
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment
|
5920
5929
|
command.params['name'] = name unless name.nil?
|
5921
5930
|
command.query['override'] = override unless override.nil?
|
5931
|
+
command.query['serviceAccount'] = service_account unless service_account.nil?
|
5922
5932
|
command.query['fields'] = fields unless fields.nil?
|
5923
5933
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5924
5934
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-05-
|
11
|
+
date: 2021-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.12.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|