google-apis-apigee_v1 0.114.0 → 0.115.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 +4 -0
- data/lib/google/apis/apigee_v1/gem_version.rb +2 -2
- data/lib/google/apis/apigee_v1/service.rb +237 -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: d089e66a645db9c4038fe5846a7279d1807b89364890fc6fc6a08fb956cce712
|
|
4
|
+
data.tar.gz: dd7ae0a8751f572b92aa4adbb1bc66a944e75ee8dd0843237b916d187597c81b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34de5b144aa1b256c56790abd058cc09a5a5cdf7173eb66c57386c906b22908c7dfba1344d12823838897f6796437303c935b25e453b75b1aca2dab69629670c
|
|
7
|
+
data.tar.gz: 57290a4ef8c6202cb6977b4dce4fe12759a4c47801eeb3dde76681499da67d15f53d861be9e5ab072c459b505aecb51ddb859900b4e7e3178f8efec519cfd71c
|
data/CHANGELOG.md
CHANGED
|
@@ -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.115.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251016"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1921,6 +1921,85 @@ module Google
|
|
|
1921
1921
|
execute_or_queue_command(command, &block)
|
|
1922
1922
|
end
|
|
1923
1923
|
|
|
1924
|
+
# Get the key value map scoped to an organization, environment, or API proxy.
|
|
1925
|
+
# @param [String] name
|
|
1926
|
+
# Required. Scope as indicated by the URI in which to fetch the key value map.
|
|
1927
|
+
# Use **one** of the following structures in your request: * `organizations/`
|
|
1928
|
+
# organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
|
|
1929
|
+
# organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
|
|
1930
|
+
# organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
|
|
1931
|
+
# is under an API Proxy resource that has the `space` attribute set, IAM
|
|
1932
|
+
# permissions are checked against the Space resource path. To learn more, read
|
|
1933
|
+
# the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
|
|
1934
|
+
# system-administration/spaces/apigee-spaces-overview).
|
|
1935
|
+
# @param [String] fields
|
|
1936
|
+
# Selector specifying which fields to include in a partial response.
|
|
1937
|
+
# @param [String] quota_user
|
|
1938
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1939
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1940
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1941
|
+
# Request-specific options
|
|
1942
|
+
#
|
|
1943
|
+
# @yield [result, err] Result & error if block supplied
|
|
1944
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
|
|
1945
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1946
|
+
#
|
|
1947
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
|
|
1948
|
+
#
|
|
1949
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1950
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1951
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1952
|
+
def get_organization_api_keyvaluemap(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
1953
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
1954
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
|
|
1955
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
|
|
1956
|
+
command.params['name'] = name unless name.nil?
|
|
1957
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1958
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1959
|
+
execute_or_queue_command(command, &block)
|
|
1960
|
+
end
|
|
1961
|
+
|
|
1962
|
+
# Update the key value map scoped to an organization, environment, or API proxy.
|
|
1963
|
+
# @param [String] name
|
|
1964
|
+
# Required. Scope as indicated by the URI in which to fetch the key value map.
|
|
1965
|
+
# Use **one** of the following structures in your request: * `organizations/`
|
|
1966
|
+
# organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
|
|
1967
|
+
# organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
|
|
1968
|
+
# organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
|
|
1969
|
+
# is under an API Proxy resource that has the `space` attribute set, IAM
|
|
1970
|
+
# permissions are checked against the Space resource path. To learn more, read
|
|
1971
|
+
# the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
|
|
1972
|
+
# system-administration/spaces/apigee-spaces-overview).
|
|
1973
|
+
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] google_cloud_apigee_v1_key_value_map_object
|
|
1974
|
+
# @param [String] fields
|
|
1975
|
+
# Selector specifying which fields to include in a partial response.
|
|
1976
|
+
# @param [String] quota_user
|
|
1977
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1978
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1979
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1980
|
+
# Request-specific options
|
|
1981
|
+
#
|
|
1982
|
+
# @yield [result, err] Result & error if block supplied
|
|
1983
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
|
|
1984
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1985
|
+
#
|
|
1986
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
|
|
1987
|
+
#
|
|
1988
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1989
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1990
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1991
|
+
def update_organization_api_keyvaluemap(name, google_cloud_apigee_v1_key_value_map_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1992
|
+
command = make_simple_command(:put, 'v1/{+name}', options)
|
|
1993
|
+
command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
|
|
1994
|
+
command.request_object = google_cloud_apigee_v1_key_value_map_object
|
|
1995
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
|
|
1996
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
|
|
1997
|
+
command.params['name'] = name unless name.nil?
|
|
1998
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1999
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2000
|
+
execute_or_queue_command(command, &block)
|
|
2001
|
+
end
|
|
2002
|
+
|
|
1924
2003
|
# Creates key value entries in a key value map scoped to an organization,
|
|
1925
2004
|
# environment, or API proxy. **Note**: Supported for Apigee hybrid 1.8.x and
|
|
1926
2005
|
# higher.
|
|
@@ -7713,6 +7792,85 @@ module Google
|
|
|
7713
7792
|
execute_or_queue_command(command, &block)
|
|
7714
7793
|
end
|
|
7715
7794
|
|
|
7795
|
+
# Get the key value map scoped to an organization, environment, or API proxy.
|
|
7796
|
+
# @param [String] name
|
|
7797
|
+
# Required. Scope as indicated by the URI in which to fetch the key value map.
|
|
7798
|
+
# Use **one** of the following structures in your request: * `organizations/`
|
|
7799
|
+
# organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
|
|
7800
|
+
# organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
|
|
7801
|
+
# organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
|
|
7802
|
+
# is under an API Proxy resource that has the `space` attribute set, IAM
|
|
7803
|
+
# permissions are checked against the Space resource path. To learn more, read
|
|
7804
|
+
# the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
|
|
7805
|
+
# system-administration/spaces/apigee-spaces-overview).
|
|
7806
|
+
# @param [String] fields
|
|
7807
|
+
# Selector specifying which fields to include in a partial response.
|
|
7808
|
+
# @param [String] quota_user
|
|
7809
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
7810
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
7811
|
+
# @param [Google::Apis::RequestOptions] options
|
|
7812
|
+
# Request-specific options
|
|
7813
|
+
#
|
|
7814
|
+
# @yield [result, err] Result & error if block supplied
|
|
7815
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
|
|
7816
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
7817
|
+
#
|
|
7818
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
|
|
7819
|
+
#
|
|
7820
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
7821
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
7822
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
7823
|
+
def get_organization_environment_keyvaluemap(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
7824
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
7825
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
|
|
7826
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
|
|
7827
|
+
command.params['name'] = name unless name.nil?
|
|
7828
|
+
command.query['fields'] = fields unless fields.nil?
|
|
7829
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
7830
|
+
execute_or_queue_command(command, &block)
|
|
7831
|
+
end
|
|
7832
|
+
|
|
7833
|
+
# Update the key value map scoped to an organization, environment, or API proxy.
|
|
7834
|
+
# @param [String] name
|
|
7835
|
+
# Required. Scope as indicated by the URI in which to fetch the key value map.
|
|
7836
|
+
# Use **one** of the following structures in your request: * `organizations/`
|
|
7837
|
+
# organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
|
|
7838
|
+
# organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
|
|
7839
|
+
# organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
|
|
7840
|
+
# is under an API Proxy resource that has the `space` attribute set, IAM
|
|
7841
|
+
# permissions are checked against the Space resource path. To learn more, read
|
|
7842
|
+
# the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
|
|
7843
|
+
# system-administration/spaces/apigee-spaces-overview).
|
|
7844
|
+
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] google_cloud_apigee_v1_key_value_map_object
|
|
7845
|
+
# @param [String] fields
|
|
7846
|
+
# Selector specifying which fields to include in a partial response.
|
|
7847
|
+
# @param [String] quota_user
|
|
7848
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
7849
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
7850
|
+
# @param [Google::Apis::RequestOptions] options
|
|
7851
|
+
# Request-specific options
|
|
7852
|
+
#
|
|
7853
|
+
# @yield [result, err] Result & error if block supplied
|
|
7854
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
|
|
7855
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
7856
|
+
#
|
|
7857
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
|
|
7858
|
+
#
|
|
7859
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
7860
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
7861
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
7862
|
+
def update_organization_environment_keyvaluemap(name, google_cloud_apigee_v1_key_value_map_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
7863
|
+
command = make_simple_command(:put, 'v1/{+name}', options)
|
|
7864
|
+
command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
|
|
7865
|
+
command.request_object = google_cloud_apigee_v1_key_value_map_object
|
|
7866
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
|
|
7867
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
|
|
7868
|
+
command.params['name'] = name unless name.nil?
|
|
7869
|
+
command.query['fields'] = fields unless fields.nil?
|
|
7870
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
7871
|
+
execute_or_queue_command(command, &block)
|
|
7872
|
+
end
|
|
7873
|
+
|
|
7716
7874
|
# Creates key value entries in a key value map scoped to an organization,
|
|
7717
7875
|
# environment, or API proxy. **Note**: Supported for Apigee hybrid 1.8.x and
|
|
7718
7876
|
# higher.
|
|
@@ -10963,6 +11121,85 @@ module Google
|
|
|
10963
11121
|
execute_or_queue_command(command, &block)
|
|
10964
11122
|
end
|
|
10965
11123
|
|
|
11124
|
+
# Get the key value map scoped to an organization, environment, or API proxy.
|
|
11125
|
+
# @param [String] name
|
|
11126
|
+
# Required. Scope as indicated by the URI in which to fetch the key value map.
|
|
11127
|
+
# Use **one** of the following structures in your request: * `organizations/`
|
|
11128
|
+
# organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
|
|
11129
|
+
# organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
|
|
11130
|
+
# organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
|
|
11131
|
+
# is under an API Proxy resource that has the `space` attribute set, IAM
|
|
11132
|
+
# permissions are checked against the Space resource path. To learn more, read
|
|
11133
|
+
# the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
|
|
11134
|
+
# system-administration/spaces/apigee-spaces-overview).
|
|
11135
|
+
# @param [String] fields
|
|
11136
|
+
# Selector specifying which fields to include in a partial response.
|
|
11137
|
+
# @param [String] quota_user
|
|
11138
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
11139
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
11140
|
+
# @param [Google::Apis::RequestOptions] options
|
|
11141
|
+
# Request-specific options
|
|
11142
|
+
#
|
|
11143
|
+
# @yield [result, err] Result & error if block supplied
|
|
11144
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
|
|
11145
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
11146
|
+
#
|
|
11147
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
|
|
11148
|
+
#
|
|
11149
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
11150
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
11151
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
11152
|
+
def get_organization_keyvaluemap(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
11153
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
11154
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
|
|
11155
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
|
|
11156
|
+
command.params['name'] = name unless name.nil?
|
|
11157
|
+
command.query['fields'] = fields unless fields.nil?
|
|
11158
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
11159
|
+
execute_or_queue_command(command, &block)
|
|
11160
|
+
end
|
|
11161
|
+
|
|
11162
|
+
# Update the key value map scoped to an organization, environment, or API proxy.
|
|
11163
|
+
# @param [String] name
|
|
11164
|
+
# Required. Scope as indicated by the URI in which to fetch the key value map.
|
|
11165
|
+
# Use **one** of the following structures in your request: * `organizations/`
|
|
11166
|
+
# organization`/apis/`api`/keyvaluemaps/`keyvaluemap``. * `organizations/`
|
|
11167
|
+
# organization`/environments/`environment`/keyvaluemaps/`keyvaluemap`` * `
|
|
11168
|
+
# organizations/`organization`/keyvaluemaps/`keyvaluemap``. If the KeyValueMap
|
|
11169
|
+
# is under an API Proxy resource that has the `space` attribute set, IAM
|
|
11170
|
+
# permissions are checked against the Space resource path. To learn more, read
|
|
11171
|
+
# the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
|
|
11172
|
+
# system-administration/spaces/apigee-spaces-overview).
|
|
11173
|
+
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] google_cloud_apigee_v1_key_value_map_object
|
|
11174
|
+
# @param [String] fields
|
|
11175
|
+
# Selector specifying which fields to include in a partial response.
|
|
11176
|
+
# @param [String] quota_user
|
|
11177
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
11178
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
11179
|
+
# @param [Google::Apis::RequestOptions] options
|
|
11180
|
+
# Request-specific options
|
|
11181
|
+
#
|
|
11182
|
+
# @yield [result, err] Result & error if block supplied
|
|
11183
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] parsed result object
|
|
11184
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
11185
|
+
#
|
|
11186
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap]
|
|
11187
|
+
#
|
|
11188
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
11189
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
11190
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
11191
|
+
def update_organization_keyvaluemap(name, google_cloud_apigee_v1_key_value_map_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
11192
|
+
command = make_simple_command(:put, 'v1/{+name}', options)
|
|
11193
|
+
command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
|
|
11194
|
+
command.request_object = google_cloud_apigee_v1_key_value_map_object
|
|
11195
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap::Representation
|
|
11196
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
|
|
11197
|
+
command.params['name'] = name unless name.nil?
|
|
11198
|
+
command.query['fields'] = fields unless fields.nil?
|
|
11199
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
11200
|
+
execute_or_queue_command(command, &block)
|
|
11201
|
+
end
|
|
11202
|
+
|
|
10966
11203
|
# Creates key value entries in a key value map scoped to an organization,
|
|
10967
11204
|
# environment, or API proxy. **Note**: Supported for Apigee hybrid 1.8.x and
|
|
10968
11205
|
# higher.
|
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.115.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.115.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:
|