google-apis-developerconnect_v1 0.27.0 → 0.28.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: 7d26d92fdf671f45fb73937776d445732f8ed220fb106c99e23371b72221c015
|
|
4
|
+
data.tar.gz: e89d794c01cca6b45a78331f821f4573c97ee87bb530aaed6595db48d8bad2c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2fd23dbb6622481e634a1307161cfebfcb627b3b6b5e26c88d35f39cd53293f830ef9fdaca8890e4f658b4ef621149d3d8266622e4bfe9583dca1b2be60aff0d
|
|
7
|
+
data.tar.gz: cd90df0783e21430368056f2551fac624887cf77612c6a8d7f63b07ef90409f6d5021817e3f91b2fa34b4dd015acc286af25e5d4783577c440e3ed37ee7d4651
|
data/CHANGELOG.md
CHANGED
|
@@ -1047,6 +1047,32 @@ module Google
|
|
|
1047
1047
|
end
|
|
1048
1048
|
end
|
|
1049
1049
|
|
|
1050
|
+
# Visibility rules for individual tool parameters (fields). This allows
|
|
1051
|
+
# producers to hide specific fields in tools/list and tools/call.
|
|
1052
|
+
class FieldVisibility
|
|
1053
|
+
include Google::Apis::Core::Hashable
|
|
1054
|
+
|
|
1055
|
+
# The visibility restriction labels for this field (comma-separated).
|
|
1056
|
+
# Corresponds to the JSON property `restriction`
|
|
1057
|
+
# @return [String]
|
|
1058
|
+
attr_accessor :restriction
|
|
1059
|
+
|
|
1060
|
+
# The name of the parameter in the input_schema or output_schema.
|
|
1061
|
+
# Corresponds to the JSON property `selector`
|
|
1062
|
+
# @return [String]
|
|
1063
|
+
attr_accessor :selector
|
|
1064
|
+
|
|
1065
|
+
def initialize(**args)
|
|
1066
|
+
update!(**args)
|
|
1067
|
+
end
|
|
1068
|
+
|
|
1069
|
+
# Update properties of this object
|
|
1070
|
+
def update!(**args)
|
|
1071
|
+
@restriction = args[:restriction] if args.key?(:restriction)
|
|
1072
|
+
@selector = args[:selector] if args.key?(:selector)
|
|
1073
|
+
end
|
|
1074
|
+
end
|
|
1075
|
+
|
|
1050
1076
|
# Message for responding to finishing an OAuth flow.
|
|
1051
1077
|
class FinishOAuthResponse
|
|
1052
1078
|
include Google::Apis::Core::Hashable
|
|
@@ -2066,6 +2092,41 @@ module Google
|
|
|
2066
2092
|
end
|
|
2067
2093
|
end
|
|
2068
2094
|
|
|
2095
|
+
# Profile describing the visibility restriction of an MCP tool. Key: "google.com/
|
|
2096
|
+
# tool.profiles/visibility.restriction"
|
|
2097
|
+
class McpToolVisibility
|
|
2098
|
+
include Google::Apis::Core::Hashable
|
|
2099
|
+
|
|
2100
|
+
# A list of field-level visibility restrictions.
|
|
2101
|
+
# Corresponds to the JSON property `fieldVisibility`
|
|
2102
|
+
# @return [Array<Google::Apis::DeveloperconnectV1::FieldVisibility>]
|
|
2103
|
+
attr_accessor :field_visibility
|
|
2104
|
+
|
|
2105
|
+
# The strategy used to enforce visibility restrictions. DO NOT USE. This field
|
|
2106
|
+
# is not yet implemented.
|
|
2107
|
+
# Corresponds to the JSON property `visibilityEnforcementStrategy`
|
|
2108
|
+
# @return [String]
|
|
2109
|
+
attr_accessor :visibility_enforcement_strategy
|
|
2110
|
+
|
|
2111
|
+
# The visibility restriction labels for the tool itself (e.g., "
|
|
2112
|
+
# PRODUCER_DEFINED_PREVIEW"). Multiple labels can be provided as a comma-
|
|
2113
|
+
# separated string.
|
|
2114
|
+
# Corresponds to the JSON property `visibilityRestriction`
|
|
2115
|
+
# @return [String]
|
|
2116
|
+
attr_accessor :visibility_restriction
|
|
2117
|
+
|
|
2118
|
+
def initialize(**args)
|
|
2119
|
+
update!(**args)
|
|
2120
|
+
end
|
|
2121
|
+
|
|
2122
|
+
# Update properties of this object
|
|
2123
|
+
def update!(**args)
|
|
2124
|
+
@field_visibility = args[:field_visibility] if args.key?(:field_visibility)
|
|
2125
|
+
@visibility_enforcement_strategy = args[:visibility_enforcement_strategy] if args.key?(:visibility_enforcement_strategy)
|
|
2126
|
+
@visibility_restriction = args[:visibility_restriction] if args.key?(:visibility_restriction)
|
|
2127
|
+
end
|
|
2128
|
+
end
|
|
2129
|
+
|
|
2069
2130
|
# Represents an OAuth token of the account that authorized the Connection, and
|
|
2070
2131
|
# associated metadata.
|
|
2071
2132
|
class OAuthCredential
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DeveloperconnectV1
|
|
18
18
|
# Version of the google-apis-developerconnect_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.28.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 = "20260824"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -178,6 +178,12 @@ module Google
|
|
|
178
178
|
include Google::Apis::Core::JsonObjectSupport
|
|
179
179
|
end
|
|
180
180
|
|
|
181
|
+
class FieldVisibility
|
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
|
+
|
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
185
|
+
end
|
|
186
|
+
|
|
181
187
|
class FinishOAuthResponse
|
|
182
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
189
|
|
|
@@ -334,6 +340,12 @@ module Google
|
|
|
334
340
|
include Google::Apis::Core::JsonObjectSupport
|
|
335
341
|
end
|
|
336
342
|
|
|
343
|
+
class McpToolVisibility
|
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
345
|
+
|
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
347
|
+
end
|
|
348
|
+
|
|
337
349
|
class OAuthCredential
|
|
338
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
339
351
|
|
|
@@ -735,6 +747,14 @@ module Google
|
|
|
735
747
|
end
|
|
736
748
|
end
|
|
737
749
|
|
|
750
|
+
class FieldVisibility
|
|
751
|
+
# @private
|
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
753
|
+
property :restriction, as: 'restriction'
|
|
754
|
+
property :selector, as: 'selector'
|
|
755
|
+
end
|
|
756
|
+
end
|
|
757
|
+
|
|
738
758
|
class FinishOAuthResponse
|
|
739
759
|
# @private
|
|
740
760
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1014,6 +1034,16 @@ module Google
|
|
|
1014
1034
|
end
|
|
1015
1035
|
end
|
|
1016
1036
|
|
|
1037
|
+
class McpToolVisibility
|
|
1038
|
+
# @private
|
|
1039
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1040
|
+
collection :field_visibility, as: 'fieldVisibility', class: Google::Apis::DeveloperconnectV1::FieldVisibility, decorator: Google::Apis::DeveloperconnectV1::FieldVisibility::Representation
|
|
1041
|
+
|
|
1042
|
+
property :visibility_enforcement_strategy, as: 'visibilityEnforcementStrategy'
|
|
1043
|
+
property :visibility_restriction, as: 'visibilityRestriction'
|
|
1044
|
+
end
|
|
1045
|
+
end
|
|
1046
|
+
|
|
1017
1047
|
class OAuthCredential
|
|
1018
1048
|
# @private
|
|
1019
1049
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-developerconnect_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.28.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-developerconnect_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.28.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-developerconnect_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|