Skip to content

Commit 5bb4f70

Browse files
Raise hard limit of authorized principals per SubscriptionTarget from 10 to 20.
1 parent 8cad5ae commit 5bb4f70

8 files changed

+8
-8
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3653,7 +3653,7 @@
36533653
"AuthorizedPrincipalIdentifiers":{
36543654
"type":"list",
36553655
"member":{"shape":"AuthorizedPrincipalIdentifier"},
3656-
"max":10,
3656+
"max":20,
36573657
"min":1
36583658
},
36593659
"AwsAccount":{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4253,7 +4253,7 @@
42534253
"AuthorizedPrincipalIdentifiers":{
42544254
"type":"list",
42554255
"member":{"shape":"AuthorizedPrincipalIdentifier"},
4256-
"max":10,
4256+
"max":20,
42574257
"min":1
42584258
},
42594259
"AwsAccount":{

sdk/src/Services/DataZone/Generated/Model/CreateSubscriptionTargetRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ internal bool IsSetApplicableAssetTypes()
7171
/// The authorized principals of the subscription target.
7272
/// </para>
7373
/// </summary>
74-
[AWSProperty(Required=true, Min=1, Max=10)]
74+
[AWSProperty(Required=true, Min=1, Max=20)]
7575
public List<string> AuthorizedPrincipals
7676
{
7777
get { return this._authorizedPrincipals; }

sdk/src/Services/DataZone/Generated/Model/CreateSubscriptionTargetResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ internal bool IsSetApplicableAssetTypes()
7575
/// The authorised principals of the subscription target.
7676
/// </para>
7777
/// </summary>
78-
[AWSProperty(Required=true, Min=1, Max=10)]
78+
[AWSProperty(Required=true, Min=1, Max=20)]
7979
public List<string> AuthorizedPrincipals
8080
{
8181
get { return this._authorizedPrincipals; }

sdk/src/Services/DataZone/Generated/Model/GetSubscriptionTargetResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ internal bool IsSetApplicableAssetTypes()
7575
/// The authorized principals of the subscription target.
7676
/// </para>
7777
/// </summary>
78-
[AWSProperty(Required=true, Min=1, Max=10)]
78+
[AWSProperty(Required=true, Min=1, Max=20)]
7979
public List<string> AuthorizedPrincipals
8080
{
8181
get { return this._authorizedPrincipals; }

sdk/src/Services/DataZone/Generated/Model/SubscriptionTargetSummary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ internal bool IsSetApplicableAssetTypes()
7575
/// The authorized principals included in the subscription target.
7676
/// </para>
7777
/// </summary>
78-
[AWSProperty(Required=true, Min=1, Max=10)]
78+
[AWSProperty(Required=true, Min=1, Max=20)]
7979
public List<string> AuthorizedPrincipals
8080
{
8181
get { return this._authorizedPrincipals; }

sdk/src/Services/DataZone/Generated/Model/UpdateSubscriptionTargetRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ internal bool IsSetApplicableAssetTypes()
7171
/// action.
7272
/// </para>
7373
/// </summary>
74-
[AWSProperty(Min=1, Max=10)]
74+
[AWSProperty(Min=1, Max=20)]
7575
public List<string> AuthorizedPrincipals
7676
{
7777
get { return this._authorizedPrincipals; }

sdk/src/Services/DataZone/Generated/Model/UpdateSubscriptionTargetResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ internal bool IsSetApplicableAssetTypes()
7777
/// action.
7878
/// </para>
7979
/// </summary>
80-
[AWSProperty(Required=true, Min=1, Max=10)]
80+
[AWSProperty(Required=true, Min=1, Max=20)]
8181
public List<string> AuthorizedPrincipals
8282
{
8383
get { return this._authorizedPrincipals; }

0 commit comments

Comments
 (0)