aws-sdk-datazone 1.73.0 → 1.75.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.
@@ -55,7 +55,7 @@ module Aws::DataZone
55
55
  autoload :EndpointProvider, 'aws-sdk-datazone/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-datazone/endpoints'
57
57
 
58
- GEM_VERSION = '1.73.0'
58
+ GEM_VERSION = '1.75.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -749,6 +749,9 @@ module Aws
749
749
  mwaa_environment_name: ::String?
750
750
  }?,
751
751
  workflows_serverless_properties: {
752
+ }?,
753
+ lakehouse_properties: {
754
+ glue_lineage_sync_enabled: bool?
752
755
  }?
753
756
  },
754
757
  ?enable_trusted_identity_propagation: bool,
@@ -2523,6 +2526,37 @@ module Aws
2523
2526
  ) -> _GetMetadataGenerationRunResponseSuccess
2524
2527
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMetadataGenerationRunResponseSuccess
2525
2528
 
2529
+ interface _GetNotebookRunResponseSuccess
2530
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetNotebookRunOutput]
2531
+ def id: () -> ::String
2532
+ def domain_id: () -> ::String
2533
+ def owning_project_id: () -> ::String
2534
+ def notebook_id: () -> ::String
2535
+ def schedule_id: () -> ::String
2536
+ def status: () -> ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
2537
+ def cell_order: () -> ::Array[Types::CellInformation]
2538
+ def metadata: () -> ::Hash[::String, ::String]
2539
+ def parameters: () -> ::Hash[::String, ::String]
2540
+ def compute_configuration: () -> Types::ComputeConfig
2541
+ def network_configuration: () -> Types::NetworkConfig
2542
+ def timeout_configuration: () -> Types::TimeoutConfig
2543
+ def environment_configuration: () -> Types::EnvironmentConfig
2544
+ def storage_configuration: () -> Types::StorageConfig
2545
+ def trigger_source: () -> Types::TriggerSource
2546
+ def created_at: () -> ::Time
2547
+ def created_by: () -> ::String
2548
+ def updated_at: () -> ::Time
2549
+ def updated_by: () -> ::String
2550
+ def started_at: () -> ::Time
2551
+ def completed_at: () -> ::Time
2552
+ end
2553
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_notebook_run-instance_method
2554
+ def get_notebook_run: (
2555
+ domain_identifier: ::String,
2556
+ identifier: ::String
2557
+ ) -> _GetNotebookRunResponseSuccess
2558
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNotebookRunResponseSuccess
2559
+
2526
2560
  interface _GetProjectResponseSuccess
2527
2561
  include ::Seahorse::Client::_ResponseSuccess[Types::GetProjectOutput]
2528
2562
  def domain_id: () -> ::String
@@ -3058,6 +3092,24 @@ module Aws
3058
3092
  ) -> _ListMetadataGenerationRunsResponseSuccess
3059
3093
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMetadataGenerationRunsResponseSuccess
3060
3094
 
3095
+ interface _ListNotebookRunsResponseSuccess
3096
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListNotebookRunsOutput]
3097
+ def items: () -> ::Array[Types::NotebookRunSummary]
3098
+ def next_token: () -> ::String
3099
+ end
3100
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_notebook_runs-instance_method
3101
+ def list_notebook_runs: (
3102
+ domain_identifier: ::String,
3103
+ owning_project_identifier: ::String,
3104
+ ?notebook_identifier: ::String,
3105
+ ?status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED"),
3106
+ ?schedule_identifier: ::String,
3107
+ ?max_results: ::Integer,
3108
+ ?sort_order: ("ASCENDING" | "DESCENDING"),
3109
+ ?next_token: ::String
3110
+ ) -> _ListNotebookRunsResponseSuccess
3111
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotebookRunsResponseSuccess
3112
+
3061
3113
  interface _ListNotificationsResponseSuccess
3062
3114
  include ::Seahorse::Client::_ResponseSuccess[Types::ListNotificationsOutput]
3063
3115
  def notifications: () -> ::Array[Types::NotificationOutput]
@@ -3745,6 +3797,74 @@ module Aws
3745
3797
  ) -> _StartMetadataGenerationRunResponseSuccess
3746
3798
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataGenerationRunResponseSuccess
3747
3799
 
3800
+ interface _StartNotebookRunResponseSuccess
3801
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartNotebookRunOutput]
3802
+ def id: () -> ::String
3803
+ def domain_id: () -> ::String
3804
+ def owning_project_id: () -> ::String
3805
+ def notebook_id: () -> ::String
3806
+ def schedule_id: () -> ::String
3807
+ def status: () -> ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
3808
+ def cell_order: () -> ::Array[Types::CellInformation]
3809
+ def metadata: () -> ::Hash[::String, ::String]
3810
+ def parameters: () -> ::Hash[::String, ::String]
3811
+ def compute_configuration: () -> Types::ComputeConfig
3812
+ def network_configuration: () -> Types::NetworkConfig
3813
+ def timeout_configuration: () -> Types::TimeoutConfig
3814
+ def environment_configuration: () -> Types::EnvironmentConfig
3815
+ def storage_configuration: () -> Types::StorageConfig
3816
+ def trigger_source: () -> Types::TriggerSource
3817
+ def created_at: () -> ::Time
3818
+ def created_by: () -> ::String
3819
+ def updated_at: () -> ::Time
3820
+ def updated_by: () -> ::String
3821
+ def started_at: () -> ::Time
3822
+ def completed_at: () -> ::Time
3823
+ end
3824
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#start_notebook_run-instance_method
3825
+ def start_notebook_run: (
3826
+ domain_identifier: ::String,
3827
+ owning_project_identifier: ::String,
3828
+ notebook_identifier: ::String,
3829
+ ?schedule_identifier: ::String,
3830
+ ?compute_configuration: {
3831
+ instance_type: ::String?,
3832
+ environment_version: ::String?
3833
+ },
3834
+ ?network_configuration: {
3835
+ network_access_type: ("PUBLIC_INTERNET_ONLY" | "VPC_ONLY"),
3836
+ vpc_id: ::String?,
3837
+ subnet_ids: Array[::String]?,
3838
+ security_group_ids: Array[::String]?
3839
+ },
3840
+ ?timeout_configuration: {
3841
+ run_timeout_in_minutes: ::Integer?
3842
+ },
3843
+ ?trigger_source: {
3844
+ type: ("MANUAL" | "SCHEDULED" | "WORKFLOW")?,
3845
+ name: ::String?
3846
+ },
3847
+ ?metadata: Hash[::String, ::String],
3848
+ ?parameters: Hash[::String, ::String],
3849
+ ?client_token: ::String
3850
+ ) -> _StartNotebookRunResponseSuccess
3851
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartNotebookRunResponseSuccess
3852
+
3853
+ interface _StopNotebookRunResponseSuccess
3854
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopNotebookRunOutput]
3855
+ def id: () -> ::String
3856
+ def domain_id: () -> ::String
3857
+ def owning_project_id: () -> ::String
3858
+ def status: () -> ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
3859
+ end
3860
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#stop_notebook_run-instance_method
3861
+ def stop_notebook_run: (
3862
+ domain_identifier: ::String,
3863
+ identifier: ::String,
3864
+ ?client_token: ::String
3865
+ ) -> _StopNotebookRunResponseSuccess
3866
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopNotebookRunResponseSuccess
3867
+
3748
3868
  interface _TagResourceResponseSuccess
3749
3869
  include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
3750
3870
  end
@@ -3986,6 +4106,9 @@ module Aws
3986
4106
  }?,
3987
4107
  mlflow_properties: {
3988
4108
  tracking_server_arn: ::String?
4109
+ }?,
4110
+ lakehouse_properties: {
4111
+ glue_lineage_sync_enabled: bool?
3989
4112
  }?
3990
4113
  }
3991
4114
  ) -> _UpdateConnectionResponseSuccess
data/sig/types.rbs CHANGED
@@ -548,6 +548,9 @@ module Aws::DataZone
548
548
  SENSITIVE: []
549
549
  end
550
550
 
551
+ class CellInformation < Aws::EmptyStructure
552
+ end
553
+
551
554
  class CloudFormationProperties
552
555
  attr_accessor template_url: ::String
553
556
  SENSITIVE: []
@@ -558,6 +561,12 @@ module Aws::DataZone
558
561
  SENSITIVE: []
559
562
  end
560
563
 
564
+ class ComputeConfig
565
+ attr_accessor instance_type: ::String
566
+ attr_accessor environment_version: ::String
567
+ SENSITIVE: []
568
+ end
569
+
561
570
  class ConfigurableActionParameter
562
571
  attr_accessor key: ::String
563
572
  attr_accessor value: ::String
@@ -603,6 +612,7 @@ module Aws::DataZone
603
612
  attr_accessor mlflow_properties: Types::MlflowPropertiesInput
604
613
  attr_accessor workflows_mwaa_properties: Types::WorkflowsMwaaPropertiesInput
605
614
  attr_accessor workflows_serverless_properties: Types::WorkflowsServerlessPropertiesInput
615
+ attr_accessor lakehouse_properties: Types::LakehousePropertiesInput
606
616
  attr_accessor unknown: untyped
607
617
  SENSITIVE: []
608
618
 
@@ -630,6 +640,8 @@ module Aws::DataZone
630
640
  end
631
641
  class WorkflowsServerlessProperties < ConnectionPropertiesInput
632
642
  end
643
+ class LakehouseProperties < ConnectionPropertiesInput
644
+ end
633
645
  class Unknown < ConnectionPropertiesInput
634
646
  end
635
647
  end
@@ -647,6 +659,7 @@ module Aws::DataZone
647
659
  attr_accessor mlflow_properties: Types::MlflowPropertiesOutput
648
660
  attr_accessor workflows_mwaa_properties: Types::WorkflowsMwaaPropertiesOutput
649
661
  attr_accessor workflows_serverless_properties: Types::WorkflowsServerlessPropertiesOutput
662
+ attr_accessor lakehouse_properties: Types::LakehousePropertiesOutput
650
663
  attr_accessor unknown: untyped
651
664
  SENSITIVE: []
652
665
 
@@ -674,6 +687,8 @@ module Aws::DataZone
674
687
  end
675
688
  class WorkflowsServerlessProperties < ConnectionPropertiesOutput
676
689
  end
690
+ class LakehouseProperties < ConnectionPropertiesOutput
691
+ end
677
692
  class Unknown < ConnectionPropertiesOutput
678
693
  end
679
694
  end
@@ -687,6 +702,7 @@ module Aws::DataZone
687
702
  attr_accessor s3_properties: Types::S3PropertiesPatch
688
703
  attr_accessor amazon_q_properties: Types::AmazonQPropertiesPatch
689
704
  attr_accessor mlflow_properties: Types::MlflowPropertiesPatch
705
+ attr_accessor lakehouse_properties: Types::LakehousePropertiesPatch
690
706
  attr_accessor unknown: untyped
691
707
  SENSITIVE: []
692
708
 
@@ -706,6 +722,8 @@ module Aws::DataZone
706
722
  end
707
723
  class MlflowProperties < ConnectionPropertiesPatch
708
724
  end
725
+ class LakehouseProperties < ConnectionPropertiesPatch
726
+ end
709
727
  class Unknown < ConnectionPropertiesPatch
710
728
  end
711
729
  end
@@ -2146,6 +2164,12 @@ module Aws::DataZone
2146
2164
  SENSITIVE: [:description]
2147
2165
  end
2148
2166
 
2167
+ class EnvironmentConfig
2168
+ attr_accessor image_version: ::String
2169
+ attr_accessor package_config: Types::PackageConfig
2170
+ SENSITIVE: []
2171
+ end
2172
+
2149
2173
  class EnvironmentConfiguration
2150
2174
  attr_accessor name: ::String
2151
2175
  attr_accessor id: ::String
@@ -2930,6 +2954,38 @@ module Aws::DataZone
2930
2954
  SENSITIVE: []
2931
2955
  end
2932
2956
 
2957
+ class GetNotebookRunInput
2958
+ attr_accessor domain_identifier: ::String
2959
+ attr_accessor identifier: ::String
2960
+ SENSITIVE: []
2961
+ end
2962
+
2963
+ class GetNotebookRunOutput
2964
+ attr_accessor id: ::String
2965
+ attr_accessor domain_id: ::String
2966
+ attr_accessor owning_project_id: ::String
2967
+ attr_accessor notebook_id: ::String
2968
+ attr_accessor schedule_id: ::String
2969
+ attr_accessor status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
2970
+ attr_accessor cell_order: ::Array[Types::CellInformation]
2971
+ attr_accessor metadata: ::Hash[::String, ::String]
2972
+ attr_accessor parameters: ::Hash[::String, ::String]
2973
+ attr_accessor compute_configuration: Types::ComputeConfig
2974
+ attr_accessor network_configuration: Types::NetworkConfig
2975
+ attr_accessor timeout_configuration: Types::TimeoutConfig
2976
+ attr_accessor environment_configuration: Types::EnvironmentConfig
2977
+ attr_accessor storage_configuration: Types::StorageConfig
2978
+ attr_accessor trigger_source: Types::TriggerSource
2979
+ attr_accessor error: Types::NotebookRunError
2980
+ attr_accessor created_at: ::Time
2981
+ attr_accessor created_by: ::String
2982
+ attr_accessor updated_at: ::Time
2983
+ attr_accessor updated_by: ::String
2984
+ attr_accessor started_at: ::Time
2985
+ attr_accessor completed_at: ::Time
2986
+ SENSITIVE: [:parameters]
2987
+ end
2988
+
2933
2989
  class GetProjectInput
2934
2990
  attr_accessor domain_identifier: ::String
2935
2991
  attr_accessor identifier: ::String
@@ -3434,6 +3490,21 @@ module Aws::DataZone
3434
3490
  SENSITIVE: []
3435
3491
  end
3436
3492
 
3493
+ class LakehousePropertiesInput
3494
+ attr_accessor glue_lineage_sync_enabled: bool
3495
+ SENSITIVE: []
3496
+ end
3497
+
3498
+ class LakehousePropertiesOutput
3499
+ attr_accessor glue_lineage_sync_enabled: bool
3500
+ SENSITIVE: []
3501
+ end
3502
+
3503
+ class LakehousePropertiesPatch
3504
+ attr_accessor glue_lineage_sync_enabled: bool
3505
+ SENSITIVE: []
3506
+ end
3507
+
3437
3508
  class LessThanExpression
3438
3509
  attr_accessor column_name: ::String
3439
3510
  attr_accessor value: ::String
@@ -3875,6 +3946,24 @@ module Aws::DataZone
3875
3946
  SENSITIVE: []
3876
3947
  end
3877
3948
 
3949
+ class ListNotebookRunsInput
3950
+ attr_accessor domain_identifier: ::String
3951
+ attr_accessor owning_project_identifier: ::String
3952
+ attr_accessor notebook_identifier: ::String
3953
+ attr_accessor status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
3954
+ attr_accessor schedule_identifier: ::String
3955
+ attr_accessor max_results: ::Integer
3956
+ attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
3957
+ attr_accessor next_token: ::String
3958
+ SENSITIVE: []
3959
+ end
3960
+
3961
+ class ListNotebookRunsOutput
3962
+ attr_accessor items: ::Array[Types::NotebookRunSummary]
3963
+ attr_accessor next_token: ::String
3964
+ SENSITIVE: []
3965
+ end
3966
+
3878
3967
  class ListNotificationsInput
3879
3968
  attr_accessor domain_identifier: ::String
3880
3969
  attr_accessor type: ("TASK" | "EVENT")
@@ -4273,6 +4362,14 @@ module Aws::DataZone
4273
4362
  SENSITIVE: []
4274
4363
  end
4275
4364
 
4365
+ class NetworkConfig
4366
+ attr_accessor network_access_type: ("PUBLIC_INTERNET_ONLY" | "VPC_ONLY")
4367
+ attr_accessor vpc_id: ::String
4368
+ attr_accessor subnet_ids: ::Array[::String]
4369
+ attr_accessor security_group_ids: ::Array[::String]
4370
+ SENSITIVE: []
4371
+ end
4372
+
4276
4373
  class NotEqualToExpression
4277
4374
  attr_accessor column_name: ::String
4278
4375
  attr_accessor value: ::String
@@ -4291,6 +4388,28 @@ module Aws::DataZone
4291
4388
  SENSITIVE: []
4292
4389
  end
4293
4390
 
4391
+ class NotebookRunError
4392
+ attr_accessor message: ::String
4393
+ SENSITIVE: []
4394
+ end
4395
+
4396
+ class NotebookRunSummary
4397
+ attr_accessor id: ::String
4398
+ attr_accessor domain_id: ::String
4399
+ attr_accessor owning_project_id: ::String
4400
+ attr_accessor notebook_id: ::String
4401
+ attr_accessor schedule_id: ::String
4402
+ attr_accessor status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
4403
+ attr_accessor trigger_source: Types::TriggerSource
4404
+ attr_accessor created_at: ::Time
4405
+ attr_accessor created_by: ::String
4406
+ attr_accessor updated_at: ::Time
4407
+ attr_accessor updated_by: ::String
4408
+ attr_accessor started_at: ::Time
4409
+ attr_accessor completed_at: ::Time
4410
+ SENSITIVE: []
4411
+ end
4412
+
4294
4413
  class NotificationOutput
4295
4414
  attr_accessor identifier: ::String
4296
4415
  attr_accessor domain_identifier: ::String
@@ -4396,6 +4515,12 @@ module Aws::DataZone
4396
4515
  SENSITIVE: []
4397
4516
  end
4398
4517
 
4518
+ class PackageConfig
4519
+ attr_accessor package_manager: ("UV")
4520
+ attr_accessor package_specification: ::String
4521
+ SENSITIVE: []
4522
+ end
4523
+
4399
4524
  class Permissions
4400
4525
  attr_accessor s3: ::Array[("READ" | "WRITE")]
4401
4526
  attr_accessor unknown: untyped
@@ -5463,6 +5588,68 @@ module Aws::DataZone
5463
5588
  SENSITIVE: []
5464
5589
  end
5465
5590
 
5591
+ class StartNotebookRunInput
5592
+ attr_accessor domain_identifier: ::String
5593
+ attr_accessor owning_project_identifier: ::String
5594
+ attr_accessor notebook_identifier: ::String
5595
+ attr_accessor schedule_identifier: ::String
5596
+ attr_accessor compute_configuration: Types::ComputeConfig
5597
+ attr_accessor network_configuration: Types::NetworkConfig
5598
+ attr_accessor timeout_configuration: Types::TimeoutConfig
5599
+ attr_accessor trigger_source: Types::TriggerSource
5600
+ attr_accessor metadata: ::Hash[::String, ::String]
5601
+ attr_accessor parameters: ::Hash[::String, ::String]
5602
+ attr_accessor client_token: ::String
5603
+ SENSITIVE: [:parameters]
5604
+ end
5605
+
5606
+ class StartNotebookRunOutput
5607
+ attr_accessor id: ::String
5608
+ attr_accessor domain_id: ::String
5609
+ attr_accessor owning_project_id: ::String
5610
+ attr_accessor notebook_id: ::String
5611
+ attr_accessor schedule_id: ::String
5612
+ attr_accessor status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
5613
+ attr_accessor cell_order: ::Array[Types::CellInformation]
5614
+ attr_accessor metadata: ::Hash[::String, ::String]
5615
+ attr_accessor parameters: ::Hash[::String, ::String]
5616
+ attr_accessor compute_configuration: Types::ComputeConfig
5617
+ attr_accessor network_configuration: Types::NetworkConfig
5618
+ attr_accessor timeout_configuration: Types::TimeoutConfig
5619
+ attr_accessor environment_configuration: Types::EnvironmentConfig
5620
+ attr_accessor storage_configuration: Types::StorageConfig
5621
+ attr_accessor trigger_source: Types::TriggerSource
5622
+ attr_accessor error: Types::NotebookRunError
5623
+ attr_accessor created_at: ::Time
5624
+ attr_accessor created_by: ::String
5625
+ attr_accessor updated_at: ::Time
5626
+ attr_accessor updated_by: ::String
5627
+ attr_accessor started_at: ::Time
5628
+ attr_accessor completed_at: ::Time
5629
+ SENSITIVE: [:parameters]
5630
+ end
5631
+
5632
+ class StopNotebookRunInput
5633
+ attr_accessor domain_identifier: ::String
5634
+ attr_accessor identifier: ::String
5635
+ attr_accessor client_token: ::String
5636
+ SENSITIVE: []
5637
+ end
5638
+
5639
+ class StopNotebookRunOutput
5640
+ attr_accessor id: ::String
5641
+ attr_accessor domain_id: ::String
5642
+ attr_accessor owning_project_id: ::String
5643
+ attr_accessor status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
5644
+ SENSITIVE: []
5645
+ end
5646
+
5647
+ class StorageConfig
5648
+ attr_accessor project_s3_path: ::String
5649
+ attr_accessor kms_key_arn: ::String
5650
+ SENSITIVE: []
5651
+ end
5652
+
5466
5653
  class SubscribedAsset
5467
5654
  attr_accessor asset_id: ::String
5468
5655
  attr_accessor asset_revision: ::String
@@ -5741,6 +5928,11 @@ module Aws::DataZone
5741
5928
  SENSITIVE: []
5742
5929
  end
5743
5930
 
5931
+ class TimeoutConfig
5932
+ attr_accessor run_timeout_in_minutes: ::Integer
5933
+ SENSITIVE: []
5934
+ end
5935
+
5744
5936
  class Topic
5745
5937
  attr_accessor subject: ::String
5746
5938
  attr_accessor resource: Types::NotificationResource
@@ -5748,6 +5940,12 @@ module Aws::DataZone
5748
5940
  SENSITIVE: []
5749
5941
  end
5750
5942
 
5943
+ class TriggerSource
5944
+ attr_accessor type: ("MANUAL" | "SCHEDULED" | "WORKFLOW")
5945
+ attr_accessor name: ::String
5946
+ SENSITIVE: []
5947
+ end
5948
+
5751
5949
  class UnauthorizedException
5752
5950
  attr_accessor message: ::String
5753
5951
  SENSITIVE: []
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.73.0
4
+ version: 1.75.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services