google-apis-ces_v1 0.6.0 → 0.7.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: 873278c671d2dd73502342cb7379aa4eba49f5517dfebfc9d926bea5e7e131b6
4
- data.tar.gz: a87af2b5d2d64b8f52011862c8b78e7b4ddcaa11b985c5bd2b5b3b477b324c22
3
+ metadata.gz: 33dcdb9134cffcc757ea84f471d0b1292b3ddbf9547c07536f81d87b8b097312
4
+ data.tar.gz: cdd0d2da6c2c4175dd6c69c2077663a396695dad89f2b7bdabd01816881a5c71
5
5
  SHA512:
6
- metadata.gz: 53e24eb0fed81227aa3034e19bc3f09ee5f939290062c8ac19d83b221cbbf7eedb4734fe50d6d61aeb6a63984cf06ea6a1a7caa1ad32b40d4249354f66f872b7
7
- data.tar.gz: 99e1c5ef68963bdc980ed20e1fc7e6bc1ce92a093a68631f223a3b149ab6f3bca869df12c9766df3abcee6b21026301906bb7868aee5f51db290525ba9c1a2fb
6
+ metadata.gz: ac2ca26fccf2e21f53f0ad1820bf52e28a67a338e2a6f3042e42de097164e4f6ab60ae8ef95819e73afb4484227816f95b7db6a76c3db0df49805679f8b8216a
7
+ data.tar.gz: ea5d86ab0198461443c5fdeff1b8548e657ec442b4f38a1904fcca40abd1519a76df4887039adac16d6dd1479e439a3aae6344bcc108f09d25221e8b3e108ac0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-ces_v1
2
2
 
3
+ ### v0.7.0 (2026-05-10)
4
+
5
+ * Regenerated from discovery document revision 20260429
6
+
3
7
  ### v0.6.0 (2026-04-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20260422
@@ -237,6 +237,12 @@ module Google
237
237
  # @return [String]
238
238
  attr_accessor :update_time
239
239
 
240
+ # Output only. Misconfigurations or errors in the agent that may affect agent
241
+ # quality.
242
+ # Corresponds to the JSON property `validationErrors`
243
+ # @return [Array<String>]
244
+ attr_accessor :validation_errors
245
+
240
246
  def initialize(**args)
241
247
  update!(**args)
242
248
  end
@@ -265,6 +271,7 @@ module Google
265
271
  @toolsets = args[:toolsets] if args.key?(:toolsets)
266
272
  @transfer_rules = args[:transfer_rules] if args.key?(:transfer_rules)
267
273
  @update_time = args[:update_time] if args.key?(:update_time)
274
+ @validation_errors = args[:validation_errors] if args.key?(:validation_errors)
268
275
  end
269
276
  end
270
277
 
@@ -294,6 +301,97 @@ module Google
294
301
  end
295
302
  end
296
303
 
304
+ # AgentCard conveys key information about a remote agent. It is a trimmed
305
+ # version of the AgentCard defined in the A2A protocol https://a2a-protocol.org/
306
+ # dev/specification/#441-agentcard
307
+ class AgentCard
308
+ include Google::Apis::Core::Hashable
309
+
310
+ # Required. A description of the agent's domain of action/solution space.
311
+ # Corresponds to the JSON property `description`
312
+ # @return [String]
313
+ attr_accessor :description
314
+
315
+ # Required. A human-readable name for the agent.
316
+ # Corresponds to the JSON property `name`
317
+ # @return [String]
318
+ attr_accessor :name
319
+
320
+ # Required. Skills represent a unit of ability an agent can perform. This may
321
+ # somewhat abstract but represents a more focused set of actions that the agent
322
+ # is highly likely to succeed at.
323
+ # Corresponds to the JSON property `skills`
324
+ # @return [Array<Google::Apis::CesV1::AgentSkill>]
325
+ attr_accessor :skills
326
+
327
+ # Required. Ordered list of supported interfaces. The first entry is preferred.
328
+ # Corresponds to the JSON property `supportedInterfaces`
329
+ # @return [Array<Google::Apis::CesV1::AgentInterface>]
330
+ attr_accessor :supported_interfaces
331
+
332
+ # Required. The version of the agent.
333
+ # Corresponds to the JSON property `version`
334
+ # @return [String]
335
+ attr_accessor :version
336
+
337
+ def initialize(**args)
338
+ update!(**args)
339
+ end
340
+
341
+ # Update properties of this object
342
+ def update!(**args)
343
+ @description = args[:description] if args.key?(:description)
344
+ @name = args[:name] if args.key?(:name)
345
+ @skills = args[:skills] if args.key?(:skills)
346
+ @supported_interfaces = args[:supported_interfaces] if args.key?(:supported_interfaces)
347
+ @version = args[:version] if args.key?(:version)
348
+ end
349
+ end
350
+
351
+ # Declares a combination of a target URL, transport and protocol version for
352
+ # interacting with the agent. This allows agents to expose the same
353
+ # functionality over multiple protocol binding mechanisms.
354
+ class AgentInterface
355
+ include Google::Apis::Core::Hashable
356
+
357
+ # Required. The protocol binding supported at this URL. This is an open form
358
+ # string, to be easily extended for other protocol bindings. The core ones
359
+ # officially supported are `JSONRPC`, `GRPC` and `HTTP+JSON`.
360
+ # Corresponds to the JSON property `protocolBinding`
361
+ # @return [String]
362
+ attr_accessor :protocol_binding
363
+
364
+ # Required. The version of the A2A protocol this interface exposes. Use the
365
+ # latest supported minor version per major version. Examples: "0.3", "1.0"
366
+ # Corresponds to the JSON property `protocolVersion`
367
+ # @return [String]
368
+ attr_accessor :protocol_version
369
+
370
+ # Tenant ID to be used in the request when calling the agent.
371
+ # Corresponds to the JSON property `tenant`
372
+ # @return [String]
373
+ attr_accessor :tenant
374
+
375
+ # Required. The URL where this interface is available. Must be a valid absolute
376
+ # HTTPS URL in production. Example: "https://api.example.com/a2a/v1", "https://
377
+ # grpc.example.com/a2a"
378
+ # Corresponds to the JSON property `url`
379
+ # @return [String]
380
+ attr_accessor :url
381
+
382
+ def initialize(**args)
383
+ update!(**args)
384
+ end
385
+
386
+ # Update properties of this object
387
+ def update!(**args)
388
+ @protocol_binding = args[:protocol_binding] if args.key?(:protocol_binding)
389
+ @protocol_version = args[:protocol_version] if args.key?(:protocol_version)
390
+ @tenant = args[:tenant] if args.key?(:tenant)
391
+ @url = args[:url] if args.key?(:url)
392
+ end
393
+ end
394
+
297
395
  # Default agent type. The agent uses instructions and callbacks specified in the
298
396
  # agent to perform the task using a large language model.
299
397
  class AgentLlmAgent
@@ -373,6 +471,63 @@ module Google
373
471
  end
374
472
  end
375
473
 
474
+ # Represents a distinct capability or function that an agent can perform.
475
+ class AgentSkill
476
+ include Google::Apis::Core::Hashable
477
+
478
+ # Required. A detailed description of the skill.
479
+ # Corresponds to the JSON property `description`
480
+ # @return [String]
481
+ attr_accessor :description
482
+
483
+ # Example prompts or scenarios that this skill can handle.
484
+ # Corresponds to the JSON property `examples`
485
+ # @return [Array<String>]
486
+ attr_accessor :examples
487
+
488
+ # Required. A unique identifier for the agent's skill.
489
+ # Corresponds to the JSON property `id`
490
+ # @return [String]
491
+ attr_accessor :id
492
+
493
+ # The set of supported input media types for this skill, overriding the agent's
494
+ # defaults.
495
+ # Corresponds to the JSON property `inputModes`
496
+ # @return [Array<String>]
497
+ attr_accessor :input_modes
498
+
499
+ # Required. A human-readable name for the skill.
500
+ # Corresponds to the JSON property `name`
501
+ # @return [String]
502
+ attr_accessor :name
503
+
504
+ # The set of supported output media types for this skill, overriding the agent's
505
+ # defaults.
506
+ # Corresponds to the JSON property `outputModes`
507
+ # @return [Array<String>]
508
+ attr_accessor :output_modes
509
+
510
+ # Required. A set of keywords describing the skill's capabilities.
511
+ # Corresponds to the JSON property `tags`
512
+ # @return [Array<String>]
513
+ attr_accessor :tags
514
+
515
+ def initialize(**args)
516
+ update!(**args)
517
+ end
518
+
519
+ # Update properties of this object
520
+ def update!(**args)
521
+ @description = args[:description] if args.key?(:description)
522
+ @examples = args[:examples] if args.key?(:examples)
523
+ @id = args[:id] if args.key?(:id)
524
+ @input_modes = args[:input_modes] if args.key?(:input_modes)
525
+ @name = args[:name] if args.key?(:name)
526
+ @output_modes = args[:output_modes] if args.key?(:output_modes)
527
+ @tags = args[:tags] if args.key?(:tags)
528
+ end
529
+ end
530
+
376
531
  # Represents a tool that allows the agent to call another agent.
377
532
  class AgentTool
378
533
  include Google::Apis::Core::Hashable
@@ -716,11 +871,21 @@ module Google
716
871
  # @return [String]
717
872
  attr_accessor :update_time
718
873
 
874
+ # Output only. Misconfigurations or warnings in the app.
875
+ # Corresponds to the JSON property `validationErrors`
876
+ # @return [Array<String>]
877
+ attr_accessor :validation_errors
878
+
719
879
  # Optional. The declarations of the variables.
720
880
  # Corresponds to the JSON property `variableDeclarations`
721
881
  # @return [Array<Google::Apis::CesV1::AppVariableDeclaration>]
722
882
  attr_accessor :variable_declarations
723
883
 
884
+ # VPC-SC settings for the app.
885
+ # Corresponds to the JSON property `vpcScSettings`
886
+ # @return [Google::Apis::CesV1::VpcScSettings]
887
+ attr_accessor :vpc_sc_settings
888
+
724
889
  def initialize(**args)
725
890
  update!(**args)
726
891
  end
@@ -752,7 +917,9 @@ module Google
752
917
  @time_zone_settings = args[:time_zone_settings] if args.key?(:time_zone_settings)
753
918
  @tool_execution_mode = args[:tool_execution_mode] if args.key?(:tool_execution_mode)
754
919
  @update_time = args[:update_time] if args.key?(:update_time)
920
+ @validation_errors = args[:validation_errors] if args.key?(:validation_errors)
755
921
  @variable_declarations = args[:variable_declarations] if args.key?(:variable_declarations)
922
+ @vpc_sc_settings = args[:vpc_sc_settings] if args.key?(:vpc_sc_settings)
756
923
  end
757
924
  end
758
925
 
@@ -5385,6 +5552,39 @@ module Google
5385
5552
  end
5386
5553
  end
5387
5554
 
5555
+ # Represents a tool that allows the agent to call another remote agent.
5556
+ class RemoteAgentTool
5557
+ include Google::Apis::Core::Hashable
5558
+
5559
+ # AgentCard conveys key information about a remote agent. It is a trimmed
5560
+ # version of the AgentCard defined in the A2A protocol https://a2a-protocol.org/
5561
+ # dev/specification/#441-agentcard
5562
+ # Corresponds to the JSON property `agentCard`
5563
+ # @return [Google::Apis::CesV1::AgentCard]
5564
+ attr_accessor :agent_card
5565
+
5566
+ # Required. The description of the tool.
5567
+ # Corresponds to the JSON property `description`
5568
+ # @return [String]
5569
+ attr_accessor :description
5570
+
5571
+ # Required. The name of the tool.
5572
+ # Corresponds to the JSON property `name`
5573
+ # @return [String]
5574
+ attr_accessor :name
5575
+
5576
+ def initialize(**args)
5577
+ update!(**args)
5578
+ end
5579
+
5580
+ # Update properties of this object
5581
+ def update!(**args)
5582
+ @agent_card = args[:agent_card] if args.key?(:agent_card)
5583
+ @description = args[:description] if args.key?(:description)
5584
+ @name = args[:name] if args.key?(:name)
5585
+ end
5586
+ end
5587
+
5388
5588
  # Request message for AgentService.RestoreAppVersion
5389
5589
  class RestoreAppVersionRequest
5390
5590
  include Google::Apis::Core::Hashable
@@ -6426,11 +6626,22 @@ module Google
6426
6626
  # @return [Google::Apis::CesV1::PythonFunction]
6427
6627
  attr_accessor :python_function
6428
6628
 
6629
+ # Represents a tool that allows the agent to call another remote agent.
6630
+ # Corresponds to the JSON property `remoteAgentTool`
6631
+ # @return [Google::Apis::CesV1::RemoteAgentTool]
6632
+ attr_accessor :remote_agent_tool
6633
+
6429
6634
  # Pre-defined system tool.
6430
6635
  # Corresponds to the JSON property `systemTool`
6431
6636
  # @return [Google::Apis::CesV1::SystemTool]
6432
6637
  attr_accessor :system_tool
6433
6638
 
6639
+ # Optional. The timeout for the tool execution. If not set, the default timeout
6640
+ # is 30 seconds for `SYNCHRONOUS` tools and 60 seconds for `ASYNCHRONOUS` tools.
6641
+ # Corresponds to the JSON property `timeout`
6642
+ # @return [String]
6643
+ attr_accessor :timeout
6644
+
6434
6645
  # Configuration for tool behavior in fake mode.
6435
6646
  # Corresponds to the JSON property `toolFakeConfig`
6436
6647
  # @return [Google::Apis::CesV1::ToolFakeConfig]
@@ -6470,7 +6681,9 @@ module Google
6470
6681
  @name = args[:name] if args.key?(:name)
6471
6682
  @open_api_tool = args[:open_api_tool] if args.key?(:open_api_tool)
6472
6683
  @python_function = args[:python_function] if args.key?(:python_function)
6684
+ @remote_agent_tool = args[:remote_agent_tool] if args.key?(:remote_agent_tool)
6473
6685
  @system_tool = args[:system_tool] if args.key?(:system_tool)
6686
+ @timeout = args[:timeout] if args.key?(:timeout)
6474
6687
  @tool_fake_config = args[:tool_fake_config] if args.key?(:tool_fake_config)
6475
6688
  @update_time = args[:update_time] if args.key?(:update_time)
6476
6689
  @widget_tool = args[:widget_tool] if args.key?(:widget_tool)
@@ -6945,6 +7158,29 @@ module Google
6945
7158
  end
6946
7159
  end
6947
7160
 
7161
+ # VPC-SC settings for the app.
7162
+ class VpcScSettings
7163
+ include Google::Apis::Core::Hashable
7164
+
7165
+ # Optional. The allowed HTTP(s) origins that OpenAPI tools in the App are able
7166
+ # to directly call when VPC Service Controls are enabled. These strings must
7167
+ # match the origin exactly, including the port if specified. For example, "https:
7168
+ # //example.com" or "https://example.com:443". This list does not yet apply to
7169
+ # Python tools that may make direct HTTP calls.
7170
+ # Corresponds to the JSON property `allowedOrigins`
7171
+ # @return [Array<String>]
7172
+ attr_accessor :allowed_origins
7173
+
7174
+ def initialize(**args)
7175
+ update!(**args)
7176
+ end
7177
+
7178
+ # Update properties of this object
7179
+ def update!(**args)
7180
+ @allowed_origins = args[:allowed_origins] if args.key?(:allowed_origins)
7181
+ end
7182
+ end
7183
+
6948
7184
  # Represents a single web search query and its associated search uri.
6949
7185
  class WebSearchQuery
6950
7186
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CesV1
18
18
  # Version of the google-apis-ces_v1 gem
19
- GEM_VERSION = "0.6.0"
19
+ GEM_VERSION = "0.7.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 = "20260422"
25
+ REVISION = "20260429"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,18 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class AgentCard
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
55
+ class AgentInterface
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
49
61
  class AgentLlmAgent
50
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
63
 
@@ -58,6 +70,12 @@ module Google
58
70
  include Google::Apis::Core::JsonObjectSupport
59
71
  end
60
72
 
73
+ class AgentSkill
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
61
79
  class AgentTool
62
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
81
 
@@ -862,6 +880,12 @@ module Google
862
880
  include Google::Apis::Core::JsonObjectSupport
863
881
  end
864
882
 
883
+ class RemoteAgentTool
884
+ class Representation < Google::Apis::Core::JsonRepresentation; end
885
+
886
+ include Google::Apis::Core::JsonObjectSupport
887
+ end
888
+
865
889
  class RestoreAppVersionRequest
866
890
  class Representation < Google::Apis::Core::JsonRepresentation; end
867
891
 
@@ -1102,6 +1126,12 @@ module Google
1102
1126
  include Google::Apis::Core::JsonObjectSupport
1103
1127
  end
1104
1128
 
1129
+ class VpcScSettings
1130
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1131
+
1132
+ include Google::Apis::Core::JsonObjectSupport
1133
+ end
1134
+
1105
1135
  class WebSearchQuery
1106
1136
  class Representation < Google::Apis::Core::JsonRepresentation; end
1107
1137
 
@@ -1181,6 +1211,7 @@ module Google
1181
1211
  collection :transfer_rules, as: 'transferRules', class: Google::Apis::CesV1::TransferRule, decorator: Google::Apis::CesV1::TransferRule::Representation
1182
1212
 
1183
1213
  property :update_time, as: 'updateTime'
1214
+ collection :validation_errors, as: 'validationErrors'
1184
1215
  end
1185
1216
  end
1186
1217
 
@@ -1192,6 +1223,29 @@ module Google
1192
1223
  end
1193
1224
  end
1194
1225
 
1226
+ class AgentCard
1227
+ # @private
1228
+ class Representation < Google::Apis::Core::JsonRepresentation
1229
+ property :description, as: 'description'
1230
+ property :name, as: 'name'
1231
+ collection :skills, as: 'skills', class: Google::Apis::CesV1::AgentSkill, decorator: Google::Apis::CesV1::AgentSkill::Representation
1232
+
1233
+ collection :supported_interfaces, as: 'supportedInterfaces', class: Google::Apis::CesV1::AgentInterface, decorator: Google::Apis::CesV1::AgentInterface::Representation
1234
+
1235
+ property :version, as: 'version'
1236
+ end
1237
+ end
1238
+
1239
+ class AgentInterface
1240
+ # @private
1241
+ class Representation < Google::Apis::Core::JsonRepresentation
1242
+ property :protocol_binding, as: 'protocolBinding'
1243
+ property :protocol_version, as: 'protocolVersion'
1244
+ property :tenant, as: 'tenant'
1245
+ property :url, as: 'url'
1246
+ end
1247
+ end
1248
+
1195
1249
  class AgentLlmAgent
1196
1250
  # @private
1197
1251
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1210,6 +1264,19 @@ module Google
1210
1264
  end
1211
1265
  end
1212
1266
 
1267
+ class AgentSkill
1268
+ # @private
1269
+ class Representation < Google::Apis::Core::JsonRepresentation
1270
+ property :description, as: 'description'
1271
+ collection :examples, as: 'examples'
1272
+ property :id, as: 'id'
1273
+ collection :input_modes, as: 'inputModes'
1274
+ property :name, as: 'name'
1275
+ collection :output_modes, as: 'outputModes'
1276
+ collection :tags, as: 'tags'
1277
+ end
1278
+ end
1279
+
1213
1280
  class AgentTool
1214
1281
  # @private
1215
1282
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1302,8 +1369,11 @@ module Google
1302
1369
 
1303
1370
  property :tool_execution_mode, as: 'toolExecutionMode'
1304
1371
  property :update_time, as: 'updateTime'
1372
+ collection :validation_errors, as: 'validationErrors'
1305
1373
  collection :variable_declarations, as: 'variableDeclarations', class: Google::Apis::CesV1::AppVariableDeclaration, decorator: Google::Apis::CesV1::AppVariableDeclaration::Representation
1306
1374
 
1375
+ property :vpc_sc_settings, as: 'vpcScSettings', class: Google::Apis::CesV1::VpcScSettings, decorator: Google::Apis::CesV1::VpcScSettings::Representation
1376
+
1307
1377
  end
1308
1378
  end
1309
1379
 
@@ -2624,6 +2694,16 @@ module Google
2624
2694
  end
2625
2695
  end
2626
2696
 
2697
+ class RemoteAgentTool
2698
+ # @private
2699
+ class Representation < Google::Apis::Core::JsonRepresentation
2700
+ property :agent_card, as: 'agentCard', class: Google::Apis::CesV1::AgentCard, decorator: Google::Apis::CesV1::AgentCard::Representation
2701
+
2702
+ property :description, as: 'description'
2703
+ property :name, as: 'name'
2704
+ end
2705
+ end
2706
+
2627
2707
  class RestoreAppVersionRequest
2628
2708
  # @private
2629
2709
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2915,8 +2995,11 @@ module Google
2915
2995
 
2916
2996
  property :python_function, as: 'pythonFunction', class: Google::Apis::CesV1::PythonFunction, decorator: Google::Apis::CesV1::PythonFunction::Representation
2917
2997
 
2998
+ property :remote_agent_tool, as: 'remoteAgentTool', class: Google::Apis::CesV1::RemoteAgentTool, decorator: Google::Apis::CesV1::RemoteAgentTool::Representation
2999
+
2918
3000
  property :system_tool, as: 'systemTool', class: Google::Apis::CesV1::SystemTool, decorator: Google::Apis::CesV1::SystemTool::Representation
2919
3001
 
3002
+ property :timeout, as: 'timeout'
2920
3003
  property :tool_fake_config, as: 'toolFakeConfig', class: Google::Apis::CesV1::ToolFakeConfig, decorator: Google::Apis::CesV1::ToolFakeConfig::Representation
2921
3004
 
2922
3005
  property :update_time, as: 'updateTime'
@@ -3075,6 +3158,13 @@ module Google
3075
3158
  end
3076
3159
  end
3077
3160
 
3161
+ class VpcScSettings
3162
+ # @private
3163
+ class Representation < Google::Apis::Core::JsonRepresentation
3164
+ collection :allowed_origins, as: 'allowedOrigins'
3165
+ end
3166
+ end
3167
+
3078
3168
  class WebSearchQuery
3079
3169
  # @private
3080
3170
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-ces_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ces_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-ces_v1/v0.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ces_v1/v0.7.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ces_v1
63
63
  rdoc_options: []
64
64
  require_paths: