@@ -35,6 +35,8 @@ class Router(resource.Resource):
3535 #: Availability zones for the router.
3636 #: *Type: list of availability zone names*
3737 availability_zones = resource .prop ('availability_zones' )
38+ #: Timestamp when the router was created.
39+ created_at = resource .prop ('created_at' )
3840 #: The router description.
3941 description = resource .prop ('description' )
4042 #: The ``network_id``, for the external gateway. *Type: dict*
@@ -52,10 +54,14 @@ class Router(resource.Resource):
5254 name = resource .prop ('name' )
5355 #: The ID of the project this router is associated with.
5456 project_id = resource .prop ('tenant_id' )
57+ #: Revision number of the router. *Type: int*
58+ revision_number = resource .prop ('revision_number' , type = int )
5559 #: The extra routes configuration for the router.
5660 routes = resource .prop ('routes' , type = list )
5761 #: The router status.
5862 status = resource .prop ('status' )
63+ #: Timestamp when the router was last updated.
64+ updated_at = resource .prop ('updated_at' )
5965
6066 def add_interface (self , session , ** body ):
6167 """Add an internal interface to a logical router.
0 commit comments