google-apis-integrations_v1 0.5.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: 7b5044f558d45dd60ec9ea051fb7235d879ab8c41dd9d87d9ac6c283d2fd42b7
4
- data.tar.gz: 90d3aabc3e6490da2807004233ba0694ddfb2c19563d21f1727dd3fe5d812c9e
3
+ metadata.gz: f0ae33a5edd3260945a7155f2372e8f9fc5bbf24f01d38d9c32b81866d92e1f7
4
+ data.tar.gz: 55d42d3841fbe33664bffd1f33233efdbedd83a9c102926e2b9237c7242e9987
5
5
  SHA512:
6
- metadata.gz: aa2cfa73e26d65f329bad5d279b29ebb325bad6b56b914be1009b14a46539a54ebfcc2107ce80193d7ea298928ef318803167b5d26bbac5462f345441bcdbeed
7
- data.tar.gz: 4103f0ca3d1753e107d5d2a9b96240cc5d001338c86b281008f43561078720ffbd0865dc6e83bb824cad651a3deb7a05c844f4e6a3ea04588a91dfd495990068
6
+ metadata.gz: 891ee470a8c75701c5beba0204019af1bf883df5e8199a535388416cf246bdb55e44ca1b0ec33b2159e77e403abe29e7915e77ea7a6a56b8571f4cd112fb4266
7
+ data.tar.gz: 5284489a6e8d577260e92dcac23ddd3b6939822e84e4f61fb831448e67570149fe30dba431ae2b083db76b80a589ebf4ac88bf4d85aaed0a5789e1c3479a3397
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.5.0 (2025-03-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20250302
@@ -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 cofiguration provides infra configs like rate limit threshold which need
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 cofiguration provides infra configs like rate limit threshold which need
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 auth config
6603
- # becomes invalid. Support up to 30 days. Support granularity in hours.
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, username/
6622
- # password credentials can be valid for 6 months depending on the instance
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 considered the
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
@@ -8802,7 +8860,7 @@ module Google
8802
8860
  # @return [String]
8803
8861
  attr_accessor :run_as_service_account
8804
8862
 
8805
- # Optional. An increasing sequence that is set when a new snapshot is created.
8863
+ # Output only. An increasing sequence that is set when a new snapshot is created.
8806
8864
  # The last created snapshot can be identified by [workflow_name, org_id latest(
8807
8865
  # snapshot_number)]. However, last created snapshot need not be same as the HEAD.
8808
8866
  # So users should always use "HEAD" tag to identify the head.
@@ -10196,6 +10254,93 @@ module Google
10196
10254
  end
10197
10255
  end
10198
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
+
10199
10344
  # Response for a request to search templates
10200
10345
  class GoogleCloudIntegrationsV1alphaSearchTemplatesResponse
10201
10346
  include Google::Apis::Core::Hashable
@@ -10276,7 +10421,7 @@ module Google
10276
10421
  class GoogleCloudIntegrationsV1alphaSfdcChannel
10277
10422
  include Google::Apis::Core::Hashable
10278
10423
 
10279
- # The Channel topic defined by salesforce once an channel is opened
10424
+ # Required. The Channel topic defined by salesforce once an channel is opened
10280
10425
  # Corresponds to the JSON property `channelTopic`
10281
10426
  # @return [String]
10282
10427
  attr_accessor :channel_topic
@@ -10291,12 +10436,12 @@ module Google
10291
10436
  # @return [String]
10292
10437
  attr_accessor :delete_time
10293
10438
 
10294
- # The description for this channel
10439
+ # Optional. The description for this channel
10295
10440
  # Corresponds to the JSON property `description`
10296
10441
  # @return [String]
10297
10442
  attr_accessor :description
10298
10443
 
10299
- # Client level unique name/alias to easily reference a channel.
10444
+ # Optional. Client level unique name/alias to easily reference a channel.
10300
10445
  # Corresponds to the JSON property `displayName`
10301
10446
  # @return [String]
10302
10447
  attr_accessor :display_name
@@ -10362,12 +10507,12 @@ module Google
10362
10507
  # @return [String]
10363
10508
  attr_accessor :delete_time
10364
10509
 
10365
- # A description of the sfdc instance.
10510
+ # Optional. A description of the sfdc instance.
10366
10511
  # Corresponds to the JSON property `description`
10367
10512
  # @return [String]
10368
10513
  attr_accessor :description
10369
10514
 
10370
- # User selected unique name/alias to easily reference an instance.
10515
+ # Optional. User selected unique name/alias to easily reference an instance.
10371
10516
  # Corresponds to the JSON property `displayName`
10372
10517
  # @return [String]
10373
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.5.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 = "20250302"
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
 
@@ -1558,6 +1564,18 @@ module Google
1558
1564
  include Google::Apis::Core::JsonObjectSupport
1559
1565
  end
1560
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
+
1561
1579
  class GoogleCloudIntegrationsV1alphaSearchTemplatesResponse
1562
1580
  class Representation < Google::Apis::Core::JsonRepresentation; end
1563
1581
 
@@ -2653,6 +2671,7 @@ module Google
2653
2671
  class EnterpriseCrmEventbusProtoTaskExecutionDetails
2654
2672
  # @private
2655
2673
  class Representation < Google::Apis::Core::JsonRepresentation
2674
+ property :skipped_on_failure, as: 'skippedOnFailure'
2656
2675
  collection :task_attempt_stats, as: 'taskAttemptStats', class: Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTaskExecutionDetailsTaskAttemptStats, decorator: Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTaskExecutionDetailsTaskAttemptStats::Representation
2657
2676
 
2658
2677
  property :task_execution_state, as: 'taskExecutionState'
@@ -3372,6 +3391,8 @@ module Google
3372
3391
  property :subscription_type, as: 'subscriptionType'
3373
3392
  property :suspended, as: 'suspended'
3374
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
+
3375
3396
  property :update_time, as: 'updateTime'
3376
3397
  end
3377
3398
  end
@@ -3588,6 +3609,14 @@ module Google
3588
3609
  end
3589
3610
  end
3590
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
+
3591
3620
  class GoogleCloudIntegrationsV1alphaAccessToken
3592
3621
  # @private
3593
3622
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4668,6 +4697,29 @@ module Google
4668
4697
  end
4669
4698
  end
4670
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
+
4671
4723
  class GoogleCloudIntegrationsV1alphaSearchTemplatesResponse
4672
4724
  # @private
4673
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.
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.5.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-09 00:00:00.000000000 Z
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.5.0
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: