google-apis-integrations_v1alpha 0.14.0 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/integrations_v1alpha/classes.rb +220 -4
- data/lib/google/apis/integrations_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/integrations_v1alpha/representations.rb +87 -0
- data/lib/google/apis/integrations_v1alpha/service.rb +43 -7
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e35a73d657f159872ca243ad728ccb536a7c3136b852a55bd40e6f7c352d78f
|
4
|
+
data.tar.gz: b1ed2b8afe972ae4fad398bd824d7441dfca064e45ed9d4437ec6f4ca35a677a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f61f4895cd36a431da67e3dc8086d863dbfb00506d1763ddd73958ed3d42f4f1b9f94e89c430cff7ef40f17b07abb2804098b6e47d8942c7ce39c2b25e2c52aa
|
7
|
+
data.tar.gz: 4ce4a6bd43cc59012f3330f596134512e92ad5ac73124425f863955537377a9a2fa6bb8947ff8c2c4c31ff9e0c6ae67d194da6248f98807e8b811f8f820d667c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-integrations_v1alpha
|
2
2
|
|
3
|
+
### v0.16.0 (2023-05-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230524
|
6
|
+
|
7
|
+
### v0.15.0 (2023-05-14)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230509
|
10
|
+
|
3
11
|
### v0.14.0 (2023-04-30)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230425
|
@@ -426,6 +426,12 @@ module Google
|
|
426
426
|
# @return [String]
|
427
427
|
attr_accessor :location_name
|
428
428
|
|
429
|
+
# Optional. The service account used for authentication of this KMS key. If this
|
430
|
+
# is not provided, the service account in Client.clientSource will be used.
|
431
|
+
# Corresponds to the JSON property `serviceAccount`
|
432
|
+
# @return [String]
|
433
|
+
attr_accessor :service_account
|
434
|
+
|
429
435
|
def initialize(**args)
|
430
436
|
update!(**args)
|
431
437
|
end
|
@@ -437,6 +443,7 @@ module Google
|
|
437
443
|
@key_ring_name = args[:key_ring_name] if args.key?(:key_ring_name)
|
438
444
|
@key_version_name = args[:key_version_name] if args.key?(:key_version_name)
|
439
445
|
@location_name = args[:location_name] if args.key?(:location_name)
|
446
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
440
447
|
end
|
441
448
|
end
|
442
449
|
|
@@ -4925,6 +4932,11 @@ module Google
|
|
4925
4932
|
# @return [String]
|
4926
4933
|
attr_accessor :auth_code
|
4927
4934
|
|
4935
|
+
# Auth URL for Authorization Code Flow
|
4936
|
+
# Corresponds to the JSON property `authUri`
|
4937
|
+
# @return [String]
|
4938
|
+
attr_accessor :auth_uri
|
4939
|
+
|
4928
4940
|
# Client ID for user-provided OAuth app.
|
4929
4941
|
# Corresponds to the JSON property `clientId`
|
4930
4942
|
# @return [String]
|
@@ -4963,6 +4975,7 @@ module Google
|
|
4963
4975
|
# Update properties of this object
|
4964
4976
|
def update!(**args)
|
4965
4977
|
@auth_code = args[:auth_code] if args.key?(:auth_code)
|
4978
|
+
@auth_uri = args[:auth_uri] if args.key?(:auth_uri)
|
4966
4979
|
@client_id = args[:client_id] if args.key?(:client_id)
|
4967
4980
|
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
4968
4981
|
@enable_pkce = args[:enable_pkce] if args.key?(:enable_pkce)
|
@@ -5139,6 +5152,11 @@ module Google
|
|
5139
5152
|
# @return [String]
|
5140
5153
|
attr_accessor :key
|
5141
5154
|
|
5155
|
+
# Encryption Key value.
|
5156
|
+
# Corresponds to the JSON property `keyValue`
|
5157
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1EncryptionKey]
|
5158
|
+
attr_accessor :key_value
|
5159
|
+
|
5142
5160
|
# Secret provides a reference to entries in Secret Manager.
|
5143
5161
|
# Corresponds to the JSON property `secretValue`
|
5144
5162
|
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret]
|
@@ -5158,6 +5176,7 @@ module Google
|
|
5158
5176
|
@bool_value = args[:bool_value] if args.key?(:bool_value)
|
5159
5177
|
@int_value = args[:int_value] if args.key?(:int_value)
|
5160
5178
|
@key = args[:key] if args.key?(:key)
|
5179
|
+
@key_value = args[:key_value] if args.key?(:key_value)
|
5161
5180
|
@secret_value = args[:secret_value] if args.key?(:secret_value)
|
5162
5181
|
@string_value = args[:string_value] if args.key?(:string_value)
|
5163
5182
|
end
|
@@ -5177,6 +5196,12 @@ module Google
|
|
5177
5196
|
# @return [Array<Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable>]
|
5178
5197
|
attr_accessor :config_variables
|
5179
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
|
+
|
5180
5205
|
# Required. Connector version on which the connection is created. The format is:
|
5181
5206
|
# projects/*/locations/*/providers/*/connectors/*/versions/* Only global
|
5182
5207
|
# location is supported for ConnectorVersion resource.
|
@@ -5184,6 +5209,11 @@ module Google
|
|
5184
5209
|
# @return [String]
|
5185
5210
|
attr_accessor :connector_version
|
5186
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
|
+
|
5187
5217
|
# Output only. Created time.
|
5188
5218
|
# Corresponds to the JSON property `createTime`
|
5189
5219
|
# @return [String]
|
@@ -5264,8 +5294,8 @@ module Google
|
|
5264
5294
|
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConnectionStatus]
|
5265
5295
|
attr_accessor :status
|
5266
5296
|
|
5267
|
-
# Output only. This subscription type enum
|
5268
|
-
#
|
5297
|
+
# Output only. This subscription type enum states the subscription type of the
|
5298
|
+
# project.
|
5269
5299
|
# Corresponds to the JSON property `subscriptionType`
|
5270
5300
|
# @return [String]
|
5271
5301
|
attr_accessor :subscription_type
|
@@ -5289,7 +5319,9 @@ module Google
|
|
5289
5319
|
def update!(**args)
|
5290
5320
|
@auth_config = args[:auth_config] if args.key?(:auth_config)
|
5291
5321
|
@config_variables = args[:config_variables] if args.key?(:config_variables)
|
5322
|
+
@connection_revision = args[:connection_revision] if args.key?(:connection_revision)
|
5292
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)
|
5293
5325
|
@create_time = args[:create_time] if args.key?(:create_time)
|
5294
5326
|
@description = args[:description] if args.key?(:description)
|
5295
5327
|
@destination_configs = args[:destination_configs] if args.key?(:destination_configs)
|
@@ -5397,6 +5429,33 @@ module Google
|
|
5397
5429
|
end
|
5398
5430
|
end
|
5399
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
|
+
|
5400
5459
|
# Determines whether or no a connection is locked. If locked, a reason must be
|
5401
5460
|
# specified.
|
5402
5461
|
class GoogleCloudConnectorsV1LockConfig
|
@@ -6319,6 +6378,44 @@ module Google
|
|
6319
6378
|
end
|
6320
6379
|
end
|
6321
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
|
+
|
6322
6419
|
# The request for executing an integration.
|
6323
6420
|
class GoogleCloudIntegrationsV1alphaExecuteIntegrationsRequest
|
6324
6421
|
include Google::Apis::Core::Hashable
|
@@ -8225,8 +8322,8 @@ module Google
|
|
8225
8322
|
# @return [String]
|
8226
8323
|
attr_accessor :schedule_time
|
8227
8324
|
|
8228
|
-
# Matched against all `@link TriggerConfig`s across all integrations.
|
8229
|
-
# 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)
|
8230
8327
|
# Corresponds to the JSON property `triggerId`
|
8231
8328
|
# @return [String]
|
8232
8329
|
attr_accessor :trigger_id
|
@@ -9179,6 +9276,125 @@ module Google
|
|
9179
9276
|
def update!(**args)
|
9180
9277
|
end
|
9181
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
|
9182
9398
|
end
|
9183
9399
|
end
|
9184
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.
|
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 = "
|
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
|
@@ -1494,6 +1524,7 @@ module Google
|
|
1494
1524
|
property :key_ring_name, as: 'keyRingName'
|
1495
1525
|
property :key_version_name, as: 'keyVersionName'
|
1496
1526
|
property :location_name, as: 'locationName'
|
1527
|
+
property :service_account, as: 'serviceAccount'
|
1497
1528
|
end
|
1498
1529
|
end
|
1499
1530
|
|
@@ -2753,6 +2784,7 @@ module Google
|
|
2753
2784
|
# @private
|
2754
2785
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2755
2786
|
property :auth_code, as: 'authCode'
|
2787
|
+
property :auth_uri, as: 'authUri'
|
2756
2788
|
property :client_id, as: 'clientId'
|
2757
2789
|
property :client_secret, as: 'clientSecret', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
|
2758
2790
|
|
@@ -2818,6 +2850,8 @@ module Google
|
|
2818
2850
|
property :bool_value, as: 'boolValue'
|
2819
2851
|
property :int_value, :numeric_string => true, as: 'intValue'
|
2820
2852
|
property :key, as: 'key'
|
2853
|
+
property :key_value, as: 'keyValue', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1EncryptionKey, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1EncryptionKey::Representation
|
2854
|
+
|
2821
2855
|
property :secret_value, as: 'secretValue', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
|
2822
2856
|
|
2823
2857
|
property :string_value, as: 'stringValue'
|
@@ -2831,7 +2865,9 @@ module Google
|
|
2831
2865
|
|
2832
2866
|
collection :config_variables, as: 'configVariables', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable::Representation
|
2833
2867
|
|
2868
|
+
property :connection_revision, :numeric_string => true, as: 'connectionRevision'
|
2834
2869
|
property :connector_version, as: 'connectorVersion'
|
2870
|
+
property :connector_version_launch_stage, as: 'connectorVersionLaunchStage'
|
2835
2871
|
property :create_time, as: 'createTime'
|
2836
2872
|
property :description, as: 'description'
|
2837
2873
|
collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1DestinationConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1DestinationConfig::Representation
|
@@ -2885,6 +2921,14 @@ module Google
|
|
2885
2921
|
end
|
2886
2922
|
end
|
2887
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
|
+
|
2888
2932
|
class GoogleCloudConnectorsV1LockConfig
|
2889
2933
|
# @private
|
2890
2934
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3140,6 +3184,21 @@ module Google
|
|
3140
3184
|
end
|
3141
3185
|
end
|
3142
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
|
+
|
3143
3202
|
class GoogleCloudIntegrationsV1alphaExecuteIntegrationsRequest
|
3144
3203
|
# @private
|
3145
3204
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3924,6 +3983,34 @@ module Google
|
|
3924
3983
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3925
3984
|
end
|
3926
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
|
3927
4014
|
end
|
3928
4015
|
end
|
3929
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/
|
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/
|
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/
|
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/
|
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/
|
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/
|
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/
|
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.
|
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-
|
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.
|
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: []
|