Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 16 additions & 9 deletions juju/client/_client1.py
Original file line number Diff line number Diff line change
Expand Up @@ -2833,6 +2833,7 @@ class CAASModelOperatorFacade(Type):
'type': 'object'},
'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down Expand Up @@ -2870,6 +2871,7 @@ class CAASModelOperatorFacade(Type):
'HostPort': {'additionalProperties': False,
'properties': {'Address': {'$ref': '#/definitions/Address'},
'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'port': {'type': 'integer'},
'scope': {'type': 'string'},
Expand Down Expand Up @@ -3108,6 +3110,7 @@ class CAASOperatorFacade(Type):
'type': 'object'},
'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down Expand Up @@ -3208,6 +3211,7 @@ class CAASOperatorFacade(Type):
'HostPort': {'additionalProperties': False,
'properties': {'Address': {'$ref': '#/definitions/Address'},
'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'port': {'type': 'integer'},
'scope': {'type': 'string'},
Expand Down Expand Up @@ -3729,6 +3733,7 @@ class CAASOperatorProvisionerFacade(Type):
'type': 'object'},
'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down Expand Up @@ -3775,6 +3780,7 @@ class CAASOperatorProvisionerFacade(Type):
'HostPort': {'additionalProperties': False,
'properties': {'Address': {'$ref': '#/definitions/Address'},
'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'port': {'type': 'integer'},
'scope': {'type': 'string'},
Expand Down Expand Up @@ -7590,6 +7596,7 @@ class DeployerFacade(Type):
'type': 'object'},
'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down Expand Up @@ -7653,6 +7660,7 @@ class DeployerFacade(Type):
'HostPort': {'additionalProperties': False,
'properties': {'Address': {'$ref': '#/definitions/Address'},
'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'port': {'type': 'integer'},
'scope': {'type': 'string'},
Expand Down Expand Up @@ -14857,7 +14865,8 @@ class UndertakerFacade(Type):
'required': ['entities'],
'type': 'object'},
'UndertakerModelInfo': {'additionalProperties': False,
'properties': {'force-destroyed': {'type': 'boolean'},
'properties': {'destroy-timeout': {'type': 'integer'},
'force-destroyed': {'type': 'boolean'},
'global-name': {'type': 'string'},
'is-system': {'type': 'boolean'},
'life': {'type': 'string'},
Expand All @@ -14867,8 +14876,7 @@ class UndertakerFacade(Type):
'name',
'global-name',
'is-system',
'life',
'force-destroyed'],
'life'],
'type': 'object'},
'UndertakerModelInfoResult': {'additionalProperties': False,
'properties': {'error': {'$ref': '#/definitions/Error'},
Expand Down Expand Up @@ -14920,7 +14928,8 @@ class UndertakerFacade(Type):
'changes to the '
'lifecycle of an\n'
"model's machines and "
'services.',
'applications and '
'storage.',
'properties': {'Result': {'$ref': '#/definitions/NotifyWatchResults'}},
'type': 'object'}},
'type': 'object'}
Expand Down Expand Up @@ -15064,7 +15073,7 @@ async def UpdateStatus(self, entities=None):
async def WatchModelResources(self):
'''
WatchModelResources creates watchers for changes to the lifecycle of an
model's machines and services.
model's machines and applications and storage.


Returns -> NotifyWatchResults
Expand Down Expand Up @@ -15788,12 +15797,10 @@ class UpgraderFacade(Type):
'required': ['version', 'url', 'size'],
'type': 'object'},
'ToolsResult': {'additionalProperties': False,
'properties': {'disable-ssl-hostname-verification': {'type': 'boolean'},
'error': {'$ref': '#/definitions/Error'},
'properties': {'error': {'$ref': '#/definitions/Error'},
'tools': {'items': {'$ref': '#/definitions/Tools'},
'type': 'array'}},
'required': ['tools',
'disable-ssl-hostname-verification'],
'required': ['tools'],
'type': 'object'},
'ToolsResults': {'additionalProperties': False,
'properties': {'results': {'items': {'$ref': '#/definitions/ToolsResult'},
Expand Down
8 changes: 4 additions & 4 deletions juju/client/_client11.py
Original file line number Diff line number Diff line change
Expand Up @@ -1564,6 +1564,7 @@ class ProvisionerFacade(Type):
'type': 'object'},
'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down Expand Up @@ -1834,6 +1835,7 @@ class ProvisionerFacade(Type):
'HostPort': {'additionalProperties': False,
'properties': {'Address': {'$ref': '#/definitions/Address'},
'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'port': {'type': 'integer'},
'scope': {'type': 'string'},
Expand Down Expand Up @@ -2191,12 +2193,10 @@ class ProvisionerFacade(Type):
'required': ['version', 'url', 'size'],
'type': 'object'},
'ToolsResult': {'additionalProperties': False,
'properties': {'disable-ssl-hostname-verification': {'type': 'boolean'},
'error': {'$ref': '#/definitions/Error'},
'properties': {'error': {'$ref': '#/definitions/Error'},
'tools': {'items': {'$ref': '#/definitions/Tools'},
'type': 'array'}},
'required': ['tools',
'disable-ssl-hostname-verification'],
'required': ['tools'],
'type': 'object'},
'ToolsResults': {'additionalProperties': False,
'properties': {'results': {'items': {'$ref': '#/definitions/ToolsResult'},
Expand Down
2 changes: 2 additions & 0 deletions juju/client/_client17.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ class UniterFacade(Type):
'type': 'object'},
'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down Expand Up @@ -307,6 +308,7 @@ class UniterFacade(Type):
'HostPort': {'additionalProperties': False,
'properties': {'Address': {'$ref': '#/definitions/Address'},
'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'port': {'type': 'integer'},
'scope': {'type': 'string'},
Expand Down
1 change: 1 addition & 0 deletions juju/client/_client2.py
Original file line number Diff line number Diff line change
Expand Up @@ -3020,6 +3020,7 @@ class CAASUnitProvisionerFacade(Type):
version = 2
schema = {'definitions': {'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down
4 changes: 4 additions & 0 deletions juju/client/_client3.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ class AdminFacade(Type):
version = 3
schema = {'definitions': {'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down Expand Up @@ -486,6 +487,7 @@ class AdminFacade(Type):
'HostPort': {'additionalProperties': False,
'properties': {'Address': {'$ref': '#/definitions/Address'},
'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'port': {'type': 'integer'},
'scope': {'type': 'string'},
Expand Down Expand Up @@ -2656,6 +2658,7 @@ class ClientFacade(Type):
'type': 'object'},
'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down Expand Up @@ -2949,6 +2952,7 @@ class ClientFacade(Type):
'HostPort': {'additionalProperties': False,
'properties': {'Address': {'$ref': '#/definitions/Address'},
'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'port': {'type': 'integer'},
'scope': {'type': 'string'},
Expand Down
4 changes: 3 additions & 1 deletion juju/client/_client4.py
Original file line number Diff line number Diff line change
Expand Up @@ -1502,7 +1502,8 @@ class CharmsFacade(Type):
'Macaroon': {'additionalProperties': False, 'type': 'object'},
'ResolveCharmWithChannel': {'additionalProperties': False,
'properties': {'charm-origin': {'$ref': '#/definitions/CharmOrigin'},
'reference': {'type': 'string'}},
'reference': {'type': 'string'},
'switch-charm': {'type': 'boolean'}},
'required': ['reference',
'charm-origin'],
'type': 'object'},
Expand Down Expand Up @@ -1887,6 +1888,7 @@ class InstancePollerFacade(Type):
version = 4
schema = {'definitions': {'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down
2 changes: 2 additions & 0 deletions juju/client/_client5.py
Original file line number Diff line number Diff line change
Expand Up @@ -4408,6 +4408,7 @@ class MachinerFacade(Type):
'type': 'object'},
'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down Expand Up @@ -4456,6 +4457,7 @@ class MachinerFacade(Type):
'HostPort': {'additionalProperties': False,
'properties': {'Address': {'$ref': '#/definitions/Address'},
'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'port': {'type': 'integer'},
'scope': {'type': 'string'},
Expand Down
2 changes: 2 additions & 0 deletions juju/client/_client6.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ class ActionFacade(Type):
'enqueued': {'format': 'date-time',
'type': 'string'},
'error': {'$ref': '#/definitions/Error'},
'fail': {'type': 'string'},
'operation': {'type': 'string'},
'started': {'format': 'date-time',
'type': 'string'},
Expand Down Expand Up @@ -2708,6 +2709,7 @@ class MachineManagerFacade(Type):
'type': 'object'},
'Address': {'additionalProperties': False,
'properties': {'cidr': {'type': 'string'},
'config-type': {'type': 'string'},
'is-secondary': {'type': 'boolean'},
'scope': {'type': 'string'},
'space-id': {'type': 'string'},
Expand Down
3 changes: 2 additions & 1 deletion juju/client/_client9.py
Original file line number Diff line number Diff line change
Expand Up @@ -2560,7 +2560,8 @@ class ModelManagerFacade(Type):
'properties': {'destroy-storage': {'type': 'boolean'},
'force': {'type': 'boolean'},
'max-wait': {'type': 'integer'},
'model-tag': {'type': 'string'}},
'model-tag': {'type': 'string'},
'timeout': {'type': 'integer'}},
'required': ['model-tag'],
'type': 'object'},
'DestroyModelsParams': {'additionalProperties': False,
Expand Down
Loading