aws-sdk-datazone 1.49.0 → 1.51.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 +708 -2
- data/lib/aws-sdk-datazone/client_api.rb +100 -0
- data/lib/aws-sdk-datazone/types.rb +219 -1
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +82 -0
- data/sig/types.rbs +54 -0
- metadata +3 -3
@@ -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"))
|
@@ -4568,6 +4601,7 @@ module Aws::DataZone
|
|
4568
4601
|
PutEnvironmentBlueprintConfigurationInput.add_member(:enabled_regions, Shapes::ShapeRef.new(shape: EnabledRegionList, required: true, location_name: "enabledRegions"))
|
4569
4602
|
PutEnvironmentBlueprintConfigurationInput.add_member(:environment_blueprint_identifier, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, required: true, location: "uri", location_name: "environmentBlueprintIdentifier"))
|
4570
4603
|
PutEnvironmentBlueprintConfigurationInput.add_member(:environment_role_permission_boundary, Shapes::ShapeRef.new(shape: PolicyArn, location_name: "environmentRolePermissionBoundary"))
|
4604
|
+
PutEnvironmentBlueprintConfigurationInput.add_member(:global_parameters, Shapes::ShapeRef.new(shape: GlobalParameterMap, location_name: "globalParameters"))
|
4571
4605
|
PutEnvironmentBlueprintConfigurationInput.add_member(:manage_access_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "manageAccessRoleArn"))
|
4572
4606
|
PutEnvironmentBlueprintConfigurationInput.add_member(:provisioning_configurations, Shapes::ShapeRef.new(shape: ProvisioningConfigurationList, location_name: "provisioningConfigurations"))
|
4573
4607
|
PutEnvironmentBlueprintConfigurationInput.add_member(:provisioning_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "provisioningRoleArn"))
|
@@ -5535,6 +5569,25 @@ module Aws::DataZone
|
|
5535
5569
|
UpdateEnvironmentActionOutput.add_member(:parameters, Shapes::ShapeRef.new(shape: ActionParameters, required: true, location_name: "parameters"))
|
5536
5570
|
UpdateEnvironmentActionOutput.struct_class = Types::UpdateEnvironmentActionOutput
|
5537
5571
|
|
5572
|
+
UpdateEnvironmentBlueprintInput.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
5573
|
+
UpdateEnvironmentBlueprintInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
5574
|
+
UpdateEnvironmentBlueprintInput.add_member(:identifier, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, required: true, location: "uri", location_name: "identifier"))
|
5575
|
+
UpdateEnvironmentBlueprintInput.add_member(:provisioning_properties, Shapes::ShapeRef.new(shape: ProvisioningProperties, location_name: "provisioningProperties"))
|
5576
|
+
UpdateEnvironmentBlueprintInput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
|
5577
|
+
UpdateEnvironmentBlueprintInput.struct_class = Types::UpdateEnvironmentBlueprintInput
|
5578
|
+
|
5579
|
+
UpdateEnvironmentBlueprintOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
5580
|
+
UpdateEnvironmentBlueprintOutput.add_member(:deployment_properties, Shapes::ShapeRef.new(shape: DeploymentProperties, location_name: "deploymentProperties"))
|
5581
|
+
UpdateEnvironmentBlueprintOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
5582
|
+
UpdateEnvironmentBlueprintOutput.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTerms, location_name: "glossaryTerms"))
|
5583
|
+
UpdateEnvironmentBlueprintOutput.add_member(:id, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, required: true, location_name: "id"))
|
5584
|
+
UpdateEnvironmentBlueprintOutput.add_member(:name, Shapes::ShapeRef.new(shape: EnvironmentBlueprintName, required: true, location_name: "name"))
|
5585
|
+
UpdateEnvironmentBlueprintOutput.add_member(:provider, Shapes::ShapeRef.new(shape: String, required: true, location_name: "provider"))
|
5586
|
+
UpdateEnvironmentBlueprintOutput.add_member(:provisioning_properties, Shapes::ShapeRef.new(shape: ProvisioningProperties, required: true, location_name: "provisioningProperties"))
|
5587
|
+
UpdateEnvironmentBlueprintOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
|
5588
|
+
UpdateEnvironmentBlueprintOutput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
|
5589
|
+
UpdateEnvironmentBlueprintOutput.struct_class = Types::UpdateEnvironmentBlueprintOutput
|
5590
|
+
|
5538
5591
|
UpdateEnvironmentInput.add_member(:blueprint_version, Shapes::ShapeRef.new(shape: String, location_name: "blueprintVersion"))
|
5539
5592
|
UpdateEnvironmentInput.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
5540
5593
|
UpdateEnvironmentInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
@@ -6180,6 +6233,22 @@ module Aws::DataZone
|
|
6180
6233
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
6181
6234
|
end)
|
6182
6235
|
|
6236
|
+
api.add_operation(:create_environment_blueprint, Seahorse::Model::Operation.new.tap do |o|
|
6237
|
+
o.name = "CreateEnvironmentBlueprint"
|
6238
|
+
o.http_method = "POST"
|
6239
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/environment-blueprints"
|
6240
|
+
o.input = Shapes::ShapeRef.new(shape: CreateEnvironmentBlueprintInput)
|
6241
|
+
o.output = Shapes::ShapeRef.new(shape: CreateEnvironmentBlueprintOutput)
|
6242
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
6243
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
6244
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
6245
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
6246
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
6247
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
6248
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
6249
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
6250
|
+
end)
|
6251
|
+
|
6183
6252
|
api.add_operation(:create_environment_profile, Seahorse::Model::Operation.new.tap do |o|
|
6184
6253
|
o.name = "CreateEnvironmentProfile"
|
6185
6254
|
o.http_method = "POST"
|
@@ -6556,6 +6625,21 @@ module Aws::DataZone
|
|
6556
6625
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
6557
6626
|
end)
|
6558
6627
|
|
6628
|
+
api.add_operation(:delete_environment_blueprint, Seahorse::Model::Operation.new.tap do |o|
|
6629
|
+
o.name = "DeleteEnvironmentBlueprint"
|
6630
|
+
o.http_method = "DELETE"
|
6631
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/environment-blueprints/{identifier}"
|
6632
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteEnvironmentBlueprintInput)
|
6633
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
6634
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
6635
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
6636
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
6637
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
6638
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
6639
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
6640
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
6641
|
+
end)
|
6642
|
+
|
6559
6643
|
api.add_operation(:delete_environment_blueprint_configuration, Seahorse::Model::Operation.new.tap do |o|
|
6560
6644
|
o.name = "DeleteEnvironmentBlueprintConfiguration"
|
6561
6645
|
o.http_method = "DELETE"
|
@@ -8336,6 +8420,22 @@ module Aws::DataZone
|
|
8336
8420
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
8337
8421
|
end)
|
8338
8422
|
|
8423
|
+
api.add_operation(:update_environment_blueprint, Seahorse::Model::Operation.new.tap do |o|
|
8424
|
+
o.name = "UpdateEnvironmentBlueprint"
|
8425
|
+
o.http_method = "PATCH"
|
8426
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/environment-blueprints/{identifier}"
|
8427
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateEnvironmentBlueprintInput)
|
8428
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateEnvironmentBlueprintOutput)
|
8429
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
8430
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
8431
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
8432
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
8433
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
8434
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
8435
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
8436
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
8437
|
+
end)
|
8438
|
+
|
8339
8439
|
api.add_operation(:update_environment_profile, Seahorse::Model::Operation.new.tap do |o|
|
8340
8440
|
o.name = "UpdateEnvironmentProfile"
|
8341
8441
|
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.
|
@@ -15813,6 +15925,8 @@ module Aws::DataZone
|
|
15813
15925
|
|
15814
15926
|
# The provisioning properties of an environment blueprint.
|
15815
15927
|
#
|
15928
|
+
# @note ProvisioningProperties is a union - when making an API calls you must set exactly one of the members.
|
15929
|
+
#
|
15816
15930
|
# @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
15931
|
#
|
15818
15932
|
# @!attribute [rw] cloud_formation
|
@@ -15849,6 +15963,10 @@ module Aws::DataZone
|
|
15849
15963
|
# The environment role permissions boundary.
|
15850
15964
|
# @return [String]
|
15851
15965
|
#
|
15966
|
+
# @!attribute [rw] global_parameters
|
15967
|
+
# Region-agnostic environment blueprint parameters.
|
15968
|
+
# @return [Hash<String,String>]
|
15969
|
+
#
|
15852
15970
|
# @!attribute [rw] manage_access_role_arn
|
15853
15971
|
# The ARN of the manage access role.
|
15854
15972
|
# @return [String]
|
@@ -15872,6 +15990,7 @@ module Aws::DataZone
|
|
15872
15990
|
:enabled_regions,
|
15873
15991
|
:environment_blueprint_identifier,
|
15874
15992
|
:environment_role_permission_boundary,
|
15993
|
+
:global_parameters,
|
15875
15994
|
:manage_access_role_arn,
|
15876
15995
|
:provisioning_configurations,
|
15877
15996
|
:provisioning_role_arn,
|
@@ -18754,7 +18873,7 @@ module Aws::DataZone
|
|
18754
18873
|
# @return [String]
|
18755
18874
|
#
|
18756
18875
|
# @!attribute [rw] updated_at
|
18757
|
-
# The
|
18876
|
+
# The timestamp of when the subscription grant was updated.
|
18758
18877
|
# @return [Time]
|
18759
18878
|
#
|
18760
18879
|
# @!attribute [rw] updated_by
|
@@ -20034,6 +20153,105 @@ module Aws::DataZone
|
|
20034
20153
|
include Aws::Structure
|
20035
20154
|
end
|
20036
20155
|
|
20156
|
+
# @!attribute [rw] description
|
20157
|
+
# The description to be updated as part of the
|
20158
|
+
# `UpdateEnvironmentBlueprint` action.
|
20159
|
+
# @return [String]
|
20160
|
+
#
|
20161
|
+
# @!attribute [rw] domain_identifier
|
20162
|
+
# The identifier of the Amazon DataZone domain in which an environment
|
20163
|
+
# blueprint is to be updated.
|
20164
|
+
# @return [String]
|
20165
|
+
#
|
20166
|
+
# @!attribute [rw] identifier
|
20167
|
+
# The identifier of the environment blueprint to be updated.
|
20168
|
+
# @return [String]
|
20169
|
+
#
|
20170
|
+
# @!attribute [rw] provisioning_properties
|
20171
|
+
# The provisioning properties to be updated as part of the
|
20172
|
+
# `UpdateEnvironmentBlueprint` action.
|
20173
|
+
# @return [Types::ProvisioningProperties]
|
20174
|
+
#
|
20175
|
+
# @!attribute [rw] user_parameters
|
20176
|
+
# The user parameters to be updated as part of the
|
20177
|
+
# `UpdateEnvironmentBlueprint` action.
|
20178
|
+
# @return [Array<Types::CustomParameter>]
|
20179
|
+
#
|
20180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentBlueprintInput AWS API Documentation
|
20181
|
+
#
|
20182
|
+
class UpdateEnvironmentBlueprintInput < Struct.new(
|
20183
|
+
:description,
|
20184
|
+
:domain_identifier,
|
20185
|
+
:identifier,
|
20186
|
+
:provisioning_properties,
|
20187
|
+
:user_parameters)
|
20188
|
+
SENSITIVE = []
|
20189
|
+
include Aws::Structure
|
20190
|
+
end
|
20191
|
+
|
20192
|
+
# @!attribute [rw] created_at
|
20193
|
+
# The timestamp of when the environment blueprint was created.
|
20194
|
+
# @return [Time]
|
20195
|
+
#
|
20196
|
+
# @!attribute [rw] deployment_properties
|
20197
|
+
# The deployment properties to be updated as part of the
|
20198
|
+
# `UpdateEnvironmentBlueprint` action.
|
20199
|
+
# @return [Types::DeploymentProperties]
|
20200
|
+
#
|
20201
|
+
# @!attribute [rw] description
|
20202
|
+
# The description to be updated as part of the
|
20203
|
+
# `UpdateEnvironmentBlueprint` action.
|
20204
|
+
# @return [String]
|
20205
|
+
#
|
20206
|
+
# @!attribute [rw] glossary_terms
|
20207
|
+
# The glossary terms to be updated as part of the
|
20208
|
+
# `UpdateEnvironmentBlueprint` action.
|
20209
|
+
# @return [Array<String>]
|
20210
|
+
#
|
20211
|
+
# @!attribute [rw] id
|
20212
|
+
# The identifier of the blueprint to be updated.
|
20213
|
+
# @return [String]
|
20214
|
+
#
|
20215
|
+
# @!attribute [rw] name
|
20216
|
+
# The name to be updated as part of the `UpdateEnvironmentBlueprint`
|
20217
|
+
# action.
|
20218
|
+
# @return [String]
|
20219
|
+
#
|
20220
|
+
# @!attribute [rw] provider
|
20221
|
+
# The provider of the blueprint to be udpated.
|
20222
|
+
# @return [String]
|
20223
|
+
#
|
20224
|
+
# @!attribute [rw] provisioning_properties
|
20225
|
+
# The provisioning properties to be updated as part of the
|
20226
|
+
# `UpdateEnvironmentBlueprint` action.
|
20227
|
+
# @return [Types::ProvisioningProperties]
|
20228
|
+
#
|
20229
|
+
# @!attribute [rw] updated_at
|
20230
|
+
# The timestamp of when the blueprint was updated.
|
20231
|
+
# @return [Time]
|
20232
|
+
#
|
20233
|
+
# @!attribute [rw] user_parameters
|
20234
|
+
# The user parameters to be updated as part of the
|
20235
|
+
# `UpdateEnvironmentBlueprint` action.
|
20236
|
+
# @return [Array<Types::CustomParameter>]
|
20237
|
+
#
|
20238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentBlueprintOutput AWS API Documentation
|
20239
|
+
#
|
20240
|
+
class UpdateEnvironmentBlueprintOutput < Struct.new(
|
20241
|
+
:created_at,
|
20242
|
+
:deployment_properties,
|
20243
|
+
:description,
|
20244
|
+
:glossary_terms,
|
20245
|
+
:id,
|
20246
|
+
:name,
|
20247
|
+
:provider,
|
20248
|
+
:provisioning_properties,
|
20249
|
+
:updated_at,
|
20250
|
+
:user_parameters)
|
20251
|
+
SENSITIVE = [:description]
|
20252
|
+
include Aws::Structure
|
20253
|
+
end
|
20254
|
+
|
20037
20255
|
# @!attribute [rw] blueprint_version
|
20038
20256
|
# The blueprint version to which the environment should be updated.
|
20039
20257
|
# 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
|