google-apis-apigee_v1 0.128.0 → 0.129.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a29498ca66c9429b06bd49b40ee8afc74c2eeaa6b65f45b6fd9aec437163bf54
|
|
4
|
+
data.tar.gz: 2a743a33003bdd6052674d1db3ea99ba55b020e5c4d2df68d748908c5bf2c52d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc39db1be766aadfd37876ac22de1184ee121b83091cd7745b674acd73be15321f99225c0310d6b026b9c2dfa379338309e0263872f36f3631cb82d3b7bd0269
|
|
7
|
+
data.tar.gz: 19634a558c1ecea0595c6e6bfb81ab49c17735d5e2b6df9c78ad891450c21223d69f66f376652f03d5084b69b142fc1e7030f5daf593d0c5e5a707c2a97e5e77
|
data/CHANGELOG.md
CHANGED
|
@@ -7756,6 +7756,63 @@ module Google
|
|
|
7756
7756
|
end
|
|
7757
7757
|
end
|
|
7758
7758
|
|
|
7759
|
+
# Deployed MCP server configuration for an organization. Response for
|
|
7760
|
+
# GetMcpServerConfig. Org-scoped singleton: each organization has exactly one
|
|
7761
|
+
# McpServerConfig. Multiple logical MCP servers within the same org are
|
|
7762
|
+
# expressed inside the Cloud Storage blob (McpServerConfigData.hosts map), not
|
|
7763
|
+
# as multiple McpServerConfig resources.
|
|
7764
|
+
class GoogleCloudApigeeV1McpServerConfig
|
|
7765
|
+
include Google::Apis::Core::Hashable
|
|
7766
|
+
|
|
7767
|
+
# Output only. Cloud Storage URI to the McpServerConfigData blob in the Apigee
|
|
7768
|
+
# tenant project bucket. The sidecar fetches this URI using Cloud Storage, and
|
|
7769
|
+
# deserializes the. protojson blob to McpServerConfigData. Treat this as an
|
|
7770
|
+
# opaque URI — its format may change. Example: gs://`apigee-tp-bucket`/apigee-
|
|
7771
|
+
# mcp-config-`org`-`revision_id`.json
|
|
7772
|
+
# Corresponds to the JSON property `mcpServerConfigDataLocation`
|
|
7773
|
+
# @return [String]
|
|
7774
|
+
attr_accessor :mcp_server_config_data_location
|
|
7775
|
+
|
|
7776
|
+
# Identifier. Resource name in the singleton form: organizations/`org`/
|
|
7777
|
+
# mcpServerConfig
|
|
7778
|
+
# Corresponds to the JSON property `name`
|
|
7779
|
+
# @return [String]
|
|
7780
|
+
attr_accessor :name
|
|
7781
|
+
|
|
7782
|
+
# Output only. Time at which this McpServerConfig revision was created. Mirrors
|
|
7783
|
+
# IngressConfig.revision_create_time.
|
|
7784
|
+
# Corresponds to the JSON property `revisionCreateTime`
|
|
7785
|
+
# @return [String]
|
|
7786
|
+
attr_accessor :revision_create_time
|
|
7787
|
+
|
|
7788
|
+
# Output only. Revision ID that defines the ordering on McpServerConfig
|
|
7789
|
+
# revisions. Higher values indicate more recently deployed configurations.
|
|
7790
|
+
# Monotonically non-decreasing per organization. Mirrors IngressConfig.
|
|
7791
|
+
# revision_id.
|
|
7792
|
+
# Corresponds to the JSON property `revisionId`
|
|
7793
|
+
# @return [Fixnum]
|
|
7794
|
+
attr_accessor :revision_id
|
|
7795
|
+
|
|
7796
|
+
# Output only. Unique ID for the McpServerConfig that will only change if the
|
|
7797
|
+
# organization is deleted and recreated.
|
|
7798
|
+
# Corresponds to the JSON property `uid`
|
|
7799
|
+
# @return [String]
|
|
7800
|
+
attr_accessor :uid
|
|
7801
|
+
|
|
7802
|
+
def initialize(**args)
|
|
7803
|
+
update!(**args)
|
|
7804
|
+
end
|
|
7805
|
+
|
|
7806
|
+
# Update properties of this object
|
|
7807
|
+
def update!(**args)
|
|
7808
|
+
@mcp_server_config_data_location = args[:mcp_server_config_data_location] if args.key?(:mcp_server_config_data_location)
|
|
7809
|
+
@name = args[:name] if args.key?(:name)
|
|
7810
|
+
@revision_create_time = args[:revision_create_time] if args.key?(:revision_create_time)
|
|
7811
|
+
@revision_id = args[:revision_id] if args.key?(:revision_id)
|
|
7812
|
+
@uid = args[:uid] if args.key?(:uid)
|
|
7813
|
+
end
|
|
7814
|
+
end
|
|
7815
|
+
|
|
7759
7816
|
# Encapsulates additional information about query execution.
|
|
7760
7817
|
class GoogleCloudApigeeV1Metadata
|
|
7761
7818
|
include Google::Apis::Core::Hashable
|
|
@@ -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.129.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 = "20260827"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1198,6 +1198,12 @@ module Google
|
|
|
1198
1198
|
include Google::Apis::Core::JsonObjectSupport
|
|
1199
1199
|
end
|
|
1200
1200
|
|
|
1201
|
+
class GoogleCloudApigeeV1McpServerConfig
|
|
1202
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1203
|
+
|
|
1204
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1205
|
+
end
|
|
1206
|
+
|
|
1201
1207
|
class GoogleCloudApigeeV1Metadata
|
|
1202
1208
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1203
1209
|
|
|
@@ -4208,6 +4214,17 @@ module Google
|
|
|
4208
4214
|
end
|
|
4209
4215
|
end
|
|
4210
4216
|
|
|
4217
|
+
class GoogleCloudApigeeV1McpServerConfig
|
|
4218
|
+
# @private
|
|
4219
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4220
|
+
property :mcp_server_config_data_location, as: 'mcpServerConfigDataLocation'
|
|
4221
|
+
property :name, as: 'name'
|
|
4222
|
+
property :revision_create_time, as: 'revisionCreateTime'
|
|
4223
|
+
property :revision_id, :numeric_string => true, as: 'revisionId'
|
|
4224
|
+
property :uid, as: 'uid'
|
|
4225
|
+
end
|
|
4226
|
+
end
|
|
4227
|
+
|
|
4211
4228
|
class GoogleCloudApigeeV1Metadata
|
|
4212
4229
|
# @private
|
|
4213
4230
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -270,6 +270,39 @@ module Google
|
|
|
270
270
|
execute_or_queue_command(command, &block)
|
|
271
271
|
end
|
|
272
272
|
|
|
273
|
+
# Gets the deployed MCP server configuration for an organization.
|
|
274
|
+
# McpServerConfig is an org-scoped singleton (one per organization). The
|
|
275
|
+
# returned configuration may be up to 30 seconds out of date by default.
|
|
276
|
+
# @param [String] name
|
|
277
|
+
# Required. Name of the deployed MCP server configuration for the organization
|
|
278
|
+
# in the singleton form: `organizations/`org`/mcpServerConfig`.
|
|
279
|
+
# @param [String] fields
|
|
280
|
+
# Selector specifying which fields to include in a partial response.
|
|
281
|
+
# @param [String] quota_user
|
|
282
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
283
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
284
|
+
# @param [Google::Apis::RequestOptions] options
|
|
285
|
+
# Request-specific options
|
|
286
|
+
#
|
|
287
|
+
# @yield [result, err] Result & error if block supplied
|
|
288
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1McpServerConfig] parsed result object
|
|
289
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
290
|
+
#
|
|
291
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1McpServerConfig]
|
|
292
|
+
#
|
|
293
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
294
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
295
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
296
|
+
def get_organization_mcp_server_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
297
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
298
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1McpServerConfig::Representation
|
|
299
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1McpServerConfig
|
|
300
|
+
command.params['name'] = name unless name.nil?
|
|
301
|
+
command.query['fields'] = fields unless fields.nil?
|
|
302
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
303
|
+
execute_or_queue_command(command, &block)
|
|
304
|
+
end
|
|
305
|
+
|
|
273
306
|
# Gets the project ID and region for an Apigee organization.
|
|
274
307
|
# @param [String] name
|
|
275
308
|
# Required. Apigee organization name in the following format: `organizations/`
|
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.129.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.129.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:
|