@@ -996,7 +996,7 @@ async def Get(self, application=None, branch=None):
996996 '''
997997 application : str
998998 branch : str
999- Returns -> typing.Union[str, typing.Mapping[str, typing.Any], _ForwardRef ('Value')]
999+ Returns -> typing.Union[str, typing.Mapping[str, typing.Any], ForwardRef ('Value')]
10001000 '''
10011001 if application is not None and not isinstance (application , (bytes , str )):
10021002 raise Exception ("Expected application to be a str, received: {}" .format (type (application )))
@@ -1022,7 +1022,7 @@ async def GetCharmURL(self, application=None, branch=None):
10221022 '''
10231023 application : str
10241024 branch : str
1025- Returns -> typing.Union[_ForwardRef ('Error'), str]
1025+ Returns -> typing.Union[ForwardRef ('Error'), str]
10261026 '''
10271027 if application is not None and not isinstance (application , (bytes , str )):
10281028 raise Exception ("Expected application to be a str, received: {}" .format (type (application )))
@@ -1876,6 +1876,7 @@ class ProvisionerFacade(Type):
18761876 'mac-address' : {'type' : 'string' },
18771877 'mtu' : {'type' : 'integer' },
18781878 'no-auto-start' : {'type' : 'boolean' },
1879+ 'origin' : {'type' : 'string' },
18791880 'parent-interface-name' : {'type' : 'string' },
18801881 'provider-address-id' : {'type' : 'string' },
18811882 'provider-id' : {'type' : 'string' },
@@ -2357,7 +2358,7 @@ class ProvisionerFacade(Type):
23572358 async def APIAddresses (self ):
23582359 '''
23592360
2360- Returns -> typing.Union[_ForwardRef ('Error'), typing.Sequence[str]]
2361+ Returns -> typing.Union[ForwardRef ('Error'), typing.Sequence[str]]
23612362 '''
23622363
23632364 # map input types to rpc msg
@@ -2456,7 +2457,7 @@ async def Constraints(self, entities=None):
24562457 async def ContainerConfig (self ):
24572458 '''
24582459
2459- Returns -> typing.Union[_ForwardRef ('UpdateBehavior'), str, _ForwardRef ('Settings'), typing.Mapping[str, typing.Any], bool]
2460+ Returns -> typing.Union[ForwardRef ('UpdateBehavior'), str, ForwardRef ('Settings'), typing.Mapping[str, typing.Any], bool]
24602461 '''
24612462
24622463 # map input types to rpc msg
@@ -2604,7 +2605,7 @@ async def FindTools(self, agentstream=None, arch=None, major=None, minor=None, n
26042605 minor : int
26052606 number : Number
26062607 series : str
2607- Returns -> typing.Union[_ForwardRef ('Error'), typing.Sequence[~Tools]]
2608+ Returns -> typing.Union[ForwardRef ('Error'), typing.Sequence[~Tools]]
26082609 '''
26092610 if agentstream is not None and not isinstance (agentstream , (bytes , str )):
26102611 raise Exception ("Expected agentstream to be a str, received: {}" .format (type (agentstream )))
@@ -2851,7 +2852,7 @@ async def ModelConfig(self):
28512852 async def ModelUUID (self ):
28522853 '''
28532854
2854- Returns -> typing.Union[_ForwardRef ('Error'), str]
2855+ Returns -> typing.Union[ForwardRef ('Error'), str]
28552856 '''
28562857
28572858 # map input types to rpc msg
@@ -3195,7 +3196,7 @@ async def SetSupportedContainers(self, params=None):
31953196 async def StateAddresses (self ):
31963197 '''
31973198
3198- Returns -> typing.Union[_ForwardRef ('Error'), typing.Sequence[str]]
3199+ Returns -> typing.Union[ForwardRef ('Error'), typing.Sequence[str]]
31993200 '''
32003201
32013202 # map input types to rpc msg
@@ -3298,7 +3299,7 @@ async def UpdateStatus(self, entities=None):
32983299 async def WatchAPIHostPorts (self ):
32993300 '''
33003301
3301- Returns -> typing.Union[str, _ForwardRef ('Error')]
3302+ Returns -> typing.Union[str, ForwardRef ('Error')]
33023303 '''
33033304
33043305 # map input types to rpc msg
@@ -3359,7 +3360,7 @@ async def WatchContainers(self, params=None):
33593360 async def WatchForModelConfigChanges (self ):
33603361 '''
33613362
3362- Returns -> typing.Union[str, _ForwardRef ('Error')]
3363+ Returns -> typing.Union[str, ForwardRef ('Error')]
33633364 '''
33643365
33653366 # map input types to rpc msg
@@ -3378,7 +3379,7 @@ async def WatchForModelConfigChanges(self):
33783379 async def WatchMachineErrorRetry (self ):
33793380 '''
33803381
3381- Returns -> typing.Union[str, _ForwardRef ('Error')]
3382+ Returns -> typing.Union[str, ForwardRef ('Error')]
33823383 '''
33833384
33843385 # map input types to rpc msg
@@ -3397,7 +3398,7 @@ async def WatchMachineErrorRetry(self):
33973398 async def WatchModelMachineStartTimes (self ):
33983399 '''
33993400
3400- Returns -> typing.Union[typing.Sequence[str], _ForwardRef ('Error'), str]
3401+ Returns -> typing.Union[typing.Sequence[str], ForwardRef ('Error'), str]
34013402 '''
34023403
34033404 # map input types to rpc msg
@@ -3416,7 +3417,7 @@ async def WatchModelMachineStartTimes(self):
34163417 async def WatchModelMachines (self ):
34173418 '''
34183419
3419- Returns -> typing.Union[typing.Sequence[str], _ForwardRef ('Error'), str]
3420+ Returns -> typing.Union[typing.Sequence[str], ForwardRef ('Error'), str]
34203421 '''
34213422
34223423 # map input types to rpc msg
0 commit comments