google-apis-integrations_v1 0.15.0 → 0.16.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: b22fb89dad9ea9294607c6de889dfd9743729b891a828ea5ef070360e60b9307
4
- data.tar.gz: 198d8fd3cc38344ba182a0b1e4b8d012937ad51cbea91b018057b14e498340d5
3
+ metadata.gz: '090ce02ea3623693e5ec43b46bebf4be7e41280c8f36f3bb9524486597bac6e0'
4
+ data.tar.gz: 46f85a088c399a18d5f126f370b4f7dd84effc0c7ac11c6430c44051c03f3fa5
5
5
  SHA512:
6
- metadata.gz: ce34385e2fe5fc11b05412376d5725cd25bcc463740b23e00abc772a31b63a37c0846e4356acdc198d837e39675fcfc9e9fecfbf8c12d114c265b72e92c72975
7
- data.tar.gz: cc7139fbac7a3fac56be10ff40067bae17d5845beffb55403a0d0f3cc8d5a1955f17d07a46e01f90c20f729ff64c02d9c6f12287862a7051686f01fcc9324bb8
6
+ metadata.gz: 977d889c20f5f862f113d1d57513d038313695e52bd8e3ac6e2298b9b8e50acbabc29c2230609e31894d4dbbf7d2df98192876a96123c41db7c1c632f2a126f2
7
+ data.tar.gz: 9ef5c6c9751b28c3ceb45227e6781048a0058e1f75ce34ded037d2f3ab58d5a341d889f9867ef6ea7756d90865ed40823dc0a87544ab7caa378ba1d81f332d78
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-integrations_v1
2
2
 
3
+ ### v0.16.0 (2025-07-27)
4
+
5
+ * Regenerated from discovery document revision 20250720
6
+
3
7
  ### v0.15.0 (2025-06-29)
4
8
 
5
9
  * Regenerated from discovery document revision 20250627
@@ -6505,67 +6505,6 @@ module Google
6505
6505
  end
6506
6506
  end
6507
6507
 
6508
- # AgentFlow configurations.
6509
- class GoogleCloudIntegrationsV1alphaAgentFlow
6510
- include Google::Apis::Core::Hashable
6511
-
6512
- # Output only. The timestamp when the agent flow was created.
6513
- # Corresponds to the JSON property `createTime`
6514
- # @return [String]
6515
- attr_accessor :create_time
6516
-
6517
- # Output only. The user who created the agent flow.
6518
- # Corresponds to the JSON property `creator`
6519
- # @return [String]
6520
- attr_accessor :creator
6521
-
6522
- # Optional. Description of the agent flow.
6523
- # Corresponds to the JSON property `description`
6524
- # @return [String]
6525
- attr_accessor :description
6526
-
6527
- # Optional. Display name of the agent flow.
6528
- # Corresponds to the JSON property `displayName`
6529
- # @return [String]
6530
- attr_accessor :display_name
6531
-
6532
- # Required. The flow configuration, represented as a string.
6533
- # Corresponds to the JSON property `flowConfig`
6534
- # @return [String]
6535
- attr_accessor :flow_config
6536
-
6537
- # Required. Resource name of the agent flow.
6538
- # Corresponds to the JSON property `name`
6539
- # @return [String]
6540
- attr_accessor :name
6541
-
6542
- # Optional. Name of the NoCodeAgent.
6543
- # Corresponds to the JSON property `noCodeAgent`
6544
- # @return [String]
6545
- attr_accessor :no_code_agent
6546
-
6547
- # Output only. The timestamp when the agent flow was last updated.
6548
- # Corresponds to the JSON property `updateTime`
6549
- # @return [String]
6550
- attr_accessor :update_time
6551
-
6552
- def initialize(**args)
6553
- update!(**args)
6554
- end
6555
-
6556
- # Update properties of this object
6557
- def update!(**args)
6558
- @create_time = args[:create_time] if args.key?(:create_time)
6559
- @creator = args[:creator] if args.key?(:creator)
6560
- @description = args[:description] if args.key?(:description)
6561
- @display_name = args[:display_name] if args.key?(:display_name)
6562
- @flow_config = args[:flow_config] if args.key?(:flow_config)
6563
- @name = args[:name] if args.key?(:name)
6564
- @no_code_agent = args[:no_code_agent] if args.key?(:no_code_agent)
6565
- @update_time = args[:update_time] if args.key?(:update_time)
6566
- end
6567
- end
6568
-
6569
6508
  # List of API triggerID and their workflow resource name.
6570
6509
  class GoogleCloudIntegrationsV1alphaApiTriggerResource
6571
6510
  include Google::Apis::Core::Hashable
@@ -8479,108 +8418,6 @@ module Google
8479
8418
  end
8480
8419
  end
8481
8420
 
8482
- # Request message for GenerateAgentFlow.
8483
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowRequest
8484
- include Google::Apis::Core::Hashable
8485
-
8486
- # Optional. The creator id;
8487
- # Corresponds to the JSON property `creator`
8488
- # @return [String]
8489
- attr_accessor :creator
8490
-
8491
- # Optional. The description of the AgentFlow to be generated.
8492
- # Corresponds to the JSON property `description`
8493
- # @return [String]
8494
- attr_accessor :description
8495
-
8496
- # Optional. The display name of the AgentFlow to be generated.
8497
- # Corresponds to the JSON property `displayName`
8498
- # @return [String]
8499
- attr_accessor :display_name
8500
-
8501
- # Required. The intent, described in natural language, for the AgentFlow to
8502
- # generate.
8503
- # Corresponds to the JSON property `intent`
8504
- # @return [String]
8505
- attr_accessor :intent
8506
-
8507
- def initialize(**args)
8508
- update!(**args)
8509
- end
8510
-
8511
- # Update properties of this object
8512
- def update!(**args)
8513
- @creator = args[:creator] if args.key?(:creator)
8514
- @description = args[:description] if args.key?(:description)
8515
- @display_name = args[:display_name] if args.key?(:display_name)
8516
- @intent = args[:intent] if args.key?(:intent)
8517
- end
8518
- end
8519
-
8520
- # Response message for GenerateAgentFlow.
8521
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse
8522
- include Google::Apis::Core::Hashable
8523
-
8524
- # AgentFlow configurations.
8525
- # Corresponds to the JSON property `agentFlow`
8526
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow]
8527
- attr_accessor :agent_flow
8528
-
8529
- def initialize(**args)
8530
- update!(**args)
8531
- end
8532
-
8533
- # Update properties of this object
8534
- def update!(**args)
8535
- @agent_flow = args[:agent_flow] if args.key?(:agent_flow)
8536
- end
8537
- end
8538
-
8539
- # Request message for GenerateAndUpdateAgentFlow.
8540
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowRequest
8541
- include Google::Apis::Core::Hashable
8542
-
8543
- # Required. The intent, described in natural language, for the AgentFlow to
8544
- # update.
8545
- # Corresponds to the JSON property `intent`
8546
- # @return [String]
8547
- attr_accessor :intent
8548
-
8549
- # Optional. The updater id;
8550
- # Corresponds to the JSON property `updater`
8551
- # @return [String]
8552
- attr_accessor :updater
8553
-
8554
- def initialize(**args)
8555
- update!(**args)
8556
- end
8557
-
8558
- # Update properties of this object
8559
- def update!(**args)
8560
- @intent = args[:intent] if args.key?(:intent)
8561
- @updater = args[:updater] if args.key?(:updater)
8562
- end
8563
- end
8564
-
8565
- # Response message for GenerateAndUpdateAgentFlow.
8566
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse
8567
- include Google::Apis::Core::Hashable
8568
-
8569
- # AgentFlow configurations.
8570
- # Corresponds to the JSON property `agentFlow`
8571
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow]
8572
- attr_accessor :agent_flow
8573
-
8574
- def initialize(**args)
8575
- update!(**args)
8576
- end
8577
-
8578
- # Update properties of this object
8579
- def update!(**args)
8580
- @agent_flow = args[:agent_flow] if args.key?(:agent_flow)
8581
- end
8582
- end
8583
-
8584
8421
  # Request for GenerateOpenApiSpec.
8585
8422
  class GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest
8586
8423
  include Google::Apis::Core::Hashable
@@ -9414,32 +9251,6 @@ module Google
9414
9251
  end
9415
9252
  end
9416
9253
 
9417
- # Response for ListAgentFlows.
9418
- class GoogleCloudIntegrationsV1alphaListAgentFlowsResponse
9419
- include Google::Apis::Core::Hashable
9420
-
9421
- # Output only. The AgentFlows from the specified collection.
9422
- # Corresponds to the JSON property `agentFlows`
9423
- # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow>]
9424
- attr_accessor :agent_flows
9425
-
9426
- # Output only. A token, which can be sent as `page_token` to retrieve the next
9427
- # page. If this field is omitted, there are no subsequent pages.
9428
- # Corresponds to the JSON property `nextPageToken`
9429
- # @return [String]
9430
- attr_accessor :next_page_token
9431
-
9432
- def initialize(**args)
9433
- update!(**args)
9434
- end
9435
-
9436
- # Update properties of this object
9437
- def update!(**args)
9438
- @agent_flows = args[:agent_flows] if args.key?(:agent_flows)
9439
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
9440
- end
9441
- end
9442
-
9443
9254
  # Response to list AuthConfigs.
9444
9255
  class GoogleCloudIntegrationsV1alphaListAuthConfigsResponse
9445
9256
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module IntegrationsV1
18
18
  # Version of the google-apis-integrations_v1 gem
19
- GEM_VERSION = "0.15.0"
19
+ GEM_VERSION = "0.16.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 = "20250627"
25
+ REVISION = "20250720"
26
26
  end
27
27
  end
28
28
  end
@@ -952,12 +952,6 @@ module Google
952
952
  include Google::Apis::Core::JsonObjectSupport
953
953
  end
954
954
 
955
- class GoogleCloudIntegrationsV1alphaAgentFlow
956
- class Representation < Google::Apis::Core::JsonRepresentation; end
957
-
958
- include Google::Apis::Core::JsonObjectSupport
959
- end
960
-
961
955
  class GoogleCloudIntegrationsV1alphaApiTriggerResource
962
956
  class Representation < Google::Apis::Core::JsonRepresentation; end
963
957
 
@@ -1258,30 +1252,6 @@ module Google
1258
1252
  include Google::Apis::Core::JsonObjectSupport
1259
1253
  end
1260
1254
 
1261
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowRequest
1262
- class Representation < Google::Apis::Core::JsonRepresentation; end
1263
-
1264
- include Google::Apis::Core::JsonObjectSupport
1265
- end
1266
-
1267
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse
1268
- class Representation < Google::Apis::Core::JsonRepresentation; end
1269
-
1270
- include Google::Apis::Core::JsonObjectSupport
1271
- end
1272
-
1273
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowRequest
1274
- class Representation < Google::Apis::Core::JsonRepresentation; end
1275
-
1276
- include Google::Apis::Core::JsonObjectSupport
1277
- end
1278
-
1279
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse
1280
- class Representation < Google::Apis::Core::JsonRepresentation; end
1281
-
1282
- include Google::Apis::Core::JsonObjectSupport
1283
- end
1284
-
1285
1255
  class GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest
1286
1256
  class Representation < Google::Apis::Core::JsonRepresentation; end
1287
1257
 
@@ -1402,12 +1372,6 @@ module Google
1402
1372
  include Google::Apis::Core::JsonObjectSupport
1403
1373
  end
1404
1374
 
1405
- class GoogleCloudIntegrationsV1alphaListAgentFlowsResponse
1406
- class Representation < Google::Apis::Core::JsonRepresentation; end
1407
-
1408
- include Google::Apis::Core::JsonObjectSupport
1409
- end
1410
-
1411
1375
  class GoogleCloudIntegrationsV1alphaListAuthConfigsResponse
1412
1376
  class Representation < Google::Apis::Core::JsonRepresentation; end
1413
1377
 
@@ -3706,20 +3670,6 @@ module Google
3706
3670
  end
3707
3671
  end
3708
3672
 
3709
- class GoogleCloudIntegrationsV1alphaAgentFlow
3710
- # @private
3711
- class Representation < Google::Apis::Core::JsonRepresentation
3712
- property :create_time, as: 'createTime'
3713
- property :creator, as: 'creator'
3714
- property :description, as: 'description'
3715
- property :display_name, as: 'displayName'
3716
- property :flow_config, as: 'flowConfig'
3717
- property :name, as: 'name'
3718
- property :no_code_agent, as: 'noCodeAgent'
3719
- property :update_time, as: 'updateTime'
3720
- end
3721
- end
3722
-
3723
3673
  class GoogleCloudIntegrationsV1alphaApiTriggerResource
3724
3674
  # @private
3725
3675
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4254,40 +4204,6 @@ module Google
4254
4204
  end
4255
4205
  end
4256
4206
 
4257
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowRequest
4258
- # @private
4259
- class Representation < Google::Apis::Core::JsonRepresentation
4260
- property :creator, as: 'creator'
4261
- property :description, as: 'description'
4262
- property :display_name, as: 'displayName'
4263
- property :intent, as: 'intent'
4264
- end
4265
- end
4266
-
4267
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse
4268
- # @private
4269
- class Representation < Google::Apis::Core::JsonRepresentation
4270
- property :agent_flow, as: 'agentFlow', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
4271
-
4272
- end
4273
- end
4274
-
4275
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowRequest
4276
- # @private
4277
- class Representation < Google::Apis::Core::JsonRepresentation
4278
- property :intent, as: 'intent'
4279
- property :updater, as: 'updater'
4280
- end
4281
- end
4282
-
4283
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse
4284
- # @private
4285
- class Representation < Google::Apis::Core::JsonRepresentation
4286
- property :agent_flow, as: 'agentFlow', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
4287
-
4288
- end
4289
- end
4290
-
4291
4207
  class GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest
4292
4208
  # @private
4293
4209
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4509,15 +4425,6 @@ module Google
4509
4425
  end
4510
4426
  end
4511
4427
 
4512
- class GoogleCloudIntegrationsV1alphaListAgentFlowsResponse
4513
- # @private
4514
- class Representation < Google::Apis::Core::JsonRepresentation
4515
- collection :agent_flows, as: 'agentFlows', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
4516
-
4517
- property :next_page_token, as: 'nextPageToken'
4518
- end
4519
- end
4520
-
4521
4428
  class GoogleCloudIntegrationsV1alphaListAuthConfigsResponse
4522
4429
  # @private
4523
4430
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1026,257 +1026,6 @@ module Google
1026
1026
  execute_or_queue_command(command, &block)
1027
1027
  end
1028
1028
 
1029
- # Request to create a new AgentFlow with user-provided flow configuration.
1030
- # @param [String] parent
1031
- # Required. Parent resource name where this AgentFlow will be created.
1032
- # @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow] google_cloud_integrations_v1alpha_agent_flow_object
1033
- # @param [String] fields
1034
- # Selector specifying which fields to include in a partial response.
1035
- # @param [String] quota_user
1036
- # Available to use for quota purposes for server-side applications. Can be any
1037
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1038
- # @param [Google::Apis::RequestOptions] options
1039
- # Request-specific options
1040
- #
1041
- # @yield [result, err] Result & error if block supplied
1042
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow] parsed result object
1043
- # @yieldparam err [StandardError] error object if request failed
1044
- #
1045
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow]
1046
- #
1047
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1048
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1049
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1050
- def create_project_location_collection_engine_assistant_agent_flow(parent, google_cloud_integrations_v1alpha_agent_flow_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1051
- command = make_simple_command(:post, 'v1/{+parent}/agentFlows', options)
1052
- command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
1053
- command.request_object = google_cloud_integrations_v1alpha_agent_flow_object
1054
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
1055
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow
1056
- command.params['parent'] = parent unless parent.nil?
1057
- command.query['fields'] = fields unless fields.nil?
1058
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1059
- execute_or_queue_command(command, &block)
1060
- end
1061
-
1062
- # Deletes an existing AgentFlow.
1063
- # @param [String] name
1064
- # Required. The resource name of the AgentFlow to delete.
1065
- # @param [String] fields
1066
- # Selector specifying which fields to include in a partial response.
1067
- # @param [String] quota_user
1068
- # Available to use for quota purposes for server-side applications. Can be any
1069
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1070
- # @param [Google::Apis::RequestOptions] options
1071
- # Request-specific options
1072
- #
1073
- # @yield [result, err] Result & error if block supplied
1074
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleProtobufEmpty] parsed result object
1075
- # @yieldparam err [StandardError] error object if request failed
1076
- #
1077
- # @return [Google::Apis::IntegrationsV1::GoogleProtobufEmpty]
1078
- #
1079
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1080
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1081
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1082
- def delete_project_location_collection_engine_assistant_agent_flow(name, fields: nil, quota_user: nil, options: nil, &block)
1083
- command = make_simple_command(:delete, 'v1/{+name}', options)
1084
- command.response_representation = Google::Apis::IntegrationsV1::GoogleProtobufEmpty::Representation
1085
- command.response_class = Google::Apis::IntegrationsV1::GoogleProtobufEmpty
1086
- command.params['name'] = name unless name.nil?
1087
- command.query['fields'] = fields unless fields.nil?
1088
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1089
- execute_or_queue_command(command, &block)
1090
- end
1091
-
1092
- # Uses Natural Language (NL) to generate an AgentFlow configuration and create a
1093
- # new AgentFlow.
1094
- # @param [String] parent
1095
- # Required. Parent resource name where this AgentFlow will be created.
1096
- # @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowRequest] google_cloud_integrations_v1alpha_generate_agent_flow_request_object
1097
- # @param [String] fields
1098
- # Selector specifying which fields to include in a partial response.
1099
- # @param [String] quota_user
1100
- # Available to use for quota purposes for server-side applications. Can be any
1101
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1102
- # @param [Google::Apis::RequestOptions] options
1103
- # Request-specific options
1104
- #
1105
- # @yield [result, err] Result & error if block supplied
1106
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse] parsed result object
1107
- # @yieldparam err [StandardError] error object if request failed
1108
- #
1109
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse]
1110
- #
1111
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1112
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1113
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1114
- def generate_project_location_collection_engine_assistant_agent_flow(parent, google_cloud_integrations_v1alpha_generate_agent_flow_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1115
- command = make_simple_command(:post, 'v1/{+parent}/agentFlows:generate', options)
1116
- command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowRequest::Representation
1117
- command.request_object = google_cloud_integrations_v1alpha_generate_agent_flow_request_object
1118
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse::Representation
1119
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse
1120
- command.params['parent'] = parent unless parent.nil?
1121
- command.query['fields'] = fields unless fields.nil?
1122
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1123
- execute_or_queue_command(command, &block)
1124
- end
1125
-
1126
- # Uses Natural Language (NL) to generate an AgentFlow configuration and update
1127
- # an existing AgentFlow.
1128
- # @param [String] name
1129
- # Required. The resource name of the AgentFlow to update.
1130
- # @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowRequest] google_cloud_integrations_v1alpha_generate_and_update_agent_flow_request_object
1131
- # @param [String] fields
1132
- # Selector specifying which fields to include in a partial response.
1133
- # @param [String] quota_user
1134
- # Available to use for quota purposes for server-side applications. Can be any
1135
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1136
- # @param [Google::Apis::RequestOptions] options
1137
- # Request-specific options
1138
- #
1139
- # @yield [result, err] Result & error if block supplied
1140
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse] parsed result object
1141
- # @yieldparam err [StandardError] error object if request failed
1142
- #
1143
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse]
1144
- #
1145
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1146
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1147
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1148
- def generate_project_location_collection_engine_assistant_agent_flow_and_update(name, google_cloud_integrations_v1alpha_generate_and_update_agent_flow_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1149
- command = make_simple_command(:post, 'v1/{+name}:generateAndUpdate', options)
1150
- command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowRequest::Representation
1151
- command.request_object = google_cloud_integrations_v1alpha_generate_and_update_agent_flow_request_object
1152
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse::Representation
1153
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse
1154
- command.params['name'] = name unless name.nil?
1155
- command.query['fields'] = fields unless fields.nil?
1156
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1157
- execute_or_queue_command(command, &block)
1158
- end
1159
-
1160
- # Gets an existing AgentFlow.
1161
- # @param [String] name
1162
- # Required. The resource name of the AgentFlow to get.
1163
- # @param [String] fields
1164
- # Selector specifying which fields to include in a partial response.
1165
- # @param [String] quota_user
1166
- # Available to use for quota purposes for server-side applications. Can be any
1167
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1168
- # @param [Google::Apis::RequestOptions] options
1169
- # Request-specific options
1170
- #
1171
- # @yield [result, err] Result & error if block supplied
1172
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow] parsed result object
1173
- # @yieldparam err [StandardError] error object if request failed
1174
- #
1175
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow]
1176
- #
1177
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1178
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1179
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1180
- def get_project_location_collection_engine_assistant_agent_flow(name, fields: nil, quota_user: nil, options: nil, &block)
1181
- command = make_simple_command(:get, 'v1/{+name}', options)
1182
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
1183
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow
1184
- command.params['name'] = name unless name.nil?
1185
- command.query['fields'] = fields unless fields.nil?
1186
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1187
- execute_or_queue_command(command, &block)
1188
- end
1189
-
1190
- # Lists all AgentFlows.
1191
- # @param [String] parent
1192
- # Required. The parent resource where this AgentFlow was created.
1193
- # @param [String] filter
1194
- # Optional. Standard filter field. Filtering as supported in https://developers.
1195
- # google.com/authorized-buyers/apis/guides/list-filters.
1196
- # @param [String] order_by
1197
- # Optional. The results would be returned in order specified here. Currently
1198
- # supported sort keys are: Descending sort order for "create_time", "update_time"
1199
- # . Ascending sort order for "agent_flow_id", "display_name".
1200
- # @param [Fixnum] page_size
1201
- # Optional. The maximum number of AgentFlows to return. The service may return
1202
- # fewer than this value. If unspecified, at most 100 AgentFlows will be returned.
1203
- # @param [String] page_token
1204
- # Optional. A page token, received from a previous `ListAgentFlows` call.
1205
- # Provide this to retrieve the subsequent page. When paginating, all other
1206
- # parameters provided to `ListAgentFlows` must match the call that provided the
1207
- # page token.
1208
- # @param [String] read_mask
1209
- # Optional. The mask which specifies fields that need to be returned in the
1210
- # AgentFlow's response.
1211
- # @param [String] fields
1212
- # Selector specifying which fields to include in a partial response.
1213
- # @param [String] quota_user
1214
- # Available to use for quota purposes for server-side applications. Can be any
1215
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1216
- # @param [Google::Apis::RequestOptions] options
1217
- # Request-specific options
1218
- #
1219
- # @yield [result, err] Result & error if block supplied
1220
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListAgentFlowsResponse] parsed result object
1221
- # @yieldparam err [StandardError] error object if request failed
1222
- #
1223
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListAgentFlowsResponse]
1224
- #
1225
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1226
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1227
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1228
- def list_project_location_collection_engine_assistant_agent_flows(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, read_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
1229
- command = make_simple_command(:get, 'v1/{+parent}/agentFlows', options)
1230
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListAgentFlowsResponse::Representation
1231
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListAgentFlowsResponse
1232
- command.params['parent'] = parent unless parent.nil?
1233
- command.query['filter'] = filter unless filter.nil?
1234
- command.query['orderBy'] = order_by unless order_by.nil?
1235
- command.query['pageSize'] = page_size unless page_size.nil?
1236
- command.query['pageToken'] = page_token unless page_token.nil?
1237
- command.query['readMask'] = read_mask unless read_mask.nil?
1238
- command.query['fields'] = fields unless fields.nil?
1239
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1240
- execute_or_queue_command(command, &block)
1241
- end
1242
-
1243
- # Updates an existing AgentFlow.
1244
- # @param [String] name
1245
- # Required. Resource name of the agent flow.
1246
- # @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow] google_cloud_integrations_v1alpha_agent_flow_object
1247
- # @param [String] update_mask
1248
- # Optional. Field mask specifying the fields in the above AgentFlow that have
1249
- # been modified and need to be updated.
1250
- # @param [String] fields
1251
- # Selector specifying which fields to include in a partial response.
1252
- # @param [String] quota_user
1253
- # Available to use for quota purposes for server-side applications. Can be any
1254
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1255
- # @param [Google::Apis::RequestOptions] options
1256
- # Request-specific options
1257
- #
1258
- # @yield [result, err] Result & error if block supplied
1259
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow] parsed result object
1260
- # @yieldparam err [StandardError] error object if request failed
1261
- #
1262
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow]
1263
- #
1264
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1265
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1266
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1267
- def patch_project_location_collection_engine_assistant_agent_flow(name, google_cloud_integrations_v1alpha_agent_flow_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
1268
- command = make_simple_command(:patch, 'v1/{+name}', options)
1269
- command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
1270
- command.request_object = google_cloud_integrations_v1alpha_agent_flow_object
1271
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
1272
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow
1273
- command.params['name'] = name unless name.nil?
1274
- command.query['updateMask'] = update_mask unless update_mask.nil?
1275
- command.query['fields'] = fields unless fields.nil?
1276
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1277
- execute_or_queue_command(command, &block)
1278
- end
1279
-
1280
1029
  # Lists the available entities and actions associated with a Connection.
1281
1030
  # @param [String] name
1282
1031
  # Required. ConnectionSchemaMetadata name. Format: projects/`project`/locations/`
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-integrations_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.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-integrations_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1/v0.15.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1/v0.16.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1
62
62
  rdoc_options: []
63
63
  require_paths: