aws-sdk-datazone 1.76.0 → 1.77.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +654 -16
- data/lib/aws-sdk-datazone/client_api.rb +353 -0
- data/lib/aws-sdk-datazone/types.rb +1104 -149
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +199 -0
- data/sig/types.rbs +242 -0
- metadata +1 -1
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1255,6 +1255,39 @@ module Aws
|
|
|
1255
1255
|
) -> _CreateListingChangeSetResponseSuccess
|
|
1256
1256
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateListingChangeSetResponseSuccess
|
|
1257
1257
|
|
|
1258
|
+
interface _CreateNotebookResponseSuccess
|
|
1259
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateNotebookOutput]
|
|
1260
|
+
def id: () -> ::String
|
|
1261
|
+
def name: () -> ::String
|
|
1262
|
+
def owning_project_id: () -> ::String
|
|
1263
|
+
def domain_id: () -> ::String
|
|
1264
|
+
def cell_order: () -> ::Array[Types::CellInformation]
|
|
1265
|
+
def status: () -> ("ACTIVE" | "ARCHIVED")
|
|
1266
|
+
def description: () -> ::String
|
|
1267
|
+
def created_at: () -> ::Time
|
|
1268
|
+
def created_by: () -> ::String
|
|
1269
|
+
def updated_at: () -> ::Time
|
|
1270
|
+
def updated_by: () -> ::String
|
|
1271
|
+
def locked_by: () -> ::String
|
|
1272
|
+
def locked_at: () -> ::Time
|
|
1273
|
+
def lock_expires_at: () -> ::Time
|
|
1274
|
+
def compute_id: () -> ::String
|
|
1275
|
+
def metadata: () -> ::Hash[::String, ::String]
|
|
1276
|
+
def parameters: () -> ::Hash[::String, ::String]
|
|
1277
|
+
def environment_configuration: () -> Types::EnvironmentConfig
|
|
1278
|
+
end
|
|
1279
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_notebook-instance_method
|
|
1280
|
+
def create_notebook: (
|
|
1281
|
+
domain_identifier: ::String,
|
|
1282
|
+
owning_project_identifier: ::String,
|
|
1283
|
+
name: ::String,
|
|
1284
|
+
?description: ::String,
|
|
1285
|
+
?metadata: Hash[::String, ::String],
|
|
1286
|
+
?parameters: Hash[::String, ::String],
|
|
1287
|
+
?client_token: ::String
|
|
1288
|
+
) -> _CreateNotebookResponseSuccess
|
|
1289
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateNotebookResponseSuccess
|
|
1290
|
+
|
|
1258
1291
|
interface _CreateProjectResponseSuccess
|
|
1259
1292
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectOutput]
|
|
1260
1293
|
def domain_id: () -> ::String
|
|
@@ -1819,6 +1852,16 @@ module Aws
|
|
|
1819
1852
|
) -> _DeleteListingResponseSuccess
|
|
1820
1853
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteListingResponseSuccess
|
|
1821
1854
|
|
|
1855
|
+
interface _DeleteNotebookResponseSuccess
|
|
1856
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteNotebookOutput]
|
|
1857
|
+
end
|
|
1858
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_notebook-instance_method
|
|
1859
|
+
def delete_notebook: (
|
|
1860
|
+
domain_identifier: ::String,
|
|
1861
|
+
identifier: ::String
|
|
1862
|
+
) -> _DeleteNotebookResponseSuccess
|
|
1863
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteNotebookResponseSuccess
|
|
1864
|
+
|
|
1822
1865
|
interface _DeleteProjectResponseSuccess
|
|
1823
1866
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectOutput]
|
|
1824
1867
|
end
|
|
@@ -2526,6 +2569,54 @@ module Aws
|
|
|
2526
2569
|
) -> _GetMetadataGenerationRunResponseSuccess
|
|
2527
2570
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMetadataGenerationRunResponseSuccess
|
|
2528
2571
|
|
|
2572
|
+
interface _GetNotebookResponseSuccess
|
|
2573
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetNotebookOutput]
|
|
2574
|
+
def id: () -> ::String
|
|
2575
|
+
def name: () -> ::String
|
|
2576
|
+
def owning_project_id: () -> ::String
|
|
2577
|
+
def domain_id: () -> ::String
|
|
2578
|
+
def cell_order: () -> ::Array[Types::CellInformation]
|
|
2579
|
+
def status: () -> ("ACTIVE" | "ARCHIVED")
|
|
2580
|
+
def description: () -> ::String
|
|
2581
|
+
def created_at: () -> ::Time
|
|
2582
|
+
def created_by: () -> ::String
|
|
2583
|
+
def updated_at: () -> ::Time
|
|
2584
|
+
def updated_by: () -> ::String
|
|
2585
|
+
def locked_by: () -> ::String
|
|
2586
|
+
def locked_at: () -> ::Time
|
|
2587
|
+
def lock_expires_at: () -> ::Time
|
|
2588
|
+
def compute_id: () -> ::String
|
|
2589
|
+
def metadata: () -> ::Hash[::String, ::String]
|
|
2590
|
+
def parameters: () -> ::Hash[::String, ::String]
|
|
2591
|
+
def environment_configuration: () -> Types::EnvironmentConfig
|
|
2592
|
+
end
|
|
2593
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_notebook-instance_method
|
|
2594
|
+
def get_notebook: (
|
|
2595
|
+
domain_identifier: ::String,
|
|
2596
|
+
identifier: ::String
|
|
2597
|
+
) -> _GetNotebookResponseSuccess
|
|
2598
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNotebookResponseSuccess
|
|
2599
|
+
|
|
2600
|
+
interface _GetNotebookExportResponseSuccess
|
|
2601
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetNotebookExportOutput]
|
|
2602
|
+
def id: () -> ::String
|
|
2603
|
+
def domain_id: () -> ::String
|
|
2604
|
+
def owning_project_id: () -> ::String
|
|
2605
|
+
def notebook_id: () -> ::String
|
|
2606
|
+
def file_format: () -> ("PDF" | "IPYNB")
|
|
2607
|
+
def status: () -> ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
|
|
2608
|
+
def output_location: () -> Types::OutputLocation
|
|
2609
|
+
def completed_at: () -> ::Time
|
|
2610
|
+
def created_at: () -> ::Time
|
|
2611
|
+
def created_by: () -> ::String
|
|
2612
|
+
end
|
|
2613
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_notebook_export-instance_method
|
|
2614
|
+
def get_notebook_export: (
|
|
2615
|
+
domain_identifier: ::String,
|
|
2616
|
+
identifier: ::String
|
|
2617
|
+
) -> _GetNotebookExportResponseSuccess
|
|
2618
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNotebookExportResponseSuccess
|
|
2619
|
+
|
|
2529
2620
|
interface _GetNotebookRunResponseSuccess
|
|
2530
2621
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetNotebookRunOutput]
|
|
2531
2622
|
def id: () -> ::String
|
|
@@ -3110,6 +3201,23 @@ module Aws
|
|
|
3110
3201
|
) -> _ListNotebookRunsResponseSuccess
|
|
3111
3202
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotebookRunsResponseSuccess
|
|
3112
3203
|
|
|
3204
|
+
interface _ListNotebooksResponseSuccess
|
|
3205
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListNotebooksOutput]
|
|
3206
|
+
def items: () -> ::Array[Types::NotebookSummary]
|
|
3207
|
+
def next_token: () -> ::String
|
|
3208
|
+
end
|
|
3209
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_notebooks-instance_method
|
|
3210
|
+
def list_notebooks: (
|
|
3211
|
+
domain_identifier: ::String,
|
|
3212
|
+
owning_project_identifier: ::String,
|
|
3213
|
+
?max_results: ::Integer,
|
|
3214
|
+
?sort_order: ("ASCENDING" | "DESCENDING"),
|
|
3215
|
+
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
|
3216
|
+
?status: ("ACTIVE" | "ARCHIVED"),
|
|
3217
|
+
?next_token: ::String
|
|
3218
|
+
) -> _ListNotebooksResponseSuccess
|
|
3219
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotebooksResponseSuccess
|
|
3220
|
+
|
|
3113
3221
|
interface _ListNotificationsResponseSuccess
|
|
3114
3222
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListNotificationsOutput]
|
|
3115
3223
|
def notifications: () -> ::Array[Types::NotificationOutput]
|
|
@@ -3797,6 +3905,52 @@ module Aws
|
|
|
3797
3905
|
) -> _StartMetadataGenerationRunResponseSuccess
|
|
3798
3906
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataGenerationRunResponseSuccess
|
|
3799
3907
|
|
|
3908
|
+
interface _StartNotebookExportResponseSuccess
|
|
3909
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartNotebookExportOutput]
|
|
3910
|
+
def id: () -> ::String
|
|
3911
|
+
def domain_id: () -> ::String
|
|
3912
|
+
def owning_project_id: () -> ::String
|
|
3913
|
+
def notebook_id: () -> ::String
|
|
3914
|
+
def file_format: () -> ("PDF" | "IPYNB")
|
|
3915
|
+
def status: () -> ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
|
|
3916
|
+
def created_at: () -> ::Time
|
|
3917
|
+
def created_by: () -> ::String
|
|
3918
|
+
end
|
|
3919
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#start_notebook_export-instance_method
|
|
3920
|
+
def start_notebook_export: (
|
|
3921
|
+
domain_identifier: ::String,
|
|
3922
|
+
notebook_identifier: ::String,
|
|
3923
|
+
owning_project_identifier: ::String,
|
|
3924
|
+
file_format: ("PDF" | "IPYNB"),
|
|
3925
|
+
?client_token: ::String
|
|
3926
|
+
) -> _StartNotebookExportResponseSuccess
|
|
3927
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartNotebookExportResponseSuccess
|
|
3928
|
+
|
|
3929
|
+
interface _StartNotebookImportResponseSuccess
|
|
3930
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartNotebookImportOutput]
|
|
3931
|
+
def notebook_id: () -> ::String
|
|
3932
|
+
def status: () -> ("ACTIVE" | "ARCHIVED")
|
|
3933
|
+
def domain_id: () -> ::String
|
|
3934
|
+
def owning_project_id: () -> ::String
|
|
3935
|
+
def name: () -> ::String
|
|
3936
|
+
def description: () -> ::String
|
|
3937
|
+
def source_location: () -> Types::SourceLocation
|
|
3938
|
+
def created_at: () -> ::Time
|
|
3939
|
+
def created_by: () -> ::String
|
|
3940
|
+
end
|
|
3941
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#start_notebook_import-instance_method
|
|
3942
|
+
def start_notebook_import: (
|
|
3943
|
+
domain_identifier: ::String,
|
|
3944
|
+
owning_project_identifier: ::String,
|
|
3945
|
+
source_location: {
|
|
3946
|
+
s3: ::String?
|
|
3947
|
+
},
|
|
3948
|
+
name: ::String,
|
|
3949
|
+
?description: ::String,
|
|
3950
|
+
?client_token: ::String
|
|
3951
|
+
) -> _StartNotebookImportResponseSuccess
|
|
3952
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartNotebookImportResponseSuccess
|
|
3953
|
+
|
|
3800
3954
|
interface _StartNotebookRunResponseSuccess
|
|
3801
3955
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartNotebookRunOutput]
|
|
3802
3956
|
def id: () -> ::String
|
|
@@ -4467,6 +4621,51 @@ module Aws
|
|
|
4467
4621
|
) -> _UpdateGroupProfileResponseSuccess
|
|
4468
4622
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGroupProfileResponseSuccess
|
|
4469
4623
|
|
|
4624
|
+
interface _UpdateNotebookResponseSuccess
|
|
4625
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNotebookOutput]
|
|
4626
|
+
def id: () -> ::String
|
|
4627
|
+
def name: () -> ::String
|
|
4628
|
+
def owning_project_id: () -> ::String
|
|
4629
|
+
def domain_id: () -> ::String
|
|
4630
|
+
def cell_order: () -> ::Array[Types::CellInformation]
|
|
4631
|
+
def status: () -> ("ACTIVE" | "ARCHIVED")
|
|
4632
|
+
def description: () -> ::String
|
|
4633
|
+
def created_at: () -> ::Time
|
|
4634
|
+
def created_by: () -> ::String
|
|
4635
|
+
def updated_at: () -> ::Time
|
|
4636
|
+
def updated_by: () -> ::String
|
|
4637
|
+
def locked_by: () -> ::String
|
|
4638
|
+
def locked_at: () -> ::Time
|
|
4639
|
+
def lock_expires_at: () -> ::Time
|
|
4640
|
+
def compute_id: () -> ::String
|
|
4641
|
+
def metadata: () -> ::Hash[::String, ::String]
|
|
4642
|
+
def parameters: () -> ::Hash[::String, ::String]
|
|
4643
|
+
def environment_configuration: () -> Types::EnvironmentConfig
|
|
4644
|
+
end
|
|
4645
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_notebook-instance_method
|
|
4646
|
+
def update_notebook: (
|
|
4647
|
+
domain_identifier: ::String,
|
|
4648
|
+
identifier: ::String,
|
|
4649
|
+
?description: ::String,
|
|
4650
|
+
?status: ("ACTIVE" | "ARCHIVED"),
|
|
4651
|
+
?name: ::String,
|
|
4652
|
+
?cell_order: Array[
|
|
4653
|
+
{
|
|
4654
|
+
},
|
|
4655
|
+
],
|
|
4656
|
+
?metadata: Hash[::String, ::String],
|
|
4657
|
+
?parameters: Hash[::String, ::String],
|
|
4658
|
+
?environment_configuration: {
|
|
4659
|
+
image_version: ::String?,
|
|
4660
|
+
package_config: {
|
|
4661
|
+
package_manager: ("UV"),
|
|
4662
|
+
package_specification: ::String?
|
|
4663
|
+
}?
|
|
4664
|
+
},
|
|
4665
|
+
?client_token: ::String
|
|
4666
|
+
) -> _UpdateNotebookResponseSuccess
|
|
4667
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNotebookResponseSuccess
|
|
4668
|
+
|
|
4470
4669
|
interface _UpdateProjectResponseSuccess
|
|
4471
4670
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectOutput]
|
|
4472
4671
|
def domain_id: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -1320,6 +1320,40 @@ module Aws::DataZone
|
|
|
1320
1320
|
SENSITIVE: []
|
|
1321
1321
|
end
|
|
1322
1322
|
|
|
1323
|
+
class CreateNotebookInput
|
|
1324
|
+
attr_accessor domain_identifier: ::String
|
|
1325
|
+
attr_accessor owning_project_identifier: ::String
|
|
1326
|
+
attr_accessor name: ::String
|
|
1327
|
+
attr_accessor description: ::String
|
|
1328
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
1329
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
|
1330
|
+
attr_accessor client_token: ::String
|
|
1331
|
+
SENSITIVE: [:name, :description, :parameters]
|
|
1332
|
+
end
|
|
1333
|
+
|
|
1334
|
+
class CreateNotebookOutput
|
|
1335
|
+
attr_accessor id: ::String
|
|
1336
|
+
attr_accessor name: ::String
|
|
1337
|
+
attr_accessor owning_project_id: ::String
|
|
1338
|
+
attr_accessor domain_id: ::String
|
|
1339
|
+
attr_accessor cell_order: ::Array[Types::CellInformation]
|
|
1340
|
+
attr_accessor status: ("ACTIVE" | "ARCHIVED")
|
|
1341
|
+
attr_accessor description: ::String
|
|
1342
|
+
attr_accessor created_at: ::Time
|
|
1343
|
+
attr_accessor created_by: ::String
|
|
1344
|
+
attr_accessor updated_at: ::Time
|
|
1345
|
+
attr_accessor updated_by: ::String
|
|
1346
|
+
attr_accessor locked_by: ::String
|
|
1347
|
+
attr_accessor locked_at: ::Time
|
|
1348
|
+
attr_accessor lock_expires_at: ::Time
|
|
1349
|
+
attr_accessor compute_id: ::String
|
|
1350
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
1351
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
|
1352
|
+
attr_accessor environment_configuration: Types::EnvironmentConfig
|
|
1353
|
+
attr_accessor error: Types::NotebookError
|
|
1354
|
+
SENSITIVE: [:name, :description, :parameters]
|
|
1355
|
+
end
|
|
1356
|
+
|
|
1323
1357
|
class CreateProjectFromProjectProfilePolicyGrantDetail
|
|
1324
1358
|
attr_accessor include_child_domain_units: bool
|
|
1325
1359
|
attr_accessor project_profiles: ::Array[::String]
|
|
@@ -1914,6 +1948,15 @@ module Aws::DataZone
|
|
|
1914
1948
|
class DeleteListingOutput < Aws::EmptyStructure
|
|
1915
1949
|
end
|
|
1916
1950
|
|
|
1951
|
+
class DeleteNotebookInput
|
|
1952
|
+
attr_accessor domain_identifier: ::String
|
|
1953
|
+
attr_accessor identifier: ::String
|
|
1954
|
+
SENSITIVE: []
|
|
1955
|
+
end
|
|
1956
|
+
|
|
1957
|
+
class DeleteNotebookOutput < Aws::EmptyStructure
|
|
1958
|
+
end
|
|
1959
|
+
|
|
1917
1960
|
class DeleteProjectInput
|
|
1918
1961
|
attr_accessor domain_identifier: ::String
|
|
1919
1962
|
attr_accessor identifier: ::String
|
|
@@ -2954,6 +2997,56 @@ module Aws::DataZone
|
|
|
2954
2997
|
SENSITIVE: []
|
|
2955
2998
|
end
|
|
2956
2999
|
|
|
3000
|
+
class GetNotebookExportInput
|
|
3001
|
+
attr_accessor domain_identifier: ::String
|
|
3002
|
+
attr_accessor identifier: ::String
|
|
3003
|
+
SENSITIVE: []
|
|
3004
|
+
end
|
|
3005
|
+
|
|
3006
|
+
class GetNotebookExportOutput
|
|
3007
|
+
attr_accessor id: ::String
|
|
3008
|
+
attr_accessor domain_id: ::String
|
|
3009
|
+
attr_accessor owning_project_id: ::String
|
|
3010
|
+
attr_accessor notebook_id: ::String
|
|
3011
|
+
attr_accessor file_format: ("PDF" | "IPYNB")
|
|
3012
|
+
attr_accessor status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
|
|
3013
|
+
attr_accessor output_location: Types::OutputLocation
|
|
3014
|
+
attr_accessor error: Types::NotebookExportError
|
|
3015
|
+
attr_accessor completed_at: ::Time
|
|
3016
|
+
attr_accessor created_at: ::Time
|
|
3017
|
+
attr_accessor created_by: ::String
|
|
3018
|
+
SENSITIVE: []
|
|
3019
|
+
end
|
|
3020
|
+
|
|
3021
|
+
class GetNotebookInput
|
|
3022
|
+
attr_accessor domain_identifier: ::String
|
|
3023
|
+
attr_accessor identifier: ::String
|
|
3024
|
+
SENSITIVE: []
|
|
3025
|
+
end
|
|
3026
|
+
|
|
3027
|
+
class GetNotebookOutput
|
|
3028
|
+
attr_accessor id: ::String
|
|
3029
|
+
attr_accessor name: ::String
|
|
3030
|
+
attr_accessor owning_project_id: ::String
|
|
3031
|
+
attr_accessor domain_id: ::String
|
|
3032
|
+
attr_accessor cell_order: ::Array[Types::CellInformation]
|
|
3033
|
+
attr_accessor status: ("ACTIVE" | "ARCHIVED")
|
|
3034
|
+
attr_accessor description: ::String
|
|
3035
|
+
attr_accessor created_at: ::Time
|
|
3036
|
+
attr_accessor created_by: ::String
|
|
3037
|
+
attr_accessor updated_at: ::Time
|
|
3038
|
+
attr_accessor updated_by: ::String
|
|
3039
|
+
attr_accessor locked_by: ::String
|
|
3040
|
+
attr_accessor locked_at: ::Time
|
|
3041
|
+
attr_accessor lock_expires_at: ::Time
|
|
3042
|
+
attr_accessor compute_id: ::String
|
|
3043
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
3044
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
|
3045
|
+
attr_accessor environment_configuration: Types::EnvironmentConfig
|
|
3046
|
+
attr_accessor error: Types::NotebookError
|
|
3047
|
+
SENSITIVE: [:name, :description, :parameters]
|
|
3048
|
+
end
|
|
3049
|
+
|
|
2957
3050
|
class GetNotebookRunInput
|
|
2958
3051
|
attr_accessor domain_identifier: ::String
|
|
2959
3052
|
attr_accessor identifier: ::String
|
|
@@ -3964,6 +4057,23 @@ module Aws::DataZone
|
|
|
3964
4057
|
SENSITIVE: []
|
|
3965
4058
|
end
|
|
3966
4059
|
|
|
4060
|
+
class ListNotebooksInput
|
|
4061
|
+
attr_accessor domain_identifier: ::String
|
|
4062
|
+
attr_accessor owning_project_identifier: ::String
|
|
4063
|
+
attr_accessor max_results: ::Integer
|
|
4064
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
|
4065
|
+
attr_accessor sort_by: ("CREATED_AT" | "UPDATED_AT")
|
|
4066
|
+
attr_accessor status: ("ACTIVE" | "ARCHIVED")
|
|
4067
|
+
attr_accessor next_token: ::String
|
|
4068
|
+
SENSITIVE: []
|
|
4069
|
+
end
|
|
4070
|
+
|
|
4071
|
+
class ListNotebooksOutput
|
|
4072
|
+
attr_accessor items: ::Array[Types::NotebookSummary]
|
|
4073
|
+
attr_accessor next_token: ::String
|
|
4074
|
+
SENSITIVE: []
|
|
4075
|
+
end
|
|
4076
|
+
|
|
3967
4077
|
class ListNotificationsInput
|
|
3968
4078
|
attr_accessor domain_identifier: ::String
|
|
3969
4079
|
attr_accessor type: ("TASK" | "EVENT")
|
|
@@ -4388,6 +4498,16 @@ module Aws::DataZone
|
|
|
4388
4498
|
SENSITIVE: []
|
|
4389
4499
|
end
|
|
4390
4500
|
|
|
4501
|
+
class NotebookError
|
|
4502
|
+
attr_accessor message: ::String
|
|
4503
|
+
SENSITIVE: []
|
|
4504
|
+
end
|
|
4505
|
+
|
|
4506
|
+
class NotebookExportError
|
|
4507
|
+
attr_accessor message: ::String
|
|
4508
|
+
SENSITIVE: []
|
|
4509
|
+
end
|
|
4510
|
+
|
|
4391
4511
|
class NotebookRunError
|
|
4392
4512
|
attr_accessor message: ::String
|
|
4393
4513
|
SENSITIVE: []
|
|
@@ -4410,6 +4530,20 @@ module Aws::DataZone
|
|
|
4410
4530
|
SENSITIVE: []
|
|
4411
4531
|
end
|
|
4412
4532
|
|
|
4533
|
+
class NotebookSummary
|
|
4534
|
+
attr_accessor id: ::String
|
|
4535
|
+
attr_accessor name: ::String
|
|
4536
|
+
attr_accessor owning_project_id: ::String
|
|
4537
|
+
attr_accessor domain_id: ::String
|
|
4538
|
+
attr_accessor status: ("ACTIVE" | "ARCHIVED")
|
|
4539
|
+
attr_accessor description: ::String
|
|
4540
|
+
attr_accessor created_at: ::Time
|
|
4541
|
+
attr_accessor created_by: ::String
|
|
4542
|
+
attr_accessor updated_at: ::Time
|
|
4543
|
+
attr_accessor updated_by: ::String
|
|
4544
|
+
SENSITIVE: [:name, :description]
|
|
4545
|
+
end
|
|
4546
|
+
|
|
4413
4547
|
class NotificationOutput
|
|
4414
4548
|
attr_accessor identifier: ::String
|
|
4415
4549
|
attr_accessor domain_identifier: ::String
|
|
@@ -4457,6 +4591,17 @@ module Aws::DataZone
|
|
|
4457
4591
|
SENSITIVE: []
|
|
4458
4592
|
end
|
|
4459
4593
|
|
|
4594
|
+
class OutputLocation
|
|
4595
|
+
attr_accessor s3: Types::S3Destination
|
|
4596
|
+
attr_accessor unknown: untyped
|
|
4597
|
+
SENSITIVE: []
|
|
4598
|
+
|
|
4599
|
+
class S3 < OutputLocation
|
|
4600
|
+
end
|
|
4601
|
+
class Unknown < OutputLocation
|
|
4602
|
+
end
|
|
4603
|
+
end
|
|
4604
|
+
|
|
4460
4605
|
class OverrideDomainUnitOwnersPolicyGrantDetail
|
|
4461
4606
|
attr_accessor include_child_domain_units: bool
|
|
4462
4607
|
SENSITIVE: []
|
|
@@ -5233,6 +5378,11 @@ module Aws::DataZone
|
|
|
5233
5378
|
SENSITIVE: []
|
|
5234
5379
|
end
|
|
5235
5380
|
|
|
5381
|
+
class S3Destination
|
|
5382
|
+
attr_accessor uri: ::String
|
|
5383
|
+
SENSITIVE: [:uri]
|
|
5384
|
+
end
|
|
5385
|
+
|
|
5236
5386
|
class S3PropertiesInput
|
|
5237
5387
|
attr_accessor s3_uri: ::String
|
|
5238
5388
|
attr_accessor s3_access_grant_location_id: ::String
|
|
@@ -5462,6 +5612,17 @@ module Aws::DataZone
|
|
|
5462
5612
|
SENSITIVE: []
|
|
5463
5613
|
end
|
|
5464
5614
|
|
|
5615
|
+
class SourceLocation
|
|
5616
|
+
attr_accessor s3: ::String
|
|
5617
|
+
attr_accessor unknown: untyped
|
|
5618
|
+
SENSITIVE: [:s3]
|
|
5619
|
+
|
|
5620
|
+
class S3 < SourceLocation
|
|
5621
|
+
end
|
|
5622
|
+
class Unknown < SourceLocation
|
|
5623
|
+
end
|
|
5624
|
+
end
|
|
5625
|
+
|
|
5465
5626
|
class SparkEmrPropertiesInput
|
|
5466
5627
|
attr_accessor compute_arn: ::String
|
|
5467
5628
|
attr_accessor instance_profile_arn: ::String
|
|
@@ -5588,6 +5749,50 @@ module Aws::DataZone
|
|
|
5588
5749
|
SENSITIVE: []
|
|
5589
5750
|
end
|
|
5590
5751
|
|
|
5752
|
+
class StartNotebookExportInput
|
|
5753
|
+
attr_accessor domain_identifier: ::String
|
|
5754
|
+
attr_accessor notebook_identifier: ::String
|
|
5755
|
+
attr_accessor owning_project_identifier: ::String
|
|
5756
|
+
attr_accessor file_format: ("PDF" | "IPYNB")
|
|
5757
|
+
attr_accessor client_token: ::String
|
|
5758
|
+
SENSITIVE: []
|
|
5759
|
+
end
|
|
5760
|
+
|
|
5761
|
+
class StartNotebookExportOutput
|
|
5762
|
+
attr_accessor id: ::String
|
|
5763
|
+
attr_accessor domain_id: ::String
|
|
5764
|
+
attr_accessor owning_project_id: ::String
|
|
5765
|
+
attr_accessor notebook_id: ::String
|
|
5766
|
+
attr_accessor file_format: ("PDF" | "IPYNB")
|
|
5767
|
+
attr_accessor status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
|
|
5768
|
+
attr_accessor created_at: ::Time
|
|
5769
|
+
attr_accessor created_by: ::String
|
|
5770
|
+
SENSITIVE: []
|
|
5771
|
+
end
|
|
5772
|
+
|
|
5773
|
+
class StartNotebookImportInput
|
|
5774
|
+
attr_accessor domain_identifier: ::String
|
|
5775
|
+
attr_accessor owning_project_identifier: ::String
|
|
5776
|
+
attr_accessor source_location: Types::SourceLocation
|
|
5777
|
+
attr_accessor name: ::String
|
|
5778
|
+
attr_accessor description: ::String
|
|
5779
|
+
attr_accessor client_token: ::String
|
|
5780
|
+
SENSITIVE: [:name, :description]
|
|
5781
|
+
end
|
|
5782
|
+
|
|
5783
|
+
class StartNotebookImportOutput
|
|
5784
|
+
attr_accessor notebook_id: ::String
|
|
5785
|
+
attr_accessor status: ("ACTIVE" | "ARCHIVED")
|
|
5786
|
+
attr_accessor domain_id: ::String
|
|
5787
|
+
attr_accessor owning_project_id: ::String
|
|
5788
|
+
attr_accessor name: ::String
|
|
5789
|
+
attr_accessor description: ::String
|
|
5790
|
+
attr_accessor source_location: Types::SourceLocation
|
|
5791
|
+
attr_accessor created_at: ::Time
|
|
5792
|
+
attr_accessor created_by: ::String
|
|
5793
|
+
SENSITIVE: [:name, :description]
|
|
5794
|
+
end
|
|
5795
|
+
|
|
5591
5796
|
class StartNotebookRunInput
|
|
5592
5797
|
attr_accessor domain_identifier: ::String
|
|
5593
5798
|
attr_accessor owning_project_identifier: ::String
|
|
@@ -6298,6 +6503,43 @@ module Aws::DataZone
|
|
|
6298
6503
|
SENSITIVE: [:group_name]
|
|
6299
6504
|
end
|
|
6300
6505
|
|
|
6506
|
+
class UpdateNotebookInput
|
|
6507
|
+
attr_accessor domain_identifier: ::String
|
|
6508
|
+
attr_accessor identifier: ::String
|
|
6509
|
+
attr_accessor description: ::String
|
|
6510
|
+
attr_accessor status: ("ACTIVE" | "ARCHIVED")
|
|
6511
|
+
attr_accessor name: ::String
|
|
6512
|
+
attr_accessor cell_order: ::Array[Types::CellInformation]
|
|
6513
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
6514
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
|
6515
|
+
attr_accessor environment_configuration: Types::EnvironmentConfig
|
|
6516
|
+
attr_accessor client_token: ::String
|
|
6517
|
+
SENSITIVE: [:description, :name, :parameters]
|
|
6518
|
+
end
|
|
6519
|
+
|
|
6520
|
+
class UpdateNotebookOutput
|
|
6521
|
+
attr_accessor id: ::String
|
|
6522
|
+
attr_accessor name: ::String
|
|
6523
|
+
attr_accessor owning_project_id: ::String
|
|
6524
|
+
attr_accessor domain_id: ::String
|
|
6525
|
+
attr_accessor cell_order: ::Array[Types::CellInformation]
|
|
6526
|
+
attr_accessor status: ("ACTIVE" | "ARCHIVED")
|
|
6527
|
+
attr_accessor description: ::String
|
|
6528
|
+
attr_accessor created_at: ::Time
|
|
6529
|
+
attr_accessor created_by: ::String
|
|
6530
|
+
attr_accessor updated_at: ::Time
|
|
6531
|
+
attr_accessor updated_by: ::String
|
|
6532
|
+
attr_accessor locked_by: ::String
|
|
6533
|
+
attr_accessor locked_at: ::Time
|
|
6534
|
+
attr_accessor lock_expires_at: ::Time
|
|
6535
|
+
attr_accessor compute_id: ::String
|
|
6536
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
6537
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
|
6538
|
+
attr_accessor environment_configuration: Types::EnvironmentConfig
|
|
6539
|
+
attr_accessor error: Types::NotebookError
|
|
6540
|
+
SENSITIVE: [:name, :description, :parameters]
|
|
6541
|
+
end
|
|
6542
|
+
|
|
6301
6543
|
class UpdateProjectInput
|
|
6302
6544
|
attr_accessor domain_identifier: ::String
|
|
6303
6545
|
attr_accessor identifier: ::String
|