Skip to content

Commit 098d7ca

Browse files
author
awstools
committed
feat(client-networkmanager): Add TransitGatewayPeeringAttachmentId property to TransitGatewayPeering Model
1 parent 002e420 commit 098d7ca

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

clients/client-networkmanager/src/models/models_0.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2187,6 +2187,11 @@ export interface TransitGatewayPeering {
21872187
* <p>The ARN of the transit gateway.</p>
21882188
*/
21892189
TransitGatewayArn?: string;
2190+
2191+
/**
2192+
* <p>The ID of the transit gateway peering attachment.</p>
2193+
*/
2194+
TransitGatewayPeeringAttachmentId?: string;
21902195
}
21912196

21922197
export interface CreateTransitGatewayPeeringResponse {

clients/client-networkmanager/src/protocols/Aws_restJson1.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9346,6 +9346,7 @@ const deserializeAws_restJson1TransitGatewayPeering = (output: any, context: __S
93469346
return {
93479347
Peering: output.Peering != null ? deserializeAws_restJson1Peering(output.Peering, context) : undefined,
93489348
TransitGatewayArn: __expectString(output.TransitGatewayArn),
9349+
TransitGatewayPeeringAttachmentId: __expectString(output.TransitGatewayPeeringAttachmentId),
93499350
} as any;
93509351
};
93519352

codegen/sdk-codegen/aws-models/networkmanager.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10063,12 +10063,28 @@
1006310063
"traits": {
1006410064
"smithy.api#documentation": "<p>The ARN of the transit gateway.</p>"
1006510065
}
10066+
},
10067+
"TransitGatewayPeeringAttachmentId": {
10068+
"target": "com.amazonaws.networkmanager#TransitGatewayPeeringAttachmentId",
10069+
"traits": {
10070+
"smithy.api#documentation": "<p>The ID of the transit gateway peering attachment.</p>"
10071+
}
1006610072
}
1006710073
},
1006810074
"traits": {
1006910075
"smithy.api#documentation": "<p>Describes a transit gateway peering attachment.</p>"
1007010076
}
1007110077
},
10078+
"com.amazonaws.networkmanager#TransitGatewayPeeringAttachmentId": {
10079+
"type": "string",
10080+
"traits": {
10081+
"smithy.api#length": {
10082+
"min": 0,
10083+
"max": 50
10084+
},
10085+
"smithy.api#pattern": "^tgw-attach-([0-9a-f]{8,17})$"
10086+
}
10087+
},
1007210088
"com.amazonaws.networkmanager#TransitGatewayRegistration": {
1007310089
"type": "structure",
1007410090
"members": {

0 commit comments

Comments
 (0)