google-apis-integrations_v1 0.4.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0ae33a5edd3260945a7155f2372e8f9fc5bbf24f01d38d9c32b81866d92e1f7
|
4
|
+
data.tar.gz: 55d42d3841fbe33664bffd1f33233efdbedd83a9c102926e2b9237c7242e9987
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 891ee470a8c75701c5beba0204019af1bf883df5e8199a535388416cf246bdb55e44ca1b0ec33b2159e77e403abe29e7915e77ea7a6a56b8571f4cd112fb4266
|
7
|
+
data.tar.gz: 5284489a6e8d577260e92dcac23ddd3b6939822e84e4f61fb831448e67570149fe30dba431ae2b083db76b80a589ebf4ac88bf4d85aaed0a5789e1c3479a3397
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-integrations_v1
|
2
2
|
|
3
|
+
### v0.6.0 (2025-03-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250310
|
6
|
+
|
7
|
+
### v0.5.0 (2025-03-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250302
|
10
|
+
|
3
11
|
### v0.4.0 (2025-03-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250223
|
@@ -2886,6 +2886,13 @@ module Google
|
|
2886
2886
|
class EnterpriseCrmEventbusProtoTaskExecutionDetails
|
2887
2887
|
include Google::Apis::Core::Hashable
|
2888
2888
|
|
2889
|
+
# Indicates whether the task was skipped on failure. Only relevant if the task
|
2890
|
+
# is in SKIPPED state.
|
2891
|
+
# Corresponds to the JSON property `skippedOnFailure`
|
2892
|
+
# @return [Boolean]
|
2893
|
+
attr_accessor :skipped_on_failure
|
2894
|
+
alias_method :skipped_on_failure?, :skipped_on_failure
|
2895
|
+
|
2889
2896
|
#
|
2890
2897
|
# Corresponds to the JSON property `taskAttemptStats`
|
2891
2898
|
# @return [Array<Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTaskExecutionDetailsTaskAttemptStats>]
|
@@ -2907,6 +2914,7 @@ module Google
|
|
2907
2914
|
|
2908
2915
|
# Update properties of this object
|
2909
2916
|
def update!(**args)
|
2917
|
+
@skipped_on_failure = args[:skipped_on_failure] if args.key?(:skipped_on_failure)
|
2910
2918
|
@task_attempt_stats = args[:task_attempt_stats] if args.key?(:task_attempt_stats)
|
2911
2919
|
@task_execution_state = args[:task_execution_state] if args.key?(:task_execution_state)
|
2912
2920
|
@task_number = args[:task_number] if args.key?(:task_number)
|
@@ -5484,7 +5492,7 @@ module Google
|
|
5484
5492
|
# @return [String]
|
5485
5493
|
attr_accessor :connector_version
|
5486
5494
|
|
5487
|
-
# This
|
5495
|
+
# This configuration provides infra configs like rate limit threshold which need
|
5488
5496
|
# to be configurable for every connector version
|
5489
5497
|
# Corresponds to the JSON property `connectorVersionInfraConfig`
|
5490
5498
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ConnectorVersionInfraConfig]
|
@@ -5621,6 +5629,11 @@ module Google
|
|
5621
5629
|
# @return [String]
|
5622
5630
|
attr_accessor :tls_service_directory
|
5623
5631
|
|
5632
|
+
# Optional. Traffic shaping configuration for the connection.
|
5633
|
+
# Corresponds to the JSON property `trafficShapingConfigs`
|
5634
|
+
# @return [Array<Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1TrafficShapingConfig>]
|
5635
|
+
attr_accessor :traffic_shaping_configs
|
5636
|
+
|
5624
5637
|
# Output only. Updated time.
|
5625
5638
|
# Corresponds to the JSON property `updateTime`
|
5626
5639
|
# @return [String]
|
@@ -5663,6 +5676,7 @@ module Google
|
|
5663
5676
|
@subscription_type = args[:subscription_type] if args.key?(:subscription_type)
|
5664
5677
|
@suspended = args[:suspended] if args.key?(:suspended)
|
5665
5678
|
@tls_service_directory = args[:tls_service_directory] if args.key?(:tls_service_directory)
|
5679
|
+
@traffic_shaping_configs = args[:traffic_shaping_configs] if args.key?(:traffic_shaping_configs)
|
5666
5680
|
@update_time = args[:update_time] if args.key?(:update_time)
|
5667
5681
|
end
|
5668
5682
|
end
|
@@ -5698,7 +5712,7 @@ module Google
|
|
5698
5712
|
end
|
5699
5713
|
end
|
5700
5714
|
|
5701
|
-
# This
|
5715
|
+
# This configuration provides infra configs like rate limit threshold which need
|
5702
5716
|
# to be configurable for every connector version
|
5703
5717
|
class GoogleCloudConnectorsV1ConnectorVersionInfraConfig
|
5704
5718
|
include Google::Apis::Core::Hashable
|
@@ -6371,6 +6385,49 @@ module Google
|
|
6371
6385
|
end
|
6372
6386
|
end
|
6373
6387
|
|
6388
|
+
# * TrafficShapingConfig defines the configuration for shaping API traffic by
|
6389
|
+
# specifying a quota limit and the duration over which this limit is enforced.
|
6390
|
+
# This configuration helps to control and manage the rate at which API calls are
|
6391
|
+
# made on the client side, preventing service overload on the backend. For
|
6392
|
+
# example: - if the quota limit is 100 calls per 10 seconds, then the message
|
6393
|
+
# would be: ` quota_limit: 100 duration: ` seconds: 10 ` ` - if the quota limit
|
6394
|
+
# is 100 calls per 5 minutes, then the message would be: ` quota_limit: 100
|
6395
|
+
# duration: ` seconds: 300 ` ` - if the quota limit is 10000 calls per day, then
|
6396
|
+
# the message would be: ` quota_limit: 10000 duration: ` seconds: 86400 ` and so
|
6397
|
+
# on.
|
6398
|
+
class GoogleCloudConnectorsV1TrafficShapingConfig
|
6399
|
+
include Google::Apis::Core::Hashable
|
6400
|
+
|
6401
|
+
# Required. * The duration over which the API call quota limits are calculated.
|
6402
|
+
# This duration is used to define the time window for evaluating if the number
|
6403
|
+
# of API calls made by a user is within the allowed quota limits. For example: -
|
6404
|
+
# To define a quota sampled over 16 seconds, set `seconds` to 16 - To define a
|
6405
|
+
# quota sampled over 5 minutes, set `seconds` to 300 (5 * 60) - To define a
|
6406
|
+
# quota sampled over 1 day, set `seconds` to 86400 (24 * 60 * 60) and so on. It
|
6407
|
+
# is important to note that this duration is not the time the quota is valid for,
|
6408
|
+
# but rather the time window over which the quota is evaluated. For example, if
|
6409
|
+
# the quota is 100 calls per 10 seconds, then this duration field would be set
|
6410
|
+
# to 10 seconds.
|
6411
|
+
# Corresponds to the JSON property `duration`
|
6412
|
+
# @return [String]
|
6413
|
+
attr_accessor :duration
|
6414
|
+
|
6415
|
+
# Required. Maximum number of api calls allowed.
|
6416
|
+
# Corresponds to the JSON property `quotaLimit`
|
6417
|
+
# @return [Fixnum]
|
6418
|
+
attr_accessor :quota_limit
|
6419
|
+
|
6420
|
+
def initialize(**args)
|
6421
|
+
update!(**args)
|
6422
|
+
end
|
6423
|
+
|
6424
|
+
# Update properties of this object
|
6425
|
+
def update!(**args)
|
6426
|
+
@duration = args[:duration] if args.key?(:duration)
|
6427
|
+
@quota_limit = args[:quota_limit] if args.key?(:quota_limit)
|
6428
|
+
end
|
6429
|
+
end
|
6430
|
+
|
6374
6431
|
# The access token represents the authorization of a specific application to
|
6375
6432
|
# access specific parts of a user’s data.
|
6376
6433
|
class GoogleCloudIntegrationsV1alphaAccessToken
|
@@ -6572,7 +6629,7 @@ module Google
|
|
6572
6629
|
# @return [String]
|
6573
6630
|
attr_accessor :creator_email
|
6574
6631
|
|
6575
|
-
# Credential type of the encrypted credential.
|
6632
|
+
# Required. Credential type of the encrypted credential.
|
6576
6633
|
# Corresponds to the JSON property `credentialType`
|
6577
6634
|
# @return [String]
|
6578
6635
|
attr_accessor :credential_type
|
@@ -6582,7 +6639,7 @@ module Google
|
|
6582
6639
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCredential]
|
6583
6640
|
attr_accessor :decrypted_credential
|
6584
6641
|
|
6585
|
-
# A description of the auth config.
|
6642
|
+
# Optional. A description of the auth config.
|
6586
6643
|
# Corresponds to the JSON property `description`
|
6587
6644
|
# @return [String]
|
6588
6645
|
attr_accessor :description
|
@@ -6599,8 +6656,9 @@ module Google
|
|
6599
6656
|
# @return [String]
|
6600
6657
|
attr_accessor :encrypted_credential
|
6601
6658
|
|
6602
|
-
# User can define the time to receive notification after which the
|
6603
|
-
# becomes invalid. Support up to 30 days. Support granularity in
|
6659
|
+
# Optional. User can define the time to receive notification after which the
|
6660
|
+
# auth config becomes invalid. Support up to 30 days. Support granularity in
|
6661
|
+
# hours.
|
6604
6662
|
# Corresponds to the JSON property `expiryNotificationDuration`
|
6605
6663
|
# @return [Array<String>]
|
6606
6664
|
attr_accessor :expiry_notification_duration
|
@@ -6618,9 +6676,9 @@ module Google
|
|
6618
6676
|
# @return [String]
|
6619
6677
|
attr_accessor :name
|
6620
6678
|
|
6621
|
-
# User provided expiry time to override. For the example of Salesforce,
|
6622
|
-
# password credentials can be valid for 6 months depending on the
|
6623
|
-
# settings.
|
6679
|
+
# Optional. User provided expiry time to override. For the example of Salesforce,
|
6680
|
+
# username/password credentials can be valid for 6 months depending on the
|
6681
|
+
# instance settings.
|
6624
6682
|
# Corresponds to the JSON property `overrideValidTime`
|
6625
6683
|
# @return [String]
|
6626
6684
|
attr_accessor :override_valid_time
|
@@ -6640,13 +6698,13 @@ module Google
|
|
6640
6698
|
# @return [String]
|
6641
6699
|
attr_accessor :update_time
|
6642
6700
|
|
6643
|
-
# The time until the auth config is valid. Empty or max value is
|
6644
|
-
# auth config won't expire.
|
6701
|
+
# Optional. The time until the auth config is valid. Empty or max value is
|
6702
|
+
# considered the auth config won't expire.
|
6645
6703
|
# Corresponds to the JSON property `validTime`
|
6646
6704
|
# @return [String]
|
6647
6705
|
attr_accessor :valid_time
|
6648
6706
|
|
6649
|
-
# The visibility of the auth config.
|
6707
|
+
# Optional. The visibility of the auth config.
|
6650
6708
|
# Corresponds to the JSON property `visibility`
|
6651
6709
|
# @return [String]
|
6652
6710
|
attr_accessor :visibility
|
@@ -7836,6 +7894,11 @@ module Google
|
|
7836
7894
|
class GoogleCloudIntegrationsV1alphaExecution
|
7837
7895
|
include Google::Apis::Core::Hashable
|
7838
7896
|
|
7897
|
+
# Optional. Cloud KMS resource name for the CMEK encryption key.
|
7898
|
+
# Corresponds to the JSON property `cloudKmsKey`
|
7899
|
+
# @return [String]
|
7900
|
+
attr_accessor :cloud_kms_key
|
7901
|
+
|
7839
7902
|
# Cloud Logging details for execution info
|
7840
7903
|
# Corresponds to the JSON property `cloudLoggingDetails`
|
7841
7904
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudLoggingDetails]
|
@@ -7931,6 +7994,7 @@ module Google
|
|
7931
7994
|
|
7932
7995
|
# Update properties of this object
|
7933
7996
|
def update!(**args)
|
7997
|
+
@cloud_kms_key = args[:cloud_kms_key] if args.key?(:cloud_kms_key)
|
7934
7998
|
@cloud_logging_details = args[:cloud_logging_details] if args.key?(:cloud_logging_details)
|
7935
7999
|
@create_time = args[:create_time] if args.key?(:create_time)
|
7936
8000
|
@direct_sub_executions = args[:direct_sub_executions] if args.key?(:direct_sub_executions)
|
@@ -8687,6 +8751,11 @@ module Google
|
|
8687
8751
|
class GoogleCloudIntegrationsV1alphaIntegrationVersion
|
8688
8752
|
include Google::Apis::Core::Hashable
|
8689
8753
|
|
8754
|
+
# Optional. Cloud KMS resource name for the CMEK encryption key.
|
8755
|
+
# Corresponds to the JSON property `cloudKmsKey`
|
8756
|
+
# @return [String]
|
8757
|
+
attr_accessor :cloud_kms_key
|
8758
|
+
|
8690
8759
|
# Cloud Logging details for execution info
|
8691
8760
|
# Corresponds to the JSON property `cloudLoggingDetails`
|
8692
8761
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudLoggingDetails]
|
@@ -8791,7 +8860,7 @@ module Google
|
|
8791
8860
|
# @return [String]
|
8792
8861
|
attr_accessor :run_as_service_account
|
8793
8862
|
|
8794
|
-
#
|
8863
|
+
# Output only. An increasing sequence that is set when a new snapshot is created.
|
8795
8864
|
# The last created snapshot can be identified by [workflow_name, org_id latest(
|
8796
8865
|
# snapshot_number)]. However, last created snapshot need not be same as the HEAD.
|
8797
8866
|
# So users should always use "HEAD" tag to identify the head.
|
@@ -8855,6 +8924,7 @@ module Google
|
|
8855
8924
|
|
8856
8925
|
# Update properties of this object
|
8857
8926
|
def update!(**args)
|
8927
|
+
@cloud_kms_key = args[:cloud_kms_key] if args.key?(:cloud_kms_key)
|
8858
8928
|
@cloud_logging_details = args[:cloud_logging_details] if args.key?(:cloud_logging_details)
|
8859
8929
|
@create_time = args[:create_time] if args.key?(:create_time)
|
8860
8930
|
@created_from_template = args[:created_from_template] if args.key?(:created_from_template)
|
@@ -9346,31 +9416,6 @@ module Google
|
|
9346
9416
|
end
|
9347
9417
|
end
|
9348
9418
|
|
9349
|
-
# The response for listing the functional test execution data.
|
9350
|
-
class GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse
|
9351
|
-
include Google::Apis::Core::Hashable
|
9352
|
-
|
9353
|
-
# The detailed information of requested executions
|
9354
|
-
# Corresponds to the JSON property `executions`
|
9355
|
-
# @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecution>]
|
9356
|
-
attr_accessor :executions
|
9357
|
-
|
9358
|
-
# The token used to retrieve the next page results.
|
9359
|
-
# Corresponds to the JSON property `nextPageToken`
|
9360
|
-
# @return [String]
|
9361
|
-
attr_accessor :next_page_token
|
9362
|
-
|
9363
|
-
def initialize(**args)
|
9364
|
-
update!(**args)
|
9365
|
-
end
|
9366
|
-
|
9367
|
-
# Update properties of this object
|
9368
|
-
def update!(**args)
|
9369
|
-
@executions = args[:executions] if args.key?(:executions)
|
9370
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
9371
|
-
end
|
9372
|
-
end
|
9373
|
-
|
9374
9419
|
# Response for ListTestCases
|
9375
9420
|
class GoogleCloudIntegrationsV1alphaListTestCasesResponse
|
9376
9421
|
include Google::Apis::Core::Hashable
|
@@ -10209,6 +10254,93 @@ module Google
|
|
10209
10254
|
end
|
10210
10255
|
end
|
10211
10256
|
|
10257
|
+
# Response for SearchIntegrations.
|
10258
|
+
class GoogleCloudIntegrationsV1alphaSearchIntegrationsResponse
|
10259
|
+
include Google::Apis::Core::Hashable
|
10260
|
+
|
10261
|
+
# The list of integrations that match the search criteria.
|
10262
|
+
# Corresponds to the JSON property `integrations`
|
10263
|
+
# @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchIntegrationsResponseIntegrationSearchResult>]
|
10264
|
+
attr_accessor :integrations
|
10265
|
+
|
10266
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
10267
|
+
# field is omitted, there are no subsequent pages.
|
10268
|
+
# Corresponds to the JSON property `nextPageToken`
|
10269
|
+
# @return [String]
|
10270
|
+
attr_accessor :next_page_token
|
10271
|
+
|
10272
|
+
def initialize(**args)
|
10273
|
+
update!(**args)
|
10274
|
+
end
|
10275
|
+
|
10276
|
+
# Update properties of this object
|
10277
|
+
def update!(**args)
|
10278
|
+
@integrations = args[:integrations] if args.key?(:integrations)
|
10279
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
10280
|
+
end
|
10281
|
+
end
|
10282
|
+
|
10283
|
+
# The integration search result with integration level information.
|
10284
|
+
class GoogleCloudIntegrationsV1alphaSearchIntegrationsResponseIntegrationSearchResult
|
10285
|
+
include Google::Apis::Core::Hashable
|
10286
|
+
|
10287
|
+
# Output only. The create time of the integration version.
|
10288
|
+
# Corresponds to the JSON property `createTime`
|
10289
|
+
# @return [String]
|
10290
|
+
attr_accessor :create_time
|
10291
|
+
|
10292
|
+
# The creator of the integration version.
|
10293
|
+
# Corresponds to the JSON property `creator`
|
10294
|
+
# @return [String]
|
10295
|
+
attr_accessor :creator
|
10296
|
+
|
10297
|
+
# The description of the integration version.
|
10298
|
+
# Corresponds to the JSON property `description`
|
10299
|
+
# @return [String]
|
10300
|
+
attr_accessor :description
|
10301
|
+
|
10302
|
+
# The integration id.
|
10303
|
+
# Corresponds to the JSON property `id`
|
10304
|
+
# @return [String]
|
10305
|
+
attr_accessor :id
|
10306
|
+
|
10307
|
+
# The integration document metadata.
|
10308
|
+
# Corresponds to the JSON property `name`
|
10309
|
+
# @return [String]
|
10310
|
+
attr_accessor :name
|
10311
|
+
|
10312
|
+
# The region of the integration version.
|
10313
|
+
# Corresponds to the JSON property `region`
|
10314
|
+
# @return [String]
|
10315
|
+
attr_accessor :region
|
10316
|
+
|
10317
|
+
# Output only. The status of the integration version.
|
10318
|
+
# Corresponds to the JSON property `status`
|
10319
|
+
# @return [String]
|
10320
|
+
attr_accessor :status
|
10321
|
+
|
10322
|
+
# The version of the integration version.
|
10323
|
+
# Corresponds to the JSON property `version`
|
10324
|
+
# @return [String]
|
10325
|
+
attr_accessor :version
|
10326
|
+
|
10327
|
+
def initialize(**args)
|
10328
|
+
update!(**args)
|
10329
|
+
end
|
10330
|
+
|
10331
|
+
# Update properties of this object
|
10332
|
+
def update!(**args)
|
10333
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
10334
|
+
@creator = args[:creator] if args.key?(:creator)
|
10335
|
+
@description = args[:description] if args.key?(:description)
|
10336
|
+
@id = args[:id] if args.key?(:id)
|
10337
|
+
@name = args[:name] if args.key?(:name)
|
10338
|
+
@region = args[:region] if args.key?(:region)
|
10339
|
+
@status = args[:status] if args.key?(:status)
|
10340
|
+
@version = args[:version] if args.key?(:version)
|
10341
|
+
end
|
10342
|
+
end
|
10343
|
+
|
10212
10344
|
# Response for a request to search templates
|
10213
10345
|
class GoogleCloudIntegrationsV1alphaSearchTemplatesResponse
|
10214
10346
|
include Google::Apis::Core::Hashable
|
@@ -10289,7 +10421,7 @@ module Google
|
|
10289
10421
|
class GoogleCloudIntegrationsV1alphaSfdcChannel
|
10290
10422
|
include Google::Apis::Core::Hashable
|
10291
10423
|
|
10292
|
-
# The Channel topic defined by salesforce once an channel is opened
|
10424
|
+
# Required. The Channel topic defined by salesforce once an channel is opened
|
10293
10425
|
# Corresponds to the JSON property `channelTopic`
|
10294
10426
|
# @return [String]
|
10295
10427
|
attr_accessor :channel_topic
|
@@ -10304,12 +10436,12 @@ module Google
|
|
10304
10436
|
# @return [String]
|
10305
10437
|
attr_accessor :delete_time
|
10306
10438
|
|
10307
|
-
# The description for this channel
|
10439
|
+
# Optional. The description for this channel
|
10308
10440
|
# Corresponds to the JSON property `description`
|
10309
10441
|
# @return [String]
|
10310
10442
|
attr_accessor :description
|
10311
10443
|
|
10312
|
-
# Client level unique name/alias to easily reference a channel.
|
10444
|
+
# Optional. Client level unique name/alias to easily reference a channel.
|
10313
10445
|
# Corresponds to the JSON property `displayName`
|
10314
10446
|
# @return [String]
|
10315
10447
|
attr_accessor :display_name
|
@@ -10375,12 +10507,12 @@ module Google
|
|
10375
10507
|
# @return [String]
|
10376
10508
|
attr_accessor :delete_time
|
10377
10509
|
|
10378
|
-
# A description of the sfdc instance.
|
10510
|
+
# Optional. A description of the sfdc instance.
|
10379
10511
|
# Corresponds to the JSON property `description`
|
10380
10512
|
# @return [String]
|
10381
10513
|
attr_accessor :description
|
10382
10514
|
|
10383
|
-
# User selected unique name/alias to easily reference an instance.
|
10515
|
+
# Optional. User selected unique name/alias to easily reference an instance.
|
10384
10516
|
# Corresponds to the JSON property `displayName`
|
10385
10517
|
# @return [String]
|
10386
10518
|
attr_accessor :display_name
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250310"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -940,6 +940,12 @@ module Google
|
|
940
940
|
include Google::Apis::Core::JsonObjectSupport
|
941
941
|
end
|
942
942
|
|
943
|
+
class GoogleCloudConnectorsV1TrafficShapingConfig
|
944
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
945
|
+
|
946
|
+
include Google::Apis::Core::JsonObjectSupport
|
947
|
+
end
|
948
|
+
|
943
949
|
class GoogleCloudIntegrationsV1alphaAccessToken
|
944
950
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
945
951
|
|
@@ -1420,12 +1426,6 @@ module Google
|
|
1420
1426
|
include Google::Apis::Core::JsonObjectSupport
|
1421
1427
|
end
|
1422
1428
|
|
1423
|
-
class GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse
|
1424
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1425
|
-
|
1426
|
-
include Google::Apis::Core::JsonObjectSupport
|
1427
|
-
end
|
1428
|
-
|
1429
1429
|
class GoogleCloudIntegrationsV1alphaListTestCasesResponse
|
1430
1430
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1431
1431
|
|
@@ -1564,6 +1564,18 @@ module Google
|
|
1564
1564
|
include Google::Apis::Core::JsonObjectSupport
|
1565
1565
|
end
|
1566
1566
|
|
1567
|
+
class GoogleCloudIntegrationsV1alphaSearchIntegrationsResponse
|
1568
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1569
|
+
|
1570
|
+
include Google::Apis::Core::JsonObjectSupport
|
1571
|
+
end
|
1572
|
+
|
1573
|
+
class GoogleCloudIntegrationsV1alphaSearchIntegrationsResponseIntegrationSearchResult
|
1574
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1575
|
+
|
1576
|
+
include Google::Apis::Core::JsonObjectSupport
|
1577
|
+
end
|
1578
|
+
|
1567
1579
|
class GoogleCloudIntegrationsV1alphaSearchTemplatesResponse
|
1568
1580
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1569
1581
|
|
@@ -2659,6 +2671,7 @@ module Google
|
|
2659
2671
|
class EnterpriseCrmEventbusProtoTaskExecutionDetails
|
2660
2672
|
# @private
|
2661
2673
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2674
|
+
property :skipped_on_failure, as: 'skippedOnFailure'
|
2662
2675
|
collection :task_attempt_stats, as: 'taskAttemptStats', class: Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTaskExecutionDetailsTaskAttemptStats, decorator: Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTaskExecutionDetailsTaskAttemptStats::Representation
|
2663
2676
|
|
2664
2677
|
property :task_execution_state, as: 'taskExecutionState'
|
@@ -3378,6 +3391,8 @@ module Google
|
|
3378
3391
|
property :subscription_type, as: 'subscriptionType'
|
3379
3392
|
property :suspended, as: 'suspended'
|
3380
3393
|
property :tls_service_directory, as: 'tlsServiceDirectory'
|
3394
|
+
collection :traffic_shaping_configs, as: 'trafficShapingConfigs', class: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1TrafficShapingConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1TrafficShapingConfig::Representation
|
3395
|
+
|
3381
3396
|
property :update_time, as: 'updateTime'
|
3382
3397
|
end
|
3383
3398
|
end
|
@@ -3594,6 +3609,14 @@ module Google
|
|
3594
3609
|
end
|
3595
3610
|
end
|
3596
3611
|
|
3612
|
+
class GoogleCloudConnectorsV1TrafficShapingConfig
|
3613
|
+
# @private
|
3614
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3615
|
+
property :duration, as: 'duration'
|
3616
|
+
property :quota_limit, :numeric_string => true, as: 'quotaLimit'
|
3617
|
+
end
|
3618
|
+
end
|
3619
|
+
|
3597
3620
|
class GoogleCloudIntegrationsV1alphaAccessToken
|
3598
3621
|
# @private
|
3599
3622
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4007,6 +4030,7 @@ module Google
|
|
4007
4030
|
class GoogleCloudIntegrationsV1alphaExecution
|
4008
4031
|
# @private
|
4009
4032
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4033
|
+
property :cloud_kms_key, as: 'cloudKmsKey'
|
4010
4034
|
property :cloud_logging_details, as: 'cloudLoggingDetails', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudLoggingDetails, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudLoggingDetails::Representation
|
4011
4035
|
|
4012
4036
|
property :create_time, as: 'createTime'
|
@@ -4238,6 +4262,7 @@ module Google
|
|
4238
4262
|
class GoogleCloudIntegrationsV1alphaIntegrationVersion
|
4239
4263
|
# @private
|
4240
4264
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4265
|
+
property :cloud_kms_key, as: 'cloudKmsKey'
|
4241
4266
|
property :cloud_logging_details, as: 'cloudLoggingDetails', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudLoggingDetails, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudLoggingDetails::Representation
|
4242
4267
|
|
4243
4268
|
property :create_time, as: 'createTime'
|
@@ -4435,15 +4460,6 @@ module Google
|
|
4435
4460
|
end
|
4436
4461
|
end
|
4437
4462
|
|
4438
|
-
class GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse
|
4439
|
-
# @private
|
4440
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
4441
|
-
collection :executions, as: 'executions', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecution, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecution::Representation
|
4442
|
-
|
4443
|
-
property :next_page_token, as: 'nextPageToken'
|
4444
|
-
end
|
4445
|
-
end
|
4446
|
-
|
4447
4463
|
class GoogleCloudIntegrationsV1alphaListTestCasesResponse
|
4448
4464
|
# @private
|
4449
4465
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4681,6 +4697,29 @@ module Google
|
|
4681
4697
|
end
|
4682
4698
|
end
|
4683
4699
|
|
4700
|
+
class GoogleCloudIntegrationsV1alphaSearchIntegrationsResponse
|
4701
|
+
# @private
|
4702
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4703
|
+
collection :integrations, as: 'integrations', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchIntegrationsResponseIntegrationSearchResult, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchIntegrationsResponseIntegrationSearchResult::Representation
|
4704
|
+
|
4705
|
+
property :next_page_token, as: 'nextPageToken'
|
4706
|
+
end
|
4707
|
+
end
|
4708
|
+
|
4709
|
+
class GoogleCloudIntegrationsV1alphaSearchIntegrationsResponseIntegrationSearchResult
|
4710
|
+
# @private
|
4711
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4712
|
+
property :create_time, as: 'createTime'
|
4713
|
+
property :creator, as: 'creator'
|
4714
|
+
property :description, as: 'description'
|
4715
|
+
property :id, as: 'id'
|
4716
|
+
property :name, as: 'name'
|
4717
|
+
property :region, as: 'region'
|
4718
|
+
property :status, as: 'status'
|
4719
|
+
property :version, as: 'version'
|
4720
|
+
end
|
4721
|
+
end
|
4722
|
+
|
4684
4723
|
class GoogleCloudIntegrationsV1alphaSearchTemplatesResponse
|
4685
4724
|
# @private
|
4686
4725
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1277,6 +1277,57 @@ module Google
|
|
1277
1277
|
execute_or_queue_command(command, &block)
|
1278
1278
|
end
|
1279
1279
|
|
1280
|
+
# Searches and returns the list of integrations in the specified project.
|
1281
|
+
# @param [String] parent
|
1282
|
+
# Required. Project and location from which the integrations should be listed.
|
1283
|
+
# Format: projects/*/locations/*/resources/integrations
|
1284
|
+
# @param [String] filter
|
1285
|
+
# Optional. The pre-filter to be applied to the search. This should follow the
|
1286
|
+
# expressions defined in https://cloud.google.com/generative-ai-app-builder/docs/
|
1287
|
+
# filter-search-metadata. For example, "status:ANY("ACTIVE")" will return all
|
1288
|
+
# the resources whose status contains the "ACTIVE".
|
1289
|
+
# @param [Fixnum] page_size
|
1290
|
+
# Optional. The maximum number of results to return. The service may return
|
1291
|
+
# fewer than this value. If unspecified, at most 10 results will be returned.
|
1292
|
+
# The maximum value is 100; values above 100 will be coerced to 100.
|
1293
|
+
# @param [String] page_token
|
1294
|
+
# Optional. A page token, received from a previous `SearchIntegrations` call.
|
1295
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
1296
|
+
# parameters provided to `SearchIntegrations` must match the call that provided
|
1297
|
+
# the page token.
|
1298
|
+
# @param [String] query
|
1299
|
+
# Required. The user query
|
1300
|
+
# @param [String] fields
|
1301
|
+
# Selector specifying which fields to include in a partial response.
|
1302
|
+
# @param [String] quota_user
|
1303
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1304
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1305
|
+
# @param [Google::Apis::RequestOptions] options
|
1306
|
+
# Request-specific options
|
1307
|
+
#
|
1308
|
+
# @yield [result, err] Result & error if block supplied
|
1309
|
+
# @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchIntegrationsResponse] parsed result object
|
1310
|
+
# @yieldparam err [StandardError] error object if request failed
|
1311
|
+
#
|
1312
|
+
# @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchIntegrationsResponse]
|
1313
|
+
#
|
1314
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1315
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1316
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1317
|
+
def search_project_location_integrations(parent, filter: nil, page_size: nil, page_token: nil, query: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1318
|
+
command = make_simple_command(:get, 'v1/{+parent}/integrations:search', options)
|
1319
|
+
command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchIntegrationsResponse::Representation
|
1320
|
+
command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchIntegrationsResponse
|
1321
|
+
command.params['parent'] = parent unless parent.nil?
|
1322
|
+
command.query['filter'] = filter unless filter.nil?
|
1323
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
1324
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
1325
|
+
command.query['query'] = query unless query.nil?
|
1326
|
+
command.query['fields'] = fields unless fields.nil?
|
1327
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1328
|
+
execute_or_queue_command(command, &block)
|
1329
|
+
end
|
1330
|
+
|
1280
1331
|
# Execute the integration in draft state
|
1281
1332
|
# @param [String] name
|
1282
1333
|
# Output only. Auto-generated primary key.
|
@@ -2333,70 +2384,6 @@ module Google
|
|
2333
2384
|
execute_or_queue_command(command, &block)
|
2334
2385
|
end
|
2335
2386
|
|
2336
|
-
# Lists the results of all functional test executions. The response includes the
|
2337
|
-
# same information as the [execution log](https://cloud.google.com/application-
|
2338
|
-
# integration/docs/viewing-logs) in the Integration UI.
|
2339
|
-
# @param [String] parent
|
2340
|
-
# Required. The parent resource name of the test case execution.
|
2341
|
-
# @param [String] filter
|
2342
|
-
# Optional. Standard filter field, we support filtering on following fields:
|
2343
|
-
# test_case_id: the ID of the test case. CreateTimestamp: the execution created
|
2344
|
-
# time. event_execution_state: the state of the executions. execution_id: the id
|
2345
|
-
# of the execution. trigger_id: the id of the trigger. parameter_type: the type
|
2346
|
-
# of the parameters involved in the execution. All fields support for EQUALS, in
|
2347
|
-
# additional: CreateTimestamp support for LESS_THAN, GREATER_THAN ParameterType
|
2348
|
-
# support for HAS For example: "parameter_type" HAS \"string\" Also supports
|
2349
|
-
# operators like AND, OR, NOT For example, trigger_id=\"id1\" AND test_case_id=\"
|
2350
|
-
# testCaseId\"
|
2351
|
-
# @param [String] order_by
|
2352
|
-
# Optional. The results would be returned in order you specified here. Currently
|
2353
|
-
# supporting "last_modified_time" and "create_time".
|
2354
|
-
# @param [Fixnum] page_size
|
2355
|
-
# Optional. The size of entries in the response.
|
2356
|
-
# @param [String] page_token
|
2357
|
-
# Optional. The token returned in the previous response.
|
2358
|
-
# @param [String] read_mask
|
2359
|
-
# Optional. View mask for the response data. If set, only the field specified
|
2360
|
-
# will be returned as part of the result. If not set, all fields in event
|
2361
|
-
# execution info will be filled and returned.
|
2362
|
-
# @param [Boolean] truncate_params
|
2363
|
-
# Optional. If true, the service will truncate the params to only keep the first
|
2364
|
-
# 1000 characters of string params and empty the executions in order to make
|
2365
|
-
# response smaller. Only works for UI and when the params fields are not
|
2366
|
-
# filtered out.
|
2367
|
-
# @param [String] fields
|
2368
|
-
# Selector specifying which fields to include in a partial response.
|
2369
|
-
# @param [String] quota_user
|
2370
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
2371
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2372
|
-
# @param [Google::Apis::RequestOptions] options
|
2373
|
-
# Request-specific options
|
2374
|
-
#
|
2375
|
-
# @yield [result, err] Result & error if block supplied
|
2376
|
-
# @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse] parsed result object
|
2377
|
-
# @yieldparam err [StandardError] error object if request failed
|
2378
|
-
#
|
2379
|
-
# @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse]
|
2380
|
-
#
|
2381
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2382
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2383
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2384
|
-
def list_project_location_integration_version_test_case_executions(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, read_mask: nil, truncate_params: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2385
|
-
command = make_simple_command(:get, 'v1/{+parent}:executions', options)
|
2386
|
-
command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse::Representation
|
2387
|
-
command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse
|
2388
|
-
command.params['parent'] = parent unless parent.nil?
|
2389
|
-
command.query['filter'] = filter unless filter.nil?
|
2390
|
-
command.query['orderBy'] = order_by unless order_by.nil?
|
2391
|
-
command.query['pageSize'] = page_size unless page_size.nil?
|
2392
|
-
command.query['pageToken'] = page_token unless page_token.nil?
|
2393
|
-
command.query['readMask'] = read_mask unless read_mask.nil?
|
2394
|
-
command.query['truncateParams'] = truncate_params unless truncate_params.nil?
|
2395
|
-
command.query['fields'] = fields unless fields.nil?
|
2396
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2397
|
-
execute_or_queue_command(command, &block)
|
2398
|
-
end
|
2399
|
-
|
2400
2387
|
# Updates a test case
|
2401
2388
|
# @param [String] name
|
2402
2389
|
# Output only. Auto-generated primary key.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-integrations_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1/v0.6.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:
|