aws-sdk-datazone 1.50.0 → 1.52.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 +712 -2
- data/lib/aws-sdk-datazone/client_api.rb +101 -0
- data/lib/aws-sdk-datazone/types.rb +225 -2
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +82 -0
- data/sig/types.rbs +55 -0
- metadata +1 -1
@@ -179,6 +179,8 @@ module Aws::DataZone
|
|
179
179
|
CreateDomainUnitPolicyGrantDetail = Shapes::StructureShape.new(name: 'CreateDomainUnitPolicyGrantDetail')
|
180
180
|
CreateEnvironmentActionInput = Shapes::StructureShape.new(name: 'CreateEnvironmentActionInput')
|
181
181
|
CreateEnvironmentActionOutput = Shapes::StructureShape.new(name: 'CreateEnvironmentActionOutput')
|
182
|
+
CreateEnvironmentBlueprintInput = Shapes::StructureShape.new(name: 'CreateEnvironmentBlueprintInput')
|
183
|
+
CreateEnvironmentBlueprintOutput = Shapes::StructureShape.new(name: 'CreateEnvironmentBlueprintOutput')
|
182
184
|
CreateEnvironmentInput = Shapes::StructureShape.new(name: 'CreateEnvironmentInput')
|
183
185
|
CreateEnvironmentOutput = Shapes::StructureShape.new(name: 'CreateEnvironmentOutput')
|
184
186
|
CreateEnvironmentProfileInput = Shapes::StructureShape.new(name: 'CreateEnvironmentProfileInput')
|
@@ -282,6 +284,7 @@ module Aws::DataZone
|
|
282
284
|
DeleteEnvironmentActionInput = Shapes::StructureShape.new(name: 'DeleteEnvironmentActionInput')
|
283
285
|
DeleteEnvironmentBlueprintConfigurationInput = Shapes::StructureShape.new(name: 'DeleteEnvironmentBlueprintConfigurationInput')
|
284
286
|
DeleteEnvironmentBlueprintConfigurationOutput = Shapes::StructureShape.new(name: 'DeleteEnvironmentBlueprintConfigurationOutput')
|
287
|
+
DeleteEnvironmentBlueprintInput = Shapes::StructureShape.new(name: 'DeleteEnvironmentBlueprintInput')
|
285
288
|
DeleteEnvironmentInput = Shapes::StructureShape.new(name: 'DeleteEnvironmentInput')
|
286
289
|
DeleteEnvironmentProfileInput = Shapes::StructureShape.new(name: 'DeleteEnvironmentProfileInput')
|
287
290
|
DeleteFormTypeInput = Shapes::StructureShape.new(name: 'DeleteFormTypeInput')
|
@@ -498,6 +501,7 @@ module Aws::DataZone
|
|
498
501
|
GetTimeSeriesDataPointOutput = Shapes::StructureShape.new(name: 'GetTimeSeriesDataPointOutput')
|
499
502
|
GetUserProfileInput = Shapes::StructureShape.new(name: 'GetUserProfileInput')
|
500
503
|
GetUserProfileOutput = Shapes::StructureShape.new(name: 'GetUserProfileOutput')
|
504
|
+
GlobalParameterMap = Shapes::MapShape.new(name: 'GlobalParameterMap')
|
501
505
|
GlossaryDescription = Shapes::StringShape.new(name: 'GlossaryDescription')
|
502
506
|
GlossaryId = Shapes::StringShape.new(name: 'GlossaryId')
|
503
507
|
GlossaryItem = Shapes::StructureShape.new(name: 'GlossaryItem')
|
@@ -1051,6 +1055,8 @@ module Aws::DataZone
|
|
1051
1055
|
UpdateDomainUnitOutput = Shapes::StructureShape.new(name: 'UpdateDomainUnitOutput')
|
1052
1056
|
UpdateEnvironmentActionInput = Shapes::StructureShape.new(name: 'UpdateEnvironmentActionInput')
|
1053
1057
|
UpdateEnvironmentActionOutput = Shapes::StructureShape.new(name: 'UpdateEnvironmentActionOutput')
|
1058
|
+
UpdateEnvironmentBlueprintInput = Shapes::StructureShape.new(name: 'UpdateEnvironmentBlueprintInput')
|
1059
|
+
UpdateEnvironmentBlueprintOutput = Shapes::StructureShape.new(name: 'UpdateEnvironmentBlueprintOutput')
|
1054
1060
|
UpdateEnvironmentInput = Shapes::StructureShape.new(name: 'UpdateEnvironmentInput')
|
1055
1061
|
UpdateEnvironmentOutput = Shapes::StructureShape.new(name: 'UpdateEnvironmentOutput')
|
1056
1062
|
UpdateEnvironmentProfileInput = Shapes::StructureShape.new(name: 'UpdateEnvironmentProfileInput')
|
@@ -1888,6 +1894,25 @@ module Aws::DataZone
|
|
1888
1894
|
CreateEnvironmentActionOutput.add_member(:parameters, Shapes::ShapeRef.new(shape: ActionParameters, required: true, location_name: "parameters"))
|
1889
1895
|
CreateEnvironmentActionOutput.struct_class = Types::CreateEnvironmentActionOutput
|
1890
1896
|
|
1897
|
+
CreateEnvironmentBlueprintInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
1898
|
+
CreateEnvironmentBlueprintInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
1899
|
+
CreateEnvironmentBlueprintInput.add_member(:name, Shapes::ShapeRef.new(shape: EnvironmentBlueprintName, required: true, location_name: "name"))
|
1900
|
+
CreateEnvironmentBlueprintInput.add_member(:provisioning_properties, Shapes::ShapeRef.new(shape: ProvisioningProperties, required: true, location_name: "provisioningProperties"))
|
1901
|
+
CreateEnvironmentBlueprintInput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
|
1902
|
+
CreateEnvironmentBlueprintInput.struct_class = Types::CreateEnvironmentBlueprintInput
|
1903
|
+
|
1904
|
+
CreateEnvironmentBlueprintOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
1905
|
+
CreateEnvironmentBlueprintOutput.add_member(:deployment_properties, Shapes::ShapeRef.new(shape: DeploymentProperties, location_name: "deploymentProperties"))
|
1906
|
+
CreateEnvironmentBlueprintOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
1907
|
+
CreateEnvironmentBlueprintOutput.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTerms, location_name: "glossaryTerms"))
|
1908
|
+
CreateEnvironmentBlueprintOutput.add_member(:id, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, required: true, location_name: "id"))
|
1909
|
+
CreateEnvironmentBlueprintOutput.add_member(:name, Shapes::ShapeRef.new(shape: EnvironmentBlueprintName, required: true, location_name: "name"))
|
1910
|
+
CreateEnvironmentBlueprintOutput.add_member(:provider, Shapes::ShapeRef.new(shape: String, required: true, location_name: "provider"))
|
1911
|
+
CreateEnvironmentBlueprintOutput.add_member(:provisioning_properties, Shapes::ShapeRef.new(shape: ProvisioningProperties, required: true, location_name: "provisioningProperties"))
|
1912
|
+
CreateEnvironmentBlueprintOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
|
1913
|
+
CreateEnvironmentBlueprintOutput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
|
1914
|
+
CreateEnvironmentBlueprintOutput.struct_class = Types::CreateEnvironmentBlueprintOutput
|
1915
|
+
|
1891
1916
|
CreateEnvironmentInput.add_member(:deployment_order, Shapes::ShapeRef.new(shape: Integer, location_name: "deploymentOrder"))
|
1892
1917
|
CreateEnvironmentInput.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
1893
1918
|
CreateEnvironmentInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
@@ -2225,6 +2250,7 @@ module Aws::DataZone
|
|
2225
2250
|
CustomParameter.add_member(:field_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "fieldType"))
|
2226
2251
|
CustomParameter.add_member(:is_editable, Shapes::ShapeRef.new(shape: Boolean, location_name: "isEditable"))
|
2227
2252
|
CustomParameter.add_member(:is_optional, Shapes::ShapeRef.new(shape: Boolean, location_name: "isOptional"))
|
2253
|
+
CustomParameter.add_member(:is_update_supported, Shapes::ShapeRef.new(shape: Boolean, location_name: "isUpdateSupported"))
|
2228
2254
|
CustomParameter.add_member(:key_name, Shapes::ShapeRef.new(shape: CustomParameterKeyNameString, required: true, location_name: "keyName"))
|
2229
2255
|
CustomParameter.struct_class = Types::CustomParameter
|
2230
2256
|
|
@@ -2460,6 +2486,10 @@ module Aws::DataZone
|
|
2460
2486
|
|
2461
2487
|
DeleteEnvironmentBlueprintConfigurationOutput.struct_class = Types::DeleteEnvironmentBlueprintConfigurationOutput
|
2462
2488
|
|
2489
|
+
DeleteEnvironmentBlueprintInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
2490
|
+
DeleteEnvironmentBlueprintInput.add_member(:identifier, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, required: true, location: "uri", location_name: "identifier"))
|
2491
|
+
DeleteEnvironmentBlueprintInput.struct_class = Types::DeleteEnvironmentBlueprintInput
|
2492
|
+
|
2463
2493
|
DeleteEnvironmentInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
2464
2494
|
DeleteEnvironmentInput.add_member(:identifier, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location: "uri", location_name: "identifier"))
|
2465
2495
|
DeleteEnvironmentInput.struct_class = Types::DeleteEnvironmentInput
|
@@ -3494,6 +3524,9 @@ module Aws::DataZone
|
|
3494
3524
|
GetUserProfileOutput.add_member(:type, Shapes::ShapeRef.new(shape: UserProfileType, location_name: "type"))
|
3495
3525
|
GetUserProfileOutput.struct_class = Types::GetUserProfileOutput
|
3496
3526
|
|
3527
|
+
GlobalParameterMap.key = Shapes::ShapeRef.new(shape: String)
|
3528
|
+
GlobalParameterMap.value = Shapes::ShapeRef.new(shape: String)
|
3529
|
+
|
3497
3530
|
GlossaryItem.add_member(:additional_attributes, Shapes::ShapeRef.new(shape: GlossaryItemAdditionalAttributes, location_name: "additionalAttributes"))
|
3498
3531
|
GlossaryItem.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
3499
3532
|
GlossaryItem.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
@@ -3662,6 +3695,7 @@ module Aws::DataZone
|
|
3662
3695
|
IamPropertiesPatch.struct_class = Types::IamPropertiesPatch
|
3663
3696
|
|
3664
3697
|
IamUserProfileDetails.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
3698
|
+
IamUserProfileDetails.add_member(:principal_id, Shapes::ShapeRef.new(shape: String, location_name: "principalId"))
|
3665
3699
|
IamUserProfileDetails.struct_class = Types::IamUserProfileDetails
|
3666
3700
|
|
3667
3701
|
Import.add_member(:name, Shapes::ShapeRef.new(shape: FormTypeName, required: true, location_name: "name"))
|
@@ -4568,6 +4602,7 @@ module Aws::DataZone
|
|
4568
4602
|
PutEnvironmentBlueprintConfigurationInput.add_member(:enabled_regions, Shapes::ShapeRef.new(shape: EnabledRegionList, required: true, location_name: "enabledRegions"))
|
4569
4603
|
PutEnvironmentBlueprintConfigurationInput.add_member(:environment_blueprint_identifier, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, required: true, location: "uri", location_name: "environmentBlueprintIdentifier"))
|
4570
4604
|
PutEnvironmentBlueprintConfigurationInput.add_member(:environment_role_permission_boundary, Shapes::ShapeRef.new(shape: PolicyArn, location_name: "environmentRolePermissionBoundary"))
|
4605
|
+
PutEnvironmentBlueprintConfigurationInput.add_member(:global_parameters, Shapes::ShapeRef.new(shape: GlobalParameterMap, location_name: "globalParameters"))
|
4571
4606
|
PutEnvironmentBlueprintConfigurationInput.add_member(:manage_access_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "manageAccessRoleArn"))
|
4572
4607
|
PutEnvironmentBlueprintConfigurationInput.add_member(:provisioning_configurations, Shapes::ShapeRef.new(shape: ProvisioningConfigurationList, location_name: "provisioningConfigurations"))
|
4573
4608
|
PutEnvironmentBlueprintConfigurationInput.add_member(:provisioning_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "provisioningRoleArn"))
|
@@ -5535,6 +5570,25 @@ module Aws::DataZone
|
|
5535
5570
|
UpdateEnvironmentActionOutput.add_member(:parameters, Shapes::ShapeRef.new(shape: ActionParameters, required: true, location_name: "parameters"))
|
5536
5571
|
UpdateEnvironmentActionOutput.struct_class = Types::UpdateEnvironmentActionOutput
|
5537
5572
|
|
5573
|
+
UpdateEnvironmentBlueprintInput.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
5574
|
+
UpdateEnvironmentBlueprintInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
5575
|
+
UpdateEnvironmentBlueprintInput.add_member(:identifier, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, required: true, location: "uri", location_name: "identifier"))
|
5576
|
+
UpdateEnvironmentBlueprintInput.add_member(:provisioning_properties, Shapes::ShapeRef.new(shape: ProvisioningProperties, location_name: "provisioningProperties"))
|
5577
|
+
UpdateEnvironmentBlueprintInput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
|
5578
|
+
UpdateEnvironmentBlueprintInput.struct_class = Types::UpdateEnvironmentBlueprintInput
|
5579
|
+
|
5580
|
+
UpdateEnvironmentBlueprintOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
5581
|
+
UpdateEnvironmentBlueprintOutput.add_member(:deployment_properties, Shapes::ShapeRef.new(shape: DeploymentProperties, location_name: "deploymentProperties"))
|
5582
|
+
UpdateEnvironmentBlueprintOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
5583
|
+
UpdateEnvironmentBlueprintOutput.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTerms, location_name: "glossaryTerms"))
|
5584
|
+
UpdateEnvironmentBlueprintOutput.add_member(:id, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, required: true, location_name: "id"))
|
5585
|
+
UpdateEnvironmentBlueprintOutput.add_member(:name, Shapes::ShapeRef.new(shape: EnvironmentBlueprintName, required: true, location_name: "name"))
|
5586
|
+
UpdateEnvironmentBlueprintOutput.add_member(:provider, Shapes::ShapeRef.new(shape: String, required: true, location_name: "provider"))
|
5587
|
+
UpdateEnvironmentBlueprintOutput.add_member(:provisioning_properties, Shapes::ShapeRef.new(shape: ProvisioningProperties, required: true, location_name: "provisioningProperties"))
|
5588
|
+
UpdateEnvironmentBlueprintOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
|
5589
|
+
UpdateEnvironmentBlueprintOutput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
|
5590
|
+
UpdateEnvironmentBlueprintOutput.struct_class = Types::UpdateEnvironmentBlueprintOutput
|
5591
|
+
|
5538
5592
|
UpdateEnvironmentInput.add_member(:blueprint_version, Shapes::ShapeRef.new(shape: String, location_name: "blueprintVersion"))
|
5539
5593
|
UpdateEnvironmentInput.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
5540
5594
|
UpdateEnvironmentInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
@@ -6180,6 +6234,22 @@ module Aws::DataZone
|
|
6180
6234
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
6181
6235
|
end)
|
6182
6236
|
|
6237
|
+
api.add_operation(:create_environment_blueprint, Seahorse::Model::Operation.new.tap do |o|
|
6238
|
+
o.name = "CreateEnvironmentBlueprint"
|
6239
|
+
o.http_method = "POST"
|
6240
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/environment-blueprints"
|
6241
|
+
o.input = Shapes::ShapeRef.new(shape: CreateEnvironmentBlueprintInput)
|
6242
|
+
o.output = Shapes::ShapeRef.new(shape: CreateEnvironmentBlueprintOutput)
|
6243
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
6244
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
6245
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
6246
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
6247
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
6248
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
6249
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
6250
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
6251
|
+
end)
|
6252
|
+
|
6183
6253
|
api.add_operation(:create_environment_profile, Seahorse::Model::Operation.new.tap do |o|
|
6184
6254
|
o.name = "CreateEnvironmentProfile"
|
6185
6255
|
o.http_method = "POST"
|
@@ -6556,6 +6626,21 @@ module Aws::DataZone
|
|
6556
6626
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
6557
6627
|
end)
|
6558
6628
|
|
6629
|
+
api.add_operation(:delete_environment_blueprint, Seahorse::Model::Operation.new.tap do |o|
|
6630
|
+
o.name = "DeleteEnvironmentBlueprint"
|
6631
|
+
o.http_method = "DELETE"
|
6632
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/environment-blueprints/{identifier}"
|
6633
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteEnvironmentBlueprintInput)
|
6634
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
6635
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
6636
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
6637
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
6638
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
6639
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
6640
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
6641
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
6642
|
+
end)
|
6643
|
+
|
6559
6644
|
api.add_operation(:delete_environment_blueprint_configuration, Seahorse::Model::Operation.new.tap do |o|
|
6560
6645
|
o.name = "DeleteEnvironmentBlueprintConfiguration"
|
6561
6646
|
o.http_method = "DELETE"
|
@@ -8336,6 +8421,22 @@ module Aws::DataZone
|
|
8336
8421
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
8337
8422
|
end)
|
8338
8423
|
|
8424
|
+
api.add_operation(:update_environment_blueprint, Seahorse::Model::Operation.new.tap do |o|
|
8425
|
+
o.name = "UpdateEnvironmentBlueprint"
|
8426
|
+
o.http_method = "PATCH"
|
8427
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/environment-blueprints/{identifier}"
|
8428
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateEnvironmentBlueprintInput)
|
8429
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateEnvironmentBlueprintOutput)
|
8430
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
8431
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
8432
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
8433
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
8434
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
8435
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
8436
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
8437
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
8438
|
+
end)
|
8439
|
+
|
8339
8440
|
api.add_operation(:update_environment_profile, Seahorse::Model::Operation.new.tap do |o|
|
8340
8441
|
o.name = "UpdateEnvironmentProfile"
|
8341
8442
|
o.http_method = "PATCH"
|
@@ -3515,6 +3515,95 @@ module Aws::DataZone
|
|
3515
3515
|
include Aws::Structure
|
3516
3516
|
end
|
3517
3517
|
|
3518
|
+
# @!attribute [rw] description
|
3519
|
+
# The description of the Amazon DataZone blueprint.
|
3520
|
+
# @return [String]
|
3521
|
+
#
|
3522
|
+
# @!attribute [rw] domain_identifier
|
3523
|
+
# The identifier of the domain in which this blueprint is created.
|
3524
|
+
# @return [String]
|
3525
|
+
#
|
3526
|
+
# @!attribute [rw] name
|
3527
|
+
# The name of this Amazon DataZone blueprint.
|
3528
|
+
# @return [String]
|
3529
|
+
#
|
3530
|
+
# @!attribute [rw] provisioning_properties
|
3531
|
+
# The provisioning properties of this Amazon DataZone blueprint.
|
3532
|
+
# @return [Types::ProvisioningProperties]
|
3533
|
+
#
|
3534
|
+
# @!attribute [rw] user_parameters
|
3535
|
+
# The user parameters of this Amazon DataZone blueprint.
|
3536
|
+
# @return [Array<Types::CustomParameter>]
|
3537
|
+
#
|
3538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentBlueprintInput AWS API Documentation
|
3539
|
+
#
|
3540
|
+
class CreateEnvironmentBlueprintInput < Struct.new(
|
3541
|
+
:description,
|
3542
|
+
:domain_identifier,
|
3543
|
+
:name,
|
3544
|
+
:provisioning_properties,
|
3545
|
+
:user_parameters)
|
3546
|
+
SENSITIVE = [:description]
|
3547
|
+
include Aws::Structure
|
3548
|
+
end
|
3549
|
+
|
3550
|
+
# @!attribute [rw] created_at
|
3551
|
+
# The timestamp at which the environment blueprint was created.
|
3552
|
+
# @return [Time]
|
3553
|
+
#
|
3554
|
+
# @!attribute [rw] deployment_properties
|
3555
|
+
# The deployment properties of this Amazon DataZone blueprint.
|
3556
|
+
# @return [Types::DeploymentProperties]
|
3557
|
+
#
|
3558
|
+
# @!attribute [rw] description
|
3559
|
+
# The description of this Amazon DataZone blueprint.
|
3560
|
+
# @return [String]
|
3561
|
+
#
|
3562
|
+
# @!attribute [rw] glossary_terms
|
3563
|
+
# The glossary terms attached to this Amazon DataZone blueprint.
|
3564
|
+
# @return [Array<String>]
|
3565
|
+
#
|
3566
|
+
# @!attribute [rw] id
|
3567
|
+
# The ID of this Amazon DataZone blueprint.
|
3568
|
+
# @return [String]
|
3569
|
+
#
|
3570
|
+
# @!attribute [rw] name
|
3571
|
+
# The name of this Amazon DataZone blueprint.
|
3572
|
+
# @return [String]
|
3573
|
+
#
|
3574
|
+
# @!attribute [rw] provider
|
3575
|
+
# The provider of this Amazon DataZone blueprint.
|
3576
|
+
# @return [String]
|
3577
|
+
#
|
3578
|
+
# @!attribute [rw] provisioning_properties
|
3579
|
+
# The provisioning properties of this Amazon DataZone blueprint.
|
3580
|
+
# @return [Types::ProvisioningProperties]
|
3581
|
+
#
|
3582
|
+
# @!attribute [rw] updated_at
|
3583
|
+
# The timestamp of when this blueprint was updated.
|
3584
|
+
# @return [Time]
|
3585
|
+
#
|
3586
|
+
# @!attribute [rw] user_parameters
|
3587
|
+
# The user parameters of this Amazon DataZone blueprint.
|
3588
|
+
# @return [Array<Types::CustomParameter>]
|
3589
|
+
#
|
3590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentBlueprintOutput AWS API Documentation
|
3591
|
+
#
|
3592
|
+
class CreateEnvironmentBlueprintOutput < Struct.new(
|
3593
|
+
:created_at,
|
3594
|
+
:deployment_properties,
|
3595
|
+
:description,
|
3596
|
+
:glossary_terms,
|
3597
|
+
:id,
|
3598
|
+
:name,
|
3599
|
+
:provider,
|
3600
|
+
:provisioning_properties,
|
3601
|
+
:updated_at,
|
3602
|
+
:user_parameters)
|
3603
|
+
SENSITIVE = [:description]
|
3604
|
+
include Aws::Structure
|
3605
|
+
end
|
3606
|
+
|
3518
3607
|
# @!attribute [rw] deployment_order
|
3519
3608
|
# The deployment order of the environment.
|
3520
3609
|
# @return [Integer]
|
@@ -5162,6 +5251,10 @@ module Aws::DataZone
|
|
5162
5251
|
# Specifies whether the custom parameter is optional.
|
5163
5252
|
# @return [Boolean]
|
5164
5253
|
#
|
5254
|
+
# @!attribute [rw] is_update_supported
|
5255
|
+
# Specifies whether a parameter value can be updated after creation.
|
5256
|
+
# @return [Boolean]
|
5257
|
+
#
|
5165
5258
|
# @!attribute [rw] key_name
|
5166
5259
|
# The key name of the parameter.
|
5167
5260
|
# @return [String]
|
@@ -5174,6 +5267,7 @@ module Aws::DataZone
|
|
5174
5267
|
:field_type,
|
5175
5268
|
:is_editable,
|
5176
5269
|
:is_optional,
|
5270
|
+
:is_update_supported,
|
5177
5271
|
:key_name)
|
5178
5272
|
SENSITIVE = [:description]
|
5179
5273
|
include Aws::Structure
|
@@ -6189,6 +6283,24 @@ module Aws::DataZone
|
|
6189
6283
|
#
|
6190
6284
|
class DeleteEnvironmentBlueprintConfigurationOutput < Aws::EmptyStructure; end
|
6191
6285
|
|
6286
|
+
# @!attribute [rw] domain_identifier
|
6287
|
+
# The ID of the Amazon DataZone domain in which the blueprint is
|
6288
|
+
# deleted.
|
6289
|
+
# @return [String]
|
6290
|
+
#
|
6291
|
+
# @!attribute [rw] identifier
|
6292
|
+
# The ID of the blueprint that is deleted.
|
6293
|
+
# @return [String]
|
6294
|
+
#
|
6295
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteEnvironmentBlueprintInput AWS API Documentation
|
6296
|
+
#
|
6297
|
+
class DeleteEnvironmentBlueprintInput < Struct.new(
|
6298
|
+
:domain_identifier,
|
6299
|
+
:identifier)
|
6300
|
+
SENSITIVE = []
|
6301
|
+
include Aws::Structure
|
6302
|
+
end
|
6303
|
+
|
6192
6304
|
# @!attribute [rw] domain_identifier
|
6193
6305
|
# The ID of the Amazon DataZone domain in which the environment is
|
6194
6306
|
# deleted.
|
@@ -11543,10 +11655,15 @@ module Aws::DataZone
|
|
11543
11655
|
# The ARN of an IAM user profile in Amazon DataZone.
|
11544
11656
|
# @return [String]
|
11545
11657
|
#
|
11658
|
+
# @!attribute [rw] principal_id
|
11659
|
+
# Principal ID of the IAM user.
|
11660
|
+
# @return [String]
|
11661
|
+
#
|
11546
11662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IamUserProfileDetails AWS API Documentation
|
11547
11663
|
#
|
11548
11664
|
class IamUserProfileDetails < Struct.new(
|
11549
|
-
:arn
|
11665
|
+
:arn,
|
11666
|
+
:principal_id)
|
11550
11667
|
SENSITIVE = []
|
11551
11668
|
include Aws::Structure
|
11552
11669
|
end
|
@@ -15813,6 +15930,8 @@ module Aws::DataZone
|
|
15813
15930
|
|
15814
15931
|
# The provisioning properties of an environment blueprint.
|
15815
15932
|
#
|
15933
|
+
# @note ProvisioningProperties is a union - when making an API calls you must set exactly one of the members.
|
15934
|
+
#
|
15816
15935
|
# @note ProvisioningProperties is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProvisioningProperties corresponding to the set member.
|
15817
15936
|
#
|
15818
15937
|
# @!attribute [rw] cloud_formation
|
@@ -15849,6 +15968,10 @@ module Aws::DataZone
|
|
15849
15968
|
# The environment role permissions boundary.
|
15850
15969
|
# @return [String]
|
15851
15970
|
#
|
15971
|
+
# @!attribute [rw] global_parameters
|
15972
|
+
# Region-agnostic environment blueprint parameters.
|
15973
|
+
# @return [Hash<String,String>]
|
15974
|
+
#
|
15852
15975
|
# @!attribute [rw] manage_access_role_arn
|
15853
15976
|
# The ARN of the manage access role.
|
15854
15977
|
# @return [String]
|
@@ -15872,6 +15995,7 @@ module Aws::DataZone
|
|
15872
15995
|
:enabled_regions,
|
15873
15996
|
:environment_blueprint_identifier,
|
15874
15997
|
:environment_role_permission_boundary,
|
15998
|
+
:global_parameters,
|
15875
15999
|
:manage_access_role_arn,
|
15876
16000
|
:provisioning_configurations,
|
15877
16001
|
:provisioning_role_arn,
|
@@ -18754,7 +18878,7 @@ module Aws::DataZone
|
|
18754
18878
|
# @return [String]
|
18755
18879
|
#
|
18756
18880
|
# @!attribute [rw] updated_at
|
18757
|
-
# The
|
18881
|
+
# The timestamp of when the subscription grant was updated.
|
18758
18882
|
# @return [Time]
|
18759
18883
|
#
|
18760
18884
|
# @!attribute [rw] updated_by
|
@@ -20034,6 +20158,105 @@ module Aws::DataZone
|
|
20034
20158
|
include Aws::Structure
|
20035
20159
|
end
|
20036
20160
|
|
20161
|
+
# @!attribute [rw] description
|
20162
|
+
# The description to be updated as part of the
|
20163
|
+
# `UpdateEnvironmentBlueprint` action.
|
20164
|
+
# @return [String]
|
20165
|
+
#
|
20166
|
+
# @!attribute [rw] domain_identifier
|
20167
|
+
# The identifier of the Amazon DataZone domain in which an environment
|
20168
|
+
# blueprint is to be updated.
|
20169
|
+
# @return [String]
|
20170
|
+
#
|
20171
|
+
# @!attribute [rw] identifier
|
20172
|
+
# The identifier of the environment blueprint to be updated.
|
20173
|
+
# @return [String]
|
20174
|
+
#
|
20175
|
+
# @!attribute [rw] provisioning_properties
|
20176
|
+
# The provisioning properties to be updated as part of the
|
20177
|
+
# `UpdateEnvironmentBlueprint` action.
|
20178
|
+
# @return [Types::ProvisioningProperties]
|
20179
|
+
#
|
20180
|
+
# @!attribute [rw] user_parameters
|
20181
|
+
# The user parameters to be updated as part of the
|
20182
|
+
# `UpdateEnvironmentBlueprint` action.
|
20183
|
+
# @return [Array<Types::CustomParameter>]
|
20184
|
+
#
|
20185
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentBlueprintInput AWS API Documentation
|
20186
|
+
#
|
20187
|
+
class UpdateEnvironmentBlueprintInput < Struct.new(
|
20188
|
+
:description,
|
20189
|
+
:domain_identifier,
|
20190
|
+
:identifier,
|
20191
|
+
:provisioning_properties,
|
20192
|
+
:user_parameters)
|
20193
|
+
SENSITIVE = []
|
20194
|
+
include Aws::Structure
|
20195
|
+
end
|
20196
|
+
|
20197
|
+
# @!attribute [rw] created_at
|
20198
|
+
# The timestamp of when the environment blueprint was created.
|
20199
|
+
# @return [Time]
|
20200
|
+
#
|
20201
|
+
# @!attribute [rw] deployment_properties
|
20202
|
+
# The deployment properties to be updated as part of the
|
20203
|
+
# `UpdateEnvironmentBlueprint` action.
|
20204
|
+
# @return [Types::DeploymentProperties]
|
20205
|
+
#
|
20206
|
+
# @!attribute [rw] description
|
20207
|
+
# The description to be updated as part of the
|
20208
|
+
# `UpdateEnvironmentBlueprint` action.
|
20209
|
+
# @return [String]
|
20210
|
+
#
|
20211
|
+
# @!attribute [rw] glossary_terms
|
20212
|
+
# The glossary terms to be updated as part of the
|
20213
|
+
# `UpdateEnvironmentBlueprint` action.
|
20214
|
+
# @return [Array<String>]
|
20215
|
+
#
|
20216
|
+
# @!attribute [rw] id
|
20217
|
+
# The identifier of the blueprint to be updated.
|
20218
|
+
# @return [String]
|
20219
|
+
#
|
20220
|
+
# @!attribute [rw] name
|
20221
|
+
# The name to be updated as part of the `UpdateEnvironmentBlueprint`
|
20222
|
+
# action.
|
20223
|
+
# @return [String]
|
20224
|
+
#
|
20225
|
+
# @!attribute [rw] provider
|
20226
|
+
# The provider of the blueprint to be udpated.
|
20227
|
+
# @return [String]
|
20228
|
+
#
|
20229
|
+
# @!attribute [rw] provisioning_properties
|
20230
|
+
# The provisioning properties to be updated as part of the
|
20231
|
+
# `UpdateEnvironmentBlueprint` action.
|
20232
|
+
# @return [Types::ProvisioningProperties]
|
20233
|
+
#
|
20234
|
+
# @!attribute [rw] updated_at
|
20235
|
+
# The timestamp of when the blueprint was updated.
|
20236
|
+
# @return [Time]
|
20237
|
+
#
|
20238
|
+
# @!attribute [rw] user_parameters
|
20239
|
+
# The user parameters to be updated as part of the
|
20240
|
+
# `UpdateEnvironmentBlueprint` action.
|
20241
|
+
# @return [Array<Types::CustomParameter>]
|
20242
|
+
#
|
20243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentBlueprintOutput AWS API Documentation
|
20244
|
+
#
|
20245
|
+
class UpdateEnvironmentBlueprintOutput < Struct.new(
|
20246
|
+
:created_at,
|
20247
|
+
:deployment_properties,
|
20248
|
+
:description,
|
20249
|
+
:glossary_terms,
|
20250
|
+
:id,
|
20251
|
+
:name,
|
20252
|
+
:provider,
|
20253
|
+
:provisioning_properties,
|
20254
|
+
:updated_at,
|
20255
|
+
:user_parameters)
|
20256
|
+
SENSITIVE = [:description]
|
20257
|
+
include Aws::Structure
|
20258
|
+
end
|
20259
|
+
|
20037
20260
|
# @!attribute [rw] blueprint_version
|
20038
20261
|
# The blueprint version to which the environment should be updated.
|
20039
20262
|
# You can only specify the following string for this parameter:
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -996,6 +996,43 @@ module Aws
|
|
996
996
|
) -> _CreateEnvironmentActionResponseSuccess
|
997
997
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentActionResponseSuccess
|
998
998
|
|
999
|
+
interface _CreateEnvironmentBlueprintResponseSuccess
|
1000
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEnvironmentBlueprintOutput]
|
1001
|
+
def created_at: () -> ::Time
|
1002
|
+
def deployment_properties: () -> Types::DeploymentProperties
|
1003
|
+
def description: () -> ::String
|
1004
|
+
def glossary_terms: () -> ::Array[::String]
|
1005
|
+
def id: () -> ::String
|
1006
|
+
def name: () -> ::String
|
1007
|
+
def provider: () -> ::String
|
1008
|
+
def provisioning_properties: () -> Types::ProvisioningProperties
|
1009
|
+
def updated_at: () -> ::Time
|
1010
|
+
def user_parameters: () -> ::Array[Types::CustomParameter]
|
1011
|
+
end
|
1012
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_environment_blueprint-instance_method
|
1013
|
+
def create_environment_blueprint: (
|
1014
|
+
?description: ::String,
|
1015
|
+
domain_identifier: ::String,
|
1016
|
+
name: ::String,
|
1017
|
+
provisioning_properties: {
|
1018
|
+
cloud_formation: {
|
1019
|
+
template_url: ::String
|
1020
|
+
}?
|
1021
|
+
},
|
1022
|
+
?user_parameters: Array[
|
1023
|
+
{
|
1024
|
+
default_value: ::String?,
|
1025
|
+
description: ::String?,
|
1026
|
+
field_type: ::String,
|
1027
|
+
is_editable: bool?,
|
1028
|
+
is_optional: bool?,
|
1029
|
+
is_update_supported: bool?,
|
1030
|
+
key_name: ::String
|
1031
|
+
},
|
1032
|
+
]
|
1033
|
+
) -> _CreateEnvironmentBlueprintResponseSuccess
|
1034
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentBlueprintResponseSuccess
|
1035
|
+
|
999
1036
|
interface _CreateEnvironmentProfileResponseSuccess
|
1000
1037
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEnvironmentProfileOutput]
|
1001
1038
|
def aws_account_id: () -> ::String
|
@@ -1569,6 +1606,13 @@ module Aws
|
|
1569
1606
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1570
1607
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1571
1608
|
|
1609
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_environment_blueprint-instance_method
|
1610
|
+
def delete_environment_blueprint: (
|
1611
|
+
domain_identifier: ::String,
|
1612
|
+
identifier: ::String
|
1613
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1614
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1615
|
+
|
1572
1616
|
interface _DeleteEnvironmentBlueprintConfigurationResponseSuccess
|
1573
1617
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEnvironmentBlueprintConfigurationOutput]
|
1574
1618
|
end
|
@@ -3097,6 +3141,7 @@ module Aws
|
|
3097
3141
|
enabled_regions: Array[::String],
|
3098
3142
|
environment_blueprint_identifier: ::String,
|
3099
3143
|
?environment_role_permission_boundary: ::String,
|
3144
|
+
?global_parameters: Hash[::String, ::String],
|
3100
3145
|
?manage_access_role_arn: ::String,
|
3101
3146
|
?provisioning_configurations: Array[
|
3102
3147
|
{
|
@@ -3888,6 +3933,43 @@ module Aws
|
|
3888
3933
|
) -> _UpdateEnvironmentActionResponseSuccess
|
3889
3934
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentActionResponseSuccess
|
3890
3935
|
|
3936
|
+
interface _UpdateEnvironmentBlueprintResponseSuccess
|
3937
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentBlueprintOutput]
|
3938
|
+
def created_at: () -> ::Time
|
3939
|
+
def deployment_properties: () -> Types::DeploymentProperties
|
3940
|
+
def description: () -> ::String
|
3941
|
+
def glossary_terms: () -> ::Array[::String]
|
3942
|
+
def id: () -> ::String
|
3943
|
+
def name: () -> ::String
|
3944
|
+
def provider: () -> ::String
|
3945
|
+
def provisioning_properties: () -> Types::ProvisioningProperties
|
3946
|
+
def updated_at: () -> ::Time
|
3947
|
+
def user_parameters: () -> ::Array[Types::CustomParameter]
|
3948
|
+
end
|
3949
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_environment_blueprint-instance_method
|
3950
|
+
def update_environment_blueprint: (
|
3951
|
+
?description: ::String,
|
3952
|
+
domain_identifier: ::String,
|
3953
|
+
identifier: ::String,
|
3954
|
+
?provisioning_properties: {
|
3955
|
+
cloud_formation: {
|
3956
|
+
template_url: ::String
|
3957
|
+
}?
|
3958
|
+
},
|
3959
|
+
?user_parameters: Array[
|
3960
|
+
{
|
3961
|
+
default_value: ::String?,
|
3962
|
+
description: ::String?,
|
3963
|
+
field_type: ::String,
|
3964
|
+
is_editable: bool?,
|
3965
|
+
is_optional: bool?,
|
3966
|
+
is_update_supported: bool?,
|
3967
|
+
key_name: ::String
|
3968
|
+
},
|
3969
|
+
]
|
3970
|
+
) -> _UpdateEnvironmentBlueprintResponseSuccess
|
3971
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentBlueprintResponseSuccess
|
3972
|
+
|
3891
3973
|
interface _UpdateEnvironmentProfileResponseSuccess
|
3892
3974
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentProfileOutput]
|
3893
3975
|
def aws_account_id: () -> ::String
|