@@ -2833,6 +2833,7 @@ class CAASModelOperatorFacade(Type):
28332833 'type': 'object'},
28342834 'Address': {'additionalProperties': False,
28352835 'properties': {'cidr': {'type': 'string'},
2836+ 'config-type': {'type': 'string'},
28362837 'is-secondary': {'type': 'boolean'},
28372838 'scope': {'type': 'string'},
28382839 'space-id': {'type': 'string'},
@@ -2870,6 +2871,7 @@ class CAASModelOperatorFacade(Type):
28702871 'HostPort': {'additionalProperties': False,
28712872 'properties': {'Address': {'$ref': '#/definitions/Address'},
28722873 'cidr': {'type': 'string'},
2874+ 'config-type': {'type': 'string'},
28732875 'is-secondary': {'type': 'boolean'},
28742876 'port': {'type': 'integer'},
28752877 'scope': {'type': 'string'},
@@ -3108,6 +3110,7 @@ class CAASOperatorFacade(Type):
31083110 'type': 'object'},
31093111 'Address': {'additionalProperties': False,
31103112 'properties': {'cidr': {'type': 'string'},
3113+ 'config-type': {'type': 'string'},
31113114 'is-secondary': {'type': 'boolean'},
31123115 'scope': {'type': 'string'},
31133116 'space-id': {'type': 'string'},
@@ -3208,6 +3211,7 @@ class CAASOperatorFacade(Type):
32083211 'HostPort': {'additionalProperties': False,
32093212 'properties': {'Address': {'$ref': '#/definitions/Address'},
32103213 'cidr': {'type': 'string'},
3214+ 'config-type': {'type': 'string'},
32113215 'is-secondary': {'type': 'boolean'},
32123216 'port': {'type': 'integer'},
32133217 'scope': {'type': 'string'},
@@ -3729,6 +3733,7 @@ class CAASOperatorProvisionerFacade(Type):
37293733 'type': 'object'},
37303734 'Address': {'additionalProperties': False,
37313735 'properties': {'cidr': {'type': 'string'},
3736+ 'config-type': {'type': 'string'},
37323737 'is-secondary': {'type': 'boolean'},
37333738 'scope': {'type': 'string'},
37343739 'space-id': {'type': 'string'},
@@ -3775,6 +3780,7 @@ class CAASOperatorProvisionerFacade(Type):
37753780 'HostPort': {'additionalProperties': False,
37763781 'properties': {'Address': {'$ref': '#/definitions/Address'},
37773782 'cidr': {'type': 'string'},
3783+ 'config-type': {'type': 'string'},
37783784 'is-secondary': {'type': 'boolean'},
37793785 'port': {'type': 'integer'},
37803786 'scope': {'type': 'string'},
@@ -7590,6 +7596,7 @@ class DeployerFacade(Type):
75907596 'type': 'object'},
75917597 'Address': {'additionalProperties': False,
75927598 'properties': {'cidr': {'type': 'string'},
7599+ 'config-type': {'type': 'string'},
75937600 'is-secondary': {'type': 'boolean'},
75947601 'scope': {'type': 'string'},
75957602 'space-id': {'type': 'string'},
@@ -7653,6 +7660,7 @@ class DeployerFacade(Type):
76537660 'HostPort': {'additionalProperties': False,
76547661 'properties': {'Address': {'$ref': '#/definitions/Address'},
76557662 'cidr': {'type': 'string'},
7663+ 'config-type': {'type': 'string'},
76567664 'is-secondary': {'type': 'boolean'},
76577665 'port': {'type': 'integer'},
76587666 'scope': {'type': 'string'},
@@ -14857,7 +14865,8 @@ class UndertakerFacade(Type):
1485714865 'required': ['entities'],
1485814866 'type': 'object'},
1485914867 'UndertakerModelInfo': {'additionalProperties': False,
14860- 'properties': {'force-destroyed': {'type': 'boolean'},
14868+ 'properties': {'destroy-timeout': {'type': 'integer'},
14869+ 'force-destroyed': {'type': 'boolean'},
1486114870 'global-name': {'type': 'string'},
1486214871 'is-system': {'type': 'boolean'},
1486314872 'life': {'type': 'string'},
@@ -14867,8 +14876,7 @@ class UndertakerFacade(Type):
1486714876 'name',
1486814877 'global-name',
1486914878 'is-system',
14870- 'life',
14871- 'force-destroyed'],
14879+ 'life'],
1487214880 'type': 'object'},
1487314881 'UndertakerModelInfoResult': {'additionalProperties': False,
1487414882 'properties': {'error': {'$ref': '#/definitions/Error'},
@@ -14920,7 +14928,8 @@ class UndertakerFacade(Type):
1492014928 'changes to the '
1492114929 'lifecycle of an\n'
1492214930 "model's machines and "
14923- 'services.',
14931+ 'applications and '
14932+ 'storage.',
1492414933 'properties': {'Result': {'$ref': '#/definitions/NotifyWatchResults'}},
1492514934 'type': 'object'}},
1492614935 'type': 'object'}
@@ -15064,7 +15073,7 @@ async def UpdateStatus(self, entities=None):
1506415073 async def WatchModelResources(self):
1506515074 '''
1506615075 WatchModelResources creates watchers for changes to the lifecycle of an
15067- model's machines and services .
15076+ model's machines and applications and storage .
1506815077
1506915078
1507015079 Returns -> NotifyWatchResults
@@ -15788,12 +15797,10 @@ class UpgraderFacade(Type):
1578815797 'required': ['version', 'url', 'size'],
1578915798 'type': 'object'},
1579015799 'ToolsResult': {'additionalProperties': False,
15791- 'properties': {'disable-ssl-hostname-verification': {'type': 'boolean'},
15792- 'error': {'$ref': '#/definitions/Error'},
15800+ 'properties': {'error': {'$ref': '#/definitions/Error'},
1579315801 'tools': {'items': {'$ref': '#/definitions/Tools'},
1579415802 'type': 'array'}},
15795- 'required': ['tools',
15796- 'disable-ssl-hostname-verification'],
15803+ 'required': ['tools'],
1579715804 'type': 'object'},
1579815805 'ToolsResults': {'additionalProperties': False,
1579915806 'properties': {'results': {'items': {'$ref': '#/definitions/ToolsResult'},
0 commit comments