-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 2988a6ef3f5b633295691d3c0bacdd5cce3fb651
updating basic information to point at correct tag
- Loading branch information
1 parent
92f2ee7
commit 6a82803
Showing
35 changed files
with
579 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
azure-mgmt-containerinstance/azure/mgmt/containerinstance/models/container_exec.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ContainerExec(Model): | ||
"""The container execution command, for liveness or readiness probe. | ||
:param command: The commands to execute within the container. | ||
:type command: list[str] | ||
""" | ||
|
||
_attribute_map = { | ||
'command': {'key': 'command', 'type': '[str]'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(ContainerExec, self).__init__(**kwargs) | ||
self.command = kwargs.get('command', None) |
28 changes: 28 additions & 0 deletions
28
azure-mgmt-containerinstance/azure/mgmt/containerinstance/models/container_exec_py3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ContainerExec(Model): | ||
"""The container execution command, for liveness or readiness probe. | ||
:param command: The commands to execute within the container. | ||
:type command: list[str] | ||
""" | ||
|
||
_attribute_map = { | ||
'command': {'key': 'command', 'type': '[str]'}, | ||
} | ||
|
||
def __init__(self, *, command=None, **kwargs) -> None: | ||
super(ContainerExec, self).__init__(**kwargs) | ||
self.command = command |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
...mgmt-containerinstance/azure/mgmt/containerinstance/models/container_group_diagnostics.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ContainerGroupDiagnostics(Model): | ||
"""Container group diagnostic information. | ||
:param log_analytics: Container group log analytics information. | ||
:type log_analytics: ~azure.mgmt.containerinstance.models.LogAnalytics | ||
""" | ||
|
||
_attribute_map = { | ||
'log_analytics': {'key': 'logAnalytics', 'type': 'LogAnalytics'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(ContainerGroupDiagnostics, self).__init__(**kwargs) | ||
self.log_analytics = kwargs.get('log_analytics', None) |
28 changes: 28 additions & 0 deletions
28
...-containerinstance/azure/mgmt/containerinstance/models/container_group_diagnostics_py3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ContainerGroupDiagnostics(Model): | ||
"""Container group diagnostic information. | ||
:param log_analytics: Container group log analytics information. | ||
:type log_analytics: ~azure.mgmt.containerinstance.models.LogAnalytics | ||
""" | ||
|
||
_attribute_map = { | ||
'log_analytics': {'key': 'logAnalytics', 'type': 'LogAnalytics'}, | ||
} | ||
|
||
def __init__(self, *, log_analytics=None, **kwargs) -> None: | ||
super(ContainerGroupDiagnostics, self).__init__(**kwargs) | ||
self.log_analytics = log_analytics |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
azure-mgmt-containerinstance/azure/mgmt/containerinstance/models/container_http_get.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ContainerHttpGet(Model): | ||
"""The container Http Get settings, for liveness or readiness probe. | ||
All required parameters must be populated in order to send to Azure. | ||
:param path: The path to probe. | ||
:type path: str | ||
:param port: Required. The port number to probe. | ||
:type port: int | ||
:param scheme: The scheme. Possible values include: 'http', 'https' | ||
:type scheme: str or ~azure.mgmt.containerinstance.models.enum | ||
""" | ||
|
||
_validation = { | ||
'port': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'path': {'key': 'path', 'type': 'str'}, | ||
'port': {'key': 'port', 'type': 'int'}, | ||
'scheme': {'key': 'scheme', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(ContainerHttpGet, self).__init__(**kwargs) | ||
self.path = kwargs.get('path', None) | ||
self.port = kwargs.get('port', None) | ||
self.scheme = kwargs.get('scheme', None) |
Oops, something went wrong.