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: 8579eba6e04b2eceb24e3878cc8bad534fcef4a5deeeb811db1d1bb630f79369
4
- data.tar.gz: 3d13ccf3c32050807046122601c1f4c6587df3b3d2163ee4e45f1114bbd47f32
3
+ metadata.gz: 64b734dc40950b8ef7c1994b016ba4cf3bb8f2e7f1b72ee4ae3c04fb195768b6
4
+ data.tar.gz: a5df4be606dfd603899d9f61863e0a2b9f0e91bb8d79394d55320eed9bedcb96
5
5
  SHA512:
6
- metadata.gz: 70f9343c49acbf84e50d405213545c5a611cfb56506fad0f6db5bfdfadd9c8acb0f028b7f784fa7e15856d66b8de1dd118c174a84bf365cf57da07780df99ea1
7
- data.tar.gz: 9dcde3f16def8fc70c03785ed3bf64b8cd32d113e3b3095a54715019e66a1b2d65ec5bc318615251756bed21cf504b88cc6ffed3944af4805cbe8fc68a40990f
6
+ metadata.gz: 84f5edf14864420824438981dedd538d9fc495ac1eb9d7408e36e864872e773ce7fce1d22fc3aa33e8cb0e9a9ada41396c8dd74bcbaef4d3ec7c5e1ae075c28b
7
+ data.tar.gz: b8c367fa109ace93269f5b4caaef9f685572f7f50a62e566f90a766c20088cb62c08fc307fa5ec2051d80278edfe186e4aba03190e7ad55057b612204f46e6d9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-travelimpactmodel_v1
2
2
 
3
+ ### v0.12.0 (2026-02-01)
4
+
5
+ * Regenerated from discovery document revision 20260127
6
+
3
7
  ### v0.11.0 (2025-11-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20251102
@@ -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.11.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 = "20251102"
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.11.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.11.0
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: