Skip to content

Commit 879cbe8

Browse files
committed
fix: updated schema
1 parent b271b22 commit 879cbe8

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

lib/index.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2685,6 +2685,10 @@ export interface Peering {
26852685
* The AWS VPC ID of the peer.
26862686
*/
26872687
aws_vpc_id?: string
2688+
/**
2689+
* The AWS region of the peer connection.
2690+
*/
2691+
aws_region?: string
26882692
/**
26892693
* The AWS account ID of your Private Space.
26902694
*/

schema.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9995,6 +9995,14 @@
99959995
"string"
99969996
]
99979997
},
9998+
"aws_region": {
9999+
"description": "The AWS region of the peer connection.",
10000+
"example": "us-east-1",
10001+
"readOnly": true,
10002+
"type": [
10003+
"string"
10004+
]
10005+
},
999810006
"vpc_id": {
999910007
"description": "The AWS VPC ID of the peer.",
1000010008
"example": "vpc-1234567890",
@@ -10080,6 +10088,9 @@
1008010088
"aws_vpc_id": {
1008110089
"$ref": "#/definitions/peering/definitions/vpc_id"
1008210090
},
10091+
"aws_region": {
10092+
"$ref": "#/definitions/peering/definitions/aws_region"
10093+
},
1008310094
"aws_account_id": {
1008410095
"$ref": "#/definitions/peering/definitions/aws_account_id"
1008510096
},

0 commit comments

Comments
 (0)