azure-mgmt-containerinstance 10.2.0b1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. azure_mgmt_containerinstance-10.2.0b1/CHANGELOG.md +308 -0
  2. azure_mgmt_containerinstance-10.2.0b1/LICENSE +21 -0
  3. azure_mgmt_containerinstance-10.2.0b1/MANIFEST.in +8 -0
  4. azure_mgmt_containerinstance-10.2.0b1/PKG-INFO +398 -0
  5. azure_mgmt_containerinstance-10.2.0b1/README.md +61 -0
  6. azure_mgmt_containerinstance-10.2.0b1/_meta.json +11 -0
  7. azure_mgmt_containerinstance-10.2.0b1/azure/__init__.py +1 -0
  8. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/__init__.py +1 -0
  9. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/__init__.py +26 -0
  10. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/_configuration.py +65 -0
  11. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/_container_instance_management_client.py +149 -0
  12. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/_patch.py +32 -0
  13. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/_serialization.py +2000 -0
  14. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/_version.py +9 -0
  15. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/__init__.py +23 -0
  16. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/_configuration.py +65 -0
  17. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/_container_instance_management_client.py +152 -0
  18. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/_patch.py +32 -0
  19. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/operations/__init__.py +31 -0
  20. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/operations/_container_group_profile_operations.py +216 -0
  21. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/operations/_container_group_profiles_operations.py +625 -0
  22. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/operations/_container_groups_operations.py +1091 -0
  23. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/operations/_containers_operations.py +349 -0
  24. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/operations/_location_operations.py +297 -0
  25. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/operations/_operations.py +129 -0
  26. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/operations/_patch.py +20 -0
  27. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/aio/operations/_subnet_service_association_link_operations.py +170 -0
  28. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/models/__init__.py +169 -0
  29. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/models/_container_instance_management_client_enums.py +126 -0
  30. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/models/_models_py3.py +3288 -0
  31. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/models/_patch.py +20 -0
  32. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/operations/__init__.py +31 -0
  33. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/operations/_container_group_profile_operations.py +300 -0
  34. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/operations/_container_group_profiles_operations.py +842 -0
  35. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/operations/_container_groups_operations.py +1380 -0
  36. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/operations/_containers_operations.py +464 -0
  37. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/operations/_location_operations.py +378 -0
  38. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/operations/_operations.py +151 -0
  39. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/operations/_patch.py +20 -0
  40. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/operations/_subnet_service_association_link_operations.py +207 -0
  41. azure_mgmt_containerinstance-10.2.0b1/azure/mgmt/containerinstance/py.typed +1 -0
  42. azure_mgmt_containerinstance-10.2.0b1/azure_mgmt_containerinstance.egg-info/PKG-INFO +398 -0
  43. azure_mgmt_containerinstance-10.2.0b1/azure_mgmt_containerinstance.egg-info/SOURCES.txt +55 -0
  44. azure_mgmt_containerinstance-10.2.0b1/azure_mgmt_containerinstance.egg-info/dependency_links.txt +1 -0
  45. azure_mgmt_containerinstance-10.2.0b1/azure_mgmt_containerinstance.egg-info/not-zip-safe +1 -0
  46. azure_mgmt_containerinstance-10.2.0b1/azure_mgmt_containerinstance.egg-info/requires.txt +4 -0
  47. azure_mgmt_containerinstance-10.2.0b1/azure_mgmt_containerinstance.egg-info/top_level.txt +1 -0
  48. azure_mgmt_containerinstance-10.2.0b1/pyproject.toml +2 -0
  49. azure_mgmt_containerinstance-10.2.0b1/setup.cfg +4 -0
  50. azure_mgmt_containerinstance-10.2.0b1/setup.py +83 -0
  51. azure_mgmt_containerinstance-10.2.0b1/tests/conftest.py +47 -0
  52. azure_mgmt_containerinstance-10.2.0b1/tests/disable_test_cli_mgmt_containerinstance.py +304 -0
  53. azure_mgmt_containerinstance-10.2.0b1/tests/disable_test_mgmt_containerinstance.py +143 -0
  54. azure_mgmt_containerinstance-10.2.0b1/tests/test_container_instance_management_container_groups_operations_async_test.py +37 -0
  55. azure_mgmt_containerinstance-10.2.0b1/tests/test_container_instance_management_container_groups_operations_test.py +36 -0
  56. azure_mgmt_containerinstance-10.2.0b1/tests/test_container_instance_management_operations_async_test.py +28 -0
  57. azure_mgmt_containerinstance-10.2.0b1/tests/test_container_instance_management_operations_test.py +27 -0
@@ -0,0 +1,308 @@
1
+ # Release History
2
+
3
+ ## 10.2.0b1 (2024-10-21)
4
+
5
+ ### Features Added
6
+
7
+ - Client `ContainerInstanceManagementClient` added operation group `container_group_profiles`
8
+ - Client `ContainerInstanceManagementClient` added operation group `container_group_profile`
9
+ - Model `Container` added property `config_map`
10
+ - Model `ContainerGroup` added property `container_group_profile`
11
+ - Model `ContainerGroup` added property `standby_pool_profile`
12
+ - Model `ContainerGroup` added property `is_created_from_standby_pool`
13
+ - Model `ContainerGroupProperties` added property `container_group_profile`
14
+ - Model `ContainerGroupProperties` added property `standby_pool_profile`
15
+ - Model `ContainerGroupProperties` added property `is_created_from_standby_pool`
16
+ - Added model `ConfigMap`
17
+ - Added model `ContainerGroupProfile`
18
+ - Added model `ContainerGroupProfileListResult`
19
+ - Added model `ContainerGroupProfilePatch`
20
+ - Added model `ContainerGroupProfileProperties`
21
+ - Added model `ContainerGroupProfileReferenceDefinition`
22
+ - Added model `StandbyPoolProfileDefinition`
23
+ - Added model `ContainerGroupProfileOperations`
24
+ - Added model `ContainerGroupProfilesOperations`
25
+
26
+ ## 10.1.0 (2023-04-21)
27
+
28
+ ### Features Added
29
+
30
+ - Model Container has a new parameter security_context
31
+ - Model ContainerGroup has a new parameter confidential_compute_properties
32
+ - Model ContainerGroup has a new parameter extensions
33
+ - Model ContainerGroup has a new parameter priority
34
+ - Model ContainerGroupProperties has a new parameter confidential_compute_properties
35
+ - Model ContainerGroupProperties has a new parameter extensions
36
+ - Model ContainerGroupProperties has a new parameter priority
37
+ - Model EncryptionProperties has a new parameter identity
38
+ - Model InitContainerDefinition has a new parameter security_context
39
+
40
+ ## 10.1.0b2 (2023-04-20)
41
+
42
+ ### Features Added
43
+
44
+ - Model ContainerGroup has a new parameter is_custom_provisioning_timeout
45
+ - Model ContainerGroup has a new parameter provisioning_timeout_in_seconds
46
+ - Model ContainerGroupProperties has a new parameter is_custom_provisioning_timeout
47
+ - Model ContainerGroupProperties has a new parameter provisioning_timeout_in_seconds
48
+
49
+ ### Breaking Changes
50
+
51
+ - Model ContainerGroup no longer has parameter confidential_compute_properties
52
+ - Model ContainerGroup no longer has parameter priority
53
+ - Model ContainerGroupProperties no longer has parameter confidential_compute_properties
54
+ - Model ContainerGroupProperties no longer has parameter priority
55
+
56
+ ## 10.1.0b1 (2022-12-26)
57
+
58
+ ### Features Added
59
+
60
+ - Model ContainerGroup has a new parameter confidential_compute_properties
61
+ - Model ContainerGroup has a new parameter extensions
62
+ - Model ContainerGroup has a new parameter priority
63
+ - Model ContainerGroupProperties has a new parameter confidential_compute_properties
64
+ - Model ContainerGroupProperties has a new parameter extensions
65
+ - Model ContainerGroupProperties has a new parameter priority
66
+ - Model EncryptionProperties has a new parameter identity
67
+
68
+ ## 10.0.0 (2022-08-29)
69
+
70
+ ### Features Added
71
+
72
+ - Added operation group SubnetServiceAssociationLinkOperations
73
+ - Model IpAddress has a new parameter auto_generated_domain_name_label_scope
74
+ - Model Usage has a new parameter id
75
+
76
+ ### Breaking Changes
77
+
78
+ - Model IpAddress no longer has parameter dns_name_label_reuse_policy
79
+
80
+ ## 9.2.0 (2022-04-15)
81
+
82
+ **Features**
83
+
84
+ - Model IpAddress has a new parameter dns_name_label_reuse_policy
85
+
86
+ ## 9.1.0 (2021-10-13)
87
+
88
+ **Features**
89
+
90
+ - Model ContainerGroup has a new parameter zones
91
+ - Model Resource has a new parameter zones
92
+
93
+ ## 9.0.0 (2021-09-17)
94
+
95
+ **Features**
96
+
97
+ - Model ImageRegistryCredential has a new parameter identity_url
98
+ - Model ImageRegistryCredential has a new parameter identity
99
+ - Model ContainerGroup has a new parameter subnet_ids
100
+ - Added operation ContainerGroupsOperations.get_outbound_network_dependencies_endpoints
101
+
102
+ **Breaking changes**
103
+
104
+ - Model ContainerGroup no longer has parameter network_profile
105
+
106
+ ## 8.0.0 (2021-07-20)
107
+
108
+ **Features**
109
+
110
+ - Model LogAnalytics has a new parameter workspace_resource_id
111
+ - Model ContainerHttpGet has a new parameter http_headers
112
+ - Added operation ContainersOperations.attach
113
+
114
+ **Breaking changes**
115
+
116
+ - Operation ContainersOperations.list_logs has a new signature
117
+
118
+ ## 7.0.0 (2020-11-25)
119
+
120
+ - GA release
121
+
122
+ ## 7.0.0b1 (2020-10-12)
123
+
124
+ This is beta preview version.
125
+
126
+ This version uses a next-generation code generator that introduces important breaking changes, but also important new features (like unified authentication and async programming).
127
+
128
+ **General breaking changes**
129
+
130
+ - Credential system has been completly revamped:
131
+
132
+ - `azure.common.credentials` or `msrestazure.azure_active_directory` instances are no longer supported, use the `azure-identity` classes instead: https://pypi.org/project/azure-identity/
133
+ - `credentials` parameter has been renamed `credential`
134
+
135
+ - The `config` attribute no longer exists on a client, configuration should be passed as kwarg. Example: `MyClient(credential, subscription_id, enable_logging=True)`. For a complete set of
136
+ supported options, see the [parameters accept in init documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)
137
+ - You can't import a `version` module anymore, use `__version__` instead
138
+ - Operations that used to return a `msrest.polling.LROPoller` now returns a `azure.core.polling.LROPoller` and are prefixed with `begin_`.
139
+ - Exceptions tree have been simplified and most exceptions are now `azure.core.exceptions.HttpResponseError` (`CloudError` has been removed).
140
+ - Most of the operation kwarg have changed. Some of the most noticeable:
141
+
142
+ - `raw` has been removed. Equivalent feature can be found using `cls`, a callback that will give access to internal HTTP response for advanced user
143
+ - For a complete set of
144
+ supported options, see the [parameters accept in Request documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)
145
+
146
+ **General new features**
147
+
148
+ - Type annotations support using `typing`. SDKs are mypy ready.
149
+ - This client has now stable and official support for async. Check the `aio` namespace of your package to find the async client.
150
+ - This client now support natively tracing library like OpenCensus or OpenTelemetry. See this [tracing quickstart](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core-tracing-opentelemetry) for an overview.
151
+
152
+ ## 2.0.0 (2020-06-24)
153
+
154
+ **Features**
155
+
156
+ - Model ContainerGroup has a new parameter init_containers
157
+ - Model ContainerGroup has a new parameter sku
158
+ - Model ContainerGroup has a new parameter encryption_properties
159
+ - Added operation group ContainersOperations
160
+ - Added operation group LocationOperations
161
+
162
+ **Breaking changes**
163
+
164
+ - Model CachedImages no longer has parameter id
165
+ - Removed operation group ContainerGroupUsageOperations
166
+ - Removed operation group ServiceAssociationLinkOperations
167
+ - Removed operation group ContainerOperations
168
+
169
+ ## 1.5.0 (2019-05-22)
170
+
171
+ **Features**
172
+
173
+ - Add client level operations list_cached_images and
174
+ list_capabilities
175
+
176
+ ## 1.4.1 (2019-04-01)
177
+
178
+ **Bugfix**
179
+
180
+ - Fix incorrect wheel METADATA caused by setuptools 40.6.0
181
+
182
+ ## 1.4.0 (2018-11-12)
183
+
184
+ **Features**
185
+
186
+ - Add container_groups.start
187
+
188
+ ## 1.3.0 (2018-11-05)
189
+
190
+ **Features**
191
+
192
+ - Model ResourceLimits has a new parameter gpu
193
+ - Model ResourceRequests has a new parameter gpu
194
+ - Model ContainerGroup has a new parameter dns_config
195
+
196
+ ## 1.2.1 (2018-10-16)
197
+
198
+ **Bugfix**
199
+
200
+ - Fix sdist broken in 1.2.0. No code change.
201
+
202
+ ## 1.2.0 (2018-10-08)
203
+
204
+ **Features**
205
+
206
+ - Model ContainerGroup has a new parameter identity (MSI support)
207
+ - Added operation group ServiceAssociationLinkOperations
208
+
209
+ **Note**
210
+
211
+ - azure-mgmt-nspkg is not installed anymore on Python 3 (PEP420-based
212
+ namespace package)
213
+
214
+ ## 1.1.0 (2018-09-06)
215
+
216
+ **Features**
217
+
218
+ - Model LogAnalytics has a new parameter log_type
219
+ - Model LogAnalytics has a new parameter metadata
220
+ - Model ContainerGroup has a new parameter network_profile
221
+ - Added operation ContainerGroupsOperations.stop
222
+ - Added operation ContainerGroupsOperations.restart
223
+
224
+ ## 1.0.0 (2018-06-13)
225
+
226
+ **Features**
227
+
228
+ - Model Container has a new parameter liveness_probe
229
+ - Model Container has a new parameter readiness_probe
230
+ - Model ContainerGroup has a new parameter diagnostics
231
+ - Model EnvironmentVariable has a new parameter secure_value
232
+ - Client class can be used as a context manager to keep the underlying
233
+ HTTP session open for performance
234
+
235
+ **General Breaking changes**
236
+
237
+ This version uses a next-generation code generator that *might*
238
+ introduce breaking changes.
239
+
240
+ - Model signatures now use only keyword-argument syntax. All
241
+ positional arguments must be re-written as keyword-arguments. To
242
+ keep auto-completion in most cases, models are now generated for
243
+ Python 2 and Python 3. Python 3 uses the "*" syntax for
244
+ keyword-only arguments.
245
+ - Enum types now use the "str" mixin (class AzureEnum(str, Enum)) to
246
+ improve the behavior when unrecognized enum values are encountered.
247
+ While this is not a breaking change, the distinctions are important,
248
+ and are documented here:
249
+ <https://docs.python.org/3/library/enum.html#others> At a glance:
250
+ - "is" should not be used at all.
251
+ - "format" will return the string value, where "%s" string
252
+ formatting will return `NameOfEnum.stringvalue`. Format syntax
253
+ should be prefered.
254
+ - New Long Running Operation:
255
+ - Return type changes from
256
+ `msrestazure.azure_operation.AzureOperationPoller` to
257
+ `msrest.polling.LROPoller`. External API is the same.
258
+ - Return type is now **always** a `msrest.polling.LROPoller`,
259
+ regardless of the optional parameters used.
260
+ - The behavior has changed when using `raw=True`. Instead of
261
+ returning the initial call result as `ClientRawResponse`,
262
+ without polling, now this returns an LROPoller. After polling,
263
+ the final resource will be returned as a `ClientRawResponse`.
264
+ - New `polling` parameter. The default behavior is
265
+ `Polling=True` which will poll using ARM algorithm. When
266
+ `Polling=False`, the response of the initial call will be
267
+ returned without polling.
268
+ - `polling` parameter accepts instances of subclasses of
269
+ `msrest.polling.PollingMethod`.
270
+ - `add_done_callback` will no longer raise if called after
271
+ polling is finished, but will instead execute the callback right
272
+ away.
273
+
274
+ ## 0.4.0 (2018-03-19)
275
+
276
+ **Breaking changes**
277
+
278
+ - container_groups.create_or_update is now a Long Running operation
279
+
280
+ **Features**
281
+
282
+ - New start_container operation group
283
+
284
+ ## 0.3.1 (2018-02-05)
285
+
286
+ - Fix dnsnamelabel to dns_name_label
287
+
288
+ ## 0.3.0 (2018-02-01)
289
+
290
+ - Add dnsnamelabel
291
+ - Add fqdn
292
+ - Add container_group_usage operation groups
293
+ - Add git_repo and secret to volumes
294
+ - Add container_groups.update
295
+
296
+ API version is now 2018-02-01-preview
297
+
298
+ ## 0.2.0 (2017-10-20)
299
+
300
+ - Added on-failure/never container group retry policy
301
+ - Added container volumes mount support
302
+ - Added operations API
303
+ - Added container group instance view
304
+ - Renamed event class
305
+
306
+ ## 0.1.0 (2017-07-27)
307
+
308
+ - Initial preview release
@@ -0,0 +1,21 @@
1
+ Copyright (c) Microsoft Corporation.
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,8 @@
1
+ include _meta.json
2
+ recursive-include tests *.py *.json
3
+ recursive-include samples *.py *.md
4
+ include *.md
5
+ include azure/__init__.py
6
+ include azure/mgmt/__init__.py
7
+ include LICENSE
8
+ include azure/mgmt/containerinstance/py.typed