google-apis-integrations_v1alpha 0.15.0 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8770442f9f0c1549a990c877bc498900bbbb811d78a7f43534466332c2d962b
4
- data.tar.gz: faa968371f8a3ee417b96e7f355c8d7167dedfe7b6617219d27c20afb5954727
3
+ metadata.gz: 9e35a73d657f159872ca243ad728ccb536a7c3136b852a55bd40e6f7c352d78f
4
+ data.tar.gz: b1ed2b8afe972ae4fad398bd824d7441dfca064e45ed9d4437ec6f4ca35a677a
5
5
  SHA512:
6
- metadata.gz: ec1f92dd63d140e7f516d9fc1034746fd757eab01294c027a82ce6e6cb8ce9adc9a98046e0176c6aacd2e3b1e07fe729fef96bf6bbf66639295055c65818f69f
7
- data.tar.gz: 51c0b10af33c8856d7cbbf7f12be82da66336fe99706e68b2359f10e3354f2c87fcdacdf7e4791ecc3b3f2182f2f0c037f48b831db1ad46d341da9d22179dde6
6
+ metadata.gz: f61f4895cd36a431da67e3dc8086d863dbfb00506d1763ddd73958ed3d42f4f1b9f94e89c430cff7ef40f17b07abb2804098b6e47d8942c7ce39c2b25e2c52aa
7
+ data.tar.gz: 4ce4a6bd43cc59012f3330f596134512e92ad5ac73124425f863955537377a9a2fa6bb8947ff8c2c4c31ff9e0c6ae67d194da6248f98807e8b811f8f820d667c
data/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # Release history for google-apis-integrations_v1alpha
2
2
 
3
- ### v0.15.0 (2023-05-07)
3
+ ### v0.16.0 (2023-05-28)
4
4
 
5
- * Regenerated from discovery document revision 20230502
5
+ * Regenerated from discovery document revision 20230524
6
+
7
+ ### v0.15.0 (2023-05-14)
8
+
9
+ * Regenerated from discovery document revision 20230509
6
10
 
7
11
  ### v0.14.0 (2023-04-30)
8
12
 
@@ -4932,6 +4932,11 @@ module Google
4932
4932
  # @return [String]
4933
4933
  attr_accessor :auth_code
4934
4934
 
4935
+ # Auth URL for Authorization Code Flow
4936
+ # Corresponds to the JSON property `authUri`
4937
+ # @return [String]
4938
+ attr_accessor :auth_uri
4939
+
4935
4940
  # Client ID for user-provided OAuth app.
4936
4941
  # Corresponds to the JSON property `clientId`
4937
4942
  # @return [String]
@@ -4970,6 +4975,7 @@ module Google
4970
4975
  # Update properties of this object
4971
4976
  def update!(**args)
4972
4977
  @auth_code = args[:auth_code] if args.key?(:auth_code)
4978
+ @auth_uri = args[:auth_uri] if args.key?(:auth_uri)
4973
4979
  @client_id = args[:client_id] if args.key?(:client_id)
4974
4980
  @client_secret = args[:client_secret] if args.key?(:client_secret)
4975
4981
  @enable_pkce = args[:enable_pkce] if args.key?(:enable_pkce)
@@ -5146,6 +5152,11 @@ module Google
5146
5152
  # @return [String]
5147
5153
  attr_accessor :key
5148
5154
 
5155
+ # Encryption Key value.
5156
+ # Corresponds to the JSON property `keyValue`
5157
+ # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1EncryptionKey]
5158
+ attr_accessor :key_value
5159
+
5149
5160
  # Secret provides a reference to entries in Secret Manager.
5150
5161
  # Corresponds to the JSON property `secretValue`
5151
5162
  # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret]
@@ -5165,6 +5176,7 @@ module Google
5165
5176
  @bool_value = args[:bool_value] if args.key?(:bool_value)
5166
5177
  @int_value = args[:int_value] if args.key?(:int_value)
5167
5178
  @key = args[:key] if args.key?(:key)
5179
+ @key_value = args[:key_value] if args.key?(:key_value)
5168
5180
  @secret_value = args[:secret_value] if args.key?(:secret_value)
5169
5181
  @string_value = args[:string_value] if args.key?(:string_value)
5170
5182
  end
@@ -5184,6 +5196,12 @@ module Google
5184
5196
  # @return [Array<Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable>]
5185
5197
  attr_accessor :config_variables
5186
5198
 
5199
+ # Output only. Connection revision. This field is only updated when the
5200
+ # connection is created or updated by User.
5201
+ # Corresponds to the JSON property `connectionRevision`
5202
+ # @return [Fixnum]
5203
+ attr_accessor :connection_revision
5204
+
5187
5205
  # Required. Connector version on which the connection is created. The format is:
5188
5206
  # projects/*/locations/*/providers/*/connectors/*/versions/* Only global
5189
5207
  # location is supported for ConnectorVersion resource.
@@ -5191,6 +5209,11 @@ module Google
5191
5209
  # @return [String]
5192
5210
  attr_accessor :connector_version
5193
5211
 
5212
+ # Output only. Flag to mark the version indicating the launch stage.
5213
+ # Corresponds to the JSON property `connectorVersionLaunchStage`
5214
+ # @return [String]
5215
+ attr_accessor :connector_version_launch_stage
5216
+
5194
5217
  # Output only. Created time.
5195
5218
  # Corresponds to the JSON property `createTime`
5196
5219
  # @return [String]
@@ -5271,8 +5294,8 @@ module Google
5271
5294
  # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConnectionStatus]
5272
5295
  attr_accessor :status
5273
5296
 
5274
- # Output only. This subscription type enum value states if the metrics should be
5275
- # sent for billing or not.
5297
+ # Output only. This subscription type enum states the subscription type of the
5298
+ # project.
5276
5299
  # Corresponds to the JSON property `subscriptionType`
5277
5300
  # @return [String]
5278
5301
  attr_accessor :subscription_type
@@ -5296,7 +5319,9 @@ module Google
5296
5319
  def update!(**args)
5297
5320
  @auth_config = args[:auth_config] if args.key?(:auth_config)
5298
5321
  @config_variables = args[:config_variables] if args.key?(:config_variables)
5322
+ @connection_revision = args[:connection_revision] if args.key?(:connection_revision)
5299
5323
  @connector_version = args[:connector_version] if args.key?(:connector_version)
5324
+ @connector_version_launch_stage = args[:connector_version_launch_stage] if args.key?(:connector_version_launch_stage)
5300
5325
  @create_time = args[:create_time] if args.key?(:create_time)
5301
5326
  @description = args[:description] if args.key?(:description)
5302
5327
  @destination_configs = args[:destination_configs] if args.key?(:destination_configs)
@@ -5404,6 +5429,33 @@ module Google
5404
5429
  end
5405
5430
  end
5406
5431
 
5432
+ # Encryption Key value.
5433
+ class GoogleCloudConnectorsV1EncryptionKey
5434
+ include Google::Apis::Core::Hashable
5435
+
5436
+ # The [KMS key name] with which the content of the Operation is encrypted. The
5437
+ # expected format: `projects/*/locations/*/keyRings/*/cryptoKeys/*`. Will be
5438
+ # empty string if google managed.
5439
+ # Corresponds to the JSON property `kmsKeyName`
5440
+ # @return [String]
5441
+ attr_accessor :kms_key_name
5442
+
5443
+ # Type.
5444
+ # Corresponds to the JSON property `type`
5445
+ # @return [String]
5446
+ attr_accessor :type
5447
+
5448
+ def initialize(**args)
5449
+ update!(**args)
5450
+ end
5451
+
5452
+ # Update properties of this object
5453
+ def update!(**args)
5454
+ @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
5455
+ @type = args[:type] if args.key?(:type)
5456
+ end
5457
+ end
5458
+
5407
5459
  # Determines whether or no a connection is locked. If locked, a reason must be
5408
5460
  # specified.
5409
5461
  class GoogleCloudConnectorsV1LockConfig
@@ -6326,6 +6378,44 @@ module Google
6326
6378
  end
6327
6379
  end
6328
6380
 
6381
+ # Request for triggering an integration using event triggers.
6382
+ class GoogleCloudIntegrationsV1alphaExecuteEventRequest
6383
+ include Google::Apis::Core::Hashable
6384
+
6385
+ # -- CloudEvent Context Attributes
6386
+ # Corresponds to the JSON property `cloudEvent`
6387
+ # @return [Google::Apis::IntegrationsV1alpha::IoCloudeventsV1CloudEvent]
6388
+ attr_accessor :cloud_event
6389
+
6390
+ def initialize(**args)
6391
+ update!(**args)
6392
+ end
6393
+
6394
+ # Update properties of this object
6395
+ def update!(**args)
6396
+ @cloud_event = args[:cloud_event] if args.key?(:cloud_event)
6397
+ end
6398
+ end
6399
+
6400
+ # The response for executing an integration.
6401
+ class GoogleCloudIntegrationsV1alphaExecuteEventResponse
6402
+ include Google::Apis::Core::Hashable
6403
+
6404
+ # The id of the execution corresponding to this run of integration.
6405
+ # Corresponds to the JSON property `executionId`
6406
+ # @return [String]
6407
+ attr_accessor :execution_id
6408
+
6409
+ def initialize(**args)
6410
+ update!(**args)
6411
+ end
6412
+
6413
+ # Update properties of this object
6414
+ def update!(**args)
6415
+ @execution_id = args[:execution_id] if args.key?(:execution_id)
6416
+ end
6417
+ end
6418
+
6329
6419
  # The request for executing an integration.
6330
6420
  class GoogleCloudIntegrationsV1alphaExecuteIntegrationsRequest
6331
6421
  include Google::Apis::Core::Hashable
@@ -8232,8 +8322,8 @@ module Google
8232
8322
  # @return [String]
8233
8323
  attr_accessor :schedule_time
8234
8324
 
8235
- # Matched against all `@link TriggerConfig`s across all integrations. i.e.
8236
- # TriggerConfig.trigger_id.equals(trigger_id)
8325
+ # Required. Matched against all `@link TriggerConfig`s across all integrations.
8326
+ # i.e. TriggerConfig.trigger_id.equals(trigger_id)
8237
8327
  # Corresponds to the JSON property `triggerId`
8238
8328
  # @return [String]
8239
8329
  attr_accessor :trigger_id
@@ -9186,6 +9276,125 @@ module Google
9186
9276
  def update!(**args)
9187
9277
  end
9188
9278
  end
9279
+
9280
+ # -- CloudEvent Context Attributes
9281
+ class IoCloudeventsV1CloudEvent
9282
+ include Google::Apis::Core::Hashable
9283
+
9284
+ # Optional & Extension Attributes
9285
+ # Corresponds to the JSON property `attributes`
9286
+ # @return [Hash<String,Google::Apis::IntegrationsV1alpha::IoCloudeventsV1CloudEventCloudEventAttributeValue>]
9287
+ attr_accessor :attributes
9288
+
9289
+ #
9290
+ # Corresponds to the JSON property `binaryData`
9291
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
9292
+ # @return [String]
9293
+ attr_accessor :binary_data
9294
+
9295
+ # Required Attributes
9296
+ # Corresponds to the JSON property `id`
9297
+ # @return [String]
9298
+ attr_accessor :id
9299
+
9300
+ #
9301
+ # Corresponds to the JSON property `protoData`
9302
+ # @return [Hash<String,Object>]
9303
+ attr_accessor :proto_data
9304
+
9305
+ # URI-reference
9306
+ # Corresponds to the JSON property `source`
9307
+ # @return [String]
9308
+ attr_accessor :source
9309
+
9310
+ #
9311
+ # Corresponds to the JSON property `specVersion`
9312
+ # @return [String]
9313
+ attr_accessor :spec_version
9314
+
9315
+ #
9316
+ # Corresponds to the JSON property `textData`
9317
+ # @return [String]
9318
+ attr_accessor :text_data
9319
+
9320
+ #
9321
+ # Corresponds to the JSON property `type`
9322
+ # @return [String]
9323
+ attr_accessor :type
9324
+
9325
+ def initialize(**args)
9326
+ update!(**args)
9327
+ end
9328
+
9329
+ # Update properties of this object
9330
+ def update!(**args)
9331
+ @attributes = args[:attributes] if args.key?(:attributes)
9332
+ @binary_data = args[:binary_data] if args.key?(:binary_data)
9333
+ @id = args[:id] if args.key?(:id)
9334
+ @proto_data = args[:proto_data] if args.key?(:proto_data)
9335
+ @source = args[:source] if args.key?(:source)
9336
+ @spec_version = args[:spec_version] if args.key?(:spec_version)
9337
+ @text_data = args[:text_data] if args.key?(:text_data)
9338
+ @type = args[:type] if args.key?(:type)
9339
+ end
9340
+ end
9341
+
9342
+ #
9343
+ class IoCloudeventsV1CloudEventCloudEventAttributeValue
9344
+ include Google::Apis::Core::Hashable
9345
+
9346
+ #
9347
+ # Corresponds to the JSON property `ceBoolean`
9348
+ # @return [Boolean]
9349
+ attr_accessor :ce_boolean
9350
+ alias_method :ce_boolean?, :ce_boolean
9351
+
9352
+ #
9353
+ # Corresponds to the JSON property `ceBytes`
9354
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
9355
+ # @return [String]
9356
+ attr_accessor :ce_bytes
9357
+
9358
+ #
9359
+ # Corresponds to the JSON property `ceInteger`
9360
+ # @return [Fixnum]
9361
+ attr_accessor :ce_integer
9362
+
9363
+ #
9364
+ # Corresponds to the JSON property `ceString`
9365
+ # @return [String]
9366
+ attr_accessor :ce_string
9367
+
9368
+ #
9369
+ # Corresponds to the JSON property `ceTimestamp`
9370
+ # @return [String]
9371
+ attr_accessor :ce_timestamp
9372
+
9373
+ #
9374
+ # Corresponds to the JSON property `ceUri`
9375
+ # @return [String]
9376
+ attr_accessor :ce_uri
9377
+
9378
+ #
9379
+ # Corresponds to the JSON property `ceUriRef`
9380
+ # @return [String]
9381
+ attr_accessor :ce_uri_ref
9382
+
9383
+ def initialize(**args)
9384
+ update!(**args)
9385
+ end
9386
+
9387
+ # Update properties of this object
9388
+ def update!(**args)
9389
+ @ce_boolean = args[:ce_boolean] if args.key?(:ce_boolean)
9390
+ @ce_bytes = args[:ce_bytes] if args.key?(:ce_bytes)
9391
+ @ce_integer = args[:ce_integer] if args.key?(:ce_integer)
9392
+ @ce_string = args[:ce_string] if args.key?(:ce_string)
9393
+ @ce_timestamp = args[:ce_timestamp] if args.key?(:ce_timestamp)
9394
+ @ce_uri = args[:ce_uri] if args.key?(:ce_uri)
9395
+ @ce_uri_ref = args[:ce_uri_ref] if args.key?(:ce_uri_ref)
9396
+ end
9397
+ end
9189
9398
  end
9190
9399
  end
9191
9400
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module IntegrationsV1alpha
18
18
  # Version of the google-apis-integrations_v1alpha gem
19
- GEM_VERSION = "0.15.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230502"
25
+ REVISION = "20230524"
26
26
  end
27
27
  end
28
28
  end
@@ -814,6 +814,12 @@ module Google
814
814
  include Google::Apis::Core::JsonObjectSupport
815
815
  end
816
816
 
817
+ class GoogleCloudConnectorsV1EncryptionKey
818
+ class Representation < Google::Apis::Core::JsonRepresentation; end
819
+
820
+ include Google::Apis::Core::JsonObjectSupport
821
+ end
822
+
817
823
  class GoogleCloudConnectorsV1LockConfig
818
824
  class Representation < Google::Apis::Core::JsonRepresentation; end
819
825
 
@@ -964,6 +970,18 @@ module Google
964
970
  include Google::Apis::Core::JsonObjectSupport
965
971
  end
966
972
 
973
+ class GoogleCloudIntegrationsV1alphaExecuteEventRequest
974
+ class Representation < Google::Apis::Core::JsonRepresentation; end
975
+
976
+ include Google::Apis::Core::JsonObjectSupport
977
+ end
978
+
979
+ class GoogleCloudIntegrationsV1alphaExecuteEventResponse
980
+ class Representation < Google::Apis::Core::JsonRepresentation; end
981
+
982
+ include Google::Apis::Core::JsonObjectSupport
983
+ end
984
+
967
985
  class GoogleCloudIntegrationsV1alphaExecuteIntegrationsRequest
968
986
  class Representation < Google::Apis::Core::JsonRepresentation; end
969
987
 
@@ -1378,6 +1396,18 @@ module Google
1378
1396
  include Google::Apis::Core::JsonObjectSupport
1379
1397
  end
1380
1398
 
1399
+ class IoCloudeventsV1CloudEvent
1400
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1401
+
1402
+ include Google::Apis::Core::JsonObjectSupport
1403
+ end
1404
+
1405
+ class IoCloudeventsV1CloudEventCloudEventAttributeValue
1406
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1407
+
1408
+ include Google::Apis::Core::JsonObjectSupport
1409
+ end
1410
+
1381
1411
  class CrmlogErrorCode
1382
1412
  # @private
1383
1413
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2754,6 +2784,7 @@ module Google
2754
2784
  # @private
2755
2785
  class Representation < Google::Apis::Core::JsonRepresentation
2756
2786
  property :auth_code, as: 'authCode'
2787
+ property :auth_uri, as: 'authUri'
2757
2788
  property :client_id, as: 'clientId'
2758
2789
  property :client_secret, as: 'clientSecret', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
2759
2790
 
@@ -2819,6 +2850,8 @@ module Google
2819
2850
  property :bool_value, as: 'boolValue'
2820
2851
  property :int_value, :numeric_string => true, as: 'intValue'
2821
2852
  property :key, as: 'key'
2853
+ property :key_value, as: 'keyValue', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1EncryptionKey, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1EncryptionKey::Representation
2854
+
2822
2855
  property :secret_value, as: 'secretValue', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
2823
2856
 
2824
2857
  property :string_value, as: 'stringValue'
@@ -2832,7 +2865,9 @@ module Google
2832
2865
 
2833
2866
  collection :config_variables, as: 'configVariables', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable::Representation
2834
2867
 
2868
+ property :connection_revision, :numeric_string => true, as: 'connectionRevision'
2835
2869
  property :connector_version, as: 'connectorVersion'
2870
+ property :connector_version_launch_stage, as: 'connectorVersionLaunchStage'
2836
2871
  property :create_time, as: 'createTime'
2837
2872
  property :description, as: 'description'
2838
2873
  collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1DestinationConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1DestinationConfig::Representation
@@ -2886,6 +2921,14 @@ module Google
2886
2921
  end
2887
2922
  end
2888
2923
 
2924
+ class GoogleCloudConnectorsV1EncryptionKey
2925
+ # @private
2926
+ class Representation < Google::Apis::Core::JsonRepresentation
2927
+ property :kms_key_name, as: 'kmsKeyName'
2928
+ property :type, as: 'type'
2929
+ end
2930
+ end
2931
+
2889
2932
  class GoogleCloudConnectorsV1LockConfig
2890
2933
  # @private
2891
2934
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3141,6 +3184,21 @@ module Google
3141
3184
  end
3142
3185
  end
3143
3186
 
3187
+ class GoogleCloudIntegrationsV1alphaExecuteEventRequest
3188
+ # @private
3189
+ class Representation < Google::Apis::Core::JsonRepresentation
3190
+ property :cloud_event, as: 'cloudEvent', class: Google::Apis::IntegrationsV1alpha::IoCloudeventsV1CloudEvent, decorator: Google::Apis::IntegrationsV1alpha::IoCloudeventsV1CloudEvent::Representation
3191
+
3192
+ end
3193
+ end
3194
+
3195
+ class GoogleCloudIntegrationsV1alphaExecuteEventResponse
3196
+ # @private
3197
+ class Representation < Google::Apis::Core::JsonRepresentation
3198
+ property :execution_id, as: 'executionId'
3199
+ end
3200
+ end
3201
+
3144
3202
  class GoogleCloudIntegrationsV1alphaExecuteIntegrationsRequest
3145
3203
  # @private
3146
3204
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3925,6 +3983,34 @@ module Google
3925
3983
  class Representation < Google::Apis::Core::JsonRepresentation
3926
3984
  end
3927
3985
  end
3986
+
3987
+ class IoCloudeventsV1CloudEvent
3988
+ # @private
3989
+ class Representation < Google::Apis::Core::JsonRepresentation
3990
+ hash :attributes, as: 'attributes', class: Google::Apis::IntegrationsV1alpha::IoCloudeventsV1CloudEventCloudEventAttributeValue, decorator: Google::Apis::IntegrationsV1alpha::IoCloudeventsV1CloudEventCloudEventAttributeValue::Representation
3991
+
3992
+ property :binary_data, :base64 => true, as: 'binaryData'
3993
+ property :id, as: 'id'
3994
+ hash :proto_data, as: 'protoData'
3995
+ property :source, as: 'source'
3996
+ property :spec_version, as: 'specVersion'
3997
+ property :text_data, as: 'textData'
3998
+ property :type, as: 'type'
3999
+ end
4000
+ end
4001
+
4002
+ class IoCloudeventsV1CloudEventCloudEventAttributeValue
4003
+ # @private
4004
+ class Representation < Google::Apis::Core::JsonRepresentation
4005
+ property :ce_boolean, as: 'ceBoolean'
4006
+ property :ce_bytes, :base64 => true, as: 'ceBytes'
4007
+ property :ce_integer, as: 'ceInteger'
4008
+ property :ce_string, as: 'ceString'
4009
+ property :ce_timestamp, as: 'ceTimestamp'
4010
+ property :ce_uri, as: 'ceUri'
4011
+ property :ce_uri_ref, as: 'ceUriRef'
4012
+ end
4013
+ end
3928
4014
  end
3929
4015
  end
3930
4016
  end
@@ -328,7 +328,7 @@ module Google
328
328
  # Required. The client, which owns this collection of AuthConfigs.
329
329
  # @param [String] filter
330
330
  # Filtering as supported in https://developers.google.com/authorized-buyers/apis/
331
- # guides/v2/list-filters.
331
+ # guides/list-filters.
332
332
  # @param [Fixnum] page_size
333
333
  # The size of entries in the response. If unspecified, defaults to 100.
334
334
  # @param [String] page_token
@@ -702,6 +702,42 @@ module Google
702
702
  execute_or_queue_command(command, &block)
703
703
  end
704
704
 
705
+ # Executes an integration on receiving events from Integration Connector
706
+ # triggers, Eventarc or CPS Trigger. The details about integration are derived
707
+ # from CloudEvent request body.
708
+ # @param [String] name
709
+ # Required. The integration resource name. Format: projects/`gcp_project_id`/
710
+ # locations/`location`/integrations/`integration_id`
711
+ # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecuteEventRequest] google_cloud_integrations_v1alpha_execute_event_request_object
712
+ # @param [String] fields
713
+ # Selector specifying which fields to include in a partial response.
714
+ # @param [String] quota_user
715
+ # Available to use for quota purposes for server-side applications. Can be any
716
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
717
+ # @param [Google::Apis::RequestOptions] options
718
+ # Request-specific options
719
+ #
720
+ # @yield [result, err] Result & error if block supplied
721
+ # @yieldparam result [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecuteEventResponse] parsed result object
722
+ # @yieldparam err [StandardError] error object if request failed
723
+ #
724
+ # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecuteEventResponse]
725
+ #
726
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
727
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
728
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
729
+ def execute_project_location_integration_event(name, google_cloud_integrations_v1alpha_execute_event_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
730
+ command = make_simple_command(:post, 'v1alpha/{+name}:executeEvent', options)
731
+ command.request_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecuteEventRequest::Representation
732
+ command.request_object = google_cloud_integrations_v1alpha_execute_event_request_object
733
+ command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecuteEventResponse::Representation
734
+ command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecuteEventResponse
735
+ command.params['name'] = name unless name.nil?
736
+ command.query['fields'] = fields unless fields.nil?
737
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
738
+ execute_or_queue_command(command, &block)
739
+ end
740
+
705
741
  # Returns the list of all integrations in the specified project.
706
742
  # @param [String] parent
707
743
  # Required. Project and location from which the integrations should be listed.
@@ -1555,7 +1591,7 @@ module Google
1555
1591
  # Required. The client, which owns this collection of AuthConfigs.
1556
1592
  # @param [String] filter
1557
1593
  # Filtering as supported in https://developers.google.com/authorized-buyers/apis/
1558
- # guides/v2/list-filters.
1594
+ # guides/list-filters.
1559
1595
  # @param [Fixnum] page_size
1560
1596
  # The size of entries in the response. If unspecified, defaults to 100.
1561
1597
  # @param [String] page_token
@@ -1776,7 +1812,7 @@ module Google
1776
1812
  # Required. The client, which owns this collection of Certificates.
1777
1813
  # @param [String] filter
1778
1814
  # Filtering as supported in https://developers.google.com/authorized-buyers/apis/
1779
- # guides/v2/list-filters.
1815
+ # guides/list-filters.
1780
1816
  # @param [Fixnum] page_size
1781
1817
  # The size of entries in the response. If unspecified, defaults to 100.
1782
1818
  # @param [String] page_token
@@ -2914,7 +2950,7 @@ module Google
2914
2950
  # Required. The client, which owns this collection of SfdcInstances.
2915
2951
  # @param [String] filter
2916
2952
  # Filtering as supported in https://developers.google.com/authorized-buyers/apis/
2917
- # guides/v2/list-filters.
2953
+ # guides/list-filters.
2918
2954
  # @param [Fixnum] page_size
2919
2955
  # The size of entries in the response. If unspecified, defaults to 100.
2920
2956
  # @param [String] page_token
@@ -3093,7 +3129,7 @@ module Google
3093
3129
  # Required. The client, which owns this collection of SfdcChannels.
3094
3130
  # @param [String] filter
3095
3131
  # Filtering as supported in https://developers.google.com/authorized-buyers/apis/
3096
- # guides/v2/list-filters.
3132
+ # guides/list-filters.
3097
3133
  # @param [Fixnum] page_size
3098
3134
  # The size of entries in the response. If unspecified, defaults to 100.
3099
3135
  # @param [String] page_token
@@ -3272,7 +3308,7 @@ module Google
3272
3308
  # Required. The client, which owns this collection of SfdcInstances.
3273
3309
  # @param [String] filter
3274
3310
  # Filtering as supported in https://developers.google.com/authorized-buyers/apis/
3275
- # guides/v2/list-filters.
3311
+ # guides/list-filters.
3276
3312
  # @param [Fixnum] page_size
3277
3313
  # The size of entries in the response. If unspecified, defaults to 100.
3278
3314
  # @param [String] page_token
@@ -3451,7 +3487,7 @@ module Google
3451
3487
  # Required. The client, which owns this collection of SfdcChannels.
3452
3488
  # @param [String] filter
3453
3489
  # Filtering as supported in https://developers.google.com/authorized-buyers/apis/
3454
- # guides/v2/list-filters.
3490
+ # guides/list-filters.
3455
3491
  # @param [Fixnum] page_size
3456
3492
  # The size of entries in the response. If unspecified, defaults to 100.
3457
3493
  # @param [String] page_token
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-integrations_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-14 00:00:00.000000000 Z
11
+ date: 2023-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.16.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []