google-apis-apigee_v1 0.36.0 → 0.39.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: 1f803a88e65a3e12061a52491bb4be3cdb11d1a437d8c3958121802e92991132
4
- data.tar.gz: 2b10c0f9300a47be35191e2425ddf3145c849f6083a9c2f22aab045ee952c7b9
3
+ metadata.gz: 98d6539fda7144a3b710a7a0039f9626c1f6c65da18772712c519f320dc28762
4
+ data.tar.gz: a9d9bb738bce62a3936bcd96ab0757c6d769d64d68e200d2c0fd973093068430
5
5
  SHA512:
6
- metadata.gz: ad254d0ee9289b4eb5857e866cf00bbe03e746cd403c06fe9d314c9b50df1dd8c6513a622081c3ed5c9614cd70ceafb8d580918247f332feaaf5210c2074fbf1
7
- data.tar.gz: 240153f869a436e20f8ba87b5887ba951da7a002dbf7225b39c66c15d5f8e0676e89f9120c3cefacb0a85eb589fa3eacd0f7b668a4fc9546ab716d31039ca0ca
6
+ metadata.gz: 4883246aaad8c7e6ea4838686332a387a43744c28133781485630b60716e899c76c7d84b86b5df9bae49d143c8f4010d43d80bfe834934775e1a88076cef682b
7
+ data.tar.gz: fd873c85f75662ba8d46d72815f186d62c9df6eb21e95d4523895986001b76ce2b228183bdd47ccc700c1e816e0d1cff16df45c82d8ea57b3add5bdb1396d43d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.39.0 (2022-03-15)
4
+
5
+ * Regenerated from discovery document revision 20220310
6
+
7
+ ### v0.38.0 (2022-03-08)
8
+
9
+ * Regenerated from discovery document revision 20220303
10
+
11
+ ### v0.37.0 (2022-03-02)
12
+
13
+ * Regenerated from discovery document revision 20220301
14
+
3
15
  ### v0.36.0 (2022-02-23)
4
16
 
5
17
  * Regenerated from discovery document revision 20220217
@@ -2933,12 +2933,13 @@ module Google
2933
2933
  end
2934
2934
  end
2935
2935
 
2936
- # Apigee Endpoint Attachment.
2936
+ # Apigee endpoint attachment. For more information, see Southbound networking
2937
+ # patterns.
2937
2938
  class GoogleCloudApigeeV1EndpointAttachment
2938
2939
  include Google::Apis::Core::Hashable
2939
2940
 
2940
- # Output only. Host that can be used in either HTTP Target Endpoint directly, or
2941
- # as the host in Target Server.
2941
+ # Output only. Host that can be used in either the HTTP target endpoint directly
2942
+ # or as the host in target server.
2942
2943
  # Corresponds to the JSON property `host`
2943
2944
  # @return [String]
2944
2945
  attr_accessor :host
@@ -2948,8 +2949,8 @@ module Google
2948
2949
  # @return [String]
2949
2950
  attr_accessor :location
2950
2951
 
2951
- # Name of the Endpoint Attachment in the following format: `organizations/`
2952
- # organization`/endpointAttachments/`endpoint_attachment``.
2952
+ # Name of the endpoint attachment. Use the following structure in your request: `
2953
+ # organizations/`org`/endpointAttachments/`endpoint_attachment``
2953
2954
  # Corresponds to the JSON property `name`
2954
2955
  # @return [String]
2955
2956
  attr_accessor :name
@@ -3281,6 +3282,11 @@ module Google
3281
3282
  # @return [String]
3282
3283
  attr_accessor :environment
3283
3284
 
3285
+ # Output only. ID of the environment group.
3286
+ # Corresponds to the JSON property `environmentGroupId`
3287
+ # @return [String]
3288
+ attr_accessor :environment_group_id
3289
+
3284
3290
  # ID of the environment group attachment.
3285
3291
  # Corresponds to the JSON property `name`
3286
3292
  # @return [String]
@@ -3294,6 +3300,7 @@ module Google
3294
3300
  def update!(**args)
3295
3301
  @created_at = args[:created_at] if args.key?(:created_at)
3296
3302
  @environment = args[:environment] if args.key?(:environment)
3303
+ @environment_group_id = args[:environment_group_id] if args.key?(:environment_group_id)
3297
3304
  @name = args[:name] if args.key?(:name)
3298
3305
  end
3299
3306
  end
@@ -3629,6 +3636,67 @@ module Google
3629
3636
  end
3630
3637
  end
3631
3638
 
3639
+ # The response for GetAsyncQueryResultUrl
3640
+ class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse
3641
+ include Google::Apis::Core::Hashable
3642
+
3643
+ # The list of Signed URLs generated by the CreateAsyncQuery request
3644
+ # Corresponds to the JSON property `urls`
3645
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo>]
3646
+ attr_accessor :urls
3647
+
3648
+ def initialize(**args)
3649
+ update!(**args)
3650
+ end
3651
+
3652
+ # Update properties of this object
3653
+ def update!(**args)
3654
+ @urls = args[:urls] if args.key?(:urls)
3655
+ end
3656
+ end
3657
+
3658
+ # A Signed URL and the relevant metadata associated with it.
3659
+ class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo
3660
+ include Google::Apis::Core::Hashable
3661
+
3662
+ # The MD5 Hash of the JSON data
3663
+ # Corresponds to the JSON property `md5`
3664
+ # @return [String]
3665
+ attr_accessor :md5
3666
+
3667
+ # The size of the returned file in bytes
3668
+ # Corresponds to the JSON property `sizeBytes`
3669
+ # @return [Fixnum]
3670
+ attr_accessor :size_bytes
3671
+
3672
+ # The signed URL of the JSON data. Will be of the form `https://storage.
3673
+ # googleapis.com/example-bucket/cat.jpeg?X-Goog-Algorithm= GOOG4-RSA-SHA256&X-
3674
+ # Goog-Credential=example%40example-project.iam.gserviceaccount .com%2F20181026%
3675
+ # 2Fus-central1%2Fstorage%2Fgoog4_request&X-Goog-Date=20181026T18 1309Z&X-Goog-
3676
+ # Expires=900&X-Goog-SignedHeaders=host&X-Goog-Signature=247a2aa45f16
3677
+ # df4d187d54e7cc46e4731b1e6273242c4f4c39a1d2507a0e58706e25e3a85a7dbb891d62afa849
3678
+ # ef8e260c1db863d9ace85ff0a184b894b117fe46d1225c82f2aa19efd52cf21d3e2022b3b868dc
3679
+ # aca2741951ed5bf3bb25a34f5e9316a2841e8ff4c530b22ceaa1c5ce09c7cbb5732631510c2058
3680
+ # 61723f5594de3aea497f195456a2ff2bdd0d13bad47289d8611b6f9cfeef0c46c91a455b94e90a
3681
+ # 924f722292d21e24d31dcfb38ce0c0f353ffa5a9756fc2a9f2b40bc2113206a81e324fc4fd6823
3682
+ # 9163fa845c8ae7eca1fcf6e5bb48b3200983c56c5ca81fffb151cca7402beddfc4a76b13344703
3683
+ # 2ea7abedc098d2eb14a7`
3684
+ # Corresponds to the JSON property `uri`
3685
+ # @return [String]
3686
+ attr_accessor :uri
3687
+
3688
+ def initialize(**args)
3689
+ update!(**args)
3690
+ end
3691
+
3692
+ # Update properties of this object
3693
+ def update!(**args)
3694
+ @md5 = args[:md5] if args.key?(:md5)
3695
+ @size_bytes = args[:size_bytes] if args.key?(:size_bytes)
3696
+ @uri = args[:uri] if args.key?(:uri)
3697
+ end
3698
+ end
3699
+
3632
3700
  # Request for GetSyncAuthorization.
3633
3701
  class GoogleCloudApigeeV1GetSyncAuthorizationRequest
3634
3702
  include Google::Apis::Core::Hashable
@@ -3799,6 +3867,15 @@ module Google
3799
3867
  class GoogleCloudApigeeV1Instance
3800
3868
  include Google::Apis::Core::Hashable
3801
3869
 
3870
+ # Optional. Customer accept list represents the list of projects (id/number) on
3871
+ # customer side that can privately connect to the service attachment. It is an
3872
+ # optional field which the customers can provide during the instance creation.
3873
+ # By default, the customer project associated with the Apigee organization will
3874
+ # be included to the list.
3875
+ # Corresponds to the JSON property `consumerAcceptList`
3876
+ # @return [Array<String>]
3877
+ attr_accessor :consumer_accept_list
3878
+
3802
3879
  # Output only. Time the instance was created in milliseconds since epoch.
3803
3880
  # Corresponds to the JSON property `createdAt`
3804
3881
  # @return [Fixnum]
@@ -3874,6 +3951,14 @@ module Google
3874
3951
  # @return [String]
3875
3952
  attr_accessor :runtime_version
3876
3953
 
3954
+ # Output only. Resource name of the service attachment created for the instance
3955
+ # in the format: `projects/*/regions/*/serviceAttachments/*` Apigee customers
3956
+ # can privately forward traffic to this service attachment using the PSC
3957
+ # endpoints.
3958
+ # Corresponds to the JSON property `serviceAttachment`
3959
+ # @return [String]
3960
+ attr_accessor :service_attachment
3961
+
3877
3962
  # Output only. State of the instance. Values other than `ACTIVE` means the
3878
3963
  # resource is not ready to use.
3879
3964
  # Corresponds to the JSON property `state`
@@ -3886,6 +3971,7 @@ module Google
3886
3971
 
3887
3972
  # Update properties of this object
3888
3973
  def update!(**args)
3974
+ @consumer_accept_list = args[:consumer_accept_list] if args.key?(:consumer_accept_list)
3889
3975
  @created_at = args[:created_at] if args.key?(:created_at)
3890
3976
  @description = args[:description] if args.key?(:description)
3891
3977
  @disk_encryption_key_name = args[:disk_encryption_key_name] if args.key?(:disk_encryption_key_name)
@@ -3898,6 +3984,7 @@ module Google
3898
3984
  @peering_cidr_range = args[:peering_cidr_range] if args.key?(:peering_cidr_range)
3899
3985
  @port = args[:port] if args.key?(:port)
3900
3986
  @runtime_version = args[:runtime_version] if args.key?(:runtime_version)
3987
+ @service_attachment = args[:service_attachment] if args.key?(:service_attachment)
3901
3988
  @state = args[:state] if args.key?(:state)
3902
3989
  end
3903
3990
  end
@@ -4457,12 +4544,12 @@ module Google
4457
4544
  class GoogleCloudApigeeV1ListEndpointAttachmentsResponse
4458
4545
  include Google::Apis::Core::Hashable
4459
4546
 
4460
- # Endpoint Attachments in the specified organization.
4547
+ # Endpoint attachments in the specified organization.
4461
4548
  # Corresponds to the JSON property `endpointAttachments`
4462
4549
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment>]
4463
4550
  attr_accessor :endpoint_attachments
4464
4551
 
4465
- # Page token that you can include in a ListEndpointAttachments request to
4552
+ # Page token that you can include in an `ListEndpointAttachments` request to
4466
4553
  # retrieve the next page. If omitted, no subsequent pages exist.
4467
4554
  # Corresponds to the JSON property `nextPageToken`
4468
4555
  # @return [String]
@@ -5157,9 +5244,10 @@ module Google
5157
5244
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AddonsConfig]
5158
5245
  attr_accessor :addons_config
5159
5246
 
5160
- # Required. Primary GCP region for analytics data storage. For valid values, see
5161
- # [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-
5162
- # platform/get-started/create-org).
5247
+ # Required. DEPRECATED: This field will be deprecated once Apigee supports DRZ.
5248
+ # Primary GCP region for analytics data storage. For valid values, see [Create
5249
+ # an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-
5250
+ # started/create-org).
5163
5251
  # Corresponds to the JSON property `analyticsRegion`
5164
5252
  # @return [String]
5165
5253
  attr_accessor :analytics_region
@@ -7229,9 +7317,13 @@ module Google
7229
7317
  class GoogleCloudApigeeV1TlsInfo
7230
7318
  include Google::Apis::Core::Hashable
7231
7319
 
7232
- # The SSL/TLS cipher suites to be used. Must be one of the cipher suite names
7233
- # listed in: http://docs.oracle.com/javase/8/docs/technotes/guides/security/
7234
- # StandardNames.html#ciphersuites
7320
+ # The SSL/TLS cipher suites to be used. For programmable proxies, it must be one
7321
+ # of the cipher suite names listed in: http://docs.oracle.com/javase/8/docs/
7322
+ # technotes/guides/security/StandardNames.html#ciphersuites. For configurable
7323
+ # proxies, it must follow the configuration specified in: https://
7324
+ # commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#Cipher-
7325
+ # suite-configuration. This setting has no effect for configurable proxies when
7326
+ # negotiating TLS 1.3.
7235
7327
  # Corresponds to the JSON property `ciphers`
7236
7328
  # @return [Array<String>]
7237
7329
  attr_accessor :ciphers
@@ -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.36.0"
19
+ GEM_VERSION = "0.39.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220217"
25
+ REVISION = "20220310"
26
26
  end
27
27
  end
28
28
  end
@@ -484,6 +484,18 @@ module Google
484
484
  include Google::Apis::Core::JsonObjectSupport
485
485
  end
486
486
 
487
+ class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
493
+ class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
487
499
  class GoogleCloudApigeeV1GetSyncAuthorizationRequest
488
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
501
 
@@ -2033,6 +2045,7 @@ module Google
2033
2045
  class Representation < Google::Apis::Core::JsonRepresentation
2034
2046
  property :created_at, :numeric_string => true, as: 'createdAt'
2035
2047
  property :environment, as: 'environment'
2048
+ property :environment_group_id, as: 'environmentGroupId'
2036
2049
  property :name, as: 'name'
2037
2050
  end
2038
2051
  end
@@ -2128,6 +2141,23 @@ module Google
2128
2141
  end
2129
2142
  end
2130
2143
 
2144
+ class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse
2145
+ # @private
2146
+ class Representation < Google::Apis::Core::JsonRepresentation
2147
+ collection :urls, as: 'urls', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo::Representation
2148
+
2149
+ end
2150
+ end
2151
+
2152
+ class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo
2153
+ # @private
2154
+ class Representation < Google::Apis::Core::JsonRepresentation
2155
+ property :md5, as: 'md5'
2156
+ property :size_bytes, :numeric_string => true, as: 'sizeBytes'
2157
+ property :uri, as: 'uri'
2158
+ end
2159
+ end
2160
+
2131
2161
  class GoogleCloudApigeeV1GetSyncAuthorizationRequest
2132
2162
  # @private
2133
2163
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2179,6 +2209,7 @@ module Google
2179
2209
  class GoogleCloudApigeeV1Instance
2180
2210
  # @private
2181
2211
  class Representation < Google::Apis::Core::JsonRepresentation
2212
+ collection :consumer_accept_list, as: 'consumerAcceptList'
2182
2213
  property :created_at, :numeric_string => true, as: 'createdAt'
2183
2214
  property :description, as: 'description'
2184
2215
  property :disk_encryption_key_name, as: 'diskEncryptionKeyName'
@@ -2191,6 +2222,7 @@ module Google
2191
2222
  property :peering_cidr_range, as: 'peeringCidrRange'
2192
2223
  property :port, as: 'port'
2193
2224
  property :runtime_version, as: 'runtimeVersion'
2225
+ property :service_attachment, as: 'serviceAttachment'
2194
2226
  property :state, as: 'state'
2195
2227
  end
2196
2228
  end
@@ -3471,13 +3471,13 @@ module Google
3471
3471
  execute_or_queue_command(command, &block)
3472
3472
  end
3473
3473
 
3474
- # Creates an EndpointAttachment. **Note:** Not supported for Apigee hybrid.
3474
+ # Creates an endpoint attachment. **Note:** Not supported for Apigee hybrid.
3475
3475
  # @param [String] parent
3476
- # Required. The Organization this EndpointAttachment will be created in.
3476
+ # Required. Organization the endpoint attachment will be created in.
3477
3477
  # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment] google_cloud_apigee_v1_endpoint_attachment_object
3478
3478
  # @param [String] endpoint_attachment_id
3479
- # The ID to use for the endpoint attachment. ID must be a 1-20 characters string
3480
- # with lowercase letters and numbers and must start with a letter.
3479
+ # ID to use for the endpoint attachment. The ID can contain lowercase letters
3480
+ # and numbers, must start with a letter, and must be 1-20 characters in length.
3481
3481
  # @param [String] fields
3482
3482
  # Selector specifying which fields to include in a partial response.
3483
3483
  # @param [String] quota_user
@@ -3510,8 +3510,8 @@ module Google
3510
3510
 
3511
3511
  # Deletes an endpoint attachment.
3512
3512
  # @param [String] name
3513
- # Required. Name of the Endpoint Attachment in the following format: `
3514
- # organizations/`organization`/endpointAttachments/`endpoint_attachment``.
3513
+ # Required. Name of the endpoint attachment. Use the following structure in your
3514
+ # request: `organizations/`org`/endpointAttachments/`endpoint_attachment``
3515
3515
  # @param [String] fields
3516
3516
  # Selector specifying which fields to include in a partial response.
3517
3517
  # @param [String] quota_user
@@ -3539,10 +3539,10 @@ module Google
3539
3539
  execute_or_queue_command(command, &block)
3540
3540
  end
3541
3541
 
3542
- # Gets the specified EndpointAttachment.
3542
+ # Gets the endpoint attachment.
3543
3543
  # @param [String] name
3544
- # Required. Name of the Endpoint Attachment in the following format: `
3545
- # organizations/`organization`/endpointAttachments/`endpoint_attachment``.
3544
+ # Required. Name of the endpoint attachment. Use the following structure in your
3545
+ # request: `organizations/`org`/endpointAttachments/`endpoint_attachment``
3546
3546
  # @param [String] fields
3547
3547
  # Selector specifying which fields to include in a partial response.
3548
3548
  # @param [String] quota_user
@@ -3570,15 +3570,15 @@ module Google
3570
3570
  execute_or_queue_command(command, &block)
3571
3571
  end
3572
3572
 
3573
- # Lists the EndpointAttachments in the specified Organization.
3573
+ # Lists the endpoint attachments in an organization.
3574
3574
  # @param [String] parent
3575
- # Required. Name of the Organization for which to list Endpoint Attachments in
3576
- # the format: `organizations/`organization``.
3575
+ # Required. Name of the organization for which to list endpoint attachments. Use
3576
+ # the following structure in your request: `organizations/`org``
3577
3577
  # @param [Fixnum] page_size
3578
- # Optional. Maximum number of Endpoint Attachments to return. If unspecified, at
3578
+ # Optional. Maximum number of endpoint attachments to return. If unspecified, at
3579
3579
  # most 25 attachments will be returned.
3580
3580
  # @param [String] page_token
3581
- # Optional. Page token, returned from a previous ListEndpointAttachments call,
3581
+ # Optional. Page token, returned from a previous `ListEndpointAttachments` call,
3582
3582
  # that you can use to retrieve the next page.
3583
3583
  # @param [String] fields
3584
3584
  # Selector specifying which fields to include in a partial response.
@@ -6062,6 +6062,39 @@ module Google
6062
6062
  execute_or_queue_command(command, &block)
6063
6063
  end
6064
6064
 
6065
+ # After the query is completed, use this API to retrieve the results. If the
6066
+ # request succeeds, and there is a non-zero result set, the result is sent to
6067
+ # the client as a list of urls to JSON files.
6068
+ # @param [String] name
6069
+ # Required. Name of the asynchronous query result to get. Must be of the form `
6070
+ # organizations/`org`/environments/`env`/queries/`queryId`/resulturl`.
6071
+ # @param [String] fields
6072
+ # Selector specifying which fields to include in a partial response.
6073
+ # @param [String] quota_user
6074
+ # Available to use for quota purposes for server-side applications. Can be any
6075
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
6076
+ # @param [Google::Apis::RequestOptions] options
6077
+ # Request-specific options
6078
+ #
6079
+ # @yield [result, err] Result & error if block supplied
6080
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse] parsed result object
6081
+ # @yieldparam err [StandardError] error object if request failed
6082
+ #
6083
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse]
6084
+ #
6085
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6086
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6087
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
6088
+ def get_organization_environment_query_resulturl(name, fields: nil, quota_user: nil, options: nil, &block)
6089
+ command = make_simple_command(:get, 'v1/{+name}', options)
6090
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse::Representation
6091
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse
6092
+ command.params['name'] = name unless name.nil?
6093
+ command.query['fields'] = fields unless fields.nil?
6094
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
6095
+ execute_or_queue_command(command, &block)
6096
+ end
6097
+
6065
6098
  # Return a list of Asynchronous Queries
6066
6099
  # @param [String] parent
6067
6100
  # Required. The parent resource name. Must be of the form `organizations/`org`/
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.36.0
4
+ version: 0.39.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: 2022-02-28 00:00:00.000000000 Z
11
+ date: 2022-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.36.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.39.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
63
63
  post_install_message:
64
64
  rdoc_options: []