@@ -35,6 +35,7 @@ class DescribeDirectConnectGatewayAttributesResponse(object):
3535 swagger_types = {
3636 'account_id' : 'str' ,
3737 'associate_cens' : 'list[AssociateCenForDescribeDirectConnectGatewayAttributesOutput]' ,
38+ 'bgp_asn' : 'int' ,
3839 'business_status' : 'str' ,
3940 'creation_time' : 'str' ,
4041 'deleted_time' : 'str' ,
@@ -53,6 +54,7 @@ class DescribeDirectConnectGatewayAttributesResponse(object):
5354 attribute_map = {
5455 'account_id' : 'AccountId' ,
5556 'associate_cens' : 'AssociateCens' ,
57+ 'bgp_asn' : 'BgpAsn' ,
5658 'business_status' : 'BusinessStatus' ,
5759 'creation_time' : 'CreationTime' ,
5860 'deleted_time' : 'DeletedTime' ,
@@ -68,14 +70,15 @@ class DescribeDirectConnectGatewayAttributesResponse(object):
6870 'update_time' : 'UpdateTime'
6971 }
7072
71- def __init__ (self , account_id = None , associate_cens = None , business_status = None , creation_time = None , deleted_time = None , description = None , direct_connect_gateway_id = None , direct_connect_gateway_name = None , enable_ipv6 = None , lock_reason = None , overdue_time = None , request_id = None , status = None , tags = None , update_time = None , _configuration = None ): # noqa: E501
73+ def __init__ (self , account_id = None , associate_cens = None , bgp_asn = None , business_status = None , creation_time = None , deleted_time = None , description = None , direct_connect_gateway_id = None , direct_connect_gateway_name = None , enable_ipv6 = None , lock_reason = None , overdue_time = None , request_id = None , status = None , tags = None , update_time = None , _configuration = None ): # noqa: E501
7274 """DescribeDirectConnectGatewayAttributesResponse - a model defined in Swagger""" # noqa: E501
7375 if _configuration is None :
7476 _configuration = Configuration ()
7577 self ._configuration = _configuration
7678
7779 self ._account_id = None
7880 self ._associate_cens = None
81+ self ._bgp_asn = None
7982 self ._business_status = None
8083 self ._creation_time = None
8184 self ._deleted_time = None
@@ -95,6 +98,8 @@ def __init__(self, account_id=None, associate_cens=None, business_status=None, c
9598 self .account_id = account_id
9699 if associate_cens is not None :
97100 self .associate_cens = associate_cens
101+ if bgp_asn is not None :
102+ self .bgp_asn = bgp_asn
98103 if business_status is not None :
99104 self .business_status = business_status
100105 if creation_time is not None :
@@ -164,6 +169,27 @@ def associate_cens(self, associate_cens):
164169
165170 self ._associate_cens = associate_cens
166171
172+ @property
173+ def bgp_asn (self ):
174+ """Gets the bgp_asn of this DescribeDirectConnectGatewayAttributesResponse. # noqa: E501
175+
176+
177+ :return: The bgp_asn of this DescribeDirectConnectGatewayAttributesResponse. # noqa: E501
178+ :rtype: int
179+ """
180+ return self ._bgp_asn
181+
182+ @bgp_asn .setter
183+ def bgp_asn (self , bgp_asn ):
184+ """Sets the bgp_asn of this DescribeDirectConnectGatewayAttributesResponse.
185+
186+
187+ :param bgp_asn: The bgp_asn of this DescribeDirectConnectGatewayAttributesResponse. # noqa: E501
188+ :type: int
189+ """
190+
191+ self ._bgp_asn = bgp_asn
192+
167193 @property
168194 def business_status (self ):
169195 """Gets the business_status of this DescribeDirectConnectGatewayAttributesResponse. # noqa: E501
0 commit comments