google-apis-integrations_v1 0.14.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: 5e29351aaab7fa5e91f86818fb0aeed9a6c0b1764fec05ccf2018046d0d30138
4
- data.tar.gz: 9b5b2b8eeda32587457506d63a3441fe6a4dc129c5c647714413d4bfffe28d27
3
+ metadata.gz: '090ce02ea3623693e5ec43b46bebf4be7e41280c8f36f3bb9524486597bac6e0'
4
+ data.tar.gz: 46f85a088c399a18d5f126f370b4f7dd84effc0c7ac11c6430c44051c03f3fa5
5
5
  SHA512:
6
- metadata.gz: d3ad52f961ee98c5696723fc69ba9f8e0ef15c77bba1c46ceaa1dcf6c53cd251b9d5b86c8811645d3cdd6efbf83afe3f0394e223cca546d3569911244bfcde6a
7
- data.tar.gz: 4fb300cc839e78c5803252bcd8a24e8ea32ef981278b17b9893f98e7dd86c205d79cda6d73e902e99ef4cdc31ebf7f2fe5b24d36b09c0c8bdc962cfa35a99614
6
+ metadata.gz: 977d889c20f5f862f113d1d57513d038313695e52bd8e3ac6e2298b9b8e50acbabc29c2230609e31894d4dbbf7d2df98192876a96123c41db7c1c632f2a126f2
7
+ data.tar.gz: 9ef5c6c9751b28c3ceb45227e6781048a0058e1f75ce34ded037d2f3ab58d5a341d889f9867ef6ea7756d90865ed40823dc0a87544ab7caa378ba1d81f332d78
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.15.0 (2025-06-29)
8
+
9
+ * Regenerated from discovery document revision 20250627
10
+
3
11
  ### v0.14.0 (2025-06-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20250610
@@ -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
@@ -6979,6 +6918,51 @@ module Google
6979
6918
  end
6980
6919
  end
6981
6920
 
6921
+ # Request for the ChangeCustomerConfig rpc
6922
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest
6923
+ include Google::Apis::Core::Hashable
6924
+
6925
+ # Customer configuration information for the given client
6926
+ # Corresponds to the JSON property `customerConfig`
6927
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig]
6928
+ attr_accessor :customer_config
6929
+
6930
+ # Required. Field mask specifying the fields in the customer config that have
6931
+ # been modified and must be updated. If absent or empty, no fields are updated.
6932
+ # Corresponds to the JSON property `updateMask`
6933
+ # @return [String]
6934
+ attr_accessor :update_mask
6935
+
6936
+ def initialize(**args)
6937
+ update!(**args)
6938
+ end
6939
+
6940
+ # Update properties of this object
6941
+ def update!(**args)
6942
+ @customer_config = args[:customer_config] if args.key?(:customer_config)
6943
+ @update_mask = args[:update_mask] if args.key?(:update_mask)
6944
+ end
6945
+ end
6946
+
6947
+ # Response for the ChangeCustomerConfig rpc
6948
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
6949
+ include Google::Apis::Core::Hashable
6950
+
6951
+ # Customer configuration information for the given client
6952
+ # Corresponds to the JSON property `customerConfig`
6953
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig]
6954
+ attr_accessor :customer_config
6955
+
6956
+ def initialize(**args)
6957
+ update!(**args)
6958
+ end
6959
+
6960
+ # Update properties of this object
6961
+ def update!(**args)
6962
+ @customer_config = args[:customer_config] if args.key?(:customer_config)
6963
+ end
6964
+ end
6965
+
6982
6966
  # Contains client certificate information
6983
6967
  class GoogleCloudIntegrationsV1alphaClientCertificate
6984
6968
  include Google::Apis::Core::Hashable
@@ -7064,12 +7048,17 @@ module Google
7064
7048
  # @return [String]
7065
7049
  attr_accessor :create_time
7066
7050
 
7051
+ # Customer configuration information for the given client
7052
+ # Corresponds to the JSON property `customerConfig`
7053
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig]
7054
+ attr_accessor :customer_config
7055
+
7067
7056
  # Description of what the client is used for
7068
7057
  # Corresponds to the JSON property `description`
7069
7058
  # @return [String]
7070
7059
  attr_accessor :description
7071
7060
 
7072
- # Optional. Indicates the client enables making HTTP call.
7061
+ # Optional.
7073
7062
  # Corresponds to the JSON property `enableHttpCall`
7074
7063
  # @return [Boolean]
7075
7064
  attr_accessor :enable_http_call
@@ -7082,14 +7071,13 @@ module Google
7082
7071
  attr_accessor :enable_internal_ip
7083
7072
  alias_method :enable_internal_ip?, :enable_internal_ip
7084
7073
 
7085
- # Optional. Indicates if the Cloud Companion APIs will be used in the tenant
7086
- # project, i.e. if customer can use the managed AI features for free.
7074
+ # Optional.
7087
7075
  # Corresponds to the JSON property `enableManagedAiFeatures`
7088
7076
  # @return [Boolean]
7089
7077
  attr_accessor :enable_managed_ai_features
7090
7078
  alias_method :enable_managed_ai_features?, :enable_managed_ai_features
7091
7079
 
7092
- # Optional. True if variable masking feature should be turned on for this region
7080
+ # Optional.
7093
7081
  # Corresponds to the JSON property `enableVariableMasking`
7094
7082
  # @return [Boolean]
7095
7083
  attr_accessor :enable_variable_masking
@@ -7121,9 +7109,7 @@ module Google
7121
7109
  # @return [String]
7122
7110
  attr_accessor :region
7123
7111
 
7124
- # Default run-as service account email, set up during project provision time,
7125
- # that will be used to generate auth token to be used in Connector task, Rest
7126
- # caller task, Cloud function task and Subworkflows.
7112
+ #
7127
7113
  # Corresponds to the JSON property `runAsServiceAccount`
7128
7114
  # @return [String]
7129
7115
  attr_accessor :run_as_service_account
@@ -7138,6 +7124,7 @@ module Google
7138
7124
  @client_state = args[:client_state] if args.key?(:client_state)
7139
7125
  @cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
7140
7126
  @create_time = args[:create_time] if args.key?(:create_time)
7127
+ @customer_config = args[:customer_config] if args.key?(:customer_config)
7141
7128
  @description = args[:description] if args.key?(:description)
7142
7129
  @enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
7143
7130
  @enable_internal_ip = args[:enable_internal_ip] if args.key?(:enable_internal_ip)
@@ -7531,6 +7518,56 @@ module Google
7531
7518
  end
7532
7519
  end
7533
7520
 
7521
+ # Customer configuration information for the given client
7522
+ class GoogleCloudIntegrationsV1alphaCustomerConfig
7523
+ include Google::Apis::Core::Hashable
7524
+
7525
+ # Configuration information for Client's Cloud KMS information
7526
+ # Corresponds to the JSON property `cloudKmsConfig`
7527
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig]
7528
+ attr_accessor :cloud_kms_config
7529
+
7530
+ # Optional. Indicates if the client should be allowed to make HTTP calls. True
7531
+ # if http call feature should be turned on for this region.
7532
+ # Corresponds to the JSON property `enableHttpCall`
7533
+ # @return [Boolean]
7534
+ attr_accessor :enable_http_call
7535
+ alias_method :enable_http_call?, :enable_http_call
7536
+
7537
+ # Optional. Indicates if the client should be allowed to use managed AI features,
7538
+ # i.e. using Cloud Companion APIs of the tenant project. This will allow the
7539
+ # customers to use features like Troubleshooting, OpenAPI spec enrichment, etc.
7540
+ # for free.
7541
+ # Corresponds to the JSON property `enableManagedAiFeatures`
7542
+ # @return [Boolean]
7543
+ attr_accessor :enable_managed_ai_features
7544
+ alias_method :enable_managed_ai_features?, :enable_managed_ai_features
7545
+
7546
+ # Optional. True if variable masking feature should be turned on for this region.
7547
+ # Corresponds to the JSON property `enableVariableMasking`
7548
+ # @return [Boolean]
7549
+ attr_accessor :enable_variable_masking
7550
+ alias_method :enable_variable_masking?, :enable_variable_masking
7551
+
7552
+ # Optional. Run-as service account to be updated for the provisioned client.
7553
+ # Corresponds to the JSON property `runAsServiceAccount`
7554
+ # @return [String]
7555
+ attr_accessor :run_as_service_account
7556
+
7557
+ def initialize(**args)
7558
+ update!(**args)
7559
+ end
7560
+
7561
+ # Update properties of this object
7562
+ def update!(**args)
7563
+ @cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
7564
+ @enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
7565
+ @enable_managed_ai_features = args[:enable_managed_ai_features] if args.key?(:enable_managed_ai_features)
7566
+ @enable_variable_masking = args[:enable_variable_masking] if args.key?(:enable_variable_masking)
7567
+ @run_as_service_account = args[:run_as_service_account] if args.key?(:run_as_service_account)
7568
+ end
7569
+ end
7570
+
7534
7571
  # Request for the Deprovision rpc
7535
7572
  class GoogleCloudIntegrationsV1alphaDeprovisionClientRequest
7536
7573
  include Google::Apis::Core::Hashable
@@ -8381,108 +8418,6 @@ module Google
8381
8418
  end
8382
8419
  end
8383
8420
 
8384
- # Request message for GenerateAgentFlow.
8385
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowRequest
8386
- include Google::Apis::Core::Hashable
8387
-
8388
- # Optional. The creator id;
8389
- # Corresponds to the JSON property `creator`
8390
- # @return [String]
8391
- attr_accessor :creator
8392
-
8393
- # Optional. The description of the AgentFlow to be generated.
8394
- # Corresponds to the JSON property `description`
8395
- # @return [String]
8396
- attr_accessor :description
8397
-
8398
- # Optional. The display name of the AgentFlow to be generated.
8399
- # Corresponds to the JSON property `displayName`
8400
- # @return [String]
8401
- attr_accessor :display_name
8402
-
8403
- # Required. The intent, described in natural language, for the AgentFlow to
8404
- # generate.
8405
- # Corresponds to the JSON property `intent`
8406
- # @return [String]
8407
- attr_accessor :intent
8408
-
8409
- def initialize(**args)
8410
- update!(**args)
8411
- end
8412
-
8413
- # Update properties of this object
8414
- def update!(**args)
8415
- @creator = args[:creator] if args.key?(:creator)
8416
- @description = args[:description] if args.key?(:description)
8417
- @display_name = args[:display_name] if args.key?(:display_name)
8418
- @intent = args[:intent] if args.key?(:intent)
8419
- end
8420
- end
8421
-
8422
- # Response message for GenerateAgentFlow.
8423
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse
8424
- include Google::Apis::Core::Hashable
8425
-
8426
- # AgentFlow configurations.
8427
- # Corresponds to the JSON property `agentFlow`
8428
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow]
8429
- attr_accessor :agent_flow
8430
-
8431
- def initialize(**args)
8432
- update!(**args)
8433
- end
8434
-
8435
- # Update properties of this object
8436
- def update!(**args)
8437
- @agent_flow = args[:agent_flow] if args.key?(:agent_flow)
8438
- end
8439
- end
8440
-
8441
- # Request message for GenerateAndUpdateAgentFlow.
8442
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowRequest
8443
- include Google::Apis::Core::Hashable
8444
-
8445
- # Required. The intent, described in natural language, for the AgentFlow to
8446
- # update.
8447
- # Corresponds to the JSON property `intent`
8448
- # @return [String]
8449
- attr_accessor :intent
8450
-
8451
- # Optional. The updater id;
8452
- # Corresponds to the JSON property `updater`
8453
- # @return [String]
8454
- attr_accessor :updater
8455
-
8456
- def initialize(**args)
8457
- update!(**args)
8458
- end
8459
-
8460
- # Update properties of this object
8461
- def update!(**args)
8462
- @intent = args[:intent] if args.key?(:intent)
8463
- @updater = args[:updater] if args.key?(:updater)
8464
- end
8465
- end
8466
-
8467
- # Response message for GenerateAndUpdateAgentFlow.
8468
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse
8469
- include Google::Apis::Core::Hashable
8470
-
8471
- # AgentFlow configurations.
8472
- # Corresponds to the JSON property `agentFlow`
8473
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow]
8474
- attr_accessor :agent_flow
8475
-
8476
- def initialize(**args)
8477
- update!(**args)
8478
- end
8479
-
8480
- # Update properties of this object
8481
- def update!(**args)
8482
- @agent_flow = args[:agent_flow] if args.key?(:agent_flow)
8483
- end
8484
- end
8485
-
8486
8421
  # Request for GenerateOpenApiSpec.
8487
8422
  class GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest
8488
8423
  include Google::Apis::Core::Hashable
@@ -9316,32 +9251,6 @@ module Google
9316
9251
  end
9317
9252
  end
9318
9253
 
9319
- # Response for ListAgentFlows.
9320
- class GoogleCloudIntegrationsV1alphaListAgentFlowsResponse
9321
- include Google::Apis::Core::Hashable
9322
-
9323
- # Output only. The AgentFlows from the specified collection.
9324
- # Corresponds to the JSON property `agentFlows`
9325
- # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow>]
9326
- attr_accessor :agent_flows
9327
-
9328
- # Output only. A token, which can be sent as `page_token` to retrieve the next
9329
- # page. If this field is omitted, there are no subsequent pages.
9330
- # Corresponds to the JSON property `nextPageToken`
9331
- # @return [String]
9332
- attr_accessor :next_page_token
9333
-
9334
- def initialize(**args)
9335
- update!(**args)
9336
- end
9337
-
9338
- # Update properties of this object
9339
- def update!(**args)
9340
- @agent_flows = args[:agent_flows] if args.key?(:agent_flows)
9341
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
9342
- end
9343
- end
9344
-
9345
9254
  # Response to list AuthConfigs.
9346
9255
  class GoogleCloudIntegrationsV1alphaListAuthConfigsResponse
9347
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.14.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 = "20250610"
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
 
@@ -1018,6 +1012,18 @@ module Google
1018
1012
  include Google::Apis::Core::JsonObjectSupport
1019
1013
  end
1020
1014
 
1015
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest
1016
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1017
+
1018
+ include Google::Apis::Core::JsonObjectSupport
1019
+ end
1020
+
1021
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
1022
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1023
+
1024
+ include Google::Apis::Core::JsonObjectSupport
1025
+ end
1026
+
1021
1027
  class GoogleCloudIntegrationsV1alphaClientCertificate
1022
1028
  class Representation < Google::Apis::Core::JsonRepresentation; end
1023
1029
 
@@ -1096,6 +1102,12 @@ module Google
1096
1102
  include Google::Apis::Core::JsonObjectSupport
1097
1103
  end
1098
1104
 
1105
+ class GoogleCloudIntegrationsV1alphaCustomerConfig
1106
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1107
+
1108
+ include Google::Apis::Core::JsonObjectSupport
1109
+ end
1110
+
1099
1111
  class GoogleCloudIntegrationsV1alphaDeprovisionClientRequest
1100
1112
  class Representation < Google::Apis::Core::JsonRepresentation; end
1101
1113
 
@@ -1240,30 +1252,6 @@ module Google
1240
1252
  include Google::Apis::Core::JsonObjectSupport
1241
1253
  end
1242
1254
 
1243
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowRequest
1244
- class Representation < Google::Apis::Core::JsonRepresentation; end
1245
-
1246
- include Google::Apis::Core::JsonObjectSupport
1247
- end
1248
-
1249
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse
1250
- class Representation < Google::Apis::Core::JsonRepresentation; end
1251
-
1252
- include Google::Apis::Core::JsonObjectSupport
1253
- end
1254
-
1255
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowRequest
1256
- class Representation < Google::Apis::Core::JsonRepresentation; end
1257
-
1258
- include Google::Apis::Core::JsonObjectSupport
1259
- end
1260
-
1261
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse
1262
- class Representation < Google::Apis::Core::JsonRepresentation; end
1263
-
1264
- include Google::Apis::Core::JsonObjectSupport
1265
- end
1266
-
1267
1255
  class GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest
1268
1256
  class Representation < Google::Apis::Core::JsonRepresentation; end
1269
1257
 
@@ -1384,12 +1372,6 @@ module Google
1384
1372
  include Google::Apis::Core::JsonObjectSupport
1385
1373
  end
1386
1374
 
1387
- class GoogleCloudIntegrationsV1alphaListAgentFlowsResponse
1388
- class Representation < Google::Apis::Core::JsonRepresentation; end
1389
-
1390
- include Google::Apis::Core::JsonObjectSupport
1391
- end
1392
-
1393
1375
  class GoogleCloudIntegrationsV1alphaListAuthConfigsResponse
1394
1376
  class Representation < Google::Apis::Core::JsonRepresentation; end
1395
1377
 
@@ -3688,20 +3670,6 @@ module Google
3688
3670
  end
3689
3671
  end
3690
3672
 
3691
- class GoogleCloudIntegrationsV1alphaAgentFlow
3692
- # @private
3693
- class Representation < Google::Apis::Core::JsonRepresentation
3694
- property :create_time, as: 'createTime'
3695
- property :creator, as: 'creator'
3696
- property :description, as: 'description'
3697
- property :display_name, as: 'displayName'
3698
- property :flow_config, as: 'flowConfig'
3699
- property :name, as: 'name'
3700
- property :no_code_agent, as: 'noCodeAgent'
3701
- property :update_time, as: 'updateTime'
3702
- end
3703
- end
3704
-
3705
3673
  class GoogleCloudIntegrationsV1alphaApiTriggerResource
3706
3674
  # @private
3707
3675
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3810,6 +3778,23 @@ module Google
3810
3778
  end
3811
3779
  end
3812
3780
 
3781
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest
3782
+ # @private
3783
+ class Representation < Google::Apis::Core::JsonRepresentation
3784
+ property :customer_config, as: 'customerConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig::Representation
3785
+
3786
+ property :update_mask, as: 'updateMask'
3787
+ end
3788
+ end
3789
+
3790
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
3791
+ # @private
3792
+ class Representation < Google::Apis::Core::JsonRepresentation
3793
+ property :customer_config, as: 'customerConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig::Representation
3794
+
3795
+ end
3796
+ end
3797
+
3813
3798
  class GoogleCloudIntegrationsV1alphaClientCertificate
3814
3799
  # @private
3815
3800
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3827,6 +3812,8 @@ module Google
3827
3812
  property :cloud_kms_config, as: 'cloudKmsConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig::Representation
3828
3813
 
3829
3814
  property :create_time, as: 'createTime'
3815
+ property :customer_config, as: 'customerConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig::Representation
3816
+
3830
3817
  property :description, as: 'description'
3831
3818
  property :enable_http_call, as: 'enableHttpCall'
3832
3819
  property :enable_internal_ip, as: 'enableInternalIp'
@@ -3951,6 +3938,18 @@ module Google
3951
3938
  end
3952
3939
  end
3953
3940
 
3941
+ class GoogleCloudIntegrationsV1alphaCustomerConfig
3942
+ # @private
3943
+ class Representation < Google::Apis::Core::JsonRepresentation
3944
+ property :cloud_kms_config, as: 'cloudKmsConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig::Representation
3945
+
3946
+ property :enable_http_call, as: 'enableHttpCall'
3947
+ property :enable_managed_ai_features, as: 'enableManagedAiFeatures'
3948
+ property :enable_variable_masking, as: 'enableVariableMasking'
3949
+ property :run_as_service_account, as: 'runAsServiceAccount'
3950
+ end
3951
+ end
3952
+
3954
3953
  class GoogleCloudIntegrationsV1alphaDeprovisionClientRequest
3955
3954
  # @private
3956
3955
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4205,40 +4204,6 @@ module Google
4205
4204
  end
4206
4205
  end
4207
4206
 
4208
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowRequest
4209
- # @private
4210
- class Representation < Google::Apis::Core::JsonRepresentation
4211
- property :creator, as: 'creator'
4212
- property :description, as: 'description'
4213
- property :display_name, as: 'displayName'
4214
- property :intent, as: 'intent'
4215
- end
4216
- end
4217
-
4218
- class GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse
4219
- # @private
4220
- class Representation < Google::Apis::Core::JsonRepresentation
4221
- property :agent_flow, as: 'agentFlow', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
4222
-
4223
- end
4224
- end
4225
-
4226
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowRequest
4227
- # @private
4228
- class Representation < Google::Apis::Core::JsonRepresentation
4229
- property :intent, as: 'intent'
4230
- property :updater, as: 'updater'
4231
- end
4232
- end
4233
-
4234
- class GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse
4235
- # @private
4236
- class Representation < Google::Apis::Core::JsonRepresentation
4237
- property :agent_flow, as: 'agentFlow', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
4238
-
4239
- end
4240
- end
4241
-
4242
4207
  class GoogleCloudIntegrationsV1alphaGenerateOpenApiSpecRequest
4243
4208
  # @private
4244
4209
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4460,15 +4425,6 @@ module Google
4460
4425
  end
4461
4426
  end
4462
4427
 
4463
- class GoogleCloudIntegrationsV1alphaListAgentFlowsResponse
4464
- # @private
4465
- class Representation < Google::Apis::Core::JsonRepresentation
4466
- collection :agent_flows, as: 'agentFlows', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
4467
-
4468
- property :next_page_token, as: 'nextPageToken'
4469
- end
4470
- end
4471
-
4472
4428
  class GoogleCloudIntegrationsV1alphaListAuthConfigsResponse
4473
4429
  # @private
4474
4430
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -725,6 +725,40 @@ module Google
725
725
  execute_or_queue_command(command, &block)
726
726
  end
727
727
 
728
+ # Updates the client customer configuration for the given project and location
729
+ # resource name
730
+ # @param [String] parent
731
+ # Required. Required: Format - projects/`project`/locations/`location`
732
+ # @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest] google_cloud_integrations_v1alpha_change_customer_config_request_object
733
+ # @param [String] fields
734
+ # Selector specifying which fields to include in a partial response.
735
+ # @param [String] quota_user
736
+ # Available to use for quota purposes for server-side applications. Can be any
737
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
738
+ # @param [Google::Apis::RequestOptions] options
739
+ # Request-specific options
740
+ #
741
+ # @yield [result, err] Result & error if block supplied
742
+ # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse] parsed result object
743
+ # @yieldparam err [StandardError] error object if request failed
744
+ #
745
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse]
746
+ #
747
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
748
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
749
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
750
+ def change_project_location_client_config(parent, google_cloud_integrations_v1alpha_change_customer_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
751
+ command = make_simple_command(:post, 'v1/{+parent}/clients:changeConfig', options)
752
+ command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest::Representation
753
+ command.request_object = google_cloud_integrations_v1alpha_change_customer_config_request_object
754
+ command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse::Representation
755
+ command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
756
+ command.params['parent'] = parent unless parent.nil?
757
+ command.query['fields'] = fields unless fields.nil?
758
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
759
+ execute_or_queue_command(command, &block)
760
+ end
761
+
728
762
  # Perform the deprovisioning steps to disable a user GCP project to use IP and
729
763
  # purge all related data in a wipeout-compliant way.
730
764
  # @param [String] parent
@@ -992,257 +1026,6 @@ module Google
992
1026
  execute_or_queue_command(command, &block)
993
1027
  end
994
1028
 
995
- # Request to create a new AgentFlow with user-provided flow configuration.
996
- # @param [String] parent
997
- # Required. Parent resource name where this AgentFlow will be created.
998
- # @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow] google_cloud_integrations_v1alpha_agent_flow_object
999
- # @param [String] fields
1000
- # Selector specifying which fields to include in a partial response.
1001
- # @param [String] quota_user
1002
- # Available to use for quota purposes for server-side applications. Can be any
1003
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1004
- # @param [Google::Apis::RequestOptions] options
1005
- # Request-specific options
1006
- #
1007
- # @yield [result, err] Result & error if block supplied
1008
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow] parsed result object
1009
- # @yieldparam err [StandardError] error object if request failed
1010
- #
1011
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow]
1012
- #
1013
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1014
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1015
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1016
- 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)
1017
- command = make_simple_command(:post, 'v1/{+parent}/agentFlows', options)
1018
- command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
1019
- command.request_object = google_cloud_integrations_v1alpha_agent_flow_object
1020
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
1021
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow
1022
- command.params['parent'] = parent unless parent.nil?
1023
- command.query['fields'] = fields unless fields.nil?
1024
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1025
- execute_or_queue_command(command, &block)
1026
- end
1027
-
1028
- # Deletes an existing AgentFlow.
1029
- # @param [String] name
1030
- # Required. The resource name of the AgentFlow to delete.
1031
- # @param [String] fields
1032
- # Selector specifying which fields to include in a partial response.
1033
- # @param [String] quota_user
1034
- # Available to use for quota purposes for server-side applications. Can be any
1035
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1036
- # @param [Google::Apis::RequestOptions] options
1037
- # Request-specific options
1038
- #
1039
- # @yield [result, err] Result & error if block supplied
1040
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleProtobufEmpty] parsed result object
1041
- # @yieldparam err [StandardError] error object if request failed
1042
- #
1043
- # @return [Google::Apis::IntegrationsV1::GoogleProtobufEmpty]
1044
- #
1045
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1046
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1047
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1048
- def delete_project_location_collection_engine_assistant_agent_flow(name, fields: nil, quota_user: nil, options: nil, &block)
1049
- command = make_simple_command(:delete, 'v1/{+name}', options)
1050
- command.response_representation = Google::Apis::IntegrationsV1::GoogleProtobufEmpty::Representation
1051
- command.response_class = Google::Apis::IntegrationsV1::GoogleProtobufEmpty
1052
- command.params['name'] = name unless name.nil?
1053
- command.query['fields'] = fields unless fields.nil?
1054
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1055
- execute_or_queue_command(command, &block)
1056
- end
1057
-
1058
- # Uses Natural Language (NL) to generate an AgentFlow configuration and create a
1059
- # new AgentFlow.
1060
- # @param [String] parent
1061
- # Required. Parent resource name where this AgentFlow will be created.
1062
- # @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowRequest] google_cloud_integrations_v1alpha_generate_agent_flow_request_object
1063
- # @param [String] fields
1064
- # Selector specifying which fields to include in a partial response.
1065
- # @param [String] quota_user
1066
- # Available to use for quota purposes for server-side applications. Can be any
1067
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1068
- # @param [Google::Apis::RequestOptions] options
1069
- # Request-specific options
1070
- #
1071
- # @yield [result, err] Result & error if block supplied
1072
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse] parsed result object
1073
- # @yieldparam err [StandardError] error object if request failed
1074
- #
1075
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse]
1076
- #
1077
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1078
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1079
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1080
- 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)
1081
- command = make_simple_command(:post, 'v1/{+parent}/agentFlows:generate', options)
1082
- command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowRequest::Representation
1083
- command.request_object = google_cloud_integrations_v1alpha_generate_agent_flow_request_object
1084
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse::Representation
1085
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAgentFlowResponse
1086
- command.params['parent'] = parent unless parent.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 update
1093
- # an existing AgentFlow.
1094
- # @param [String] name
1095
- # Required. The resource name of the AgentFlow to update.
1096
- # @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowRequest] google_cloud_integrations_v1alpha_generate_and_update_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::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse] parsed result object
1107
- # @yieldparam err [StandardError] error object if request failed
1108
- #
1109
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse]
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_and_update(name, google_cloud_integrations_v1alpha_generate_and_update_agent_flow_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1115
- command = make_simple_command(:post, 'v1/{+name}:generateAndUpdate', options)
1116
- command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowRequest::Representation
1117
- command.request_object = google_cloud_integrations_v1alpha_generate_and_update_agent_flow_request_object
1118
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse::Representation
1119
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaGenerateAndUpdateAgentFlowResponse
1120
- command.params['name'] = name unless name.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
- # Gets an existing AgentFlow.
1127
- # @param [String] name
1128
- # Required. The resource name of the AgentFlow to get.
1129
- # @param [String] fields
1130
- # Selector specifying which fields to include in a partial response.
1131
- # @param [String] quota_user
1132
- # Available to use for quota purposes for server-side applications. Can be any
1133
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1134
- # @param [Google::Apis::RequestOptions] options
1135
- # Request-specific options
1136
- #
1137
- # @yield [result, err] Result & error if block supplied
1138
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow] parsed result object
1139
- # @yieldparam err [StandardError] error object if request failed
1140
- #
1141
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow]
1142
- #
1143
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1144
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1145
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1146
- def get_project_location_collection_engine_assistant_agent_flow(name, fields: nil, quota_user: nil, options: nil, &block)
1147
- command = make_simple_command(:get, 'v1/{+name}', options)
1148
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
1149
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow
1150
- command.params['name'] = name unless name.nil?
1151
- command.query['fields'] = fields unless fields.nil?
1152
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1153
- execute_or_queue_command(command, &block)
1154
- end
1155
-
1156
- # Lists all AgentFlows.
1157
- # @param [String] parent
1158
- # Required. The parent resource where this AgentFlow was created.
1159
- # @param [String] filter
1160
- # Optional. Standard filter field. Filtering as supported in https://developers.
1161
- # google.com/authorized-buyers/apis/guides/list-filters.
1162
- # @param [String] order_by
1163
- # Optional. The results would be returned in order specified here. Currently
1164
- # supported sort keys are: Descending sort order for "create_time", "update_time"
1165
- # . Ascending sort order for "agent_flow_id", "display_name".
1166
- # @param [Fixnum] page_size
1167
- # Optional. The maximum number of AgentFlows to return. The service may return
1168
- # fewer than this value. If unspecified, at most 100 AgentFlows will be returned.
1169
- # @param [String] page_token
1170
- # Optional. A page token, received from a previous `ListAgentFlows` call.
1171
- # Provide this to retrieve the subsequent page. When paginating, all other
1172
- # parameters provided to `ListAgentFlows` must match the call that provided the
1173
- # page token.
1174
- # @param [String] read_mask
1175
- # Optional. The mask which specifies fields that need to be returned in the
1176
- # AgentFlow's response.
1177
- # @param [String] fields
1178
- # Selector specifying which fields to include in a partial response.
1179
- # @param [String] quota_user
1180
- # Available to use for quota purposes for server-side applications. Can be any
1181
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1182
- # @param [Google::Apis::RequestOptions] options
1183
- # Request-specific options
1184
- #
1185
- # @yield [result, err] Result & error if block supplied
1186
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListAgentFlowsResponse] parsed result object
1187
- # @yieldparam err [StandardError] error object if request failed
1188
- #
1189
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListAgentFlowsResponse]
1190
- #
1191
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1192
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1193
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1194
- 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)
1195
- command = make_simple_command(:get, 'v1/{+parent}/agentFlows', options)
1196
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListAgentFlowsResponse::Representation
1197
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListAgentFlowsResponse
1198
- command.params['parent'] = parent unless parent.nil?
1199
- command.query['filter'] = filter unless filter.nil?
1200
- command.query['orderBy'] = order_by unless order_by.nil?
1201
- command.query['pageSize'] = page_size unless page_size.nil?
1202
- command.query['pageToken'] = page_token unless page_token.nil?
1203
- command.query['readMask'] = read_mask unless read_mask.nil?
1204
- command.query['fields'] = fields unless fields.nil?
1205
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1206
- execute_or_queue_command(command, &block)
1207
- end
1208
-
1209
- # Updates an existing AgentFlow.
1210
- # @param [String] name
1211
- # Required. Resource name of the agent flow.
1212
- # @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow] google_cloud_integrations_v1alpha_agent_flow_object
1213
- # @param [String] update_mask
1214
- # Optional. Field mask specifying the fields in the above AgentFlow that have
1215
- # been modified and need to be updated.
1216
- # @param [String] fields
1217
- # Selector specifying which fields to include in a partial response.
1218
- # @param [String] quota_user
1219
- # Available to use for quota purposes for server-side applications. Can be any
1220
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1221
- # @param [Google::Apis::RequestOptions] options
1222
- # Request-specific options
1223
- #
1224
- # @yield [result, err] Result & error if block supplied
1225
- # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow] parsed result object
1226
- # @yieldparam err [StandardError] error object if request failed
1227
- #
1228
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow]
1229
- #
1230
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1231
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1232
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1233
- 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)
1234
- command = make_simple_command(:patch, 'v1/{+name}', options)
1235
- command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
1236
- command.request_object = google_cloud_integrations_v1alpha_agent_flow_object
1237
- command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow::Representation
1238
- command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAgentFlow
1239
- command.params['name'] = name unless name.nil?
1240
- command.query['updateMask'] = update_mask unless update_mask.nil?
1241
- command.query['fields'] = fields unless fields.nil?
1242
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1243
- execute_or_queue_command(command, &block)
1244
- end
1245
-
1246
1029
  # Lists the available entities and actions associated with a Connection.
1247
1030
  # @param [String] name
1248
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.14.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.14.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: