aws-sdk-datazone 1.89.0 → 1.91.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 +20 -1
- data/lib/aws-sdk-datazone/client_api.rb +8 -0
- data/lib/aws-sdk-datazone/types.rb +35 -0
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +6 -0
- data/sig/types.rbs +7 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 26c0b12628411ddbedda60d1b1c58eafc3bc6a3ad08001819f5d136f38ddf54e
|
|
4
|
+
data.tar.gz: d9d771c9912738a75a01106ba8a6b4e5d6d9a4ba36ba2dc127c5c3b92a401968
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d2791010ae153df2e53bc917c099ce3a68f1bff66c5d0002ff971714014417c7308215dc8ed255d1adcaebc1ae0dfef345d0c0e335b0380c817a1236100f1f6
|
|
7
|
+
data.tar.gz: ce541ffc17c6fb862c6a8de1aa16755a9e5816a55c33f9f0e5341179b65e2f6c0c38481447df1f5a503ebd4cc91a2d71de45aeb1904424f6743a66a8f35c6b7d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.91.0 (2026-09-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for specifying Notebook type
|
|
8
|
+
|
|
9
|
+
1.90.0 (2026-09-11)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.89.0 (2026-09-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.91.0
|
|
@@ -3803,6 +3803,9 @@ module Aws::DataZone
|
|
|
3803
3803
|
# @option params [String] :description
|
|
3804
3804
|
# The description of the notebook.
|
|
3805
3805
|
#
|
|
3806
|
+
# @option params [String] :type
|
|
3807
|
+
# The type of the notebook.
|
|
3808
|
+
#
|
|
3806
3809
|
# @option params [Hash<String,String>] :metadata
|
|
3807
3810
|
# The metadata for the notebook, specified as key-value pairs. You can
|
|
3808
3811
|
# specify up to 50 entries, with keys up to 128 characters and values up
|
|
@@ -3828,6 +3831,7 @@ module Aws::DataZone
|
|
|
3828
3831
|
# * {Types::CreateNotebookOutput#domain_id #domain_id} => String
|
|
3829
3832
|
# * {Types::CreateNotebookOutput#cell_order #cell_order} => Array<Types::CellInformation>
|
|
3830
3833
|
# * {Types::CreateNotebookOutput#status #status} => String
|
|
3834
|
+
# * {Types::CreateNotebookOutput#type #type} => String
|
|
3831
3835
|
# * {Types::CreateNotebookOutput#description #description} => String
|
|
3832
3836
|
# * {Types::CreateNotebookOutput#created_at #created_at} => Time
|
|
3833
3837
|
# * {Types::CreateNotebookOutput#created_by #created_by} => String
|
|
@@ -3850,6 +3854,7 @@ module Aws::DataZone
|
|
|
3850
3854
|
# owning_project_identifier: "ProjectId", # required
|
|
3851
3855
|
# name: "NotebookName", # required
|
|
3852
3856
|
# description: "Description",
|
|
3857
|
+
# type: "DATA", # accepts DATA, SQL
|
|
3853
3858
|
# metadata: {
|
|
3854
3859
|
# "MetadataKey" => "MetadataValue",
|
|
3855
3860
|
# },
|
|
@@ -3867,6 +3872,7 @@ module Aws::DataZone
|
|
|
3867
3872
|
# resp.domain_id #=> String
|
|
3868
3873
|
# resp.cell_order #=> Array
|
|
3869
3874
|
# resp.status #=> String, one of "ACTIVE", "ARCHIVED", "SYNC_IN_PROGRESS", "SYNC_FAILED"
|
|
3875
|
+
# resp.type #=> String, one of "DATA", "SQL"
|
|
3870
3876
|
# resp.description #=> String
|
|
3871
3877
|
# resp.created_at #=> Time
|
|
3872
3878
|
# resp.created_by #=> String
|
|
@@ -7992,6 +7998,7 @@ module Aws::DataZone
|
|
|
7992
7998
|
# * {Types::GetNotebookOutput#domain_id #domain_id} => String
|
|
7993
7999
|
# * {Types::GetNotebookOutput#cell_order #cell_order} => Array<Types::CellInformation>
|
|
7994
8000
|
# * {Types::GetNotebookOutput#status #status} => String
|
|
8001
|
+
# * {Types::GetNotebookOutput#type #type} => String
|
|
7995
8002
|
# * {Types::GetNotebookOutput#description #description} => String
|
|
7996
8003
|
# * {Types::GetNotebookOutput#created_at #created_at} => Time
|
|
7997
8004
|
# * {Types::GetNotebookOutput#created_by #created_by} => String
|
|
@@ -8022,6 +8029,7 @@ module Aws::DataZone
|
|
|
8022
8029
|
# resp.domain_id #=> String
|
|
8023
8030
|
# resp.cell_order #=> Array
|
|
8024
8031
|
# resp.status #=> String, one of "ACTIVE", "ARCHIVED", "SYNC_IN_PROGRESS", "SYNC_FAILED"
|
|
8032
|
+
# resp.type #=> String, one of "DATA", "SQL"
|
|
8025
8033
|
# resp.description #=> String
|
|
8026
8034
|
# resp.created_at #=> Time
|
|
8027
8035
|
# resp.created_by #=> String
|
|
@@ -10705,6 +10713,9 @@ module Aws::DataZone
|
|
|
10705
10713
|
# @option params [String] :status
|
|
10706
10714
|
# The status to filter notebooks by.
|
|
10707
10715
|
#
|
|
10716
|
+
# @option params [String] :type
|
|
10717
|
+
# The type to filter notebooks by.
|
|
10718
|
+
#
|
|
10708
10719
|
# @option params [String] :next_token
|
|
10709
10720
|
# When the number of notebooks is greater than the default value for the
|
|
10710
10721
|
# `MaxResults` parameter, or if you explicitly specify a value for
|
|
@@ -10729,6 +10740,7 @@ module Aws::DataZone
|
|
|
10729
10740
|
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
|
10730
10741
|
# sort_by: "CREATED_AT", # accepts CREATED_AT, UPDATED_AT
|
|
10731
10742
|
# status: "ACTIVE", # accepts ACTIVE, ARCHIVED, SYNC_IN_PROGRESS, SYNC_FAILED
|
|
10743
|
+
# type: "DATA", # accepts DATA, SQL
|
|
10732
10744
|
# next_token: "PaginationToken",
|
|
10733
10745
|
# })
|
|
10734
10746
|
#
|
|
@@ -10740,6 +10752,7 @@ module Aws::DataZone
|
|
|
10740
10752
|
# resp.items[0].owning_project_id #=> String
|
|
10741
10753
|
# resp.items[0].domain_id #=> String
|
|
10742
10754
|
# resp.items[0].status #=> String, one of "ACTIVE", "ARCHIVED", "SYNC_IN_PROGRESS", "SYNC_FAILED"
|
|
10755
|
+
# resp.items[0].type #=> String, one of "DATA", "SQL"
|
|
10743
10756
|
# resp.items[0].description #=> String
|
|
10744
10757
|
# resp.items[0].created_at #=> Time
|
|
10745
10758
|
# resp.items[0].created_by #=> String
|
|
@@ -15697,6 +15710,9 @@ module Aws::DataZone
|
|
|
15697
15710
|
# @option params [Array<Types::CellInformation>] :cell_order
|
|
15698
15711
|
# The updated ordered list of cells in the notebook.
|
|
15699
15712
|
#
|
|
15713
|
+
# @option params [String] :type
|
|
15714
|
+
# The updated type of the notebook.
|
|
15715
|
+
#
|
|
15700
15716
|
# @option params [Hash<String,String>] :metadata
|
|
15701
15717
|
# The updated metadata for the notebook, specified as key-value pairs.
|
|
15702
15718
|
#
|
|
@@ -15722,6 +15738,7 @@ module Aws::DataZone
|
|
|
15722
15738
|
# * {Types::UpdateNotebookOutput#domain_id #domain_id} => String
|
|
15723
15739
|
# * {Types::UpdateNotebookOutput#cell_order #cell_order} => Array<Types::CellInformation>
|
|
15724
15740
|
# * {Types::UpdateNotebookOutput#status #status} => String
|
|
15741
|
+
# * {Types::UpdateNotebookOutput#type #type} => String
|
|
15725
15742
|
# * {Types::UpdateNotebookOutput#description #description} => String
|
|
15726
15743
|
# * {Types::UpdateNotebookOutput#created_at #created_at} => Time
|
|
15727
15744
|
# * {Types::UpdateNotebookOutput#created_by #created_by} => String
|
|
@@ -15749,6 +15766,7 @@ module Aws::DataZone
|
|
|
15749
15766
|
# {
|
|
15750
15767
|
# },
|
|
15751
15768
|
# ],
|
|
15769
|
+
# type: "DATA", # accepts DATA, SQL
|
|
15752
15770
|
# metadata: {
|
|
15753
15771
|
# "MetadataKey" => "MetadataValue",
|
|
15754
15772
|
# },
|
|
@@ -15773,6 +15791,7 @@ module Aws::DataZone
|
|
|
15773
15791
|
# resp.domain_id #=> String
|
|
15774
15792
|
# resp.cell_order #=> Array
|
|
15775
15793
|
# resp.status #=> String, one of "ACTIVE", "ARCHIVED", "SYNC_IN_PROGRESS", "SYNC_FAILED"
|
|
15794
|
+
# resp.type #=> String, one of "DATA", "SQL"
|
|
15776
15795
|
# resp.description #=> String
|
|
15777
15796
|
# resp.created_at #=> Time
|
|
15778
15797
|
# resp.created_by #=> String
|
|
@@ -16657,7 +16676,7 @@ module Aws::DataZone
|
|
|
16657
16676
|
tracer: tracer
|
|
16658
16677
|
)
|
|
16659
16678
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
16660
|
-
context[:gem_version] = '1.
|
|
16679
|
+
context[:gem_version] = '1.91.0'
|
|
16661
16680
|
Seahorse::Client::Request.new(handlers, context)
|
|
16662
16681
|
end
|
|
16663
16682
|
|
|
@@ -866,6 +866,7 @@ module Aws::DataZone
|
|
|
866
866
|
NotebookStatus = Shapes::StringShape.new(name: 'NotebookStatus')
|
|
867
867
|
NotebookSummary = Shapes::StructureShape.new(name: 'NotebookSummary')
|
|
868
868
|
NotebookSummaryList = Shapes::ListShape.new(name: 'NotebookSummaryList')
|
|
869
|
+
NotebookType = Shapes::StringShape.new(name: 'NotebookType')
|
|
869
870
|
NotificationOutput = Shapes::StructureShape.new(name: 'NotificationOutput')
|
|
870
871
|
NotificationResource = Shapes::StructureShape.new(name: 'NotificationResource')
|
|
871
872
|
NotificationResourceType = Shapes::StringShape.new(name: 'NotificationResourceType')
|
|
@@ -2457,6 +2458,7 @@ module Aws::DataZone
|
|
|
2457
2458
|
CreateNotebookInput.add_member(:owning_project_identifier, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "owningProjectIdentifier"))
|
|
2458
2459
|
CreateNotebookInput.add_member(:name, Shapes::ShapeRef.new(shape: NotebookName, required: true, location_name: "name"))
|
|
2459
2460
|
CreateNotebookInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
2461
|
+
CreateNotebookInput.add_member(:type, Shapes::ShapeRef.new(shape: NotebookType, location_name: "type"))
|
|
2460
2462
|
CreateNotebookInput.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location_name: "metadata"))
|
|
2461
2463
|
CreateNotebookInput.add_member(:parameters, Shapes::ShapeRef.new(shape: Parameters, location_name: "parameters"))
|
|
2462
2464
|
CreateNotebookInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
@@ -2468,6 +2470,7 @@ module Aws::DataZone
|
|
|
2468
2470
|
CreateNotebookOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
|
2469
2471
|
CreateNotebookOutput.add_member(:cell_order, Shapes::ShapeRef.new(shape: CellOrder, required: true, location_name: "cellOrder"))
|
|
2470
2472
|
CreateNotebookOutput.add_member(:status, Shapes::ShapeRef.new(shape: NotebookStatus, required: true, location_name: "status"))
|
|
2473
|
+
CreateNotebookOutput.add_member(:type, Shapes::ShapeRef.new(shape: NotebookType, location_name: "type"))
|
|
2471
2474
|
CreateNotebookOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
2472
2475
|
CreateNotebookOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
2473
2476
|
CreateNotebookOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
|
@@ -3903,6 +3906,7 @@ module Aws::DataZone
|
|
|
3903
3906
|
GetNotebookOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
|
3904
3907
|
GetNotebookOutput.add_member(:cell_order, Shapes::ShapeRef.new(shape: CellOrder, required: true, location_name: "cellOrder"))
|
|
3905
3908
|
GetNotebookOutput.add_member(:status, Shapes::ShapeRef.new(shape: NotebookStatus, required: true, location_name: "status"))
|
|
3909
|
+
GetNotebookOutput.add_member(:type, Shapes::ShapeRef.new(shape: NotebookType, location_name: "type"))
|
|
3906
3910
|
GetNotebookOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
3907
3911
|
GetNotebookOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
3908
3912
|
GetNotebookOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
|
@@ -4764,6 +4768,7 @@ module Aws::DataZone
|
|
|
4764
4768
|
ListNotebooksInput.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location: "querystring", location_name: "sortOrder"))
|
|
4765
4769
|
ListNotebooksInput.add_member(:sort_by, Shapes::ShapeRef.new(shape: SortKey, location: "querystring", location_name: "sortBy"))
|
|
4766
4770
|
ListNotebooksInput.add_member(:status, Shapes::ShapeRef.new(shape: NotebookStatus, location: "querystring", location_name: "status"))
|
|
4771
|
+
ListNotebooksInput.add_member(:type, Shapes::ShapeRef.new(shape: NotebookType, location: "querystring", location_name: "type"))
|
|
4767
4772
|
ListNotebooksInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
|
4768
4773
|
ListNotebooksInput.struct_class = Types::ListNotebooksInput
|
|
4769
4774
|
|
|
@@ -5136,6 +5141,7 @@ module Aws::DataZone
|
|
|
5136
5141
|
NotebookSummary.add_member(:owning_project_id, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "owningProjectId"))
|
|
5137
5142
|
NotebookSummary.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
|
5138
5143
|
NotebookSummary.add_member(:status, Shapes::ShapeRef.new(shape: NotebookStatus, required: true, location_name: "status"))
|
|
5144
|
+
NotebookSummary.add_member(:type, Shapes::ShapeRef.new(shape: NotebookType, location_name: "type"))
|
|
5139
5145
|
NotebookSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
5140
5146
|
NotebookSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
5141
5147
|
NotebookSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
|
@@ -6799,6 +6805,7 @@ module Aws::DataZone
|
|
|
6799
6805
|
UpdateNotebookInput.add_member(:status, Shapes::ShapeRef.new(shape: NotebookStatus, location_name: "status"))
|
|
6800
6806
|
UpdateNotebookInput.add_member(:name, Shapes::ShapeRef.new(shape: NotebookName, location_name: "name"))
|
|
6801
6807
|
UpdateNotebookInput.add_member(:cell_order, Shapes::ShapeRef.new(shape: CellOrder, location_name: "cellOrder"))
|
|
6808
|
+
UpdateNotebookInput.add_member(:type, Shapes::ShapeRef.new(shape: NotebookType, location_name: "type"))
|
|
6802
6809
|
UpdateNotebookInput.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location_name: "metadata"))
|
|
6803
6810
|
UpdateNotebookInput.add_member(:parameters, Shapes::ShapeRef.new(shape: Parameters, location_name: "parameters"))
|
|
6804
6811
|
UpdateNotebookInput.add_member(:environment_configuration, Shapes::ShapeRef.new(shape: EnvironmentConfig, location_name: "environmentConfiguration"))
|
|
@@ -6811,6 +6818,7 @@ module Aws::DataZone
|
|
|
6811
6818
|
UpdateNotebookOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
|
6812
6819
|
UpdateNotebookOutput.add_member(:cell_order, Shapes::ShapeRef.new(shape: CellOrder, required: true, location_name: "cellOrder"))
|
|
6813
6820
|
UpdateNotebookOutput.add_member(:status, Shapes::ShapeRef.new(shape: NotebookStatus, required: true, location_name: "status"))
|
|
6821
|
+
UpdateNotebookOutput.add_member(:type, Shapes::ShapeRef.new(shape: NotebookType, location_name: "type"))
|
|
6814
6822
|
UpdateNotebookOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
6815
6823
|
UpdateNotebookOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
6816
6824
|
UpdateNotebookOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
|
@@ -5022,6 +5022,10 @@ module Aws::DataZone
|
|
|
5022
5022
|
# The description of the notebook.
|
|
5023
5023
|
# @return [String]
|
|
5024
5024
|
#
|
|
5025
|
+
# @!attribute [rw] type
|
|
5026
|
+
# The type of the notebook.
|
|
5027
|
+
# @return [String]
|
|
5028
|
+
#
|
|
5025
5029
|
# @!attribute [rw] metadata
|
|
5026
5030
|
# The metadata for the notebook, specified as key-value pairs. You can
|
|
5027
5031
|
# specify up to 50 entries, with keys up to 128 characters and values
|
|
@@ -5049,6 +5053,7 @@ module Aws::DataZone
|
|
|
5049
5053
|
:owning_project_identifier,
|
|
5050
5054
|
:name,
|
|
5051
5055
|
:description,
|
|
5056
|
+
:type,
|
|
5052
5057
|
:metadata,
|
|
5053
5058
|
:parameters,
|
|
5054
5059
|
:client_token)
|
|
@@ -5080,6 +5085,10 @@ module Aws::DataZone
|
|
|
5080
5085
|
# The status of the notebook.
|
|
5081
5086
|
# @return [String]
|
|
5082
5087
|
#
|
|
5088
|
+
# @!attribute [rw] type
|
|
5089
|
+
# The type of the notebook.
|
|
5090
|
+
# @return [String]
|
|
5091
|
+
#
|
|
5083
5092
|
# @!attribute [rw] description
|
|
5084
5093
|
# The description of the notebook.
|
|
5085
5094
|
# @return [String]
|
|
@@ -5145,6 +5154,7 @@ module Aws::DataZone
|
|
|
5145
5154
|
:domain_id,
|
|
5146
5155
|
:cell_order,
|
|
5147
5156
|
:status,
|
|
5157
|
+
:type,
|
|
5148
5158
|
:description,
|
|
5149
5159
|
:created_at,
|
|
5150
5160
|
:created_by,
|
|
@@ -11483,6 +11493,10 @@ module Aws::DataZone
|
|
|
11483
11493
|
# The status of the notebook.
|
|
11484
11494
|
# @return [String]
|
|
11485
11495
|
#
|
|
11496
|
+
# @!attribute [rw] type
|
|
11497
|
+
# The type of the notebook.
|
|
11498
|
+
# @return [String]
|
|
11499
|
+
#
|
|
11486
11500
|
# @!attribute [rw] description
|
|
11487
11501
|
# The description of the notebook.
|
|
11488
11502
|
# @return [String]
|
|
@@ -11548,6 +11562,7 @@ module Aws::DataZone
|
|
|
11548
11562
|
:domain_id,
|
|
11549
11563
|
:cell_order,
|
|
11550
11564
|
:status,
|
|
11565
|
+
:type,
|
|
11551
11566
|
:description,
|
|
11552
11567
|
:created_at,
|
|
11553
11568
|
:created_by,
|
|
@@ -15774,6 +15789,10 @@ module Aws::DataZone
|
|
|
15774
15789
|
# The status to filter notebooks by.
|
|
15775
15790
|
# @return [String]
|
|
15776
15791
|
#
|
|
15792
|
+
# @!attribute [rw] type
|
|
15793
|
+
# The type to filter notebooks by.
|
|
15794
|
+
# @return [String]
|
|
15795
|
+
#
|
|
15777
15796
|
# @!attribute [rw] next_token
|
|
15778
15797
|
# When the number of notebooks is greater than the default value for
|
|
15779
15798
|
# the `MaxResults` parameter, or if you explicitly specify a value for
|
|
@@ -15792,6 +15811,7 @@ module Aws::DataZone
|
|
|
15792
15811
|
:sort_order,
|
|
15793
15812
|
:sort_by,
|
|
15794
15813
|
:status,
|
|
15814
|
+
:type,
|
|
15795
15815
|
:next_token)
|
|
15796
15816
|
SENSITIVE = []
|
|
15797
15817
|
include Aws::Structure
|
|
@@ -17510,6 +17530,10 @@ module Aws::DataZone
|
|
|
17510
17530
|
# The status of the notebook.
|
|
17511
17531
|
# @return [String]
|
|
17512
17532
|
#
|
|
17533
|
+
# @!attribute [rw] type
|
|
17534
|
+
# The type of the notebook.
|
|
17535
|
+
# @return [String]
|
|
17536
|
+
#
|
|
17513
17537
|
# @!attribute [rw] description
|
|
17514
17538
|
# The description of the notebook.
|
|
17515
17539
|
# @return [String]
|
|
@@ -17538,6 +17562,7 @@ module Aws::DataZone
|
|
|
17538
17562
|
:owning_project_id,
|
|
17539
17563
|
:domain_id,
|
|
17540
17564
|
:status,
|
|
17565
|
+
:type,
|
|
17541
17566
|
:description,
|
|
17542
17567
|
:created_at,
|
|
17543
17568
|
:created_by,
|
|
@@ -24773,6 +24798,10 @@ module Aws::DataZone
|
|
|
24773
24798
|
# The updated ordered list of cells in the notebook.
|
|
24774
24799
|
# @return [Array<Types::CellInformation>]
|
|
24775
24800
|
#
|
|
24801
|
+
# @!attribute [rw] type
|
|
24802
|
+
# The updated type of the notebook.
|
|
24803
|
+
# @return [String]
|
|
24804
|
+
#
|
|
24776
24805
|
# @!attribute [rw] metadata
|
|
24777
24806
|
# The updated metadata for the notebook, specified as key-value pairs.
|
|
24778
24807
|
# @return [Hash<String,String>]
|
|
@@ -24803,6 +24832,7 @@ module Aws::DataZone
|
|
|
24803
24832
|
:status,
|
|
24804
24833
|
:name,
|
|
24805
24834
|
:cell_order,
|
|
24835
|
+
:type,
|
|
24806
24836
|
:metadata,
|
|
24807
24837
|
:parameters,
|
|
24808
24838
|
:environment_configuration,
|
|
@@ -24835,6 +24865,10 @@ module Aws::DataZone
|
|
|
24835
24865
|
# The status of the notebook.
|
|
24836
24866
|
# @return [String]
|
|
24837
24867
|
#
|
|
24868
|
+
# @!attribute [rw] type
|
|
24869
|
+
# The type of the notebook.
|
|
24870
|
+
# @return [String]
|
|
24871
|
+
#
|
|
24838
24872
|
# @!attribute [rw] description
|
|
24839
24873
|
# The description of the notebook.
|
|
24840
24874
|
# @return [String]
|
|
@@ -24900,6 +24934,7 @@ module Aws::DataZone
|
|
|
24900
24934
|
:domain_id,
|
|
24901
24935
|
:cell_order,
|
|
24902
24936
|
:status,
|
|
24937
|
+
:type,
|
|
24903
24938
|
:description,
|
|
24904
24939
|
:created_at,
|
|
24905
24940
|
:created_by,
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1110,6 +1110,7 @@ module Aws
|
|
|
1110
1110
|
def domain_id: () -> ::String
|
|
1111
1111
|
def cell_order: () -> ::Array[Types::CellInformation]
|
|
1112
1112
|
def status: () -> ("ACTIVE" | "ARCHIVED" | "SYNC_IN_PROGRESS" | "SYNC_FAILED")
|
|
1113
|
+
def type: () -> ("DATA" | "SQL")
|
|
1113
1114
|
def description: () -> ::String
|
|
1114
1115
|
def created_at: () -> ::Time
|
|
1115
1116
|
def created_by: () -> ::String
|
|
@@ -1130,6 +1131,7 @@ module Aws
|
|
|
1130
1131
|
owning_project_identifier: ::String,
|
|
1131
1132
|
name: ::String,
|
|
1132
1133
|
?description: ::String,
|
|
1134
|
+
?type: ("DATA" | "SQL"),
|
|
1133
1135
|
?metadata: Hash[::String, ::String],
|
|
1134
1136
|
?parameters: Hash[::String, ::String],
|
|
1135
1137
|
?client_token: ::String
|
|
@@ -2374,6 +2376,7 @@ module Aws
|
|
|
2374
2376
|
def domain_id: () -> ::String
|
|
2375
2377
|
def cell_order: () -> ::Array[Types::CellInformation]
|
|
2376
2378
|
def status: () -> ("ACTIVE" | "ARCHIVED" | "SYNC_IN_PROGRESS" | "SYNC_FAILED")
|
|
2379
|
+
def type: () -> ("DATA" | "SQL")
|
|
2377
2380
|
def description: () -> ::String
|
|
2378
2381
|
def created_at: () -> ::Time
|
|
2379
2382
|
def created_by: () -> ::String
|
|
@@ -3012,6 +3015,7 @@ module Aws
|
|
|
3012
3015
|
?sort_order: ("ASCENDING" | "DESCENDING"),
|
|
3013
3016
|
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
|
3014
3017
|
?status: ("ACTIVE" | "ARCHIVED" | "SYNC_IN_PROGRESS" | "SYNC_FAILED"),
|
|
3018
|
+
?type: ("DATA" | "SQL"),
|
|
3015
3019
|
?next_token: ::String
|
|
3016
3020
|
) -> _ListNotebooksResponseSuccess
|
|
3017
3021
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotebooksResponseSuccess
|
|
@@ -4286,6 +4290,7 @@ module Aws
|
|
|
4286
4290
|
def domain_id: () -> ::String
|
|
4287
4291
|
def cell_order: () -> ::Array[Types::CellInformation]
|
|
4288
4292
|
def status: () -> ("ACTIVE" | "ARCHIVED" | "SYNC_IN_PROGRESS" | "SYNC_FAILED")
|
|
4293
|
+
def type: () -> ("DATA" | "SQL")
|
|
4289
4294
|
def description: () -> ::String
|
|
4290
4295
|
def created_at: () -> ::Time
|
|
4291
4296
|
def created_by: () -> ::String
|
|
@@ -4311,6 +4316,7 @@ module Aws
|
|
|
4311
4316
|
{
|
|
4312
4317
|
}
|
|
4313
4318
|
],
|
|
4319
|
+
?type: ("DATA" | "SQL"),
|
|
4314
4320
|
?metadata: Hash[::String, ::String],
|
|
4315
4321
|
?parameters: Hash[::String, ::String],
|
|
4316
4322
|
?environment_configuration: {
|
data/sig/types.rbs
CHANGED
|
@@ -1374,6 +1374,7 @@ module Aws::DataZone
|
|
|
1374
1374
|
attr_accessor owning_project_identifier: ::String
|
|
1375
1375
|
attr_accessor name: ::String
|
|
1376
1376
|
attr_accessor description: ::String
|
|
1377
|
+
attr_accessor type: ("DATA" | "SQL")
|
|
1377
1378
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
1378
1379
|
attr_accessor parameters: ::Hash[::String, ::String]
|
|
1379
1380
|
attr_accessor client_token: ::String
|
|
@@ -1387,6 +1388,7 @@ module Aws::DataZone
|
|
|
1387
1388
|
attr_accessor domain_id: ::String
|
|
1388
1389
|
attr_accessor cell_order: ::Array[Types::CellInformation]
|
|
1389
1390
|
attr_accessor status: ("ACTIVE" | "ARCHIVED" | "SYNC_IN_PROGRESS" | "SYNC_FAILED")
|
|
1391
|
+
attr_accessor type: ("DATA" | "SQL")
|
|
1390
1392
|
attr_accessor description: ::String
|
|
1391
1393
|
attr_accessor created_at: ::Time
|
|
1392
1394
|
attr_accessor created_by: ::String
|
|
@@ -3112,6 +3114,7 @@ module Aws::DataZone
|
|
|
3112
3114
|
attr_accessor domain_id: ::String
|
|
3113
3115
|
attr_accessor cell_order: ::Array[Types::CellInformation]
|
|
3114
3116
|
attr_accessor status: ("ACTIVE" | "ARCHIVED" | "SYNC_IN_PROGRESS" | "SYNC_FAILED")
|
|
3117
|
+
attr_accessor type: ("DATA" | "SQL")
|
|
3115
3118
|
attr_accessor description: ::String
|
|
3116
3119
|
attr_accessor created_at: ::Time
|
|
3117
3120
|
attr_accessor created_by: ::String
|
|
@@ -4200,6 +4203,7 @@ module Aws::DataZone
|
|
|
4200
4203
|
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
|
4201
4204
|
attr_accessor sort_by: ("CREATED_AT" | "UPDATED_AT")
|
|
4202
4205
|
attr_accessor status: ("ACTIVE" | "ARCHIVED" | "SYNC_IN_PROGRESS" | "SYNC_FAILED")
|
|
4206
|
+
attr_accessor type: ("DATA" | "SQL")
|
|
4203
4207
|
attr_accessor next_token: ::String
|
|
4204
4208
|
SENSITIVE: []
|
|
4205
4209
|
end
|
|
@@ -4672,6 +4676,7 @@ module Aws::DataZone
|
|
|
4672
4676
|
attr_accessor owning_project_id: ::String
|
|
4673
4677
|
attr_accessor domain_id: ::String
|
|
4674
4678
|
attr_accessor status: ("ACTIVE" | "ARCHIVED" | "SYNC_IN_PROGRESS" | "SYNC_FAILED")
|
|
4679
|
+
attr_accessor type: ("DATA" | "SQL")
|
|
4675
4680
|
attr_accessor description: ::String
|
|
4676
4681
|
attr_accessor created_at: ::Time
|
|
4677
4682
|
attr_accessor created_by: ::String
|
|
@@ -6717,6 +6722,7 @@ module Aws::DataZone
|
|
|
6717
6722
|
attr_accessor status: ("ACTIVE" | "ARCHIVED" | "SYNC_IN_PROGRESS" | "SYNC_FAILED")
|
|
6718
6723
|
attr_accessor name: ::String
|
|
6719
6724
|
attr_accessor cell_order: ::Array[Types::CellInformation]
|
|
6725
|
+
attr_accessor type: ("DATA" | "SQL")
|
|
6720
6726
|
attr_accessor metadata: ::Hash[::String, ::String]
|
|
6721
6727
|
attr_accessor parameters: ::Hash[::String, ::String]
|
|
6722
6728
|
attr_accessor environment_configuration: Types::EnvironmentConfig
|
|
@@ -6731,6 +6737,7 @@ module Aws::DataZone
|
|
|
6731
6737
|
attr_accessor domain_id: ::String
|
|
6732
6738
|
attr_accessor cell_order: ::Array[Types::CellInformation]
|
|
6733
6739
|
attr_accessor status: ("ACTIVE" | "ARCHIVED" | "SYNC_IN_PROGRESS" | "SYNC_FAILED")
|
|
6740
|
+
attr_accessor type: ("DATA" | "SQL")
|
|
6734
6741
|
attr_accessor description: ::String
|
|
6735
6742
|
attr_accessor created_at: ::Time
|
|
6736
6743
|
attr_accessor created_by: ::String
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.91.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.256.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.256.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|