google-apis-travelimpactmodel_v1 0.11.0 → 0.12.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: 64b734dc40950b8ef7c1994b016ba4cf3bb8f2e7f1b72ee4ae3c04fb195768b6
|
|
4
|
+
data.tar.gz: a5df4be606dfd603899d9f61863e0a2b9f0e91bb8d79394d55320eed9bedcb96
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84f5edf14864420824438981dedd538d9fc495ac1eb9d7408e36e864872e773ce7fce1d22fc3aa33e8cb0e9a9ada41396c8dd74bcbaef4d3ec7c5e1ae075c28b
|
|
7
|
+
data.tar.gz: b8c367fa109ace93269f5b4caaef9f685572f7f50a62e566f90a766c20088cb62c08fc307fa5ec2051d80278edfe186e4aba03190e7ad55057b612204f46e6d9
|
data/CHANGELOG.md
CHANGED
|
@@ -427,6 +427,55 @@ module Google
|
|
|
427
427
|
end
|
|
428
428
|
end
|
|
429
429
|
|
|
430
|
+
# Profile describing the data handling characteristics of an MCP tool. When used
|
|
431
|
+
# within the McpTool.meta field, this message should be packed into a google.
|
|
432
|
+
# protobuf.Any and associated with the key: "google.com/tool.profiles/
|
|
433
|
+
# data_handling"
|
|
434
|
+
class McpToolDataHandlingProfile
|
|
435
|
+
include Google::Apis::Core::Hashable
|
|
436
|
+
|
|
437
|
+
# // The data access level of the tool's inputs.
|
|
438
|
+
# Corresponds to the JSON property `inputDataAccessLevel`
|
|
439
|
+
# @return [String]
|
|
440
|
+
attr_accessor :input_data_access_level
|
|
441
|
+
|
|
442
|
+
# The data access level of the tool's outputs.
|
|
443
|
+
# Corresponds to the JSON property `outputDataAccessLevel`
|
|
444
|
+
# @return [String]
|
|
445
|
+
attr_accessor :output_data_access_level
|
|
446
|
+
|
|
447
|
+
def initialize(**args)
|
|
448
|
+
update!(**args)
|
|
449
|
+
end
|
|
450
|
+
|
|
451
|
+
# Update properties of this object
|
|
452
|
+
def update!(**args)
|
|
453
|
+
@input_data_access_level = args[:input_data_access_level] if args.key?(:input_data_access_level)
|
|
454
|
+
@output_data_access_level = args[:output_data_access_level] if args.key?(:output_data_access_level)
|
|
455
|
+
end
|
|
456
|
+
end
|
|
457
|
+
|
|
458
|
+
# Profile describing the lifecycle stage of an MCP tool. When used within the
|
|
459
|
+
# McpTool.meta field, this message should be packed into a google.protobuf.Any
|
|
460
|
+
# and associated with the key: "google.com/tool.profiles/lifecycle"
|
|
461
|
+
class McpToolLifecycleProfile
|
|
462
|
+
include Google::Apis::Core::Hashable
|
|
463
|
+
|
|
464
|
+
# Output only. The current launch state of the MCP tool.
|
|
465
|
+
# Corresponds to the JSON property `launchState`
|
|
466
|
+
# @return [String]
|
|
467
|
+
attr_accessor :launch_state
|
|
468
|
+
|
|
469
|
+
def initialize(**args)
|
|
470
|
+
update!(**args)
|
|
471
|
+
end
|
|
472
|
+
|
|
473
|
+
# Update properties of this object
|
|
474
|
+
def update!(**args)
|
|
475
|
+
@launch_state = args[:launch_state] if args.key?(:launch_state)
|
|
476
|
+
end
|
|
477
|
+
end
|
|
478
|
+
|
|
430
479
|
# Travel Impact Model version. For more information about the model versioning
|
|
431
480
|
# see [GitHub](https://github.com/google/travel-impact-model/#versioning).
|
|
432
481
|
class ModelVersion
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module TravelimpactmodelV1
|
|
18
18
|
# Version of the google-apis-travelimpactmodel_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.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260127"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -94,6 +94,18 @@ module Google
|
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
|
95
95
|
end
|
|
96
96
|
|
|
97
|
+
class McpToolDataHandlingProfile
|
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
99
|
+
|
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
class McpToolLifecycleProfile
|
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
105
|
+
|
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
107
|
+
end
|
|
108
|
+
|
|
97
109
|
class ModelVersion
|
|
98
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
99
111
|
|
|
@@ -239,6 +251,21 @@ module Google
|
|
|
239
251
|
end
|
|
240
252
|
end
|
|
241
253
|
|
|
254
|
+
class McpToolDataHandlingProfile
|
|
255
|
+
# @private
|
|
256
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
257
|
+
property :input_data_access_level, as: 'inputDataAccessLevel'
|
|
258
|
+
property :output_data_access_level, as: 'outputDataAccessLevel'
|
|
259
|
+
end
|
|
260
|
+
end
|
|
261
|
+
|
|
262
|
+
class McpToolLifecycleProfile
|
|
263
|
+
# @private
|
|
264
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
265
|
+
property :launch_state, as: 'launchState'
|
|
266
|
+
end
|
|
267
|
+
end
|
|
268
|
+
|
|
242
269
|
class ModelVersion
|
|
243
270
|
# @private
|
|
244
271
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-travelimpactmodel_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
|
|
@@ -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-travelimpactmodel_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-travelimpactmodel_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-travelimpactmodel_v1/v0.12.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-travelimpactmodel_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|