aws-sdk-datazone 1.8.0 → 1.10.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-datazone/client.rb +389 -3
- data/lib/aws-sdk-datazone/client_api.rb +262 -4
- data/lib/aws-sdk-datazone/endpoints.rb +91 -0
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +14 -0
- data/lib/aws-sdk-datazone/types.rb +568 -1
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +119 -1
- data/sig/types.rbs +165 -0
- metadata +4 -4
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -121,6 +121,17 @@ module Aws
|
|
121
121
|
) -> _AcceptSubscriptionRequestResponseSuccess
|
122
122
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptSubscriptionRequestResponseSuccess
|
123
123
|
|
124
|
+
interface _AssociateEnvironmentRoleResponseSuccess
|
125
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateEnvironmentRoleOutput]
|
126
|
+
end
|
127
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#associate_environment_role-instance_method
|
128
|
+
def associate_environment_role: (
|
129
|
+
domain_identifier: ::String,
|
130
|
+
environment_identifier: ::String,
|
131
|
+
environment_role_arn: ::String
|
132
|
+
) -> _AssociateEnvironmentRoleResponseSuccess
|
133
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateEnvironmentRoleResponseSuccess
|
134
|
+
|
124
135
|
interface _CancelMetadataGenerationRunResponseSuccess
|
125
136
|
include ::Seahorse::Client::_ResponseSuccess[Types::CancelMetadataGenerationRunOutput]
|
126
137
|
end
|
@@ -429,6 +440,9 @@ module Aws
|
|
429
440
|
def create_environment: (
|
430
441
|
?description: ::String,
|
431
442
|
domain_identifier: ::String,
|
443
|
+
?environment_account_identifier: ::String,
|
444
|
+
?environment_account_region: ::String,
|
445
|
+
?environment_blueprint_identifier: ::String,
|
432
446
|
environment_profile_identifier: ::String,
|
433
447
|
?glossary_terms: Array[::String],
|
434
448
|
name: ::String,
|
@@ -442,6 +456,29 @@ module Aws
|
|
442
456
|
) -> _CreateEnvironmentResponseSuccess
|
443
457
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentResponseSuccess
|
444
458
|
|
459
|
+
interface _CreateEnvironmentActionResponseSuccess
|
460
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEnvironmentActionOutput]
|
461
|
+
def description: () -> ::String
|
462
|
+
def domain_id: () -> ::String
|
463
|
+
def environment_id: () -> ::String
|
464
|
+
def id: () -> ::String
|
465
|
+
def name: () -> ::String
|
466
|
+
def parameters: () -> Types::ActionParameters
|
467
|
+
end
|
468
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_environment_action-instance_method
|
469
|
+
def create_environment_action: (
|
470
|
+
?description: ::String,
|
471
|
+
domain_identifier: ::String,
|
472
|
+
environment_identifier: ::String,
|
473
|
+
name: ::String,
|
474
|
+
parameters: {
|
475
|
+
aws_console_link: {
|
476
|
+
uri: ::String?
|
477
|
+
}?
|
478
|
+
}
|
479
|
+
) -> _CreateEnvironmentActionResponseSuccess
|
480
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentActionResponseSuccess
|
481
|
+
|
445
482
|
interface _CreateEnvironmentProfileResponseSuccess
|
446
483
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEnvironmentProfileOutput]
|
447
484
|
def aws_account_id: () -> ::String
|
@@ -776,7 +813,9 @@ module Aws
|
|
776
813
|
def name: () -> ::String
|
777
814
|
def project_id: () -> ::String
|
778
815
|
def publish_on_import: () -> bool
|
816
|
+
def retain_permissions_on_revoke_failure: () -> bool
|
779
817
|
def schedule: () -> Types::ScheduleConfiguration
|
818
|
+
def self_grant_status: () -> Types::SelfGrantStatusOutput
|
780
819
|
def status: () -> ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
|
781
820
|
def type: () -> ::String
|
782
821
|
def updated_at: () -> ::Time
|
@@ -785,7 +824,8 @@ module Aws
|
|
785
824
|
def delete_data_source: (
|
786
825
|
?client_token: ::String,
|
787
826
|
domain_identifier: ::String,
|
788
|
-
identifier: ::String
|
827
|
+
identifier: ::String,
|
828
|
+
?retain_permissions_on_revoke_failure: bool
|
789
829
|
) -> _DeleteDataSourceResponseSuccess
|
790
830
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataSourceResponseSuccess
|
791
831
|
|
@@ -808,6 +848,14 @@ module Aws
|
|
808
848
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
809
849
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
810
850
|
|
851
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_environment_action-instance_method
|
852
|
+
def delete_environment_action: (
|
853
|
+
domain_identifier: ::String,
|
854
|
+
environment_identifier: ::String,
|
855
|
+
identifier: ::String
|
856
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
857
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
858
|
+
|
811
859
|
interface _DeleteEnvironmentBlueprintConfigurationResponseSuccess
|
812
860
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEnvironmentBlueprintConfigurationOutput]
|
813
861
|
end
|
@@ -939,6 +987,17 @@ module Aws
|
|
939
987
|
) -> _DeleteTimeSeriesDataPointsResponseSuccess
|
940
988
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTimeSeriesDataPointsResponseSuccess
|
941
989
|
|
990
|
+
interface _DisassociateEnvironmentRoleResponseSuccess
|
991
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateEnvironmentRoleOutput]
|
992
|
+
end
|
993
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#disassociate_environment_role-instance_method
|
994
|
+
def disassociate_environment_role: (
|
995
|
+
domain_identifier: ::String,
|
996
|
+
environment_identifier: ::String,
|
997
|
+
environment_role_arn: ::String
|
998
|
+
) -> _DisassociateEnvironmentRoleResponseSuccess
|
999
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateEnvironmentRoleResponseSuccess
|
1000
|
+
|
942
1001
|
interface _GetAssetResponseSuccess
|
943
1002
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetOutput]
|
944
1003
|
def created_at: () -> ::Time
|
@@ -1011,6 +1070,7 @@ module Aws
|
|
1011
1070
|
def publish_on_import: () -> bool
|
1012
1071
|
def recommendation: () -> Types::RecommendationConfiguration
|
1013
1072
|
def schedule: () -> Types::ScheduleConfiguration
|
1073
|
+
def self_grant_status: () -> Types::SelfGrantStatusOutput
|
1014
1074
|
def status: () -> ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
|
1015
1075
|
def type: () -> ::String
|
1016
1076
|
def updated_at: () -> ::Time
|
@@ -1097,6 +1157,23 @@ module Aws
|
|
1097
1157
|
) -> _GetEnvironmentResponseSuccess
|
1098
1158
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentResponseSuccess
|
1099
1159
|
|
1160
|
+
interface _GetEnvironmentActionResponseSuccess
|
1161
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentActionOutput]
|
1162
|
+
def description: () -> ::String
|
1163
|
+
def domain_id: () -> ::String
|
1164
|
+
def environment_id: () -> ::String
|
1165
|
+
def id: () -> ::String
|
1166
|
+
def name: () -> ::String
|
1167
|
+
def parameters: () -> Types::ActionParameters
|
1168
|
+
end
|
1169
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment_action-instance_method
|
1170
|
+
def get_environment_action: (
|
1171
|
+
domain_identifier: ::String,
|
1172
|
+
environment_identifier: ::String,
|
1173
|
+
identifier: ::String
|
1174
|
+
) -> _GetEnvironmentActionResponseSuccess
|
1175
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentActionResponseSuccess
|
1176
|
+
|
1100
1177
|
interface _GetEnvironmentBlueprintResponseSuccess
|
1101
1178
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentBlueprintOutput]
|
1102
1179
|
def created_at: () -> ::Time
|
@@ -1506,6 +1583,20 @@ module Aws
|
|
1506
1583
|
) -> _ListDomainsResponseSuccess
|
1507
1584
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainsResponseSuccess
|
1508
1585
|
|
1586
|
+
interface _ListEnvironmentActionsResponseSuccess
|
1587
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentActionsOutput]
|
1588
|
+
def items: () -> ::Array[Types::EnvironmentActionSummary]
|
1589
|
+
def next_token: () -> ::String
|
1590
|
+
end
|
1591
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_environment_actions-instance_method
|
1592
|
+
def list_environment_actions: (
|
1593
|
+
domain_identifier: ::String,
|
1594
|
+
environment_identifier: ::String,
|
1595
|
+
?max_results: ::Integer,
|
1596
|
+
?next_token: ::String
|
1597
|
+
) -> _ListEnvironmentActionsResponseSuccess
|
1598
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentActionsResponseSuccess
|
1599
|
+
|
1509
1600
|
interface _ListEnvironmentBlueprintConfigurationsResponseSuccess
|
1510
1601
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentBlueprintConfigurationsOutput]
|
1511
1602
|
def items: () -> ::Array[Types::EnvironmentBlueprintConfigurationItem]
|
@@ -2087,7 +2178,9 @@ module Aws
|
|
2087
2178
|
def project_id: () -> ::String
|
2088
2179
|
def publish_on_import: () -> bool
|
2089
2180
|
def recommendation: () -> Types::RecommendationConfiguration
|
2181
|
+
def retain_permissions_on_revoke_failure: () -> bool
|
2090
2182
|
def schedule: () -> Types::ScheduleConfiguration
|
2183
|
+
def self_grant_status: () -> Types::SelfGrantStatusOutput
|
2091
2184
|
def status: () -> ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
|
2092
2185
|
def type: () -> ::String
|
2093
2186
|
def updated_at: () -> ::Time
|
@@ -2155,6 +2248,7 @@ module Aws
|
|
2155
2248
|
?recommendation: {
|
2156
2249
|
enable_business_name_generation: bool?
|
2157
2250
|
},
|
2251
|
+
?retain_permissions_on_revoke_failure: bool,
|
2158
2252
|
?schedule: {
|
2159
2253
|
schedule: ::String?,
|
2160
2254
|
timezone: ("UTC" | "AFRICA_JOHANNESBURG" | "AMERICA_MONTREAL" | "AMERICA_SAO_PAULO" | "ASIA_BAHRAIN" | "ASIA_BANGKOK" | "ASIA_CALCUTTA" | "ASIA_DUBAI" | "ASIA_HONG_KONG" | "ASIA_JAKARTA" | "ASIA_KUALA_LUMPUR" | "ASIA_SEOUL" | "ASIA_SHANGHAI" | "ASIA_SINGAPORE" | "ASIA_TAIPEI" | "ASIA_TOKYO" | "AUSTRALIA_MELBOURNE" | "AUSTRALIA_SYDNEY" | "CANADA_CENTRAL" | "CET" | "CST6CDT" | "ETC_GMT" | "ETC_GMT0" | "ETC_GMT_ADD_0" | "ETC_GMT_ADD_1" | "ETC_GMT_ADD_10" | "ETC_GMT_ADD_11" | "ETC_GMT_ADD_12" | "ETC_GMT_ADD_2" | "ETC_GMT_ADD_3" | "ETC_GMT_ADD_4" | "ETC_GMT_ADD_5" | "ETC_GMT_ADD_6" | "ETC_GMT_ADD_7" | "ETC_GMT_ADD_8" | "ETC_GMT_ADD_9" | "ETC_GMT_NEG_0" | "ETC_GMT_NEG_1" | "ETC_GMT_NEG_10" | "ETC_GMT_NEG_11" | "ETC_GMT_NEG_12" | "ETC_GMT_NEG_13" | "ETC_GMT_NEG_14" | "ETC_GMT_NEG_2" | "ETC_GMT_NEG_3" | "ETC_GMT_NEG_4" | "ETC_GMT_NEG_5" | "ETC_GMT_NEG_6" | "ETC_GMT_NEG_7" | "ETC_GMT_NEG_8" | "ETC_GMT_NEG_9" | "EUROPE_DUBLIN" | "EUROPE_LONDON" | "EUROPE_PARIS" | "EUROPE_STOCKHOLM" | "EUROPE_ZURICH" | "ISRAEL" | "MEXICO_GENERAL" | "MST7MDT" | "PACIFIC_AUCKLAND" | "US_CENTRAL" | "US_EASTERN" | "US_MOUNTAIN" | "US_PACIFIC")?
|
@@ -2219,6 +2313,30 @@ module Aws
|
|
2219
2313
|
) -> _UpdateEnvironmentResponseSuccess
|
2220
2314
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
|
2221
2315
|
|
2316
|
+
interface _UpdateEnvironmentActionResponseSuccess
|
2317
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentActionOutput]
|
2318
|
+
def description: () -> ::String
|
2319
|
+
def domain_id: () -> ::String
|
2320
|
+
def environment_id: () -> ::String
|
2321
|
+
def id: () -> ::String
|
2322
|
+
def name: () -> ::String
|
2323
|
+
def parameters: () -> Types::ActionParameters
|
2324
|
+
end
|
2325
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_environment_action-instance_method
|
2326
|
+
def update_environment_action: (
|
2327
|
+
?description: ::String,
|
2328
|
+
domain_identifier: ::String,
|
2329
|
+
environment_identifier: ::String,
|
2330
|
+
identifier: ::String,
|
2331
|
+
?name: ::String,
|
2332
|
+
?parameters: {
|
2333
|
+
aws_console_link: {
|
2334
|
+
uri: ::String?
|
2335
|
+
}?
|
2336
|
+
}
|
2337
|
+
) -> _UpdateEnvironmentActionResponseSuccess
|
2338
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentActionResponseSuccess
|
2339
|
+
|
2222
2340
|
interface _UpdateEnvironmentProfileResponseSuccess
|
2223
2341
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentProfileOutput]
|
2224
2342
|
def aws_account_id: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -66,6 +66,17 @@ module Aws::DataZone
|
|
66
66
|
SENSITIVE: []
|
67
67
|
end
|
68
68
|
|
69
|
+
class ActionParameters
|
70
|
+
attr_accessor aws_console_link: Types::AwsConsoleLinkParameters
|
71
|
+
attr_accessor unknown: untyped
|
72
|
+
SENSITIVE: []
|
73
|
+
|
74
|
+
class AwsConsoleLink < ActionParameters
|
75
|
+
end
|
76
|
+
class Unknown < ActionParameters
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
69
80
|
class AssetItem
|
70
81
|
attr_accessor additional_attributes: Types::AssetItemAdditionalAttributes
|
71
82
|
attr_accessor created_at: ::Time
|
@@ -163,6 +174,21 @@ module Aws::DataZone
|
|
163
174
|
SENSITIVE: [:description]
|
164
175
|
end
|
165
176
|
|
177
|
+
class AssociateEnvironmentRoleInput
|
178
|
+
attr_accessor domain_identifier: ::String
|
179
|
+
attr_accessor environment_identifier: ::String
|
180
|
+
attr_accessor environment_role_arn: ::String
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class AssociateEnvironmentRoleOutput < Aws::EmptyStructure
|
185
|
+
end
|
186
|
+
|
187
|
+
class AwsConsoleLinkParameters
|
188
|
+
attr_accessor uri: ::String
|
189
|
+
SENSITIVE: []
|
190
|
+
end
|
191
|
+
|
166
192
|
class BusinessNameGenerationConfiguration
|
167
193
|
attr_accessor enabled: bool
|
168
194
|
SENSITIVE: []
|
@@ -386,9 +412,31 @@ module Aws::DataZone
|
|
386
412
|
SENSITIVE: []
|
387
413
|
end
|
388
414
|
|
415
|
+
class CreateEnvironmentActionInput
|
416
|
+
attr_accessor description: ::String
|
417
|
+
attr_accessor domain_identifier: ::String
|
418
|
+
attr_accessor environment_identifier: ::String
|
419
|
+
attr_accessor name: ::String
|
420
|
+
attr_accessor parameters: Types::ActionParameters
|
421
|
+
SENSITIVE: []
|
422
|
+
end
|
423
|
+
|
424
|
+
class CreateEnvironmentActionOutput
|
425
|
+
attr_accessor description: ::String
|
426
|
+
attr_accessor domain_id: ::String
|
427
|
+
attr_accessor environment_id: ::String
|
428
|
+
attr_accessor id: ::String
|
429
|
+
attr_accessor name: ::String
|
430
|
+
attr_accessor parameters: Types::ActionParameters
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
389
434
|
class CreateEnvironmentInput
|
390
435
|
attr_accessor description: ::String
|
391
436
|
attr_accessor domain_identifier: ::String
|
437
|
+
attr_accessor environment_account_identifier: ::String
|
438
|
+
attr_accessor environment_account_region: ::String
|
439
|
+
attr_accessor environment_blueprint_identifier: ::String
|
392
440
|
attr_accessor environment_profile_identifier: ::String
|
393
441
|
attr_accessor glossary_terms: ::Array[::String]
|
394
442
|
attr_accessor name: ::String
|
@@ -814,6 +862,7 @@ module Aws::DataZone
|
|
814
862
|
attr_accessor client_token: ::String
|
815
863
|
attr_accessor domain_identifier: ::String
|
816
864
|
attr_accessor identifier: ::String
|
865
|
+
attr_accessor retain_permissions_on_revoke_failure: bool
|
817
866
|
SENSITIVE: []
|
818
867
|
end
|
819
868
|
|
@@ -833,7 +882,9 @@ module Aws::DataZone
|
|
833
882
|
attr_accessor name: ::String
|
834
883
|
attr_accessor project_id: ::String
|
835
884
|
attr_accessor publish_on_import: bool
|
885
|
+
attr_accessor retain_permissions_on_revoke_failure: bool
|
836
886
|
attr_accessor schedule: Types::ScheduleConfiguration
|
887
|
+
attr_accessor self_grant_status: Types::SelfGrantStatusOutput
|
837
888
|
attr_accessor status: ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
|
838
889
|
attr_accessor type: ::String
|
839
890
|
attr_accessor updated_at: ::Time
|
@@ -852,6 +903,13 @@ module Aws::DataZone
|
|
852
903
|
SENSITIVE: []
|
853
904
|
end
|
854
905
|
|
906
|
+
class DeleteEnvironmentActionInput
|
907
|
+
attr_accessor domain_identifier: ::String
|
908
|
+
attr_accessor environment_identifier: ::String
|
909
|
+
attr_accessor identifier: ::String
|
910
|
+
SENSITIVE: []
|
911
|
+
end
|
912
|
+
|
855
913
|
class DeleteEnvironmentBlueprintConfigurationInput
|
856
914
|
attr_accessor domain_identifier: ::String
|
857
915
|
attr_accessor environment_blueprint_identifier: ::String
|
@@ -997,6 +1055,16 @@ module Aws::DataZone
|
|
997
1055
|
SENSITIVE: [:name, :short_description]
|
998
1056
|
end
|
999
1057
|
|
1058
|
+
class DisassociateEnvironmentRoleInput
|
1059
|
+
attr_accessor domain_identifier: ::String
|
1060
|
+
attr_accessor environment_identifier: ::String
|
1061
|
+
attr_accessor environment_role_arn: ::String
|
1062
|
+
SENSITIVE: []
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
class DisassociateEnvironmentRoleOutput < Aws::EmptyStructure
|
1066
|
+
end
|
1067
|
+
|
1000
1068
|
class DomainSummary
|
1001
1069
|
attr_accessor arn: ::String
|
1002
1070
|
attr_accessor created_at: ::Time
|
@@ -1010,6 +1078,16 @@ module Aws::DataZone
|
|
1010
1078
|
SENSITIVE: [:description, :name]
|
1011
1079
|
end
|
1012
1080
|
|
1081
|
+
class EnvironmentActionSummary
|
1082
|
+
attr_accessor description: ::String
|
1083
|
+
attr_accessor domain_id: ::String
|
1084
|
+
attr_accessor environment_id: ::String
|
1085
|
+
attr_accessor id: ::String
|
1086
|
+
attr_accessor name: ::String
|
1087
|
+
attr_accessor parameters: Types::ActionParameters
|
1088
|
+
SENSITIVE: []
|
1089
|
+
end
|
1090
|
+
|
1013
1091
|
class EnvironmentBlueprintConfigurationItem
|
1014
1092
|
attr_accessor created_at: ::Time
|
1015
1093
|
attr_accessor domain_id: ::String
|
@@ -1234,6 +1312,7 @@ module Aws::DataZone
|
|
1234
1312
|
attr_accessor publish_on_import: bool
|
1235
1313
|
attr_accessor recommendation: Types::RecommendationConfiguration
|
1236
1314
|
attr_accessor schedule: Types::ScheduleConfiguration
|
1315
|
+
attr_accessor self_grant_status: Types::SelfGrantStatusOutput
|
1237
1316
|
attr_accessor status: ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
|
1238
1317
|
attr_accessor type: ::String
|
1239
1318
|
attr_accessor updated_at: ::Time
|
@@ -1284,6 +1363,23 @@ module Aws::DataZone
|
|
1284
1363
|
SENSITIVE: []
|
1285
1364
|
end
|
1286
1365
|
|
1366
|
+
class GetEnvironmentActionInput
|
1367
|
+
attr_accessor domain_identifier: ::String
|
1368
|
+
attr_accessor environment_identifier: ::String
|
1369
|
+
attr_accessor identifier: ::String
|
1370
|
+
SENSITIVE: []
|
1371
|
+
end
|
1372
|
+
|
1373
|
+
class GetEnvironmentActionOutput
|
1374
|
+
attr_accessor description: ::String
|
1375
|
+
attr_accessor domain_id: ::String
|
1376
|
+
attr_accessor environment_id: ::String
|
1377
|
+
attr_accessor id: ::String
|
1378
|
+
attr_accessor name: ::String
|
1379
|
+
attr_accessor parameters: Types::ActionParameters
|
1380
|
+
SENSITIVE: []
|
1381
|
+
end
|
1382
|
+
|
1287
1383
|
class GetEnvironmentBlueprintConfigurationInput
|
1288
1384
|
attr_accessor domain_identifier: ::String
|
1289
1385
|
attr_accessor environment_blueprint_identifier: ::String
|
@@ -1695,6 +1791,11 @@ module Aws::DataZone
|
|
1695
1791
|
SENSITIVE: []
|
1696
1792
|
end
|
1697
1793
|
|
1794
|
+
class GlueSelfGrantStatusOutput
|
1795
|
+
attr_accessor self_grant_status_details: ::Array[Types::SelfGrantStatusDetail]
|
1796
|
+
SENSITIVE: []
|
1797
|
+
end
|
1798
|
+
|
1698
1799
|
class GrantedEntity
|
1699
1800
|
attr_accessor listing: Types::ListingRevision
|
1700
1801
|
attr_accessor unknown: untyped
|
@@ -1821,6 +1922,20 @@ module Aws::DataZone
|
|
1821
1922
|
SENSITIVE: []
|
1822
1923
|
end
|
1823
1924
|
|
1925
|
+
class ListEnvironmentActionsInput
|
1926
|
+
attr_accessor domain_identifier: ::String
|
1927
|
+
attr_accessor environment_identifier: ::String
|
1928
|
+
attr_accessor max_results: ::Integer
|
1929
|
+
attr_accessor next_token: ::String
|
1930
|
+
SENSITIVE: []
|
1931
|
+
end
|
1932
|
+
|
1933
|
+
class ListEnvironmentActionsOutput
|
1934
|
+
attr_accessor items: ::Array[Types::EnvironmentActionSummary]
|
1935
|
+
attr_accessor next_token: ::String
|
1936
|
+
SENSITIVE: []
|
1937
|
+
end
|
1938
|
+
|
1824
1939
|
class ListEnvironmentBlueprintConfigurationsInput
|
1825
1940
|
attr_accessor domain_identifier: ::String
|
1826
1941
|
attr_accessor max_results: ::Integer
|
@@ -2271,6 +2386,11 @@ module Aws::DataZone
|
|
2271
2386
|
SENSITIVE: []
|
2272
2387
|
end
|
2273
2388
|
|
2389
|
+
class RedshiftSelfGrantStatusOutput
|
2390
|
+
attr_accessor self_grant_status_details: ::Array[Types::SelfGrantStatusDetail]
|
2391
|
+
SENSITIVE: []
|
2392
|
+
end
|
2393
|
+
|
2274
2394
|
class RedshiftServerlessStorage
|
2275
2395
|
attr_accessor workgroup_name: ::String
|
2276
2396
|
SENSITIVE: []
|
@@ -2545,6 +2665,28 @@ module Aws::DataZone
|
|
2545
2665
|
SENSITIVE: []
|
2546
2666
|
end
|
2547
2667
|
|
2668
|
+
class SelfGrantStatusDetail
|
2669
|
+
attr_accessor database_name: ::String
|
2670
|
+
attr_accessor failure_cause: ::String
|
2671
|
+
attr_accessor schema_name: ::String
|
2672
|
+
attr_accessor status: ("GRANT_PENDING" | "REVOKE_PENDING" | "GRANT_IN_PROGRESS" | "REVOKE_IN_PROGRESS" | "GRANTED" | "GRANT_FAILED" | "REVOKE_FAILED")
|
2673
|
+
SENSITIVE: []
|
2674
|
+
end
|
2675
|
+
|
2676
|
+
class SelfGrantStatusOutput
|
2677
|
+
attr_accessor glue_self_grant_status: Types::GlueSelfGrantStatusOutput
|
2678
|
+
attr_accessor redshift_self_grant_status: Types::RedshiftSelfGrantStatusOutput
|
2679
|
+
attr_accessor unknown: untyped
|
2680
|
+
SENSITIVE: []
|
2681
|
+
|
2682
|
+
class GlueSelfGrantStatus < SelfGrantStatusOutput
|
2683
|
+
end
|
2684
|
+
class RedshiftSelfGrantStatus < SelfGrantStatusOutput
|
2685
|
+
end
|
2686
|
+
class Unknown < SelfGrantStatusOutput
|
2687
|
+
end
|
2688
|
+
end
|
2689
|
+
|
2548
2690
|
class ServiceQuotaExceededException
|
2549
2691
|
attr_accessor message: ::String
|
2550
2692
|
SENSITIVE: []
|
@@ -2838,6 +2980,7 @@ module Aws::DataZone
|
|
2838
2980
|
attr_accessor name: ::String
|
2839
2981
|
attr_accessor publish_on_import: bool
|
2840
2982
|
attr_accessor recommendation: Types::RecommendationConfiguration
|
2983
|
+
attr_accessor retain_permissions_on_revoke_failure: bool
|
2841
2984
|
attr_accessor schedule: Types::ScheduleConfiguration
|
2842
2985
|
SENSITIVE: [:asset_forms_input, :description, :name, :schedule]
|
2843
2986
|
end
|
@@ -2859,7 +3002,9 @@ module Aws::DataZone
|
|
2859
3002
|
attr_accessor project_id: ::String
|
2860
3003
|
attr_accessor publish_on_import: bool
|
2861
3004
|
attr_accessor recommendation: Types::RecommendationConfiguration
|
3005
|
+
attr_accessor retain_permissions_on_revoke_failure: bool
|
2862
3006
|
attr_accessor schedule: Types::ScheduleConfiguration
|
3007
|
+
attr_accessor self_grant_status: Types::SelfGrantStatusOutput
|
2863
3008
|
attr_accessor status: ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
|
2864
3009
|
attr_accessor type: ::String
|
2865
3010
|
attr_accessor updated_at: ::Time
|
@@ -2886,6 +3031,26 @@ module Aws::DataZone
|
|
2886
3031
|
SENSITIVE: []
|
2887
3032
|
end
|
2888
3033
|
|
3034
|
+
class UpdateEnvironmentActionInput
|
3035
|
+
attr_accessor description: ::String
|
3036
|
+
attr_accessor domain_identifier: ::String
|
3037
|
+
attr_accessor environment_identifier: ::String
|
3038
|
+
attr_accessor identifier: ::String
|
3039
|
+
attr_accessor name: ::String
|
3040
|
+
attr_accessor parameters: Types::ActionParameters
|
3041
|
+
SENSITIVE: []
|
3042
|
+
end
|
3043
|
+
|
3044
|
+
class UpdateEnvironmentActionOutput
|
3045
|
+
attr_accessor description: ::String
|
3046
|
+
attr_accessor domain_id: ::String
|
3047
|
+
attr_accessor environment_id: ::String
|
3048
|
+
attr_accessor id: ::String
|
3049
|
+
attr_accessor name: ::String
|
3050
|
+
attr_accessor parameters: Types::ActionParameters
|
3051
|
+
SENSITIVE: []
|
3052
|
+
end
|
3053
|
+
|
2889
3054
|
class UpdateEnvironmentInput
|
2890
3055
|
attr_accessor description: ::String
|
2891
3056
|
attr_accessor domain_identifier: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-datazone
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.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-06-
|
11
|
+
date: 2024-06-24 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.198.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.198.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|