aws-sdk-dataexchange 1.13.0 → 1.17.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dataexchange/client.rb +229 -4
- data/lib/aws-sdk-dataexchange/client_api.rb +163 -2
- data/lib/aws-sdk-dataexchange/errors.rb +5 -0
- data/lib/aws-sdk-dataexchange/types.rb +470 -6
- data/lib/aws-sdk-dataexchange.rb +1 -1
- metadata +8 -9
@@ -24,6 +24,34 @@ module Aws::DataExchange
|
|
24
24
|
include Aws::Structure
|
25
25
|
end
|
26
26
|
|
27
|
+
# @note When making an API call, you may pass Action
|
28
|
+
# data as a hash:
|
29
|
+
#
|
30
|
+
# {
|
31
|
+
# export_revision_to_s3: {
|
32
|
+
# encryption: {
|
33
|
+
# kms_key_arn: "__string",
|
34
|
+
# type: "aws:kms", # required, accepts aws:kms, AES256
|
35
|
+
# },
|
36
|
+
# revision_destination: { # required
|
37
|
+
# bucket: "__string", # required
|
38
|
+
# key_pattern: "__string",
|
39
|
+
# },
|
40
|
+
# },
|
41
|
+
# }
|
42
|
+
#
|
43
|
+
# @!attribute [rw] export_revision_to_s3
|
44
|
+
# Details of the operation to be performed by the job.
|
45
|
+
# @return [Types::AutoExportRevisionToS3RequestDetails]
|
46
|
+
#
|
47
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/Action AWS API Documentation
|
48
|
+
#
|
49
|
+
class Action < Struct.new(
|
50
|
+
:export_revision_to_s3)
|
51
|
+
SENSITIVE = []
|
52
|
+
include Aws::Structure
|
53
|
+
end
|
54
|
+
|
27
55
|
# The destination for the asset.
|
28
56
|
#
|
29
57
|
# @note When making an API call, you may pass AssetDestinationEntry
|
@@ -164,6 +192,76 @@ module Aws::DataExchange
|
|
164
192
|
include Aws::Structure
|
165
193
|
end
|
166
194
|
|
195
|
+
# A revision destination is the Amazon S3 bucket folder destination to
|
196
|
+
# where the export will be sent.
|
197
|
+
#
|
198
|
+
# @note When making an API call, you may pass AutoExportRevisionDestinationEntry
|
199
|
+
# data as a hash:
|
200
|
+
#
|
201
|
+
# {
|
202
|
+
# bucket: "__string", # required
|
203
|
+
# key_pattern: "__string",
|
204
|
+
# }
|
205
|
+
#
|
206
|
+
# @!attribute [rw] bucket
|
207
|
+
# The S3 bucket that is the destination for the event action.
|
208
|
+
# @return [String]
|
209
|
+
#
|
210
|
+
# @!attribute [rw] key_pattern
|
211
|
+
# A string representing the pattern for generated names of the
|
212
|
+
# individual assets in the revision. For more information about key
|
213
|
+
# patterns, see [Key patterns when exporting revisions][1].
|
214
|
+
#
|
215
|
+
#
|
216
|
+
#
|
217
|
+
# [1]: https://docs.aws.amazon.com/data-exchange/latest/userguide/jobs.html#revision-export-keypatterns
|
218
|
+
# @return [String]
|
219
|
+
#
|
220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/AutoExportRevisionDestinationEntry AWS API Documentation
|
221
|
+
#
|
222
|
+
class AutoExportRevisionDestinationEntry < Struct.new(
|
223
|
+
:bucket,
|
224
|
+
:key_pattern)
|
225
|
+
SENSITIVE = []
|
226
|
+
include Aws::Structure
|
227
|
+
end
|
228
|
+
|
229
|
+
# Details of the operation to be performed by the job.
|
230
|
+
#
|
231
|
+
# @note When making an API call, you may pass AutoExportRevisionToS3RequestDetails
|
232
|
+
# data as a hash:
|
233
|
+
#
|
234
|
+
# {
|
235
|
+
# encryption: {
|
236
|
+
# kms_key_arn: "__string",
|
237
|
+
# type: "aws:kms", # required, accepts aws:kms, AES256
|
238
|
+
# },
|
239
|
+
# revision_destination: { # required
|
240
|
+
# bucket: "__string", # required
|
241
|
+
# key_pattern: "__string",
|
242
|
+
# },
|
243
|
+
# }
|
244
|
+
#
|
245
|
+
# @!attribute [rw] encryption
|
246
|
+
# Encryption configuration of the export job. Includes the encryption
|
247
|
+
# type in addition to the AWS KMS key. The KMS key is only necessary
|
248
|
+
# if you chose the KMS encryption. type.
|
249
|
+
# @return [Types::ExportServerSideEncryption]
|
250
|
+
#
|
251
|
+
# @!attribute [rw] revision_destination
|
252
|
+
# A revision destination is the Amazon S3 bucket folder destination to
|
253
|
+
# where the export will be sent.
|
254
|
+
# @return [Types::AutoExportRevisionDestinationEntry]
|
255
|
+
#
|
256
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/AutoExportRevisionToS3RequestDetails AWS API Documentation
|
257
|
+
#
|
258
|
+
class AutoExportRevisionToS3RequestDetails < Struct.new(
|
259
|
+
:encryption,
|
260
|
+
:revision_destination)
|
261
|
+
SENSITIVE = []
|
262
|
+
include Aws::Structure
|
263
|
+
end
|
264
|
+
|
167
265
|
# @note When making an API call, you may pass CancelJobRequest
|
168
266
|
# data as a hash:
|
169
267
|
#
|
@@ -323,6 +421,86 @@ module Aws::DataExchange
|
|
323
421
|
include Aws::Structure
|
324
422
|
end
|
325
423
|
|
424
|
+
# A request to create an event action.
|
425
|
+
#
|
426
|
+
# @note When making an API call, you may pass CreateEventActionRequest
|
427
|
+
# data as a hash:
|
428
|
+
#
|
429
|
+
# {
|
430
|
+
# action: { # required
|
431
|
+
# export_revision_to_s3: {
|
432
|
+
# encryption: {
|
433
|
+
# kms_key_arn: "__string",
|
434
|
+
# type: "aws:kms", # required, accepts aws:kms, AES256
|
435
|
+
# },
|
436
|
+
# revision_destination: { # required
|
437
|
+
# bucket: "__string", # required
|
438
|
+
# key_pattern: "__string",
|
439
|
+
# },
|
440
|
+
# },
|
441
|
+
# },
|
442
|
+
# event: { # required
|
443
|
+
# revision_published: {
|
444
|
+
# data_set_id: "Id", # required
|
445
|
+
# },
|
446
|
+
# },
|
447
|
+
# }
|
448
|
+
#
|
449
|
+
# @!attribute [rw] action
|
450
|
+
# What occurs after a certain event.
|
451
|
+
# @return [Types::Action]
|
452
|
+
#
|
453
|
+
# @!attribute [rw] event
|
454
|
+
# What occurs to start an action.
|
455
|
+
# @return [Types::Event]
|
456
|
+
#
|
457
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/CreateEventActionRequest AWS API Documentation
|
458
|
+
#
|
459
|
+
class CreateEventActionRequest < Struct.new(
|
460
|
+
:action,
|
461
|
+
:event)
|
462
|
+
SENSITIVE = []
|
463
|
+
include Aws::Structure
|
464
|
+
end
|
465
|
+
|
466
|
+
# @!attribute [rw] action
|
467
|
+
# @return [Types::Action]
|
468
|
+
#
|
469
|
+
# @!attribute [rw] arn
|
470
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
471
|
+
# resource.
|
472
|
+
# @return [String]
|
473
|
+
#
|
474
|
+
# @!attribute [rw] created_at
|
475
|
+
# Dates and times in AWS Data Exchange are recorded in ISO 8601
|
476
|
+
# format.
|
477
|
+
# @return [Time]
|
478
|
+
#
|
479
|
+
# @!attribute [rw] event
|
480
|
+
# @return [Types::Event]
|
481
|
+
#
|
482
|
+
# @!attribute [rw] id
|
483
|
+
# A unique identifier.
|
484
|
+
# @return [String]
|
485
|
+
#
|
486
|
+
# @!attribute [rw] updated_at
|
487
|
+
# Dates and times in AWS Data Exchange are recorded in ISO 8601
|
488
|
+
# format.
|
489
|
+
# @return [Time]
|
490
|
+
#
|
491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/CreateEventActionResponse AWS API Documentation
|
492
|
+
#
|
493
|
+
class CreateEventActionResponse < Struct.new(
|
494
|
+
:action,
|
495
|
+
:arn,
|
496
|
+
:created_at,
|
497
|
+
:event,
|
498
|
+
:id,
|
499
|
+
:updated_at)
|
500
|
+
SENSITIVE = []
|
501
|
+
include Aws::Structure
|
502
|
+
end
|
503
|
+
|
326
504
|
# The CreateJob request. AWS Data Exchange Jobs are asynchronous import
|
327
505
|
# or export operations used to create or copy assets. A data set owner
|
328
506
|
# can both import and export assets. A subscriber with an entitlement to
|
@@ -656,6 +834,24 @@ module Aws::DataExchange
|
|
656
834
|
include Aws::Structure
|
657
835
|
end
|
658
836
|
|
837
|
+
# @note When making an API call, you may pass DeleteEventActionRequest
|
838
|
+
# data as a hash:
|
839
|
+
#
|
840
|
+
# {
|
841
|
+
# event_action_id: "__string", # required
|
842
|
+
# }
|
843
|
+
#
|
844
|
+
# @!attribute [rw] event_action_id
|
845
|
+
# @return [String]
|
846
|
+
#
|
847
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/DeleteEventActionRequest AWS API Documentation
|
848
|
+
#
|
849
|
+
class DeleteEventActionRequest < Struct.new(
|
850
|
+
:event_action_id)
|
851
|
+
SENSITIVE = []
|
852
|
+
include Aws::Structure
|
853
|
+
end
|
854
|
+
|
659
855
|
# @note When making an API call, you may pass DeleteRevisionRequest
|
660
856
|
# data as a hash:
|
661
857
|
#
|
@@ -695,6 +891,69 @@ module Aws::DataExchange
|
|
695
891
|
include Aws::Structure
|
696
892
|
end
|
697
893
|
|
894
|
+
# @note When making an API call, you may pass Event
|
895
|
+
# data as a hash:
|
896
|
+
#
|
897
|
+
# {
|
898
|
+
# revision_published: {
|
899
|
+
# data_set_id: "Id", # required
|
900
|
+
# },
|
901
|
+
# }
|
902
|
+
#
|
903
|
+
# @!attribute [rw] revision_published
|
904
|
+
# @return [Types::RevisionPublished]
|
905
|
+
#
|
906
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/Event AWS API Documentation
|
907
|
+
#
|
908
|
+
class Event < Struct.new(
|
909
|
+
:revision_published)
|
910
|
+
SENSITIVE = []
|
911
|
+
include Aws::Structure
|
912
|
+
end
|
913
|
+
|
914
|
+
# An event action is an object that defines the relationship between a
|
915
|
+
# specific event and an automated action that will be taken on behalf of
|
916
|
+
# the customer.
|
917
|
+
#
|
918
|
+
# @!attribute [rw] action
|
919
|
+
# What occurs after a certain event.
|
920
|
+
# @return [Types::Action]
|
921
|
+
#
|
922
|
+
# @!attribute [rw] arn
|
923
|
+
# The ARN for the event action.
|
924
|
+
# @return [String]
|
925
|
+
#
|
926
|
+
# @!attribute [rw] created_at
|
927
|
+
# The date and time that the event action was created, in ISO 8601
|
928
|
+
# format.
|
929
|
+
# @return [Time]
|
930
|
+
#
|
931
|
+
# @!attribute [rw] event
|
932
|
+
# What occurs to start an action.
|
933
|
+
# @return [Types::Event]
|
934
|
+
#
|
935
|
+
# @!attribute [rw] id
|
936
|
+
# The unique identifier for the event action.
|
937
|
+
# @return [String]
|
938
|
+
#
|
939
|
+
# @!attribute [rw] updated_at
|
940
|
+
# The date and time that the event action was last updated, in ISO
|
941
|
+
# 8601 format.
|
942
|
+
# @return [Time]
|
943
|
+
#
|
944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/EventActionEntry AWS API Documentation
|
945
|
+
#
|
946
|
+
class EventActionEntry < Struct.new(
|
947
|
+
:action,
|
948
|
+
:arn,
|
949
|
+
:created_at,
|
950
|
+
:event,
|
951
|
+
:id,
|
952
|
+
:updated_at)
|
953
|
+
SENSITIVE = []
|
954
|
+
include Aws::Structure
|
955
|
+
end
|
956
|
+
|
698
957
|
# Details of the operation to be performed by the job.
|
699
958
|
#
|
700
959
|
# @note When making an API call, you may pass ExportAssetToSignedUrlRequestDetails
|
@@ -902,6 +1161,10 @@ module Aws::DataExchange
|
|
902
1161
|
# Encryption configuration of the export job.
|
903
1162
|
# @return [Types::ExportServerSideEncryption]
|
904
1163
|
#
|
1164
|
+
# @!attribute [rw] event_action_arn
|
1165
|
+
# The ARN for the event action.
|
1166
|
+
# @return [String]
|
1167
|
+
#
|
905
1168
|
# @!attribute [rw] revision_destinations
|
906
1169
|
# The destination in Amazon S3 where the revision is exported.
|
907
1170
|
# @return [Array<Types::RevisionDestinationEntry>]
|
@@ -911,14 +1174,15 @@ module Aws::DataExchange
|
|
911
1174
|
class ExportRevisionsToS3ResponseDetails < Struct.new(
|
912
1175
|
:data_set_id,
|
913
1176
|
:encryption,
|
1177
|
+
:event_action_arn,
|
914
1178
|
:revision_destinations)
|
915
1179
|
SENSITIVE = []
|
916
1180
|
include Aws::Structure
|
917
1181
|
end
|
918
1182
|
|
919
1183
|
# Encryption configuration of the export job. Includes the encryption
|
920
|
-
# type
|
921
|
-
# chose the KMS encryption type.
|
1184
|
+
# type in addition to the AWS KMS key. The KMS key is only necessary if
|
1185
|
+
# you chose the KMS encryption. type.
|
922
1186
|
#
|
923
1187
|
# @note When making an API call, you may pass ExportServerSideEncryption
|
924
1188
|
# data as a hash:
|
@@ -929,9 +1193,9 @@ module Aws::DataExchange
|
|
929
1193
|
# }
|
930
1194
|
#
|
931
1195
|
# @!attribute [rw] kms_key_arn
|
932
|
-
# The Amazon Resource Name (ARN) of the
|
933
|
-
#
|
934
|
-
#
|
1196
|
+
# The Amazon Resource Name (ARN) of the AWS KMS key you want to use to
|
1197
|
+
# encrypt the Amazon S3 objects. This parameter is required if you
|
1198
|
+
# choose aws:kms as an encryption type.
|
935
1199
|
# @return [String]
|
936
1200
|
#
|
937
1201
|
# @!attribute [rw] type
|
@@ -1124,6 +1388,62 @@ module Aws::DataExchange
|
|
1124
1388
|
include Aws::Structure
|
1125
1389
|
end
|
1126
1390
|
|
1391
|
+
# @note When making an API call, you may pass GetEventActionRequest
|
1392
|
+
# data as a hash:
|
1393
|
+
#
|
1394
|
+
# {
|
1395
|
+
# event_action_id: "__string", # required
|
1396
|
+
# }
|
1397
|
+
#
|
1398
|
+
# @!attribute [rw] event_action_id
|
1399
|
+
# @return [String]
|
1400
|
+
#
|
1401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetEventActionRequest AWS API Documentation
|
1402
|
+
#
|
1403
|
+
class GetEventActionRequest < Struct.new(
|
1404
|
+
:event_action_id)
|
1405
|
+
SENSITIVE = []
|
1406
|
+
include Aws::Structure
|
1407
|
+
end
|
1408
|
+
|
1409
|
+
# @!attribute [rw] action
|
1410
|
+
# @return [Types::Action]
|
1411
|
+
#
|
1412
|
+
# @!attribute [rw] arn
|
1413
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
1414
|
+
# resource.
|
1415
|
+
# @return [String]
|
1416
|
+
#
|
1417
|
+
# @!attribute [rw] created_at
|
1418
|
+
# Dates and times in AWS Data Exchange are recorded in ISO 8601
|
1419
|
+
# format.
|
1420
|
+
# @return [Time]
|
1421
|
+
#
|
1422
|
+
# @!attribute [rw] event
|
1423
|
+
# @return [Types::Event]
|
1424
|
+
#
|
1425
|
+
# @!attribute [rw] id
|
1426
|
+
# A unique identifier.
|
1427
|
+
# @return [String]
|
1428
|
+
#
|
1429
|
+
# @!attribute [rw] updated_at
|
1430
|
+
# Dates and times in AWS Data Exchange are recorded in ISO 8601
|
1431
|
+
# format.
|
1432
|
+
# @return [Time]
|
1433
|
+
#
|
1434
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetEventActionResponse AWS API Documentation
|
1435
|
+
#
|
1436
|
+
class GetEventActionResponse < Struct.new(
|
1437
|
+
:action,
|
1438
|
+
:arn,
|
1439
|
+
:created_at,
|
1440
|
+
:event,
|
1441
|
+
:id,
|
1442
|
+
:updated_at)
|
1443
|
+
SENSITIVE = []
|
1444
|
+
include Aws::Structure
|
1445
|
+
end
|
1446
|
+
|
1127
1447
|
# @note When making an API call, you may pass GetJobRequest
|
1128
1448
|
# data as a hash:
|
1129
1449
|
#
|
@@ -1631,6 +1951,51 @@ module Aws::DataExchange
|
|
1631
1951
|
include Aws::Structure
|
1632
1952
|
end
|
1633
1953
|
|
1954
|
+
# @note When making an API call, you may pass ListEventActionsRequest
|
1955
|
+
# data as a hash:
|
1956
|
+
#
|
1957
|
+
# {
|
1958
|
+
# event_source_id: "__string",
|
1959
|
+
# max_results: 1,
|
1960
|
+
# next_token: "__string",
|
1961
|
+
# }
|
1962
|
+
#
|
1963
|
+
# @!attribute [rw] event_source_id
|
1964
|
+
# @return [String]
|
1965
|
+
#
|
1966
|
+
# @!attribute [rw] max_results
|
1967
|
+
# @return [Integer]
|
1968
|
+
#
|
1969
|
+
# @!attribute [rw] next_token
|
1970
|
+
# @return [String]
|
1971
|
+
#
|
1972
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ListEventActionsRequest AWS API Documentation
|
1973
|
+
#
|
1974
|
+
class ListEventActionsRequest < Struct.new(
|
1975
|
+
:event_source_id,
|
1976
|
+
:max_results,
|
1977
|
+
:next_token)
|
1978
|
+
SENSITIVE = []
|
1979
|
+
include Aws::Structure
|
1980
|
+
end
|
1981
|
+
|
1982
|
+
# @!attribute [rw] event_actions
|
1983
|
+
# @return [Array<Types::EventActionEntry>]
|
1984
|
+
#
|
1985
|
+
# @!attribute [rw] next_token
|
1986
|
+
# The token value retrieved from a previous call to access the next
|
1987
|
+
# page of results.
|
1988
|
+
# @return [String]
|
1989
|
+
#
|
1990
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ListEventActionsResponse AWS API Documentation
|
1991
|
+
#
|
1992
|
+
class ListEventActionsResponse < Struct.new(
|
1993
|
+
:event_actions,
|
1994
|
+
:next_token)
|
1995
|
+
SENSITIVE = []
|
1996
|
+
include Aws::Structure
|
1997
|
+
end
|
1998
|
+
|
1634
1999
|
# @note When making an API call, you may pass ListJobsRequest
|
1635
2000
|
# data as a hash:
|
1636
2001
|
#
|
@@ -2021,6 +2386,25 @@ module Aws::DataExchange
|
|
2021
2386
|
include Aws::Structure
|
2022
2387
|
end
|
2023
2388
|
|
2389
|
+
# @note When making an API call, you may pass RevisionPublished
|
2390
|
+
# data as a hash:
|
2391
|
+
#
|
2392
|
+
# {
|
2393
|
+
# data_set_id: "Id", # required
|
2394
|
+
# }
|
2395
|
+
#
|
2396
|
+
# @!attribute [rw] data_set_id
|
2397
|
+
# A unique identifier.
|
2398
|
+
# @return [String]
|
2399
|
+
#
|
2400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/RevisionPublished AWS API Documentation
|
2401
|
+
#
|
2402
|
+
class RevisionPublished < Struct.new(
|
2403
|
+
:data_set_id)
|
2404
|
+
SENSITIVE = []
|
2405
|
+
include Aws::Structure
|
2406
|
+
end
|
2407
|
+
|
2024
2408
|
# The S3 object that is the asset.
|
2025
2409
|
#
|
2026
2410
|
# @!attribute [rw] size
|
@@ -2336,6 +2720,81 @@ module Aws::DataExchange
|
|
2336
2720
|
include Aws::Structure
|
2337
2721
|
end
|
2338
2722
|
|
2723
|
+
# The request to update an event action.
|
2724
|
+
#
|
2725
|
+
# @note When making an API call, you may pass UpdateEventActionRequest
|
2726
|
+
# data as a hash:
|
2727
|
+
#
|
2728
|
+
# {
|
2729
|
+
# action: {
|
2730
|
+
# export_revision_to_s3: {
|
2731
|
+
# encryption: {
|
2732
|
+
# kms_key_arn: "__string",
|
2733
|
+
# type: "aws:kms", # required, accepts aws:kms, AES256
|
2734
|
+
# },
|
2735
|
+
# revision_destination: { # required
|
2736
|
+
# bucket: "__string", # required
|
2737
|
+
# key_pattern: "__string",
|
2738
|
+
# },
|
2739
|
+
# },
|
2740
|
+
# },
|
2741
|
+
# event_action_id: "__string", # required
|
2742
|
+
# }
|
2743
|
+
#
|
2744
|
+
# @!attribute [rw] action
|
2745
|
+
# What occurs after a certain event.
|
2746
|
+
# @return [Types::Action]
|
2747
|
+
#
|
2748
|
+
# @!attribute [rw] event_action_id
|
2749
|
+
# @return [String]
|
2750
|
+
#
|
2751
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/UpdateEventActionRequest AWS API Documentation
|
2752
|
+
#
|
2753
|
+
class UpdateEventActionRequest < Struct.new(
|
2754
|
+
:action,
|
2755
|
+
:event_action_id)
|
2756
|
+
SENSITIVE = []
|
2757
|
+
include Aws::Structure
|
2758
|
+
end
|
2759
|
+
|
2760
|
+
# @!attribute [rw] action
|
2761
|
+
# @return [Types::Action]
|
2762
|
+
#
|
2763
|
+
# @!attribute [rw] arn
|
2764
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
2765
|
+
# resource.
|
2766
|
+
# @return [String]
|
2767
|
+
#
|
2768
|
+
# @!attribute [rw] created_at
|
2769
|
+
# Dates and times in AWS Data Exchange are recorded in ISO 8601
|
2770
|
+
# format.
|
2771
|
+
# @return [Time]
|
2772
|
+
#
|
2773
|
+
# @!attribute [rw] event
|
2774
|
+
# @return [Types::Event]
|
2775
|
+
#
|
2776
|
+
# @!attribute [rw] id
|
2777
|
+
# A unique identifier.
|
2778
|
+
# @return [String]
|
2779
|
+
#
|
2780
|
+
# @!attribute [rw] updated_at
|
2781
|
+
# Dates and times in AWS Data Exchange are recorded in ISO 8601
|
2782
|
+
# format.
|
2783
|
+
# @return [Time]
|
2784
|
+
#
|
2785
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/UpdateEventActionResponse AWS API Documentation
|
2786
|
+
#
|
2787
|
+
class UpdateEventActionResponse < Struct.new(
|
2788
|
+
:action,
|
2789
|
+
:arn,
|
2790
|
+
:created_at,
|
2791
|
+
:event,
|
2792
|
+
:id,
|
2793
|
+
:updated_at)
|
2794
|
+
SENSITIVE = []
|
2795
|
+
include Aws::Structure
|
2796
|
+
end
|
2797
|
+
|
2339
2798
|
# The request to update a revision.
|
2340
2799
|
#
|
2341
2800
|
# @note When making an API call, you may pass UpdateRevisionRequest
|
@@ -2430,10 +2889,15 @@ module Aws::DataExchange
|
|
2430
2889
|
# request.
|
2431
2890
|
# @return [String]
|
2432
2891
|
#
|
2892
|
+
# @!attribute [rw] exception_cause
|
2893
|
+
# The message that informs you about what the exception was.
|
2894
|
+
# @return [String]
|
2895
|
+
#
|
2433
2896
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ValidationException AWS API Documentation
|
2434
2897
|
#
|
2435
2898
|
class ValidationException < Struct.new(
|
2436
|
-
:message
|
2899
|
+
:message,
|
2900
|
+
:exception_cause)
|
2437
2901
|
SENSITIVE = []
|
2438
2902
|
include Aws::Structure
|
2439
2903
|
end
|
data/lib/aws-sdk-dataexchange.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dataexchange
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.120.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.120.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
|
|
66
66
|
licenses:
|
67
67
|
- Apache-2.0
|
68
68
|
metadata:
|
69
|
-
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
70
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
69
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dataexchange
|
70
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dataexchange/CHANGELOG.md
|
71
71
|
post_install_message:
|
72
72
|
rdoc_options: []
|
73
73
|
require_paths:
|
@@ -76,15 +76,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
|
87
|
-
rubygems_version: 2.7.6.2
|
86
|
+
rubygems_version: 3.1.6
|
88
87
|
signing_key:
|
89
88
|
specification_version: 4
|
90
89
|
summary: AWS SDK for Ruby - AWS Data Exchange
|