aws-sdk-datazone 1.55.0 → 1.57.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 +118 -10
- data/lib/aws-sdk-datazone/client_api.rb +68 -0
- data/lib/aws-sdk-datazone/types.rb +240 -5
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +44 -4
- data/sig/types.rbs +72 -11
- metadata +1 -1
|
@@ -1820,6 +1820,10 @@ module Aws::DataZone
|
|
|
1820
1820
|
# The IAM properties of a connection.
|
|
1821
1821
|
# @return [Types::IamPropertiesInput]
|
|
1822
1822
|
#
|
|
1823
|
+
# @!attribute [rw] mlflow_properties
|
|
1824
|
+
# The MLflow properties of a connection.
|
|
1825
|
+
# @return [Types::MlflowPropertiesInput]
|
|
1826
|
+
#
|
|
1823
1827
|
# @!attribute [rw] redshift_properties
|
|
1824
1828
|
# The Amazon Redshift properties of a connection.
|
|
1825
1829
|
# @return [Types::RedshiftPropertiesInput]
|
|
@@ -1844,6 +1848,7 @@ module Aws::DataZone
|
|
|
1844
1848
|
:glue_properties,
|
|
1845
1849
|
:hyper_pod_properties,
|
|
1846
1850
|
:iam_properties,
|
|
1851
|
+
:mlflow_properties,
|
|
1847
1852
|
:redshift_properties,
|
|
1848
1853
|
:s3_properties,
|
|
1849
1854
|
:spark_emr_properties,
|
|
@@ -1858,6 +1863,7 @@ module Aws::DataZone
|
|
|
1858
1863
|
class GlueProperties < ConnectionPropertiesInput; end
|
|
1859
1864
|
class HyperPodProperties < ConnectionPropertiesInput; end
|
|
1860
1865
|
class IamProperties < ConnectionPropertiesInput; end
|
|
1866
|
+
class MlflowProperties < ConnectionPropertiesInput; end
|
|
1861
1867
|
class RedshiftProperties < ConnectionPropertiesInput; end
|
|
1862
1868
|
class S3Properties < ConnectionPropertiesInput; end
|
|
1863
1869
|
class SparkEmrProperties < ConnectionPropertiesInput; end
|
|
@@ -1889,6 +1895,10 @@ module Aws::DataZone
|
|
|
1889
1895
|
# The IAM properties of a connection.
|
|
1890
1896
|
# @return [Types::IamPropertiesOutput]
|
|
1891
1897
|
#
|
|
1898
|
+
# @!attribute [rw] mlflow_properties
|
|
1899
|
+
# The MLflow properties of a connection.
|
|
1900
|
+
# @return [Types::MlflowPropertiesOutput]
|
|
1901
|
+
#
|
|
1892
1902
|
# @!attribute [rw] redshift_properties
|
|
1893
1903
|
# The Amazon Redshift properties of a connection.
|
|
1894
1904
|
# @return [Types::RedshiftPropertiesOutput]
|
|
@@ -1913,6 +1923,7 @@ module Aws::DataZone
|
|
|
1913
1923
|
:glue_properties,
|
|
1914
1924
|
:hyper_pod_properties,
|
|
1915
1925
|
:iam_properties,
|
|
1926
|
+
:mlflow_properties,
|
|
1916
1927
|
:redshift_properties,
|
|
1917
1928
|
:s3_properties,
|
|
1918
1929
|
:spark_emr_properties,
|
|
@@ -1927,6 +1938,7 @@ module Aws::DataZone
|
|
|
1927
1938
|
class GlueProperties < ConnectionPropertiesOutput; end
|
|
1928
1939
|
class HyperPodProperties < ConnectionPropertiesOutput; end
|
|
1929
1940
|
class IamProperties < ConnectionPropertiesOutput; end
|
|
1941
|
+
class MlflowProperties < ConnectionPropertiesOutput; end
|
|
1930
1942
|
class RedshiftProperties < ConnectionPropertiesOutput; end
|
|
1931
1943
|
class S3Properties < ConnectionPropertiesOutput; end
|
|
1932
1944
|
class SparkEmrProperties < ConnectionPropertiesOutput; end
|
|
@@ -1955,6 +1967,10 @@ module Aws::DataZone
|
|
|
1955
1967
|
# The IAM properties of a connection properties patch.
|
|
1956
1968
|
# @return [Types::IamPropertiesPatch]
|
|
1957
1969
|
#
|
|
1970
|
+
# @!attribute [rw] mlflow_properties
|
|
1971
|
+
# The MLflow properties of a connection.
|
|
1972
|
+
# @return [Types::MlflowPropertiesPatch]
|
|
1973
|
+
#
|
|
1958
1974
|
# @!attribute [rw] redshift_properties
|
|
1959
1975
|
# The Amazon Redshift properties of a connection properties patch.
|
|
1960
1976
|
# @return [Types::RedshiftPropertiesPatch]
|
|
@@ -1974,6 +1990,7 @@ module Aws::DataZone
|
|
|
1974
1990
|
:athena_properties,
|
|
1975
1991
|
:glue_properties,
|
|
1976
1992
|
:iam_properties,
|
|
1993
|
+
:mlflow_properties,
|
|
1977
1994
|
:redshift_properties,
|
|
1978
1995
|
:s3_properties,
|
|
1979
1996
|
:spark_emr_properties,
|
|
@@ -1986,6 +2003,7 @@ module Aws::DataZone
|
|
|
1986
2003
|
class AthenaProperties < ConnectionPropertiesPatch; end
|
|
1987
2004
|
class GlueProperties < ConnectionPropertiesPatch; end
|
|
1988
2005
|
class IamProperties < ConnectionPropertiesPatch; end
|
|
2006
|
+
class MlflowProperties < ConnectionPropertiesPatch; end
|
|
1989
2007
|
class RedshiftProperties < ConnectionPropertiesPatch; end
|
|
1990
2008
|
class S3Properties < ConnectionPropertiesPatch; end
|
|
1991
2009
|
class SparkEmrProperties < ConnectionPropertiesPatch; end
|
|
@@ -4523,6 +4541,10 @@ module Aws::DataZone
|
|
|
4523
4541
|
# The ID of the project profile.
|
|
4524
4542
|
# @return [String]
|
|
4525
4543
|
#
|
|
4544
|
+
# @!attribute [rw] resource_tags
|
|
4545
|
+
# The resource tags of the project.
|
|
4546
|
+
# @return [Hash<String,String>]
|
|
4547
|
+
#
|
|
4526
4548
|
# @!attribute [rw] user_parameters
|
|
4527
4549
|
# The user parameters of the project.
|
|
4528
4550
|
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
|
@@ -4536,6 +4558,7 @@ module Aws::DataZone
|
|
|
4536
4558
|
:glossary_terms,
|
|
4537
4559
|
:name,
|
|
4538
4560
|
:project_profile_id,
|
|
4561
|
+
:resource_tags,
|
|
4539
4562
|
:user_parameters)
|
|
4540
4563
|
SENSITIVE = [:description, :name]
|
|
4541
4564
|
include Aws::Structure
|
|
@@ -4627,6 +4650,10 @@ module Aws::DataZone
|
|
|
4627
4650
|
# The status of the Amazon DataZone project that was created.
|
|
4628
4651
|
# @return [String]
|
|
4629
4652
|
#
|
|
4653
|
+
# @!attribute [rw] resource_tags
|
|
4654
|
+
# The resource tags of the project.
|
|
4655
|
+
# @return [Array<Types::ResourceTag>]
|
|
4656
|
+
#
|
|
4630
4657
|
# @!attribute [rw] user_parameters
|
|
4631
4658
|
# The user parameters of the project.
|
|
4632
4659
|
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
|
@@ -4647,6 +4674,7 @@ module Aws::DataZone
|
|
|
4647
4674
|
:name,
|
|
4648
4675
|
:project_profile_id,
|
|
4649
4676
|
:project_status,
|
|
4677
|
+
:resource_tags,
|
|
4650
4678
|
:user_parameters)
|
|
4651
4679
|
SENSITIVE = [:description, :name]
|
|
4652
4680
|
include Aws::Structure
|
|
@@ -4666,6 +4694,10 @@ module Aws::DataZone
|
|
|
4666
4694
|
include Aws::Structure
|
|
4667
4695
|
end
|
|
4668
4696
|
|
|
4697
|
+
# @!attribute [rw] allow_custom_project_resource_tags
|
|
4698
|
+
# Specifies whether custom project resource tags are supported.
|
|
4699
|
+
# @return [Boolean]
|
|
4700
|
+
#
|
|
4669
4701
|
# @!attribute [rw] description
|
|
4670
4702
|
# A description of a project profile.
|
|
4671
4703
|
# @return [String]
|
|
@@ -4686,6 +4718,15 @@ module Aws::DataZone
|
|
|
4686
4718
|
# Project profile name.
|
|
4687
4719
|
# @return [String]
|
|
4688
4720
|
#
|
|
4721
|
+
# @!attribute [rw] project_resource_tags
|
|
4722
|
+
# The resource tags of the project profile.
|
|
4723
|
+
# @return [Array<Types::ResourceTagParameter>]
|
|
4724
|
+
#
|
|
4725
|
+
# @!attribute [rw] project_resource_tags_description
|
|
4726
|
+
# Field viewable through the UI that provides a project user with the
|
|
4727
|
+
# allowed resource tag specifications.
|
|
4728
|
+
# @return [String]
|
|
4729
|
+
#
|
|
4689
4730
|
# @!attribute [rw] status
|
|
4690
4731
|
# Project profile status.
|
|
4691
4732
|
# @return [String]
|
|
@@ -4693,16 +4734,23 @@ module Aws::DataZone
|
|
|
4693
4734
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectProfileInput AWS API Documentation
|
|
4694
4735
|
#
|
|
4695
4736
|
class CreateProjectProfileInput < Struct.new(
|
|
4737
|
+
:allow_custom_project_resource_tags,
|
|
4696
4738
|
:description,
|
|
4697
4739
|
:domain_identifier,
|
|
4698
4740
|
:domain_unit_identifier,
|
|
4699
4741
|
:environment_configurations,
|
|
4700
4742
|
:name,
|
|
4743
|
+
:project_resource_tags,
|
|
4744
|
+
:project_resource_tags_description,
|
|
4701
4745
|
:status)
|
|
4702
|
-
SENSITIVE = [:description, :name]
|
|
4746
|
+
SENSITIVE = [:description, :name, :project_resource_tags_description]
|
|
4703
4747
|
include Aws::Structure
|
|
4704
4748
|
end
|
|
4705
4749
|
|
|
4750
|
+
# @!attribute [rw] allow_custom_project_resource_tags
|
|
4751
|
+
# Specifies whether custom project resource tags are supported.
|
|
4752
|
+
# @return [Boolean]
|
|
4753
|
+
#
|
|
4706
4754
|
# @!attribute [rw] created_at
|
|
4707
4755
|
# A timestamp at which a project profile is created.
|
|
4708
4756
|
# @return [Time]
|
|
@@ -4739,6 +4787,15 @@ module Aws::DataZone
|
|
|
4739
4787
|
# Project profile name.
|
|
4740
4788
|
# @return [String]
|
|
4741
4789
|
#
|
|
4790
|
+
# @!attribute [rw] project_resource_tags
|
|
4791
|
+
# The resource tags of the project profile.
|
|
4792
|
+
# @return [Array<Types::ResourceTagParameter>]
|
|
4793
|
+
#
|
|
4794
|
+
# @!attribute [rw] project_resource_tags_description
|
|
4795
|
+
# Field viewable through the UI that provides a project user with the
|
|
4796
|
+
# allowed resource tag specifications.
|
|
4797
|
+
# @return [String]
|
|
4798
|
+
#
|
|
4742
4799
|
# @!attribute [rw] status
|
|
4743
4800
|
# Project profile status.
|
|
4744
4801
|
# @return [String]
|
|
@@ -4746,6 +4803,7 @@ module Aws::DataZone
|
|
|
4746
4803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectProfileOutput AWS API Documentation
|
|
4747
4804
|
#
|
|
4748
4805
|
class CreateProjectProfileOutput < Struct.new(
|
|
4806
|
+
:allow_custom_project_resource_tags,
|
|
4749
4807
|
:created_at,
|
|
4750
4808
|
:created_by,
|
|
4751
4809
|
:description,
|
|
@@ -4755,8 +4813,10 @@ module Aws::DataZone
|
|
|
4755
4813
|
:id,
|
|
4756
4814
|
:last_updated_at,
|
|
4757
4815
|
:name,
|
|
4816
|
+
:project_resource_tags,
|
|
4817
|
+
:project_resource_tags_description,
|
|
4758
4818
|
:status)
|
|
4759
|
-
SENSITIVE = [:description, :name]
|
|
4819
|
+
SENSITIVE = [:description, :name, :project_resource_tags_description]
|
|
4760
4820
|
include Aws::Structure
|
|
4761
4821
|
end
|
|
4762
4822
|
|
|
@@ -10286,6 +10346,10 @@ module Aws::DataZone
|
|
|
10286
10346
|
# The status of the project.
|
|
10287
10347
|
# @return [String]
|
|
10288
10348
|
#
|
|
10349
|
+
# @!attribute [rw] resource_tags
|
|
10350
|
+
# The resource tags of the project.
|
|
10351
|
+
# @return [Array<Types::ResourceTag>]
|
|
10352
|
+
#
|
|
10289
10353
|
# @!attribute [rw] user_parameters
|
|
10290
10354
|
# The user parameters of a project.
|
|
10291
10355
|
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
|
@@ -10306,6 +10370,7 @@ module Aws::DataZone
|
|
|
10306
10370
|
:name,
|
|
10307
10371
|
:project_profile_id,
|
|
10308
10372
|
:project_status,
|
|
10373
|
+
:resource_tags,
|
|
10309
10374
|
:user_parameters)
|
|
10310
10375
|
SENSITIVE = [:description, :name]
|
|
10311
10376
|
include Aws::Structure
|
|
@@ -10328,6 +10393,10 @@ module Aws::DataZone
|
|
|
10328
10393
|
include Aws::Structure
|
|
10329
10394
|
end
|
|
10330
10395
|
|
|
10396
|
+
# @!attribute [rw] allow_custom_project_resource_tags
|
|
10397
|
+
# Specifies whether custom project resource tags are supported.
|
|
10398
|
+
# @return [Boolean]
|
|
10399
|
+
#
|
|
10331
10400
|
# @!attribute [rw] created_at
|
|
10332
10401
|
# The timestamp of when the project profile was created.
|
|
10333
10402
|
# @return [Time]
|
|
@@ -10364,6 +10433,15 @@ module Aws::DataZone
|
|
|
10364
10433
|
# The name of the project profile.
|
|
10365
10434
|
# @return [String]
|
|
10366
10435
|
#
|
|
10436
|
+
# @!attribute [rw] project_resource_tags
|
|
10437
|
+
# The resource tags of the project profile.
|
|
10438
|
+
# @return [Array<Types::ResourceTagParameter>]
|
|
10439
|
+
#
|
|
10440
|
+
# @!attribute [rw] project_resource_tags_description
|
|
10441
|
+
# Field viewable through the UI that provides a project user with the
|
|
10442
|
+
# allowed resource tag specifications.
|
|
10443
|
+
# @return [String]
|
|
10444
|
+
#
|
|
10367
10445
|
# @!attribute [rw] status
|
|
10368
10446
|
# The status of the project profile.
|
|
10369
10447
|
# @return [String]
|
|
@@ -10371,6 +10449,7 @@ module Aws::DataZone
|
|
|
10371
10449
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectProfileOutput AWS API Documentation
|
|
10372
10450
|
#
|
|
10373
10451
|
class GetProjectProfileOutput < Struct.new(
|
|
10452
|
+
:allow_custom_project_resource_tags,
|
|
10374
10453
|
:created_at,
|
|
10375
10454
|
:created_by,
|
|
10376
10455
|
:description,
|
|
@@ -10380,8 +10459,10 @@ module Aws::DataZone
|
|
|
10380
10459
|
:id,
|
|
10381
10460
|
:last_updated_at,
|
|
10382
10461
|
:name,
|
|
10462
|
+
:project_resource_tags,
|
|
10463
|
+
:project_resource_tags_description,
|
|
10383
10464
|
:status)
|
|
10384
|
-
SENSITIVE = [:description, :name]
|
|
10465
|
+
SENSITIVE = [:description, :name, :project_resource_tags_description]
|
|
10385
10466
|
include Aws::Structure
|
|
10386
10467
|
end
|
|
10387
10468
|
|
|
@@ -15024,6 +15105,69 @@ module Aws::DataZone
|
|
|
15024
15105
|
include Aws::Structure
|
|
15025
15106
|
end
|
|
15026
15107
|
|
|
15108
|
+
# The MLflow properties of a connection.
|
|
15109
|
+
#
|
|
15110
|
+
# @!attribute [rw] tracking_server_arn
|
|
15111
|
+
# The tracking server ARN as part of the MLflow properties of a
|
|
15112
|
+
# connection.
|
|
15113
|
+
# @return [String]
|
|
15114
|
+
#
|
|
15115
|
+
# @!attribute [rw] tracking_server_name
|
|
15116
|
+
# The name of the tracking server as part of the MLflow properties of
|
|
15117
|
+
# a connection.
|
|
15118
|
+
# @return [String]
|
|
15119
|
+
#
|
|
15120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MlflowPropertiesInput AWS API Documentation
|
|
15121
|
+
#
|
|
15122
|
+
class MlflowPropertiesInput < Struct.new(
|
|
15123
|
+
:tracking_server_arn,
|
|
15124
|
+
:tracking_server_name)
|
|
15125
|
+
SENSITIVE = []
|
|
15126
|
+
include Aws::Structure
|
|
15127
|
+
end
|
|
15128
|
+
|
|
15129
|
+
# The MLflow properties of a connection.
|
|
15130
|
+
#
|
|
15131
|
+
# @!attribute [rw] tracking_server_arn
|
|
15132
|
+
# The tracking server ARN as part of the MLflow properties of a
|
|
15133
|
+
# connection.
|
|
15134
|
+
# @return [String]
|
|
15135
|
+
#
|
|
15136
|
+
# @!attribute [rw] tracking_server_name
|
|
15137
|
+
# The name of the tracking server as part of the MLflow properties of
|
|
15138
|
+
# a connection.
|
|
15139
|
+
# @return [String]
|
|
15140
|
+
#
|
|
15141
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MlflowPropertiesOutput AWS API Documentation
|
|
15142
|
+
#
|
|
15143
|
+
class MlflowPropertiesOutput < Struct.new(
|
|
15144
|
+
:tracking_server_arn,
|
|
15145
|
+
:tracking_server_name)
|
|
15146
|
+
SENSITIVE = []
|
|
15147
|
+
include Aws::Structure
|
|
15148
|
+
end
|
|
15149
|
+
|
|
15150
|
+
# The MLflow properties of a connection.
|
|
15151
|
+
#
|
|
15152
|
+
# @!attribute [rw] tracking_server_arn
|
|
15153
|
+
# The tracking server ARN as part of the MLflow properties of a
|
|
15154
|
+
# connection.
|
|
15155
|
+
# @return [String]
|
|
15156
|
+
#
|
|
15157
|
+
# @!attribute [rw] tracking_server_name
|
|
15158
|
+
# The name of the tracking server as part of the MLflow properties of
|
|
15159
|
+
# a connection.
|
|
15160
|
+
# @return [String]
|
|
15161
|
+
#
|
|
15162
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MlflowPropertiesPatch AWS API Documentation
|
|
15163
|
+
#
|
|
15164
|
+
class MlflowPropertiesPatch < Struct.new(
|
|
15165
|
+
:tracking_server_arn,
|
|
15166
|
+
:tracking_server_name)
|
|
15167
|
+
SENSITIVE = []
|
|
15168
|
+
include Aws::Structure
|
|
15169
|
+
end
|
|
15170
|
+
|
|
15027
15171
|
# The model of the API.
|
|
15028
15172
|
#
|
|
15029
15173
|
# @note Model is a union - when making an API calls you must set exactly one of the members.
|
|
@@ -17032,6 +17176,55 @@ module Aws::DataZone
|
|
|
17032
17176
|
include Aws::Structure
|
|
17033
17177
|
end
|
|
17034
17178
|
|
|
17179
|
+
# The resource tag of the project.
|
|
17180
|
+
#
|
|
17181
|
+
# @!attribute [rw] key
|
|
17182
|
+
# The key of the resource tag of the project.
|
|
17183
|
+
# @return [String]
|
|
17184
|
+
#
|
|
17185
|
+
# @!attribute [rw] source
|
|
17186
|
+
# The source of the resource tag of the project.
|
|
17187
|
+
# @return [String]
|
|
17188
|
+
#
|
|
17189
|
+
# @!attribute [rw] value
|
|
17190
|
+
# The value of the resource tag of the project.
|
|
17191
|
+
# @return [String]
|
|
17192
|
+
#
|
|
17193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ResourceTag AWS API Documentation
|
|
17194
|
+
#
|
|
17195
|
+
class ResourceTag < Struct.new(
|
|
17196
|
+
:key,
|
|
17197
|
+
:source,
|
|
17198
|
+
:value)
|
|
17199
|
+
SENSITIVE = []
|
|
17200
|
+
include Aws::Structure
|
|
17201
|
+
end
|
|
17202
|
+
|
|
17203
|
+
# The resource tag parameter of the project profile.
|
|
17204
|
+
#
|
|
17205
|
+
# @!attribute [rw] is_value_editable
|
|
17206
|
+
# Specifies whether the value of the resource tag parameter of the
|
|
17207
|
+
# project profile is editable at the project level.
|
|
17208
|
+
# @return [Boolean]
|
|
17209
|
+
#
|
|
17210
|
+
# @!attribute [rw] key
|
|
17211
|
+
# The key of the resource tag parameter of the project profile.
|
|
17212
|
+
# @return [String]
|
|
17213
|
+
#
|
|
17214
|
+
# @!attribute [rw] value
|
|
17215
|
+
# The value of the resource tag parameter key of the project profile.
|
|
17216
|
+
# @return [String]
|
|
17217
|
+
#
|
|
17218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ResourceTagParameter AWS API Documentation
|
|
17219
|
+
#
|
|
17220
|
+
class ResourceTagParameter < Struct.new(
|
|
17221
|
+
:is_value_editable,
|
|
17222
|
+
:key,
|
|
17223
|
+
:value)
|
|
17224
|
+
SENSITIVE = []
|
|
17225
|
+
include Aws::Structure
|
|
17226
|
+
end
|
|
17227
|
+
|
|
17035
17228
|
# @!attribute [rw] domain_identifier
|
|
17036
17229
|
# The identifier of the Amazon DataZone domain where you want to
|
|
17037
17230
|
# revoke a subscription.
|
|
@@ -21012,6 +21205,10 @@ module Aws::DataZone
|
|
|
21012
21205
|
# `latest`.
|
|
21013
21206
|
# @return [String]
|
|
21014
21207
|
#
|
|
21208
|
+
# @!attribute [rw] resource_tags
|
|
21209
|
+
# The resource tags of the project.
|
|
21210
|
+
# @return [Hash<String,String>]
|
|
21211
|
+
#
|
|
21015
21212
|
# @!attribute [rw] user_parameters
|
|
21016
21213
|
# The user parameters of the project.
|
|
21017
21214
|
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
|
@@ -21027,6 +21224,7 @@ module Aws::DataZone
|
|
|
21027
21224
|
:identifier,
|
|
21028
21225
|
:name,
|
|
21029
21226
|
:project_profile_version,
|
|
21227
|
+
:resource_tags,
|
|
21030
21228
|
:user_parameters)
|
|
21031
21229
|
SENSITIVE = [:description, :name]
|
|
21032
21230
|
include Aws::Structure
|
|
@@ -21086,6 +21284,10 @@ module Aws::DataZone
|
|
|
21086
21284
|
# The status of the project.
|
|
21087
21285
|
# @return [String]
|
|
21088
21286
|
#
|
|
21287
|
+
# @!attribute [rw] resource_tags
|
|
21288
|
+
# The resource tags of the project.
|
|
21289
|
+
# @return [Array<Types::ResourceTag>]
|
|
21290
|
+
#
|
|
21089
21291
|
# @!attribute [rw] user_parameters
|
|
21090
21292
|
# The user parameters of the project.
|
|
21091
21293
|
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
|
@@ -21106,11 +21308,16 @@ module Aws::DataZone
|
|
|
21106
21308
|
:name,
|
|
21107
21309
|
:project_profile_id,
|
|
21108
21310
|
:project_status,
|
|
21311
|
+
:resource_tags,
|
|
21109
21312
|
:user_parameters)
|
|
21110
21313
|
SENSITIVE = [:description, :name]
|
|
21111
21314
|
include Aws::Structure
|
|
21112
21315
|
end
|
|
21113
21316
|
|
|
21317
|
+
# @!attribute [rw] allow_custom_project_resource_tags
|
|
21318
|
+
# Specifies whether custom project resource tags are supported.
|
|
21319
|
+
# @return [Boolean]
|
|
21320
|
+
#
|
|
21114
21321
|
# @!attribute [rw] description
|
|
21115
21322
|
# The description of a project profile.
|
|
21116
21323
|
# @return [String]
|
|
@@ -21135,6 +21342,15 @@ module Aws::DataZone
|
|
|
21135
21342
|
# The name of a project profile.
|
|
21136
21343
|
# @return [String]
|
|
21137
21344
|
#
|
|
21345
|
+
# @!attribute [rw] project_resource_tags
|
|
21346
|
+
# The resource tags of the project profile.
|
|
21347
|
+
# @return [Array<Types::ResourceTagParameter>]
|
|
21348
|
+
#
|
|
21349
|
+
# @!attribute [rw] project_resource_tags_description
|
|
21350
|
+
# Field viewable through the UI that provides a project user with the
|
|
21351
|
+
# allowed resource tag specifications.
|
|
21352
|
+
# @return [String]
|
|
21353
|
+
#
|
|
21138
21354
|
# @!attribute [rw] status
|
|
21139
21355
|
# The status of a project profile.
|
|
21140
21356
|
# @return [String]
|
|
@@ -21142,17 +21358,24 @@ module Aws::DataZone
|
|
|
21142
21358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfileInput AWS API Documentation
|
|
21143
21359
|
#
|
|
21144
21360
|
class UpdateProjectProfileInput < Struct.new(
|
|
21361
|
+
:allow_custom_project_resource_tags,
|
|
21145
21362
|
:description,
|
|
21146
21363
|
:domain_identifier,
|
|
21147
21364
|
:domain_unit_identifier,
|
|
21148
21365
|
:environment_configurations,
|
|
21149
21366
|
:identifier,
|
|
21150
21367
|
:name,
|
|
21368
|
+
:project_resource_tags,
|
|
21369
|
+
:project_resource_tags_description,
|
|
21151
21370
|
:status)
|
|
21152
|
-
SENSITIVE = [:description, :name]
|
|
21371
|
+
SENSITIVE = [:description, :name, :project_resource_tags_description]
|
|
21153
21372
|
include Aws::Structure
|
|
21154
21373
|
end
|
|
21155
21374
|
|
|
21375
|
+
# @!attribute [rw] allow_custom_project_resource_tags
|
|
21376
|
+
# Specifies whether custom project resource tags are supported.
|
|
21377
|
+
# @return [Boolean]
|
|
21378
|
+
#
|
|
21156
21379
|
# @!attribute [rw] created_at
|
|
21157
21380
|
# The timestamp at which a project profile is created.
|
|
21158
21381
|
# @return [Time]
|
|
@@ -21189,6 +21412,15 @@ module Aws::DataZone
|
|
|
21189
21412
|
# The name of the project profile.
|
|
21190
21413
|
# @return [String]
|
|
21191
21414
|
#
|
|
21415
|
+
# @!attribute [rw] project_resource_tags
|
|
21416
|
+
# The resource tags of the project profile.
|
|
21417
|
+
# @return [Array<Types::ResourceTagParameter>]
|
|
21418
|
+
#
|
|
21419
|
+
# @!attribute [rw] project_resource_tags_description
|
|
21420
|
+
# Field viewable through the UI that provides a project user with the
|
|
21421
|
+
# allowed resource tag specifications.
|
|
21422
|
+
# @return [String]
|
|
21423
|
+
#
|
|
21192
21424
|
# @!attribute [rw] status
|
|
21193
21425
|
# The status of the project profile.
|
|
21194
21426
|
# @return [String]
|
|
@@ -21196,6 +21428,7 @@ module Aws::DataZone
|
|
|
21196
21428
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfileOutput AWS API Documentation
|
|
21197
21429
|
#
|
|
21198
21430
|
class UpdateProjectProfileOutput < Struct.new(
|
|
21431
|
+
:allow_custom_project_resource_tags,
|
|
21199
21432
|
:created_at,
|
|
21200
21433
|
:created_by,
|
|
21201
21434
|
:description,
|
|
@@ -21205,8 +21438,10 @@ module Aws::DataZone
|
|
|
21205
21438
|
:id,
|
|
21206
21439
|
:last_updated_at,
|
|
21207
21440
|
:name,
|
|
21441
|
+
:project_resource_tags,
|
|
21442
|
+
:project_resource_tags_description,
|
|
21208
21443
|
:status)
|
|
21209
|
-
SENSITIVE = [:description, :name]
|
|
21444
|
+
SENSITIVE = [:description, :name, :project_resource_tags_description]
|
|
21210
21445
|
include Aws::Structure
|
|
21211
21446
|
end
|
|
21212
21447
|
|