aws-sdk-datazone 1.58.0 → 1.60.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 +358 -6
- data/lib/aws-sdk-datazone/client_api.rb +192 -3
- data/lib/aws-sdk-datazone/types.rb +466 -17
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +102 -4
- data/sig/types.rbs +145 -5
- metadata +1 -1
|
@@ -80,6 +80,8 @@ module Aws::DataZone
|
|
|
80
80
|
AssetListingItemAdditionalAttributes = Shapes::StructureShape.new(name: 'AssetListingItemAdditionalAttributes')
|
|
81
81
|
AssetListingItemGovernedGlossaryTermsList = Shapes::ListShape.new(name: 'AssetListingItemGovernedGlossaryTermsList')
|
|
82
82
|
AssetName = Shapes::StringShape.new(name: 'AssetName')
|
|
83
|
+
AssetPermission = Shapes::StructureShape.new(name: 'AssetPermission')
|
|
84
|
+
AssetPermissions = Shapes::ListShape.new(name: 'AssetPermissions')
|
|
83
85
|
AssetRevision = Shapes::StructureShape.new(name: 'AssetRevision')
|
|
84
86
|
AssetRevisions = Shapes::ListShape.new(name: 'AssetRevisions')
|
|
85
87
|
AssetScope = Shapes::StructureShape.new(name: 'AssetScope')
|
|
@@ -101,6 +103,13 @@ module Aws::DataZone
|
|
|
101
103
|
AthenaPropertiesPatch = Shapes::StructureShape.new(name: 'AthenaPropertiesPatch')
|
|
102
104
|
AthenaPropertiesPatchWorkgroupNameString = Shapes::StringShape.new(name: 'AthenaPropertiesPatchWorkgroupNameString')
|
|
103
105
|
Attribute = Shapes::StringShape.new(name: 'Attribute')
|
|
106
|
+
AttributeEntityType = Shapes::StringShape.new(name: 'AttributeEntityType')
|
|
107
|
+
AttributeError = Shapes::StructureShape.new(name: 'AttributeError')
|
|
108
|
+
AttributeIdentifier = Shapes::StringShape.new(name: 'AttributeIdentifier')
|
|
109
|
+
AttributeInput = Shapes::StructureShape.new(name: 'AttributeInput')
|
|
110
|
+
Attributes = Shapes::ListShape.new(name: 'Attributes')
|
|
111
|
+
AttributesErrors = Shapes::ListShape.new(name: 'AttributesErrors')
|
|
112
|
+
AttributesList = Shapes::ListShape.new(name: 'AttributesList')
|
|
104
113
|
AuthType = Shapes::StringShape.new(name: 'AuthType')
|
|
105
114
|
AuthenticationConfiguration = Shapes::StructureShape.new(name: 'AuthenticationConfiguration')
|
|
106
115
|
AuthenticationConfigurationInput = Shapes::StructureShape.new(name: 'AuthenticationConfigurationInput')
|
|
@@ -126,6 +135,14 @@ module Aws::DataZone
|
|
|
126
135
|
BasicAuthenticationCredentials = Shapes::StructureShape.new(name: 'BasicAuthenticationCredentials')
|
|
127
136
|
BasicAuthenticationCredentialsPasswordString = Shapes::StringShape.new(name: 'BasicAuthenticationCredentialsPasswordString')
|
|
128
137
|
BasicAuthenticationCredentialsUserNameString = Shapes::StringShape.new(name: 'BasicAuthenticationCredentialsUserNameString')
|
|
138
|
+
BatchGetAttributeItems = Shapes::ListShape.new(name: 'BatchGetAttributeItems')
|
|
139
|
+
BatchGetAttributeOutput = Shapes::StructureShape.new(name: 'BatchGetAttributeOutput')
|
|
140
|
+
BatchGetAttributesMetadataInput = Shapes::StructureShape.new(name: 'BatchGetAttributesMetadataInput')
|
|
141
|
+
BatchGetAttributesMetadataOutput = Shapes::StructureShape.new(name: 'BatchGetAttributesMetadataOutput')
|
|
142
|
+
BatchPutAttributeItems = Shapes::ListShape.new(name: 'BatchPutAttributeItems')
|
|
143
|
+
BatchPutAttributeOutput = Shapes::StructureShape.new(name: 'BatchPutAttributeOutput')
|
|
144
|
+
BatchPutAttributesMetadataInput = Shapes::StructureShape.new(name: 'BatchPutAttributesMetadataInput')
|
|
145
|
+
BatchPutAttributesMetadataOutput = Shapes::StructureShape.new(name: 'BatchPutAttributesMetadataOutput')
|
|
129
146
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
130
147
|
BusinessNameGenerationConfiguration = Shapes::StructureShape.new(name: 'BusinessNameGenerationConfiguration')
|
|
131
148
|
CancelMetadataGenerationRunInput = Shapes::StructureShape.new(name: 'CancelMetadataGenerationRunInput')
|
|
@@ -519,7 +536,9 @@ module Aws::DataZone
|
|
|
519
536
|
GlossaryItemAdditionalAttributes = Shapes::StructureShape.new(name: 'GlossaryItemAdditionalAttributes')
|
|
520
537
|
GlossaryName = Shapes::StringShape.new(name: 'GlossaryName')
|
|
521
538
|
GlossaryStatus = Shapes::StringShape.new(name: 'GlossaryStatus')
|
|
539
|
+
GlossaryTermEnforcementDetail = Shapes::StructureShape.new(name: 'GlossaryTermEnforcementDetail')
|
|
522
540
|
GlossaryTermId = Shapes::StringShape.new(name: 'GlossaryTermId')
|
|
541
|
+
GlossaryTermIdentifiers = Shapes::ListShape.new(name: 'GlossaryTermIdentifiers')
|
|
523
542
|
GlossaryTermItem = Shapes::StructureShape.new(name: 'GlossaryTermItem')
|
|
524
543
|
GlossaryTermItemAdditionalAttributes = Shapes::StructureShape.new(name: 'GlossaryTermItemAdditionalAttributes')
|
|
525
544
|
GlossaryTermName = Shapes::StringShape.new(name: 'GlossaryTermName')
|
|
@@ -766,6 +785,7 @@ module Aws::DataZone
|
|
|
766
785
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
|
767
786
|
ParameterStorePath = Shapes::StringShape.new(name: 'ParameterStorePath')
|
|
768
787
|
Password = Shapes::StringShape.new(name: 'Password')
|
|
788
|
+
Permissions = Shapes::UnionShape.new(name: 'Permissions')
|
|
769
789
|
PhysicalConnectionRequirements = Shapes::StructureShape.new(name: 'PhysicalConnectionRequirements')
|
|
770
790
|
PhysicalConnectionRequirementsAvailabilityZoneString = Shapes::StringShape.new(name: 'PhysicalConnectionRequirementsAvailabilityZoneString')
|
|
771
791
|
PhysicalEndpoint = Shapes::StructureShape.new(name: 'PhysicalEndpoint')
|
|
@@ -897,6 +917,8 @@ module Aws::DataZone
|
|
|
897
917
|
S3AccessGrantLocationId = Shapes::StringShape.new(name: 'S3AccessGrantLocationId')
|
|
898
918
|
S3Location = Shapes::StringShape.new(name: 'S3Location')
|
|
899
919
|
S3LocationList = Shapes::ListShape.new(name: 'S3LocationList')
|
|
920
|
+
S3Permission = Shapes::StringShape.new(name: 'S3Permission')
|
|
921
|
+
S3Permissions = Shapes::ListShape.new(name: 'S3Permissions')
|
|
900
922
|
S3PropertiesInput = Shapes::StructureShape.new(name: 'S3PropertiesInput')
|
|
901
923
|
S3PropertiesOutput = Shapes::StructureShape.new(name: 'S3PropertiesOutput')
|
|
902
924
|
S3PropertiesPatch = Shapes::StructureShape.new(name: 'S3PropertiesPatch')
|
|
@@ -990,6 +1012,8 @@ module Aws::DataZone
|
|
|
990
1012
|
SubscribedAsset = Shapes::StructureShape.new(name: 'SubscribedAsset')
|
|
991
1013
|
SubscribedAssetListing = Shapes::StructureShape.new(name: 'SubscribedAssetListing')
|
|
992
1014
|
SubscribedAssets = Shapes::ListShape.new(name: 'SubscribedAssets')
|
|
1015
|
+
SubscribedGroup = Shapes::StructureShape.new(name: 'SubscribedGroup')
|
|
1016
|
+
SubscribedGroupInput = Shapes::StructureShape.new(name: 'SubscribedGroupInput')
|
|
993
1017
|
SubscribedListing = Shapes::StructureShape.new(name: 'SubscribedListing')
|
|
994
1018
|
SubscribedListingInput = Shapes::StructureShape.new(name: 'SubscribedListingInput')
|
|
995
1019
|
SubscribedListingInputs = Shapes::ListShape.new(name: 'SubscribedListingInputs')
|
|
@@ -1000,6 +1024,8 @@ module Aws::DataZone
|
|
|
1000
1024
|
SubscribedProductListing = Shapes::StructureShape.new(name: 'SubscribedProductListing')
|
|
1001
1025
|
SubscribedProject = Shapes::StructureShape.new(name: 'SubscribedProject')
|
|
1002
1026
|
SubscribedProjectInput = Shapes::StructureShape.new(name: 'SubscribedProjectInput')
|
|
1027
|
+
SubscribedUser = Shapes::StructureShape.new(name: 'SubscribedUser')
|
|
1028
|
+
SubscribedUserInput = Shapes::StructureShape.new(name: 'SubscribedUserInput')
|
|
1003
1029
|
SubscriptionGrantId = Shapes::StringShape.new(name: 'SubscriptionGrantId')
|
|
1004
1030
|
SubscriptionGrantOverallStatus = Shapes::StringShape.new(name: 'SubscriptionGrantOverallStatus')
|
|
1005
1031
|
SubscriptionGrantStatus = Shapes::StringShape.new(name: 'SubscriptionGrantStatus')
|
|
@@ -1096,6 +1122,8 @@ module Aws::DataZone
|
|
|
1096
1122
|
UpdateProjectOutput = Shapes::StructureShape.new(name: 'UpdateProjectOutput')
|
|
1097
1123
|
UpdateProjectProfileInput = Shapes::StructureShape.new(name: 'UpdateProjectProfileInput')
|
|
1098
1124
|
UpdateProjectProfileOutput = Shapes::StructureShape.new(name: 'UpdateProjectProfileOutput')
|
|
1125
|
+
UpdateRootDomainUnitOwnerInput = Shapes::StructureShape.new(name: 'UpdateRootDomainUnitOwnerInput')
|
|
1126
|
+
UpdateRootDomainUnitOwnerOutput = Shapes::StructureShape.new(name: 'UpdateRootDomainUnitOwnerOutput')
|
|
1099
1127
|
UpdateRuleInput = Shapes::StructureShape.new(name: 'UpdateRuleInput')
|
|
1100
1128
|
UpdateRuleOutput = Shapes::StructureShape.new(name: 'UpdateRuleOutput')
|
|
1101
1129
|
UpdateSubscriptionGrantStatusInput = Shapes::StructureShape.new(name: 'UpdateSubscriptionGrantStatusInput')
|
|
@@ -1154,6 +1182,7 @@ module Aws::DataZone
|
|
|
1154
1182
|
AcceptRule.add_member(:threshold, Shapes::ShapeRef.new(shape: Float, location_name: "threshold"))
|
|
1155
1183
|
AcceptRule.struct_class = Types::AcceptRule
|
|
1156
1184
|
|
|
1185
|
+
AcceptSubscriptionRequestInput.add_member(:asset_permissions, Shapes::ShapeRef.new(shape: AssetPermissions, location_name: "assetPermissions"))
|
|
1157
1186
|
AcceptSubscriptionRequestInput.add_member(:asset_scopes, Shapes::ShapeRef.new(shape: AcceptedAssetScopes, location_name: "assetScopes"))
|
|
1158
1187
|
AcceptSubscriptionRequestInput.add_member(:decision_comment, Shapes::ShapeRef.new(shape: DecisionComment, location_name: "decisionComment"))
|
|
1159
1188
|
AcceptSubscriptionRequestInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
@@ -1382,6 +1411,12 @@ module Aws::DataZone
|
|
|
1382
1411
|
|
|
1383
1412
|
AssetListingItemGovernedGlossaryTermsList.member = Shapes::ShapeRef.new(shape: DetailedGlossaryTerm)
|
|
1384
1413
|
|
|
1414
|
+
AssetPermission.add_member(:asset_id, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "assetId"))
|
|
1415
|
+
AssetPermission.add_member(:permissions, Shapes::ShapeRef.new(shape: Permissions, required: true, location_name: "permissions"))
|
|
1416
|
+
AssetPermission.struct_class = Types::AssetPermission
|
|
1417
|
+
|
|
1418
|
+
AssetPermissions.member = Shapes::ShapeRef.new(shape: AssetPermission)
|
|
1419
|
+
|
|
1385
1420
|
AssetRevision.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
1386
1421
|
AssetRevision.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
|
1387
1422
|
AssetRevision.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, location_name: "domainId"))
|
|
@@ -1449,6 +1484,21 @@ module Aws::DataZone
|
|
|
1449
1484
|
AthenaPropertiesPatch.add_member(:workgroup_name, Shapes::ShapeRef.new(shape: AthenaPropertiesPatchWorkgroupNameString, location_name: "workgroupName"))
|
|
1450
1485
|
AthenaPropertiesPatch.struct_class = Types::AthenaPropertiesPatch
|
|
1451
1486
|
|
|
1487
|
+
AttributeError.add_member(:attribute_identifier, Shapes::ShapeRef.new(shape: AttributeIdentifier, required: true, location_name: "attributeIdentifier"))
|
|
1488
|
+
AttributeError.add_member(:code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "code"))
|
|
1489
|
+
AttributeError.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
1490
|
+
AttributeError.struct_class = Types::AttributeError
|
|
1491
|
+
|
|
1492
|
+
AttributeInput.add_member(:attribute_identifier, Shapes::ShapeRef.new(shape: AttributeIdentifier, required: true, location_name: "attributeIdentifier"))
|
|
1493
|
+
AttributeInput.add_member(:forms, Shapes::ShapeRef.new(shape: FormInputList, required: true, location_name: "forms"))
|
|
1494
|
+
AttributeInput.struct_class = Types::AttributeInput
|
|
1495
|
+
|
|
1496
|
+
Attributes.member = Shapes::ShapeRef.new(shape: AttributeInput)
|
|
1497
|
+
|
|
1498
|
+
AttributesErrors.member = Shapes::ShapeRef.new(shape: AttributeError)
|
|
1499
|
+
|
|
1500
|
+
AttributesList.member = Shapes::ShapeRef.new(shape: AttributeIdentifier)
|
|
1501
|
+
|
|
1452
1502
|
AuthenticationConfiguration.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
|
|
1453
1503
|
AuthenticationConfiguration.add_member(:o_auth_2_properties, Shapes::ShapeRef.new(shape: OAuth2Properties, location_name: "oAuth2Properties"))
|
|
1454
1504
|
AuthenticationConfiguration.add_member(:secret_arn, Shapes::ShapeRef.new(shape: AuthenticationConfigurationSecretArnString, location_name: "secretArn"))
|
|
@@ -1495,6 +1545,39 @@ module Aws::DataZone
|
|
|
1495
1545
|
BasicAuthenticationCredentials.add_member(:user_name, Shapes::ShapeRef.new(shape: BasicAuthenticationCredentialsUserNameString, location_name: "userName"))
|
|
1496
1546
|
BasicAuthenticationCredentials.struct_class = Types::BasicAuthenticationCredentials
|
|
1497
1547
|
|
|
1548
|
+
BatchGetAttributeItems.member = Shapes::ShapeRef.new(shape: BatchGetAttributeOutput)
|
|
1549
|
+
|
|
1550
|
+
BatchGetAttributeOutput.add_member(:attribute_identifier, Shapes::ShapeRef.new(shape: AttributeIdentifier, required: true, location_name: "attributeIdentifier"))
|
|
1551
|
+
BatchGetAttributeOutput.add_member(:forms, Shapes::ShapeRef.new(shape: FormOutputList, location_name: "forms"))
|
|
1552
|
+
BatchGetAttributeOutput.struct_class = Types::BatchGetAttributeOutput
|
|
1553
|
+
|
|
1554
|
+
BatchGetAttributesMetadataInput.add_member(:attribute_identifiers, Shapes::ShapeRef.new(shape: AttributesList, required: true, location: "querystring", location_name: "attributeIdentifier"))
|
|
1555
|
+
BatchGetAttributesMetadataInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
1556
|
+
BatchGetAttributesMetadataInput.add_member(:entity_identifier, Shapes::ShapeRef.new(shape: EntityId, required: true, location: "uri", location_name: "entityIdentifier"))
|
|
1557
|
+
BatchGetAttributesMetadataInput.add_member(:entity_revision, Shapes::ShapeRef.new(shape: Revision, location: "querystring", location_name: "entityRevision"))
|
|
1558
|
+
BatchGetAttributesMetadataInput.add_member(:entity_type, Shapes::ShapeRef.new(shape: AttributeEntityType, required: true, location: "uri", location_name: "entityType"))
|
|
1559
|
+
BatchGetAttributesMetadataInput.struct_class = Types::BatchGetAttributesMetadataInput
|
|
1560
|
+
|
|
1561
|
+
BatchGetAttributesMetadataOutput.add_member(:attributes, Shapes::ShapeRef.new(shape: BatchGetAttributeItems, location_name: "attributes"))
|
|
1562
|
+
BatchGetAttributesMetadataOutput.add_member(:errors, Shapes::ShapeRef.new(shape: AttributesErrors, required: true, location_name: "errors"))
|
|
1563
|
+
BatchGetAttributesMetadataOutput.struct_class = Types::BatchGetAttributesMetadataOutput
|
|
1564
|
+
|
|
1565
|
+
BatchPutAttributeItems.member = Shapes::ShapeRef.new(shape: BatchPutAttributeOutput)
|
|
1566
|
+
|
|
1567
|
+
BatchPutAttributeOutput.add_member(:attribute_identifier, Shapes::ShapeRef.new(shape: AttributeIdentifier, required: true, location_name: "attributeIdentifier"))
|
|
1568
|
+
BatchPutAttributeOutput.struct_class = Types::BatchPutAttributeOutput
|
|
1569
|
+
|
|
1570
|
+
BatchPutAttributesMetadataInput.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, required: true, location_name: "attributes"))
|
|
1571
|
+
BatchPutAttributesMetadataInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1572
|
+
BatchPutAttributesMetadataInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
1573
|
+
BatchPutAttributesMetadataInput.add_member(:entity_identifier, Shapes::ShapeRef.new(shape: EntityId, required: true, location: "uri", location_name: "entityIdentifier"))
|
|
1574
|
+
BatchPutAttributesMetadataInput.add_member(:entity_type, Shapes::ShapeRef.new(shape: AttributeEntityType, required: true, location: "uri", location_name: "entityType"))
|
|
1575
|
+
BatchPutAttributesMetadataInput.struct_class = Types::BatchPutAttributesMetadataInput
|
|
1576
|
+
|
|
1577
|
+
BatchPutAttributesMetadataOutput.add_member(:attributes, Shapes::ShapeRef.new(shape: BatchPutAttributeItems, location_name: "attributes"))
|
|
1578
|
+
BatchPutAttributesMetadataOutput.add_member(:errors, Shapes::ShapeRef.new(shape: AttributesErrors, location_name: "errors"))
|
|
1579
|
+
BatchPutAttributesMetadataOutput.struct_class = Types::BatchPutAttributesMetadataOutput
|
|
1580
|
+
|
|
1498
1581
|
BusinessNameGenerationConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
1499
1582
|
BusinessNameGenerationConfiguration.struct_class = Types::BusinessNameGenerationConfiguration
|
|
1500
1583
|
|
|
@@ -2226,6 +2309,7 @@ module Aws::DataZone
|
|
|
2226
2309
|
CreateSubscriptionGrantOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, required: true, location_name: "createdAt"))
|
|
2227
2310
|
CreateSubscriptionGrantOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
|
2228
2311
|
CreateSubscriptionGrantOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
|
2312
|
+
CreateSubscriptionGrantOutput.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "environmentId"))
|
|
2229
2313
|
CreateSubscriptionGrantOutput.add_member(:granted_entity, Shapes::ShapeRef.new(shape: GrantedEntity, required: true, location_name: "grantedEntity"))
|
|
2230
2314
|
CreateSubscriptionGrantOutput.add_member(:id, Shapes::ShapeRef.new(shape: SubscriptionGrantId, required: true, location_name: "id"))
|
|
2231
2315
|
CreateSubscriptionGrantOutput.add_member(:status, Shapes::ShapeRef.new(shape: SubscriptionGrantOverallStatus, required: true, location_name: "status"))
|
|
@@ -2235,6 +2319,8 @@ module Aws::DataZone
|
|
|
2235
2319
|
CreateSubscriptionGrantOutput.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
|
|
2236
2320
|
CreateSubscriptionGrantOutput.struct_class = Types::CreateSubscriptionGrantOutput
|
|
2237
2321
|
|
|
2322
|
+
CreateSubscriptionRequestInput.add_member(:asset_permissions, Shapes::ShapeRef.new(shape: AssetPermissions, location_name: "assetPermissions"))
|
|
2323
|
+
CreateSubscriptionRequestInput.add_member(:asset_scopes, Shapes::ShapeRef.new(shape: AcceptedAssetScopes, location_name: "assetScopes"))
|
|
2238
2324
|
CreateSubscriptionRequestInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
2239
2325
|
CreateSubscriptionRequestInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
2240
2326
|
CreateSubscriptionRequestInput.add_member(:metadata_forms, Shapes::ShapeRef.new(shape: MetadataFormInputs, location_name: "metadataForms"))
|
|
@@ -2623,6 +2709,7 @@ module Aws::DataZone
|
|
|
2623
2709
|
DeleteSubscriptionGrantOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, required: true, location_name: "createdAt"))
|
|
2624
2710
|
DeleteSubscriptionGrantOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
|
2625
2711
|
DeleteSubscriptionGrantOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
|
2712
|
+
DeleteSubscriptionGrantOutput.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "environmentId"))
|
|
2626
2713
|
DeleteSubscriptionGrantOutput.add_member(:granted_entity, Shapes::ShapeRef.new(shape: GrantedEntity, required: true, location_name: "grantedEntity"))
|
|
2627
2714
|
DeleteSubscriptionGrantOutput.add_member(:id, Shapes::ShapeRef.new(shape: SubscriptionGrantId, required: true, location_name: "id"))
|
|
2628
2715
|
DeleteSubscriptionGrantOutput.add_member(:status, Shapes::ShapeRef.new(shape: SubscriptionGrantOverallStatus, required: true, location_name: "status"))
|
|
@@ -3498,6 +3585,7 @@ module Aws::DataZone
|
|
|
3498
3585
|
GetSubscriptionGrantOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, required: true, location_name: "createdAt"))
|
|
3499
3586
|
GetSubscriptionGrantOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
|
3500
3587
|
GetSubscriptionGrantOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
|
3588
|
+
GetSubscriptionGrantOutput.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "environmentId"))
|
|
3501
3589
|
GetSubscriptionGrantOutput.add_member(:granted_entity, Shapes::ShapeRef.new(shape: GrantedEntity, required: true, location_name: "grantedEntity"))
|
|
3502
3590
|
GetSubscriptionGrantOutput.add_member(:id, Shapes::ShapeRef.new(shape: SubscriptionGrantId, required: true, location_name: "id"))
|
|
3503
3591
|
GetSubscriptionGrantOutput.add_member(:status, Shapes::ShapeRef.new(shape: SubscriptionGrantOverallStatus, required: true, location_name: "status"))
|
|
@@ -3616,6 +3704,11 @@ module Aws::DataZone
|
|
|
3616
3704
|
GlossaryItemAdditionalAttributes.add_member(:match_rationale, Shapes::ShapeRef.new(shape: MatchRationale, location_name: "matchRationale"))
|
|
3617
3705
|
GlossaryItemAdditionalAttributes.struct_class = Types::GlossaryItemAdditionalAttributes
|
|
3618
3706
|
|
|
3707
|
+
GlossaryTermEnforcementDetail.add_member(:required_glossary_term_ids, Shapes::ShapeRef.new(shape: GlossaryTermIdentifiers, location_name: "requiredGlossaryTermIds"))
|
|
3708
|
+
GlossaryTermEnforcementDetail.struct_class = Types::GlossaryTermEnforcementDetail
|
|
3709
|
+
|
|
3710
|
+
GlossaryTermIdentifiers.member = Shapes::ShapeRef.new(shape: GlossaryTermId)
|
|
3711
|
+
|
|
3619
3712
|
GlossaryTermItem.add_member(:additional_attributes, Shapes::ShapeRef.new(shape: GlossaryTermItemAdditionalAttributes, location_name: "additionalAttributes"))
|
|
3620
3713
|
GlossaryTermItem.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
3621
3714
|
GlossaryTermItem.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
|
@@ -4225,8 +4318,10 @@ module Aws::DataZone
|
|
|
4225
4318
|
ListSubscriptionGrantsInput.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location: "querystring", location_name: "environmentId"))
|
|
4226
4319
|
ListSubscriptionGrantsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
4227
4320
|
ListSubscriptionGrantsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
|
4321
|
+
ListSubscriptionGrantsInput.add_member(:owning_group_id, Shapes::ShapeRef.new(shape: GroupProfileId, location: "querystring", location_name: "owningGroupId"))
|
|
4228
4322
|
ListSubscriptionGrantsInput.add_member(:owning_project_id, Shapes::ShapeRef.new(shape: ProjectId, location: "querystring", location_name: "owningProjectId"))
|
|
4229
|
-
ListSubscriptionGrantsInput.add_member(:
|
|
4323
|
+
ListSubscriptionGrantsInput.add_member(:owning_user_id, Shapes::ShapeRef.new(shape: UserProfileId, location: "querystring", location_name: "owningUserId"))
|
|
4324
|
+
ListSubscriptionGrantsInput.add_member(:sort_by, Shapes::ShapeRef.new(shape: SortKey, deprecated: true, location: "querystring", location_name: "sortBy", metadata: {"deprecatedMessage" => "Results are always sorted by updatedAt"}))
|
|
4230
4325
|
ListSubscriptionGrantsInput.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location: "querystring", location_name: "sortOrder"))
|
|
4231
4326
|
ListSubscriptionGrantsInput.add_member(:subscribed_listing_id, Shapes::ShapeRef.new(shape: ListingId, location: "querystring", location_name: "subscribedListingId"))
|
|
4232
4327
|
ListSubscriptionGrantsInput.add_member(:subscription_id, Shapes::ShapeRef.new(shape: SubscriptionId, location: "querystring", location_name: "subscriptionId"))
|
|
@@ -4241,8 +4336,10 @@ module Aws::DataZone
|
|
|
4241
4336
|
ListSubscriptionRequestsInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
4242
4337
|
ListSubscriptionRequestsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
4243
4338
|
ListSubscriptionRequestsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
|
4339
|
+
ListSubscriptionRequestsInput.add_member(:owning_group_id, Shapes::ShapeRef.new(shape: GroupProfileId, location: "querystring", location_name: "owningGroupId"))
|
|
4244
4340
|
ListSubscriptionRequestsInput.add_member(:owning_project_id, Shapes::ShapeRef.new(shape: ProjectId, location: "querystring", location_name: "owningProjectId"))
|
|
4245
|
-
ListSubscriptionRequestsInput.add_member(:
|
|
4341
|
+
ListSubscriptionRequestsInput.add_member(:owning_user_id, Shapes::ShapeRef.new(shape: UserProfileId, location: "querystring", location_name: "owningUserId"))
|
|
4342
|
+
ListSubscriptionRequestsInput.add_member(:sort_by, Shapes::ShapeRef.new(shape: SortKey, deprecated: true, location: "querystring", location_name: "sortBy", metadata: {"deprecatedMessage" => "Results are always sorted by updatedAt"}))
|
|
4246
4343
|
ListSubscriptionRequestsInput.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location: "querystring", location_name: "sortOrder"))
|
|
4247
4344
|
ListSubscriptionRequestsInput.add_member(:status, Shapes::ShapeRef.new(shape: SubscriptionRequestStatus, location: "querystring", location_name: "status"))
|
|
4248
4345
|
ListSubscriptionRequestsInput.add_member(:subscribed_listing_id, Shapes::ShapeRef.new(shape: ListingId, location: "querystring", location_name: "subscribedListingId"))
|
|
@@ -4268,8 +4365,10 @@ module Aws::DataZone
|
|
|
4268
4365
|
ListSubscriptionsInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
4269
4366
|
ListSubscriptionsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
4270
4367
|
ListSubscriptionsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
|
4368
|
+
ListSubscriptionsInput.add_member(:owning_group_id, Shapes::ShapeRef.new(shape: GroupProfileId, location: "querystring", location_name: "owningGroupId"))
|
|
4271
4369
|
ListSubscriptionsInput.add_member(:owning_project_id, Shapes::ShapeRef.new(shape: ProjectId, location: "querystring", location_name: "owningProjectId"))
|
|
4272
|
-
ListSubscriptionsInput.add_member(:
|
|
4370
|
+
ListSubscriptionsInput.add_member(:owning_user_id, Shapes::ShapeRef.new(shape: UserProfileId, location: "querystring", location_name: "owningUserId"))
|
|
4371
|
+
ListSubscriptionsInput.add_member(:sort_by, Shapes::ShapeRef.new(shape: SortKey, deprecated: true, location: "querystring", location_name: "sortBy", metadata: {"deprecatedMessage" => "Results are always sorted by updatedAt"}))
|
|
4273
4372
|
ListSubscriptionsInput.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location: "querystring", location_name: "sortOrder"))
|
|
4274
4373
|
ListSubscriptionsInput.add_member(:status, Shapes::ShapeRef.new(shape: SubscriptionStatus, location: "querystring", location_name: "status"))
|
|
4275
4374
|
ListSubscriptionsInput.add_member(:subscribed_listing_id, Shapes::ShapeRef.new(shape: ListingId, location: "querystring", location_name: "subscribedListingId"))
|
|
@@ -4512,6 +4611,12 @@ module Aws::DataZone
|
|
|
4512
4611
|
OwnerUserPropertiesOutput.add_member(:user_id, Shapes::ShapeRef.new(shape: String, location_name: "userId"))
|
|
4513
4612
|
OwnerUserPropertiesOutput.struct_class = Types::OwnerUserPropertiesOutput
|
|
4514
4613
|
|
|
4614
|
+
Permissions.add_member(:s3, Shapes::ShapeRef.new(shape: S3Permissions, location_name: "s3"))
|
|
4615
|
+
Permissions.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
4616
|
+
Permissions.add_member_subclass(:s3, Types::Permissions::S3)
|
|
4617
|
+
Permissions.add_member_subclass(:unknown, Types::Permissions::Unknown)
|
|
4618
|
+
Permissions.struct_class = Types::Permissions
|
|
4619
|
+
|
|
4515
4620
|
PhysicalConnectionRequirements.add_member(:availability_zone, Shapes::ShapeRef.new(shape: PhysicalConnectionRequirementsAvailabilityZoneString, location_name: "availabilityZone"))
|
|
4516
4621
|
PhysicalConnectionRequirements.add_member(:security_group_id_list, Shapes::ShapeRef.new(shape: SecurityGroupIdList, location_name: "securityGroupIdList"))
|
|
4517
4622
|
PhysicalConnectionRequirements.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "subnetId"))
|
|
@@ -4977,8 +5082,10 @@ module Aws::DataZone
|
|
|
4977
5082
|
|
|
4978
5083
|
RuleAssetTypeList.member = Shapes::ShapeRef.new(shape: AssetTypeIdentifier)
|
|
4979
5084
|
|
|
5085
|
+
RuleDetail.add_member(:glossary_term_enforcement_detail, Shapes::ShapeRef.new(shape: GlossaryTermEnforcementDetail, location_name: "glossaryTermEnforcementDetail"))
|
|
4980
5086
|
RuleDetail.add_member(:metadata_form_enforcement_detail, Shapes::ShapeRef.new(shape: MetadataFormEnforcementDetail, location_name: "metadataFormEnforcementDetail"))
|
|
4981
5087
|
RuleDetail.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
5088
|
+
RuleDetail.add_member_subclass(:glossary_term_enforcement_detail, Types::RuleDetail::GlossaryTermEnforcementDetail)
|
|
4982
5089
|
RuleDetail.add_member_subclass(:metadata_form_enforcement_detail, Types::RuleDetail::MetadataFormEnforcementDetail)
|
|
4983
5090
|
RuleDetail.add_member_subclass(:unknown, Types::RuleDetail::Unknown)
|
|
4984
5091
|
RuleDetail.struct_class = Types::RuleDetail
|
|
@@ -5019,6 +5126,8 @@ module Aws::DataZone
|
|
|
5019
5126
|
|
|
5020
5127
|
S3LocationList.member = Shapes::ShapeRef.new(shape: S3Location)
|
|
5021
5128
|
|
|
5129
|
+
S3Permissions.member = Shapes::ShapeRef.new(shape: S3Permission)
|
|
5130
|
+
|
|
5022
5131
|
S3PropertiesInput.add_member(:s3_access_grant_location_id, Shapes::ShapeRef.new(shape: S3AccessGrantLocationId, location_name: "s3AccessGrantLocationId"))
|
|
5023
5132
|
S3PropertiesInput.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "s3Uri"))
|
|
5024
5133
|
S3PropertiesInput.struct_class = Types::S3PropertiesInput
|
|
@@ -5300,6 +5409,7 @@ module Aws::DataZone
|
|
|
5300
5409
|
SubscribedAsset.add_member(:failure_cause, Shapes::ShapeRef.new(shape: FailureCause, location_name: "failureCause"))
|
|
5301
5410
|
SubscribedAsset.add_member(:failure_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "failureTimestamp"))
|
|
5302
5411
|
SubscribedAsset.add_member(:granted_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "grantedTimestamp"))
|
|
5412
|
+
SubscribedAsset.add_member(:permissions, Shapes::ShapeRef.new(shape: Permissions, location_name: "permissions"))
|
|
5303
5413
|
SubscribedAsset.add_member(:status, Shapes::ShapeRef.new(shape: SubscriptionGrantStatus, required: true, location_name: "status"))
|
|
5304
5414
|
SubscribedAsset.add_member(:target_name, Shapes::ShapeRef.new(shape: String, location_name: "targetName"))
|
|
5305
5415
|
SubscribedAsset.struct_class = Types::SubscribedAsset
|
|
@@ -5310,10 +5420,18 @@ module Aws::DataZone
|
|
|
5310
5420
|
SubscribedAssetListing.add_member(:entity_type, Shapes::ShapeRef.new(shape: TypeName, location_name: "entityType"))
|
|
5311
5421
|
SubscribedAssetListing.add_member(:forms, Shapes::ShapeRef.new(shape: Forms, location_name: "forms"))
|
|
5312
5422
|
SubscribedAssetListing.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: DetailedGlossaryTerms, location_name: "glossaryTerms"))
|
|
5423
|
+
SubscribedAssetListing.add_member(:permissions, Shapes::ShapeRef.new(shape: Permissions, location_name: "permissions"))
|
|
5313
5424
|
SubscribedAssetListing.struct_class = Types::SubscribedAssetListing
|
|
5314
5425
|
|
|
5315
5426
|
SubscribedAssets.member = Shapes::ShapeRef.new(shape: SubscribedAsset)
|
|
5316
5427
|
|
|
5428
|
+
SubscribedGroup.add_member(:id, Shapes::ShapeRef.new(shape: GroupProfileId, location_name: "id"))
|
|
5429
|
+
SubscribedGroup.add_member(:name, Shapes::ShapeRef.new(shape: GroupProfileName, location_name: "name"))
|
|
5430
|
+
SubscribedGroup.struct_class = Types::SubscribedGroup
|
|
5431
|
+
|
|
5432
|
+
SubscribedGroupInput.add_member(:identifier, Shapes::ShapeRef.new(shape: GroupProfileId, location_name: "identifier"))
|
|
5433
|
+
SubscribedGroupInput.struct_class = Types::SubscribedGroupInput
|
|
5434
|
+
|
|
5317
5435
|
SubscribedListing.add_member(:description, Shapes::ShapeRef.new(shape: Description, required: true, location_name: "description"))
|
|
5318
5436
|
SubscribedListing.add_member(:id, Shapes::ShapeRef.new(shape: ListingId, required: true, location_name: "id"))
|
|
5319
5437
|
SubscribedListing.add_member(:item, Shapes::ShapeRef.new(shape: SubscribedListingItem, required: true, location_name: "item"))
|
|
@@ -5336,15 +5454,23 @@ module Aws::DataZone
|
|
|
5336
5454
|
SubscribedListingItem.add_member_subclass(:unknown, Types::SubscribedListingItem::Unknown)
|
|
5337
5455
|
SubscribedListingItem.struct_class = Types::SubscribedListingItem
|
|
5338
5456
|
|
|
5457
|
+
SubscribedPrincipal.add_member(:group, Shapes::ShapeRef.new(shape: SubscribedGroup, location_name: "group"))
|
|
5339
5458
|
SubscribedPrincipal.add_member(:project, Shapes::ShapeRef.new(shape: SubscribedProject, location_name: "project"))
|
|
5459
|
+
SubscribedPrincipal.add_member(:user, Shapes::ShapeRef.new(shape: SubscribedUser, location_name: "user"))
|
|
5340
5460
|
SubscribedPrincipal.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
5461
|
+
SubscribedPrincipal.add_member_subclass(:group, Types::SubscribedPrincipal::Group)
|
|
5341
5462
|
SubscribedPrincipal.add_member_subclass(:project, Types::SubscribedPrincipal::Project)
|
|
5463
|
+
SubscribedPrincipal.add_member_subclass(:user, Types::SubscribedPrincipal::User)
|
|
5342
5464
|
SubscribedPrincipal.add_member_subclass(:unknown, Types::SubscribedPrincipal::Unknown)
|
|
5343
5465
|
SubscribedPrincipal.struct_class = Types::SubscribedPrincipal
|
|
5344
5466
|
|
|
5467
|
+
SubscribedPrincipalInput.add_member(:group, Shapes::ShapeRef.new(shape: SubscribedGroupInput, location_name: "group"))
|
|
5345
5468
|
SubscribedPrincipalInput.add_member(:project, Shapes::ShapeRef.new(shape: SubscribedProjectInput, location_name: "project"))
|
|
5469
|
+
SubscribedPrincipalInput.add_member(:user, Shapes::ShapeRef.new(shape: SubscribedUserInput, location_name: "user"))
|
|
5346
5470
|
SubscribedPrincipalInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
5471
|
+
SubscribedPrincipalInput.add_member_subclass(:group, Types::SubscribedPrincipalInput::Group)
|
|
5347
5472
|
SubscribedPrincipalInput.add_member_subclass(:project, Types::SubscribedPrincipalInput::Project)
|
|
5473
|
+
SubscribedPrincipalInput.add_member_subclass(:user, Types::SubscribedPrincipalInput::User)
|
|
5348
5474
|
SubscribedPrincipalInput.add_member_subclass(:unknown, Types::SubscribedPrincipalInput::Unknown)
|
|
5349
5475
|
SubscribedPrincipalInput.struct_class = Types::SubscribedPrincipalInput
|
|
5350
5476
|
|
|
@@ -5365,10 +5491,18 @@ module Aws::DataZone
|
|
|
5365
5491
|
SubscribedProjectInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ProjectId, location_name: "identifier"))
|
|
5366
5492
|
SubscribedProjectInput.struct_class = Types::SubscribedProjectInput
|
|
5367
5493
|
|
|
5494
|
+
SubscribedUser.add_member(:details, Shapes::ShapeRef.new(shape: UserProfileDetails, location_name: "details"))
|
|
5495
|
+
SubscribedUser.add_member(:id, Shapes::ShapeRef.new(shape: UserProfileId, location_name: "id"))
|
|
5496
|
+
SubscribedUser.struct_class = Types::SubscribedUser
|
|
5497
|
+
|
|
5498
|
+
SubscribedUserInput.add_member(:identifier, Shapes::ShapeRef.new(shape: UserProfileId, location_name: "identifier"))
|
|
5499
|
+
SubscribedUserInput.struct_class = Types::SubscribedUserInput
|
|
5500
|
+
|
|
5368
5501
|
SubscriptionGrantSummary.add_member(:assets, Shapes::ShapeRef.new(shape: SubscribedAssets, location_name: "assets"))
|
|
5369
5502
|
SubscriptionGrantSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, required: true, location_name: "createdAt"))
|
|
5370
5503
|
SubscriptionGrantSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
|
5371
5504
|
SubscriptionGrantSummary.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
|
5505
|
+
SubscriptionGrantSummary.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "environmentId"))
|
|
5372
5506
|
SubscriptionGrantSummary.add_member(:granted_entity, Shapes::ShapeRef.new(shape: GrantedEntity, required: true, location_name: "grantedEntity"))
|
|
5373
5507
|
SubscriptionGrantSummary.add_member(:id, Shapes::ShapeRef.new(shape: SubscriptionGrantId, required: true, location_name: "id"))
|
|
5374
5508
|
SubscriptionGrantSummary.add_member(:status, Shapes::ShapeRef.new(shape: SubscriptionGrantOverallStatus, required: true, location_name: "status"))
|
|
@@ -5860,6 +5994,14 @@ module Aws::DataZone
|
|
|
5860
5994
|
UpdateProjectProfileOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
|
5861
5995
|
UpdateProjectProfileOutput.struct_class = Types::UpdateProjectProfileOutput
|
|
5862
5996
|
|
|
5997
|
+
UpdateRootDomainUnitOwnerInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
5998
|
+
UpdateRootDomainUnitOwnerInput.add_member(:current_owner, Shapes::ShapeRef.new(shape: UserIdentifier, required: true, location_name: "currentOwner"))
|
|
5999
|
+
UpdateRootDomainUnitOwnerInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
6000
|
+
UpdateRootDomainUnitOwnerInput.add_member(:new_owner, Shapes::ShapeRef.new(shape: String, required: true, location_name: "newOwner"))
|
|
6001
|
+
UpdateRootDomainUnitOwnerInput.struct_class = Types::UpdateRootDomainUnitOwnerInput
|
|
6002
|
+
|
|
6003
|
+
UpdateRootDomainUnitOwnerOutput.struct_class = Types::UpdateRootDomainUnitOwnerOutput
|
|
6004
|
+
|
|
5863
6005
|
UpdateRuleInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
5864
6006
|
UpdateRuleInput.add_member(:detail, Shapes::ShapeRef.new(shape: RuleDetail, location_name: "detail"))
|
|
5865
6007
|
UpdateRuleInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
@@ -5896,6 +6038,7 @@ module Aws::DataZone
|
|
|
5896
6038
|
UpdateSubscriptionGrantStatusOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, required: true, location_name: "createdAt"))
|
|
5897
6039
|
UpdateSubscriptionGrantStatusOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
|
5898
6040
|
UpdateSubscriptionGrantStatusOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
|
6041
|
+
UpdateSubscriptionGrantStatusOutput.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "environmentId"))
|
|
5899
6042
|
UpdateSubscriptionGrantStatusOutput.add_member(:granted_entity, Shapes::ShapeRef.new(shape: GrantedEntity, required: true, location_name: "grantedEntity"))
|
|
5900
6043
|
UpdateSubscriptionGrantStatusOutput.add_member(:id, Shapes::ShapeRef.new(shape: SubscriptionGrantId, required: true, location_name: "id"))
|
|
5901
6044
|
UpdateSubscriptionGrantStatusOutput.add_member(:status, Shapes::ShapeRef.new(shape: SubscriptionGrantOverallStatus, required: true, location_name: "status"))
|
|
@@ -6054,6 +6197,7 @@ module Aws::DataZone
|
|
|
6054
6197
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
6055
6198
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6056
6199
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6200
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
6057
6201
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
6058
6202
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6059
6203
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
@@ -6120,6 +6264,35 @@ module Aws::DataZone
|
|
|
6120
6264
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
6121
6265
|
end)
|
|
6122
6266
|
|
|
6267
|
+
api.add_operation(:batch_get_attributes_metadata, Seahorse::Model::Operation.new.tap do |o|
|
|
6268
|
+
o.name = "BatchGetAttributesMetadata"
|
|
6269
|
+
o.http_method = "GET"
|
|
6270
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/attributes-metadata"
|
|
6271
|
+
o.input = Shapes::ShapeRef.new(shape: BatchGetAttributesMetadataInput)
|
|
6272
|
+
o.output = Shapes::ShapeRef.new(shape: BatchGetAttributesMetadataOutput)
|
|
6273
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6274
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
6275
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6276
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6277
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6278
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
6279
|
+
end)
|
|
6280
|
+
|
|
6281
|
+
api.add_operation(:batch_put_attributes_metadata, Seahorse::Model::Operation.new.tap do |o|
|
|
6282
|
+
o.name = "BatchPutAttributesMetadata"
|
|
6283
|
+
o.http_method = "PUT"
|
|
6284
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/attributes-metadata"
|
|
6285
|
+
o.input = Shapes::ShapeRef.new(shape: BatchPutAttributesMetadataInput)
|
|
6286
|
+
o.output = Shapes::ShapeRef.new(shape: BatchPutAttributesMetadataOutput)
|
|
6287
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6288
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
6289
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6290
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6291
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
6292
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6293
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
6294
|
+
end)
|
|
6295
|
+
|
|
6123
6296
|
api.add_operation(:cancel_metadata_generation_run, Seahorse::Model::Operation.new.tap do |o|
|
|
6124
6297
|
o.name = "CancelMetadataGenerationRun"
|
|
6125
6298
|
o.http_method = "POST"
|
|
@@ -6547,6 +6720,7 @@ module Aws::DataZone
|
|
|
6547
6720
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
6548
6721
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6549
6722
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6723
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
6550
6724
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
6551
6725
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6552
6726
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
@@ -8647,6 +8821,21 @@ module Aws::DataZone
|
|
|
8647
8821
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
8648
8822
|
end)
|
|
8649
8823
|
|
|
8824
|
+
api.add_operation(:update_root_domain_unit_owner, Seahorse::Model::Operation.new.tap do |o|
|
|
8825
|
+
o.name = "UpdateRootDomainUnitOwner"
|
|
8826
|
+
o.http_method = "PATCH"
|
|
8827
|
+
o.http_request_uri = "/v2/domains/{domainIdentifier}/root-domain-unit-owner"
|
|
8828
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateRootDomainUnitOwnerInput)
|
|
8829
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateRootDomainUnitOwnerOutput)
|
|
8830
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
8831
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
8832
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
8833
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
8834
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
8835
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
8836
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
8837
|
+
end)
|
|
8838
|
+
|
|
8650
8839
|
api.add_operation(:update_rule, Seahorse::Model::Operation.new.tap do |o|
|
|
8651
8840
|
o.name = "UpdateRule"
|
|
8652
8841
|
o.http_method = "PATCH"
|