Skip to content

Commit be16acd

Browse files
This release adds new action type of Create Listing Changeset for the Metadata Enforcement Rule feature.
1 parent 17f60b3 commit be16acd

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

generator/ServiceModels/datazone/datazone-2018-05-10.api.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12481,7 +12481,10 @@
1248112481
},
1248212482
"RuleAction":{
1248312483
"type":"string",
12484-
"enum":["CREATE_SUBSCRIPTION_REQUEST"]
12484+
"enum":[
12485+
"CREATE_LISTING_CHANGE_SET",
12486+
"CREATE_SUBSCRIPTION_REQUEST"
12487+
]
1248512488
},
1248612489
"RuleAssetTypeList":{
1248712490
"type":"list",

generator/ServiceModels/datazone/datazone-2018-05-10.normal.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18594,7 +18594,10 @@
1859418594
},
1859518595
"RuleAction":{
1859618596
"type":"string",
18597-
"enum":["CREATE_SUBSCRIPTION_REQUEST"]
18597+
"enum":[
18598+
"CREATE_LISTING_CHANGE_SET",
18599+
"CREATE_SUBSCRIPTION_REQUEST"
18600+
]
1859818601
},
1859918602
"RuleAssetTypeList":{
1860018603
"type":"list",

sdk/src/Services/DataZone/Generated/ServiceEnumerations.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3340,6 +3340,10 @@ public static implicit operator RejectRuleBehavior(string value)
33403340
public class RuleAction : ConstantClass
33413341
{
33423342

3343+
/// <summary>
3344+
/// Constant CREATE_LISTING_CHANGE_SET for RuleAction
3345+
/// </summary>
3346+
public static readonly RuleAction CREATE_LISTING_CHANGE_SET = new RuleAction("CREATE_LISTING_CHANGE_SET");
33433347
/// <summary>
33443348
/// Constant CREATE_SUBSCRIPTION_REQUEST for RuleAction
33453349
/// </summary>

0 commit comments

Comments
 (0)