@@ -2013,6 +2013,7 @@ class ProvisionerFacade(Type):
20132013 'jobs' : {'items' : {'type' : 'string' },
20142014 'type' : 'array' },
20152015 'placement' : {'type' : 'string' },
2016+ 'root-disk' : {'$ref' : '#/definitions/VolumeParams' },
20162017 'series' : {'type' : 'string' },
20172018 'tags' : {'patternProperties' : {'.*' : {'type' : 'string' }},
20182019 'type' : 'object' },
@@ -2054,6 +2055,7 @@ class ProvisionerFacade(Type):
20542055 'jobs' : {'items' : {'type' : 'string' },
20552056 'type' : 'array' },
20562057 'placement' : {'type' : 'string' },
2058+ 'root-disk' : {'$ref' : '#/definitions/VolumeParams' },
20572059 'series' : {'type' : 'string' },
20582060 'space-subnets' : {'patternProperties' : {'.*' : {'items' : {'type' : 'string' },
20592061 'type' : 'array' }},
@@ -2498,7 +2500,6 @@ class ProvisionerFacade(Type):
24982500 'properties' : {'Result' : {'$ref' : '#/definitions/ModelConfigResult' }},
24992501 'type' : 'object' },
25002502 'ModelUUID' : {'description' : 'ModelUUID returns the model UUID '
2501- 'to connect to the model\n '
25022503 'that the current connection is '
25032504 'for.' ,
25042505 'properties' : {'Result' : {'$ref' : '#/definitions/StringResult' }},
@@ -2648,11 +2649,6 @@ class ProvisionerFacade(Type):
26482649 'properties' : {'Params' : {'$ref' : '#/definitions/MachineContainersParams' },
26492650 'Result' : {'$ref' : '#/definitions/ErrorResults' }},
26502651 'type' : 'object' },
2651- 'StateAddresses' : {'description' : 'StateAddresses returns the '
2652- 'list of addresses used to '
2653- 'connect to the state.' ,
2654- 'properties' : {'Result' : {'$ref' : '#/definitions/StringsResult' }},
2655- 'type' : 'object' },
26562652 'Status' : {'description' : 'Status returns the status of each '
26572653 'given entity.' ,
26582654 'properties' : {'Params' : {'$ref' : '#/definitions/Entities' },
@@ -3331,8 +3327,7 @@ async def ModelConfig(self):
33313327 @ReturnMapping (StringResult )
33323328 async def ModelUUID (self ):
33333329 '''
3334- ModelUUID returns the model UUID to connect to the model
3335- that the current connection is for.
3330+ ModelUUID returns the model UUID that the current connection is for.
33363331
33373332
33383333 Returns -> StringResult
@@ -3697,27 +3692,6 @@ async def SetSupportedContainers(self, params=None):
36973692
36983693
36993694
3700- @ReturnMapping (StringsResult )
3701- async def StateAddresses (self ):
3702- '''
3703- StateAddresses returns the list of addresses used to connect to the state.
3704-
3705-
3706- Returns -> StringsResult
3707- '''
3708-
3709- # map input types to rpc msg
3710- _params = dict ()
3711- msg = dict (type = 'Provisioner' ,
3712- request = 'StateAddresses' ,
3713- version = 11 ,
3714- params = _params )
3715-
3716- reply = await self .rpc (msg )
3717- return reply
3718-
3719-
3720-
37213695 @ReturnMapping (StatusResults )
37223696 async def Status (self , entities = None ):
37233697 '''
0 commit comments