aws-sdk-dataexchange 1.58.0 → 1.60.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dataexchange/client.rb +373 -3
- data/lib/aws-sdk-dataexchange/client_api.rb +270 -1
- data/lib/aws-sdk-dataexchange/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-dataexchange/endpoints.rb +2 -328
- data/lib/aws-sdk-dataexchange/plugins/endpoints.rb +1 -66
- data/lib/aws-sdk-dataexchange/types.rb +614 -1
- data/lib/aws-sdk-dataexchange.rb +2 -2
- data/sig/client.rbs +129 -0
- data/sig/types.rbs +163 -3
- metadata +6 -6
data/sig/client.rbs
CHANGED
@@ -75,12 +75,64 @@ module Aws
|
|
75
75
|
| (?Hash[Symbol, untyped]) -> instance
|
76
76
|
|
77
77
|
|
78
|
+
interface _AcceptDataGrantResponseSuccess
|
79
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AcceptDataGrantResponse]
|
80
|
+
def name: () -> ::String
|
81
|
+
def sender_principal: () -> ::String
|
82
|
+
def receiver_principal: () -> ::String
|
83
|
+
def description: () -> ::String
|
84
|
+
def acceptance_state: () -> ("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")
|
85
|
+
def accepted_at: () -> ::Time
|
86
|
+
def ends_at: () -> ::Time
|
87
|
+
def grant_distribution_scope: () -> ("AWS_ORGANIZATION" | "NONE")
|
88
|
+
def data_set_id: () -> ::String
|
89
|
+
def id: () -> ::String
|
90
|
+
def arn: () -> ::String
|
91
|
+
def created_at: () -> ::Time
|
92
|
+
def updated_at: () -> ::Time
|
93
|
+
end
|
94
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#accept_data_grant-instance_method
|
95
|
+
def accept_data_grant: (
|
96
|
+
data_grant_arn: ::String
|
97
|
+
) -> _AcceptDataGrantResponseSuccess
|
98
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptDataGrantResponseSuccess
|
99
|
+
|
78
100
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#cancel_job-instance_method
|
79
101
|
def cancel_job: (
|
80
102
|
job_id: ::String
|
81
103
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
82
104
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
83
105
|
|
106
|
+
interface _CreateDataGrantResponseSuccess
|
107
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataGrantResponse]
|
108
|
+
def name: () -> ::String
|
109
|
+
def sender_principal: () -> ::String
|
110
|
+
def receiver_principal: () -> ::String
|
111
|
+
def description: () -> ::String
|
112
|
+
def acceptance_state: () -> ("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")
|
113
|
+
def accepted_at: () -> ::Time
|
114
|
+
def ends_at: () -> ::Time
|
115
|
+
def grant_distribution_scope: () -> ("AWS_ORGANIZATION" | "NONE")
|
116
|
+
def data_set_id: () -> ::String
|
117
|
+
def source_data_set_id: () -> ::String
|
118
|
+
def id: () -> ::String
|
119
|
+
def arn: () -> ::String
|
120
|
+
def created_at: () -> ::Time
|
121
|
+
def updated_at: () -> ::Time
|
122
|
+
def tags: () -> ::Hash[::String, ::String]
|
123
|
+
end
|
124
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#create_data_grant-instance_method
|
125
|
+
def create_data_grant: (
|
126
|
+
name: ::String,
|
127
|
+
grant_distribution_scope: ("AWS_ORGANIZATION" | "NONE"),
|
128
|
+
receiver_principal: ::String,
|
129
|
+
source_data_set_id: ::String,
|
130
|
+
?ends_at: ::Time,
|
131
|
+
?description: ::String,
|
132
|
+
?tags: Hash[::String, ::String]
|
133
|
+
) -> _CreateDataGrantResponseSuccess
|
134
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataGrantResponseSuccess
|
135
|
+
|
84
136
|
interface _CreateDataSetResponseSuccess
|
85
137
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataSetResponse]
|
86
138
|
def arn: () -> ::String
|
@@ -293,6 +345,12 @@ module Aws
|
|
293
345
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
294
346
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
295
347
|
|
348
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#delete_data_grant-instance_method
|
349
|
+
def delete_data_grant: (
|
350
|
+
data_grant_id: ::String
|
351
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
352
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
353
|
+
|
296
354
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#delete_data_set-instance_method
|
297
355
|
def delete_data_set: (
|
298
356
|
data_set_id: ::String
|
@@ -333,6 +391,30 @@ module Aws
|
|
333
391
|
) -> _GetAssetResponseSuccess
|
334
392
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetResponseSuccess
|
335
393
|
|
394
|
+
interface _GetDataGrantResponseSuccess
|
395
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataGrantResponse]
|
396
|
+
def name: () -> ::String
|
397
|
+
def sender_principal: () -> ::String
|
398
|
+
def receiver_principal: () -> ::String
|
399
|
+
def description: () -> ::String
|
400
|
+
def acceptance_state: () -> ("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")
|
401
|
+
def accepted_at: () -> ::Time
|
402
|
+
def ends_at: () -> ::Time
|
403
|
+
def grant_distribution_scope: () -> ("AWS_ORGANIZATION" | "NONE")
|
404
|
+
def data_set_id: () -> ::String
|
405
|
+
def source_data_set_id: () -> ::String
|
406
|
+
def id: () -> ::String
|
407
|
+
def arn: () -> ::String
|
408
|
+
def created_at: () -> ::Time
|
409
|
+
def updated_at: () -> ::Time
|
410
|
+
def tags: () -> ::Hash[::String, ::String]
|
411
|
+
end
|
412
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#get_data_grant-instance_method
|
413
|
+
def get_data_grant: (
|
414
|
+
data_grant_id: ::String
|
415
|
+
) -> _GetDataGrantResponseSuccess
|
416
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataGrantResponseSuccess
|
417
|
+
|
336
418
|
interface _GetDataSetResponseSuccess
|
337
419
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSetResponse]
|
338
420
|
def arn: () -> ::String
|
@@ -385,6 +467,28 @@ module Aws
|
|
385
467
|
) -> _GetJobResponseSuccess
|
386
468
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetJobResponseSuccess
|
387
469
|
|
470
|
+
interface _GetReceivedDataGrantResponseSuccess
|
471
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetReceivedDataGrantResponse]
|
472
|
+
def name: () -> ::String
|
473
|
+
def sender_principal: () -> ::String
|
474
|
+
def receiver_principal: () -> ::String
|
475
|
+
def description: () -> ::String
|
476
|
+
def acceptance_state: () -> ("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")
|
477
|
+
def accepted_at: () -> ::Time
|
478
|
+
def ends_at: () -> ::Time
|
479
|
+
def grant_distribution_scope: () -> ("AWS_ORGANIZATION" | "NONE")
|
480
|
+
def data_set_id: () -> ::String
|
481
|
+
def id: () -> ::String
|
482
|
+
def arn: () -> ::String
|
483
|
+
def created_at: () -> ::Time
|
484
|
+
def updated_at: () -> ::Time
|
485
|
+
end
|
486
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#get_received_data_grant-instance_method
|
487
|
+
def get_received_data_grant: (
|
488
|
+
data_grant_arn: ::String
|
489
|
+
) -> _GetReceivedDataGrantResponseSuccess
|
490
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReceivedDataGrantResponseSuccess
|
491
|
+
|
388
492
|
interface _GetRevisionResponseSuccess
|
389
493
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetRevisionResponse]
|
390
494
|
def arn: () -> ::String
|
@@ -407,6 +511,18 @@ module Aws
|
|
407
511
|
) -> _GetRevisionResponseSuccess
|
408
512
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRevisionResponseSuccess
|
409
513
|
|
514
|
+
interface _ListDataGrantsResponseSuccess
|
515
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataGrantsResponse]
|
516
|
+
def data_grant_summaries: () -> ::Array[Types::DataGrantSummaryEntry]
|
517
|
+
def next_token: () -> ::String
|
518
|
+
end
|
519
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#list_data_grants-instance_method
|
520
|
+
def list_data_grants: (
|
521
|
+
?max_results: ::Integer,
|
522
|
+
?next_token: ::String
|
523
|
+
) -> _ListDataGrantsResponseSuccess
|
524
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataGrantsResponseSuccess
|
525
|
+
|
410
526
|
interface _ListDataSetRevisionsResponseSuccess
|
411
527
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSetRevisionsResponse]
|
412
528
|
def next_token: () -> ::String
|
@@ -460,6 +576,19 @@ module Aws
|
|
460
576
|
) -> _ListJobsResponseSuccess
|
461
577
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobsResponseSuccess
|
462
578
|
|
579
|
+
interface _ListReceivedDataGrantsResponseSuccess
|
580
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListReceivedDataGrantsResponse]
|
581
|
+
def data_grant_summaries: () -> ::Array[Types::ReceivedDataGrantSummariesEntry]
|
582
|
+
def next_token: () -> ::String
|
583
|
+
end
|
584
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#list_received_data_grants-instance_method
|
585
|
+
def list_received_data_grants: (
|
586
|
+
?max_results: ::Integer,
|
587
|
+
?next_token: ::String,
|
588
|
+
?acceptance_state: Array[("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")]
|
589
|
+
) -> _ListReceivedDataGrantsResponseSuccess
|
590
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReceivedDataGrantsResponseSuccess
|
591
|
+
|
463
592
|
interface _ListRevisionAssetsResponseSuccess
|
464
593
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListRevisionAssetsResponse]
|
465
594
|
def assets: () -> ::Array[Types::AssetEntry]
|
data/sig/types.rbs
CHANGED
@@ -8,6 +8,28 @@
|
|
8
8
|
module Aws::DataExchange
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AcceptDataGrantRequest
|
12
|
+
attr_accessor data_grant_arn: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AcceptDataGrantResponse
|
17
|
+
attr_accessor name: ::String
|
18
|
+
attr_accessor sender_principal: ::String
|
19
|
+
attr_accessor receiver_principal: ::String
|
20
|
+
attr_accessor description: ::String
|
21
|
+
attr_accessor acceptance_state: ("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")
|
22
|
+
attr_accessor accepted_at: ::Time
|
23
|
+
attr_accessor ends_at: ::Time
|
24
|
+
attr_accessor grant_distribution_scope: ("AWS_ORGANIZATION" | "NONE")
|
25
|
+
attr_accessor data_set_id: ::String
|
26
|
+
attr_accessor id: ::String
|
27
|
+
attr_accessor arn: ::String
|
28
|
+
attr_accessor created_at: ::Time
|
29
|
+
attr_accessor updated_at: ::Time
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
11
33
|
class AccessDeniedException
|
12
34
|
attr_accessor message: ::String
|
13
35
|
SENSITIVE: []
|
@@ -87,7 +109,37 @@ module Aws::DataExchange
|
|
87
109
|
class ConflictException
|
88
110
|
attr_accessor message: ::String
|
89
111
|
attr_accessor resource_id: ::String
|
90
|
-
attr_accessor resource_type: ("DATA_SET" | "REVISION" | "ASSET" | "JOB" | "EVENT_ACTION")
|
112
|
+
attr_accessor resource_type: ("DATA_SET" | "REVISION" | "ASSET" | "JOB" | "EVENT_ACTION" | "DATA_GRANT")
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class CreateDataGrantRequest
|
117
|
+
attr_accessor name: ::String
|
118
|
+
attr_accessor grant_distribution_scope: ("AWS_ORGANIZATION" | "NONE")
|
119
|
+
attr_accessor receiver_principal: ::String
|
120
|
+
attr_accessor source_data_set_id: ::String
|
121
|
+
attr_accessor ends_at: ::Time
|
122
|
+
attr_accessor description: ::String
|
123
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class CreateDataGrantResponse
|
128
|
+
attr_accessor name: ::String
|
129
|
+
attr_accessor sender_principal: ::String
|
130
|
+
attr_accessor receiver_principal: ::String
|
131
|
+
attr_accessor description: ::String
|
132
|
+
attr_accessor acceptance_state: ("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")
|
133
|
+
attr_accessor accepted_at: ::Time
|
134
|
+
attr_accessor ends_at: ::Time
|
135
|
+
attr_accessor grant_distribution_scope: ("AWS_ORGANIZATION" | "NONE")
|
136
|
+
attr_accessor data_set_id: ::String
|
137
|
+
attr_accessor source_data_set_id: ::String
|
138
|
+
attr_accessor id: ::String
|
139
|
+
attr_accessor arn: ::String
|
140
|
+
attr_accessor created_at: ::Time
|
141
|
+
attr_accessor updated_at: ::Time
|
142
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
91
143
|
SENSITIVE: []
|
92
144
|
end
|
93
145
|
|
@@ -185,6 +237,22 @@ module Aws::DataExchange
|
|
185
237
|
SENSITIVE: []
|
186
238
|
end
|
187
239
|
|
240
|
+
class DataGrantSummaryEntry
|
241
|
+
attr_accessor name: ::String
|
242
|
+
attr_accessor sender_principal: ::String
|
243
|
+
attr_accessor receiver_principal: ::String
|
244
|
+
attr_accessor acceptance_state: ("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")
|
245
|
+
attr_accessor accepted_at: ::Time
|
246
|
+
attr_accessor ends_at: ::Time
|
247
|
+
attr_accessor data_set_id: ::String
|
248
|
+
attr_accessor source_data_set_id: ::String
|
249
|
+
attr_accessor id: ::String
|
250
|
+
attr_accessor arn: ::String
|
251
|
+
attr_accessor created_at: ::Time
|
252
|
+
attr_accessor updated_at: ::Time
|
253
|
+
SENSITIVE: []
|
254
|
+
end
|
255
|
+
|
188
256
|
class DataSetEntry
|
189
257
|
attr_accessor arn: ::String
|
190
258
|
attr_accessor asset_type: ("S3_SNAPSHOT" | "REDSHIFT_DATA_SHARE" | "API_GATEWAY_API" | "S3_DATA_ACCESS" | "LAKE_FORMATION_DATA_PERMISSION")
|
@@ -222,6 +290,11 @@ module Aws::DataExchange
|
|
222
290
|
SENSITIVE: []
|
223
291
|
end
|
224
292
|
|
293
|
+
class DeleteDataGrantRequest
|
294
|
+
attr_accessor data_grant_id: ::String
|
295
|
+
SENSITIVE: []
|
296
|
+
end
|
297
|
+
|
225
298
|
class DeleteDataSetRequest
|
226
299
|
attr_accessor data_set_id: ::String
|
227
300
|
SENSITIVE: []
|
@@ -338,6 +411,30 @@ module Aws::DataExchange
|
|
338
411
|
SENSITIVE: []
|
339
412
|
end
|
340
413
|
|
414
|
+
class GetDataGrantRequest
|
415
|
+
attr_accessor data_grant_id: ::String
|
416
|
+
SENSITIVE: []
|
417
|
+
end
|
418
|
+
|
419
|
+
class GetDataGrantResponse
|
420
|
+
attr_accessor name: ::String
|
421
|
+
attr_accessor sender_principal: ::String
|
422
|
+
attr_accessor receiver_principal: ::String
|
423
|
+
attr_accessor description: ::String
|
424
|
+
attr_accessor acceptance_state: ("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")
|
425
|
+
attr_accessor accepted_at: ::Time
|
426
|
+
attr_accessor ends_at: ::Time
|
427
|
+
attr_accessor grant_distribution_scope: ("AWS_ORGANIZATION" | "NONE")
|
428
|
+
attr_accessor data_set_id: ::String
|
429
|
+
attr_accessor source_data_set_id: ::String
|
430
|
+
attr_accessor id: ::String
|
431
|
+
attr_accessor arn: ::String
|
432
|
+
attr_accessor created_at: ::Time
|
433
|
+
attr_accessor updated_at: ::Time
|
434
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
341
438
|
class GetDataSetRequest
|
342
439
|
attr_accessor data_set_id: ::String
|
343
440
|
SENSITIVE: []
|
@@ -390,6 +487,28 @@ module Aws::DataExchange
|
|
390
487
|
SENSITIVE: []
|
391
488
|
end
|
392
489
|
|
490
|
+
class GetReceivedDataGrantRequest
|
491
|
+
attr_accessor data_grant_arn: ::String
|
492
|
+
SENSITIVE: []
|
493
|
+
end
|
494
|
+
|
495
|
+
class GetReceivedDataGrantResponse
|
496
|
+
attr_accessor name: ::String
|
497
|
+
attr_accessor sender_principal: ::String
|
498
|
+
attr_accessor receiver_principal: ::String
|
499
|
+
attr_accessor description: ::String
|
500
|
+
attr_accessor acceptance_state: ("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")
|
501
|
+
attr_accessor accepted_at: ::Time
|
502
|
+
attr_accessor ends_at: ::Time
|
503
|
+
attr_accessor grant_distribution_scope: ("AWS_ORGANIZATION" | "NONE")
|
504
|
+
attr_accessor data_set_id: ::String
|
505
|
+
attr_accessor id: ::String
|
506
|
+
attr_accessor arn: ::String
|
507
|
+
attr_accessor created_at: ::Time
|
508
|
+
attr_accessor updated_at: ::Time
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
393
512
|
class GetRevisionRequest
|
394
513
|
attr_accessor data_set_id: ::String
|
395
514
|
attr_accessor revision_id: ::String
|
@@ -582,6 +701,18 @@ module Aws::DataExchange
|
|
582
701
|
SENSITIVE: []
|
583
702
|
end
|
584
703
|
|
704
|
+
class ListDataGrantsRequest
|
705
|
+
attr_accessor max_results: ::Integer
|
706
|
+
attr_accessor next_token: ::String
|
707
|
+
SENSITIVE: []
|
708
|
+
end
|
709
|
+
|
710
|
+
class ListDataGrantsResponse
|
711
|
+
attr_accessor data_grant_summaries: ::Array[Types::DataGrantSummaryEntry]
|
712
|
+
attr_accessor next_token: ::String
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
585
716
|
class ListDataSetRevisionsRequest
|
586
717
|
attr_accessor data_set_id: ::String
|
587
718
|
attr_accessor max_results: ::Integer
|
@@ -635,6 +766,19 @@ module Aws::DataExchange
|
|
635
766
|
SENSITIVE: []
|
636
767
|
end
|
637
768
|
|
769
|
+
class ListReceivedDataGrantsRequest
|
770
|
+
attr_accessor max_results: ::Integer
|
771
|
+
attr_accessor next_token: ::String
|
772
|
+
attr_accessor acceptance_state: ::Array[("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")]
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class ListReceivedDataGrantsResponse
|
777
|
+
attr_accessor data_grant_summaries: ::Array[Types::ReceivedDataGrantSummariesEntry]
|
778
|
+
attr_accessor next_token: ::String
|
779
|
+
SENSITIVE: []
|
780
|
+
end
|
781
|
+
|
638
782
|
class ListRevisionAssetsRequest
|
639
783
|
attr_accessor data_set_id: ::String
|
640
784
|
attr_accessor max_results: ::Integer
|
@@ -668,6 +812,22 @@ module Aws::DataExchange
|
|
668
812
|
|
669
813
|
class OriginDetails
|
670
814
|
attr_accessor product_id: ::String
|
815
|
+
attr_accessor data_grant_id: ::String
|
816
|
+
SENSITIVE: []
|
817
|
+
end
|
818
|
+
|
819
|
+
class ReceivedDataGrantSummariesEntry
|
820
|
+
attr_accessor name: ::String
|
821
|
+
attr_accessor sender_principal: ::String
|
822
|
+
attr_accessor receiver_principal: ::String
|
823
|
+
attr_accessor acceptance_state: ("PENDING_RECEIVER_ACCEPTANCE" | "ACCEPTED")
|
824
|
+
attr_accessor accepted_at: ::Time
|
825
|
+
attr_accessor ends_at: ::Time
|
826
|
+
attr_accessor data_set_id: ::String
|
827
|
+
attr_accessor id: ::String
|
828
|
+
attr_accessor arn: ::String
|
829
|
+
attr_accessor created_at: ::Time
|
830
|
+
attr_accessor updated_at: ::Time
|
671
831
|
SENSITIVE: []
|
672
832
|
end
|
673
833
|
|
@@ -707,7 +867,7 @@ module Aws::DataExchange
|
|
707
867
|
class ResourceNotFoundException
|
708
868
|
attr_accessor message: ::String
|
709
869
|
attr_accessor resource_id: ::String
|
710
|
-
attr_accessor resource_type: ("DATA_SET" | "REVISION" | "ASSET" | "JOB" | "EVENT_ACTION")
|
870
|
+
attr_accessor resource_type: ("DATA_SET" | "REVISION" | "ASSET" | "JOB" | "EVENT_ACTION" | "DATA_GRANT")
|
711
871
|
SENSITIVE: []
|
712
872
|
end
|
713
873
|
|
@@ -854,7 +1014,7 @@ module Aws::DataExchange
|
|
854
1014
|
end
|
855
1015
|
|
856
1016
|
class ServiceLimitExceededException
|
857
|
-
attr_accessor limit_name: ("Products per account" | "Data sets per account" | "Data sets per product" | "Revisions per data set" | "Assets per revision" | "Assets per import job from Amazon S3" | "Asset per export job from Amazon S3" | "Asset size in GB" | "Concurrent in progress jobs to export assets to Amazon S3" | "Concurrent in progress jobs to export assets to a signed URL" | "Concurrent in progress jobs to import assets from Amazon S3" | "Concurrent in progress jobs to import assets from a signed URL" | "Concurrent in progress jobs to export revisions to Amazon S3" | "Event actions per account" | "Auto export event actions per data set" | "Amazon Redshift datashare assets per import job from Redshift" | "Concurrent in progress jobs to import assets from Amazon Redshift datashares" | "Revisions per Amazon Redshift datashare data set" | "Amazon Redshift datashare assets per revision" | "Concurrent in progress jobs to import assets from an API Gateway API" | "Amazon API Gateway API assets per revision" | "Revisions per Amazon API Gateway API data set" | "Concurrent in progress jobs to import assets from an AWS Lake Formation tag policy" | "AWS Lake Formation data permission assets per revision" | "Revisions per AWS Lake Formation data permission data set" | "Revisions per Amazon S3 data access data set" | "Amazon S3 data access assets per revision" | "Concurrent in progress jobs to create Amazon S3 data access assets from S3 buckets")
|
1017
|
+
attr_accessor limit_name: ("Products per account" | "Data sets per account" | "Data sets per product" | "Revisions per data set" | "Assets per revision" | "Assets per import job from Amazon S3" | "Asset per export job from Amazon S3" | "Asset size in GB" | "Concurrent in progress jobs to export assets to Amazon S3" | "Concurrent in progress jobs to export assets to a signed URL" | "Concurrent in progress jobs to import assets from Amazon S3" | "Concurrent in progress jobs to import assets from a signed URL" | "Concurrent in progress jobs to export revisions to Amazon S3" | "Event actions per account" | "Auto export event actions per data set" | "Amazon Redshift datashare assets per import job from Redshift" | "Concurrent in progress jobs to import assets from Amazon Redshift datashares" | "Revisions per Amazon Redshift datashare data set" | "Amazon Redshift datashare assets per revision" | "Concurrent in progress jobs to import assets from an API Gateway API" | "Amazon API Gateway API assets per revision" | "Revisions per Amazon API Gateway API data set" | "Concurrent in progress jobs to import assets from an AWS Lake Formation tag policy" | "AWS Lake Formation data permission assets per revision" | "Revisions per AWS Lake Formation data permission data set" | "Revisions per Amazon S3 data access data set" | "Amazon S3 data access assets per revision" | "Concurrent in progress jobs to create Amazon S3 data access assets from S3 buckets" | "Active and pending data grants" | "Pending data grants per consumer")
|
858
1018
|
attr_accessor limit_value: ::Float
|
859
1019
|
attr_accessor message: ::String
|
860
1020
|
SENSITIVE: []
|
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.60.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: 2024-
|
11
|
+
date: 2024-10-18 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.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for AWS Data Exchange. This gem is part of the
|
48
48
|
AWS SDK for Ruby.
|
49
49
|
email:
|