azure-mgmt-servicefabricmanagedclusters 2.0.0__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 (72) hide show
  1. azure-mgmt-servicefabricmanagedclusters-2.0.0/CHANGELOG.md +213 -0
  2. azure-mgmt-servicefabricmanagedclusters-2.0.0/LICENSE +21 -0
  3. azure-mgmt-servicefabricmanagedclusters-2.0.0/MANIFEST.in +8 -0
  4. azure-mgmt-servicefabricmanagedclusters-2.0.0/PKG-INFO +302 -0
  5. azure-mgmt-servicefabricmanagedclusters-2.0.0/README.md +61 -0
  6. azure-mgmt-servicefabricmanagedclusters-2.0.0/_meta.json +11 -0
  7. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/__init__.py +1 -0
  8. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/__init__.py +1 -0
  9. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/__init__.py +26 -0
  10. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/_configuration.py +65 -0
  11. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/_patch.py +32 -0
  12. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/_serialization.py +1998 -0
  13. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/_service_fabric_managed_clusters_management_client.py +201 -0
  14. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/_vendor.py +16 -0
  15. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/_version.py +9 -0
  16. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/__init__.py +23 -0
  17. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/_configuration.py +65 -0
  18. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/_patch.py +32 -0
  19. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/_service_fabric_managed_clusters_management_client.py +203 -0
  20. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/__init__.py +47 -0
  21. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_application_type_versions_operations.py +737 -0
  22. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_application_types_operations.py +623 -0
  23. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_applications_operations.py +1129 -0
  24. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_managed_apply_maintenance_window_operations.py +114 -0
  25. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_managed_az_resiliency_status_operations.py +118 -0
  26. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_managed_cluster_version_operations.py +311 -0
  27. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_managed_clusters_operations.py +743 -0
  28. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_managed_maintenance_window_status_operations.py +116 -0
  29. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_managed_unsupported_vm_sizes_operations.py +202 -0
  30. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_node_type_skus_operations.py +150 -0
  31. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_node_types_operations.py +1312 -0
  32. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_operation_results_operations.py +117 -0
  33. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_operation_status_operations.py +115 -0
  34. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_operations.py +137 -0
  35. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_patch.py +20 -0
  36. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/aio/operations/_services_operations.py +737 -0
  37. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/models/__init__.py +295 -0
  38. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/models/_models.py +2999 -0
  39. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/models/_models_py3.py +6194 -0
  40. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/models/_patch.py +20 -0
  41. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/models/_service_fabric_managed_clusters_management_client_enums.py +445 -0
  42. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/__init__.py +47 -0
  43. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_application_type_versions_operations.py +923 -0
  44. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_application_types_operations.py +782 -0
  45. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_applications_operations.py +1384 -0
  46. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_managed_apply_maintenance_window_operations.py +146 -0
  47. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_managed_az_resiliency_status_operations.py +148 -0
  48. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_managed_cluster_version_operations.py +436 -0
  49. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_managed_clusters_operations.py +918 -0
  50. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_managed_maintenance_window_status_operations.py +146 -0
  51. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_managed_unsupported_vm_sizes_operations.py +261 -0
  52. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_node_type_skus_operations.py +185 -0
  53. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_node_types_operations.py +1566 -0
  54. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_operation_results_operations.py +149 -0
  55. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_operation_status_operations.py +147 -0
  56. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_operations.py +159 -0
  57. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_patch.py +20 -0
  58. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/operations/_services_operations.py +923 -0
  59. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure/mgmt/servicefabricmanagedclusters/py.typed +1 -0
  60. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure_mgmt_servicefabricmanagedclusters.egg-info/PKG-INFO +302 -0
  61. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure_mgmt_servicefabricmanagedclusters.egg-info/SOURCES.txt +70 -0
  62. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure_mgmt_servicefabricmanagedclusters.egg-info/dependency_links.txt +1 -0
  63. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure_mgmt_servicefabricmanagedclusters.egg-info/not-zip-safe +1 -0
  64. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure_mgmt_servicefabricmanagedclusters.egg-info/requires.txt +3 -0
  65. azure-mgmt-servicefabricmanagedclusters-2.0.0/azure_mgmt_servicefabricmanagedclusters.egg-info/top_level.txt +1 -0
  66. azure-mgmt-servicefabricmanagedclusters-2.0.0/setup.cfg +4 -0
  67. azure-mgmt-servicefabricmanagedclusters-2.0.0/setup.py +82 -0
  68. azure-mgmt-servicefabricmanagedclusters-2.0.0/tests/conftest.py +37 -0
  69. azure-mgmt-servicefabricmanagedclusters-2.0.0/tests/test_servicefabricmanagedclusters_management_managedclusters_operations_async_test.py +40 -0
  70. azure-mgmt-servicefabricmanagedclusters-2.0.0/tests/test_servicefabricmanagedclusters_management_managedclusters_operations_test.py +40 -0
  71. azure-mgmt-servicefabricmanagedclusters-2.0.0/tests/test_servicefabricmanagedclusters_management_operations_async_test.py +29 -0
  72. azure-mgmt-servicefabricmanagedclusters-2.0.0/tests/test_servicefabricmanagedclusters_management_operations_test.py +28 -0
@@ -0,0 +1,213 @@
1
+ # Release History
2
+
3
+ ## 2.0.0 (2024-07-22)
4
+
5
+ ### Features Added
6
+
7
+ - Added operation ApplicationsOperations.begin_read_upgrade
8
+ - Added operation ApplicationsOperations.begin_resume_upgrade
9
+ - Added operation ApplicationsOperations.begin_start_rollback
10
+ - Added operation group ManagedApplyMaintenanceWindowOperations
11
+ - Added operation group ManagedAzResiliencyStatusOperations
12
+ - Added operation group ManagedMaintenanceWindowStatusOperations
13
+ - Added operation group ManagedUnsupportedVMSizesOperations
14
+ - Added operation group NodeTypeSkusOperations
15
+ - Added operation group OperationResultsOperations
16
+ - Added operation group OperationStatusOperations
17
+ - Model LoadBalancingRule has a new parameter load_distribution
18
+ - Model ManagedCluster has a new parameter auxiliary_subnets
19
+ - Model ManagedCluster has a new parameter ddos_protection_plan_id
20
+ - Model ManagedCluster has a new parameter enable_http_gateway_exclusive_auth_mode
21
+ - Model ManagedCluster has a new parameter enable_ipv6
22
+ - Model ManagedCluster has a new parameter enable_service_public_ip
23
+ - Model ManagedCluster has a new parameter http_gateway_token_auth_connection_port
24
+ - Model ManagedCluster has a new parameter ip_tags
25
+ - Model ManagedCluster has a new parameter ipv6_address
26
+ - Model ManagedCluster has a new parameter public_i_pv6_prefix_id
27
+ - Model ManagedCluster has a new parameter public_ip_prefix_id
28
+ - Model ManagedCluster has a new parameter service_endpoints
29
+ - Model ManagedCluster has a new parameter subnet_id
30
+ - Model ManagedCluster has a new parameter upgrade_description
31
+ - Model ManagedCluster has a new parameter use_custom_vnet
32
+ - Model ManagedCluster has a new parameter zonal_update_mode
33
+ - Model NetworkSecurityRule has a new parameter destination_address_prefix
34
+ - Model NetworkSecurityRule has a new parameter destination_port_range
35
+ - Model NetworkSecurityRule has a new parameter source_address_prefix
36
+ - Model NetworkSecurityRule has a new parameter source_port_range
37
+ - Model NodeType has a new parameter additional_data_disks
38
+ - Model NodeType has a new parameter additional_network_interface_configurations
39
+ - Model NodeType has a new parameter computer_name_prefix
40
+ - Model NodeType has a new parameter data_disk_letter
41
+ - Model NodeType has a new parameter dscp_configuration_id
42
+ - Model NodeType has a new parameter enable_accelerated_networking
43
+ - Model NodeType has a new parameter enable_encryption_at_host
44
+ - Model NodeType has a new parameter enable_node_public_i_pv6
45
+ - Model NodeType has a new parameter enable_node_public_ip
46
+ - Model NodeType has a new parameter enable_over_provisioning
47
+ - Model NodeType has a new parameter eviction_policy
48
+ - Model NodeType has a new parameter frontend_configurations
49
+ - Model NodeType has a new parameter host_group_id
50
+ - Model NodeType has a new parameter is_spot_vm
51
+ - Model NodeType has a new parameter nat_configurations
52
+ - Model NodeType has a new parameter nat_gateway_id
53
+ - Model NodeType has a new parameter network_security_rules
54
+ - Model NodeType has a new parameter secure_boot_enabled
55
+ - Model NodeType has a new parameter security_type
56
+ - Model NodeType has a new parameter service_artifact_reference_id
57
+ - Model NodeType has a new parameter sku
58
+ - Model NodeType has a new parameter spot_restore_timeout
59
+ - Model NodeType has a new parameter subnet_id
60
+ - Model NodeType has a new parameter use_default_public_load_balancer
61
+ - Model NodeType has a new parameter use_ephemeral_os_disk
62
+ - Model NodeType has a new parameter use_temp_data_disk
63
+ - Model NodeType has a new parameter vm_image_plan
64
+ - Model NodeType has a new parameter vm_image_resource_id
65
+ - Model NodeType has a new parameter vm_setup_actions
66
+ - Model NodeType has a new parameter vm_shared_gallery_image_id
67
+ - Model NodeType has a new parameter zones
68
+ - Model NodeTypeActionParameters has a new parameter update_type
69
+ - Model NodeTypeUpdateParameters has a new parameter sku
70
+ - Model ServiceResourceProperties has a new parameter service_dns_name
71
+ - Model StatefulServiceProperties has a new parameter service_dns_name
72
+ - Model StatelessServiceProperties has a new parameter service_dns_name
73
+ - Model VMSSExtension has a new parameter enable_automatic_upgrade
74
+ - Model VMSSExtension has a new parameter setup_order
75
+
76
+ ### Breaking Changes
77
+
78
+ - Operation ManagedClusterVersionOperations.get_by_environment has a new required parameter environment
79
+ - Operation ManagedClusterVersionOperations.list_by_environment has a new required parameter environment
80
+ - Parameter sku of model ManagedCluster is now required
81
+
82
+ ## 2.0.0b6 (2024-02-22)
83
+
84
+ ### Features Added
85
+
86
+ - Model ManagedCluster has a new parameter enable_http_gateway_exclusive_auth_mode
87
+ - Model ManagedCluster has a new parameter http_gateway_token_auth_connection_port
88
+
89
+ ## 2.0.0b5 (2024-01-18)
90
+
91
+ ### Features Added
92
+
93
+ - Added operation ApplicationsOperations.begin_read_upgrade
94
+ - Added operation ApplicationsOperations.begin_resume_upgrade
95
+ - Added operation ApplicationsOperations.begin_start_rollback
96
+ - Added operation group ManagedApplyMaintenanceWindowOperations
97
+ - Added operation group ManagedMaintenanceWindowStatusOperations
98
+ - Model ManagedCluster has a new parameter ddos_protection_plan_id
99
+ - Model ManagedCluster has a new parameter public_i_pv6_prefix_id
100
+ - Model ManagedCluster has a new parameter public_ip_prefix_id
101
+ - Model ManagedCluster has a new parameter upgrade_description
102
+ - Model NodeType has a new parameter additional_network_interface_configurations
103
+ - Model NodeType has a new parameter dscp_configuration_id
104
+ - Model NodeType has a new parameter enable_node_public_i_pv6
105
+ - Model NodeType has a new parameter nat_gateway_id
106
+ - Model NodeType has a new parameter service_artifact_reference_id
107
+ - Model NodeType has a new parameter vm_image_plan
108
+ - Model VMSSExtension has a new parameter setup_order
109
+
110
+ ## 2.0.0b4 (2023-05-20)
111
+
112
+ ### Features Added
113
+
114
+ - Model ManagedCluster has a new parameter use_custom_vnet
115
+ - Model ManagedCluster has a new parameter zonal_update_mode
116
+ - Model NodeType has a new parameter enable_node_public_ip
117
+ - Model NodeType has a new parameter secure_boot_enabled
118
+ - Model NodeType has a new parameter security_type
119
+ - Model NodeType has a new parameter subnet_id
120
+ - Model NodeType has a new parameter vm_setup_actions
121
+ - Model NodeType has a new parameter vm_shared_gallery_image_id
122
+ - Model NodeTypeActionParameters has a new parameter update_type
123
+ - Model ServiceResourceProperties has a new parameter service_dns_name
124
+ - Model StatefulServiceProperties has a new parameter service_dns_name
125
+ - Model StatelessServiceProperties has a new parameter service_dns_name
126
+
127
+ ### Breaking Changes
128
+
129
+ - Parameter sku of model ManagedCluster is now required
130
+
131
+ ## 2.0.0b3 (2022-12-27)
132
+
133
+ ### Other Changes
134
+
135
+ - Added generated samples in github repo
136
+ - Drop support for python<3.7.0
137
+
138
+ ## 2.0.0b2 (2022-09-14)
139
+
140
+ ### Features Added
141
+
142
+ - Model FrontendConfiguration has a new parameter application_gateway_backend_address_pool_id
143
+ - Model NodeType has a new parameter eviction_policy
144
+ - Model NodeType has a new parameter host_group_id
145
+ - Model NodeType has a new parameter spot_restore_timeout
146
+ - Model NodeType has a new parameter use_ephemeral_os_disk
147
+ - Model NodeType has a new parameter vm_image_resource_id
148
+
149
+ ## 2.0.0b1 (2022-06-02)
150
+
151
+ **Features**
152
+
153
+ - Added operation group ManagedAzResiliencyStatusOperations
154
+ - Added operation group ManagedUnsupportedVMSizesOperations
155
+ - Added operation group NodeTypeSkusOperations
156
+ - Added operation group OperationResultsOperations
157
+ - Added operation group OperationStatusOperations
158
+ - Model LoadBalancingRule has a new parameter load_distribution
159
+ - Model ManagedCluster has a new parameter auxiliary_subnets
160
+ - Model ManagedCluster has a new parameter enable_ipv6
161
+ - Model ManagedCluster has a new parameter enable_service_public_ip
162
+ - Model ManagedCluster has a new parameter ip_tags
163
+ - Model ManagedCluster has a new parameter ipv6_address
164
+ - Model ManagedCluster has a new parameter service_endpoints
165
+ - Model ManagedCluster has a new parameter subnet_id
166
+ - Model NetworkSecurityRule has a new parameter destination_address_prefix
167
+ - Model NetworkSecurityRule has a new parameter destination_port_range
168
+ - Model NetworkSecurityRule has a new parameter source_address_prefix
169
+ - Model NetworkSecurityRule has a new parameter source_port_range
170
+ - Model NodeType has a new parameter additional_data_disks
171
+ - Model NodeType has a new parameter data_disk_letter
172
+ - Model NodeType has a new parameter enable_accelerated_networking
173
+ - Model NodeType has a new parameter enable_encryption_at_host
174
+ - Model NodeType has a new parameter enable_over_provisioning
175
+ - Model NodeType has a new parameter frontend_configurations
176
+ - Model NodeType has a new parameter is_spot_vm
177
+ - Model NodeType has a new parameter network_security_rules
178
+ - Model NodeType has a new parameter sku
179
+ - Model NodeType has a new parameter use_default_public_load_balancer
180
+ - Model NodeType has a new parameter use_temp_data_disk
181
+ - Model NodeType has a new parameter zones
182
+ - Model NodeTypeUpdateParameters has a new parameter sku
183
+ - Model VMSSExtension has a new parameter enable_automatic_upgrade
184
+
185
+ **Breaking changes**
186
+
187
+ - Operation ManagedClusterVersionOperations.get_by_environment has a new parameter environment
188
+ - Operation ManagedClusterVersionOperations.list_by_environment has a new parameter environment
189
+
190
+ ## 1.0.0 (2021-04-27)
191
+
192
+ **Features**
193
+
194
+ - Model ManagedCluster has a new parameter zonal_resiliency
195
+ - Model ManagedCluster has a new parameter cluster_upgrade_mode
196
+ - Model NodeType has a new parameter data_disk_type
197
+ - Model NodeType has a new parameter multiple_placement_groups
198
+ - Model NodeType has a new parameter is_stateless
199
+ - Model LoadBalancingRule has a new parameter probe_port
200
+ - Added operation group ManagedClusterVersionOperations
201
+
202
+ **Breaking changes**
203
+
204
+ - Model StatelessServiceProperties no longer has parameter service_dns_name
205
+ - Model StatelessServiceProperties no longer has parameter instance_close_delay_duration
206
+ - Model ServiceResourceProperties no longer has parameter service_dns_name
207
+ - Model AverageServiceLoadScalingTrigger has a new required parameter use_only_primary_load
208
+ - Model StatefulServiceProperties no longer has parameter service_dns_name
209
+ - Model StatefulServiceProperties no longer has parameter drop_source_replica_on_move
210
+
211
+ ## 1.0.0b1 (2021-02-26)
212
+
213
+ * Initial 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/servicefabricmanagedclusters/py.typed
@@ -0,0 +1,302 @@
1
+ Metadata-Version: 2.1
2
+ Name: azure-mgmt-servicefabricmanagedclusters
3
+ Version: 2.0.0
4
+ Summary: Microsoft Azure Service Fabric Managed Clusters Management Client Library for Python
5
+ Home-page: https://github.com/Azure/azure-sdk-for-python
6
+ Author: Microsoft Corporation
7
+ Author-email: azpysdkhelp@microsoft.com
8
+ License: MIT License
9
+ Keywords: azure,azure sdk
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: License :: OSI Approved :: MIT License
20
+ Requires-Python: >=3.8
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: isodate>=0.6.1
24
+ Requires-Dist: azure-common>=1.1
25
+ Requires-Dist: azure-mgmt-core>=1.3.2
26
+
27
+ # Microsoft Azure SDK for Python
28
+
29
+ This is the Microsoft Azure Service Fabric Managed Clusters Management Client Library.
30
+ This package has been tested with Python 3.8+.
31
+ For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
32
+
33
+ ## _Disclaimer_
34
+
35
+ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_
36
+
37
+ ## Getting started
38
+
39
+ ### Prerequisites
40
+
41
+ - Python 3.8+ is required to use this package.
42
+ - [Azure subscription](https://azure.microsoft.com/free/)
43
+
44
+ ### Install the package
45
+
46
+ ```bash
47
+ pip install azure-mgmt-servicefabricmanagedclusters
48
+ pip install azure-identity
49
+ ```
50
+
51
+ ### Authentication
52
+
53
+ By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.
54
+
55
+ - `AZURE_CLIENT_ID` for Azure client ID.
56
+ - `AZURE_TENANT_ID` for Azure tenant ID.
57
+ - `AZURE_CLIENT_SECRET` for Azure client secret.
58
+
59
+ In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.
60
+
61
+ With above configuration, client can be authenticated by following code:
62
+
63
+ ```python
64
+ from azure.identity import DefaultAzureCredential
65
+ from azure.mgmt.servicefabricmanagedclusters import ServiceFabricManagedClustersManagementClient
66
+ import os
67
+
68
+ sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
69
+ client = ServiceFabricManagedClustersManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
70
+ ```
71
+
72
+ ## Examples
73
+
74
+ Code samples for this package can be found at:
75
+ - [Search Service Fabric Managed Clusters Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com
76
+ - [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)
77
+
78
+
79
+ ## Troubleshooting
80
+
81
+ ## Next steps
82
+
83
+ ## Provide Feedback
84
+
85
+ If you encounter any bugs or have suggestions, please file an issue in the
86
+ [Issues](https://github.com/Azure/azure-sdk-for-python/issues)
87
+ section of the project.
88
+
89
+
90
+ # Release History
91
+
92
+ ## 2.0.0 (2024-07-22)
93
+
94
+ ### Features Added
95
+
96
+ - Added operation ApplicationsOperations.begin_read_upgrade
97
+ - Added operation ApplicationsOperations.begin_resume_upgrade
98
+ - Added operation ApplicationsOperations.begin_start_rollback
99
+ - Added operation group ManagedApplyMaintenanceWindowOperations
100
+ - Added operation group ManagedAzResiliencyStatusOperations
101
+ - Added operation group ManagedMaintenanceWindowStatusOperations
102
+ - Added operation group ManagedUnsupportedVMSizesOperations
103
+ - Added operation group NodeTypeSkusOperations
104
+ - Added operation group OperationResultsOperations
105
+ - Added operation group OperationStatusOperations
106
+ - Model LoadBalancingRule has a new parameter load_distribution
107
+ - Model ManagedCluster has a new parameter auxiliary_subnets
108
+ - Model ManagedCluster has a new parameter ddos_protection_plan_id
109
+ - Model ManagedCluster has a new parameter enable_http_gateway_exclusive_auth_mode
110
+ - Model ManagedCluster has a new parameter enable_ipv6
111
+ - Model ManagedCluster has a new parameter enable_service_public_ip
112
+ - Model ManagedCluster has a new parameter http_gateway_token_auth_connection_port
113
+ - Model ManagedCluster has a new parameter ip_tags
114
+ - Model ManagedCluster has a new parameter ipv6_address
115
+ - Model ManagedCluster has a new parameter public_i_pv6_prefix_id
116
+ - Model ManagedCluster has a new parameter public_ip_prefix_id
117
+ - Model ManagedCluster has a new parameter service_endpoints
118
+ - Model ManagedCluster has a new parameter subnet_id
119
+ - Model ManagedCluster has a new parameter upgrade_description
120
+ - Model ManagedCluster has a new parameter use_custom_vnet
121
+ - Model ManagedCluster has a new parameter zonal_update_mode
122
+ - Model NetworkSecurityRule has a new parameter destination_address_prefix
123
+ - Model NetworkSecurityRule has a new parameter destination_port_range
124
+ - Model NetworkSecurityRule has a new parameter source_address_prefix
125
+ - Model NetworkSecurityRule has a new parameter source_port_range
126
+ - Model NodeType has a new parameter additional_data_disks
127
+ - Model NodeType has a new parameter additional_network_interface_configurations
128
+ - Model NodeType has a new parameter computer_name_prefix
129
+ - Model NodeType has a new parameter data_disk_letter
130
+ - Model NodeType has a new parameter dscp_configuration_id
131
+ - Model NodeType has a new parameter enable_accelerated_networking
132
+ - Model NodeType has a new parameter enable_encryption_at_host
133
+ - Model NodeType has a new parameter enable_node_public_i_pv6
134
+ - Model NodeType has a new parameter enable_node_public_ip
135
+ - Model NodeType has a new parameter enable_over_provisioning
136
+ - Model NodeType has a new parameter eviction_policy
137
+ - Model NodeType has a new parameter frontend_configurations
138
+ - Model NodeType has a new parameter host_group_id
139
+ - Model NodeType has a new parameter is_spot_vm
140
+ - Model NodeType has a new parameter nat_configurations
141
+ - Model NodeType has a new parameter nat_gateway_id
142
+ - Model NodeType has a new parameter network_security_rules
143
+ - Model NodeType has a new parameter secure_boot_enabled
144
+ - Model NodeType has a new parameter security_type
145
+ - Model NodeType has a new parameter service_artifact_reference_id
146
+ - Model NodeType has a new parameter sku
147
+ - Model NodeType has a new parameter spot_restore_timeout
148
+ - Model NodeType has a new parameter subnet_id
149
+ - Model NodeType has a new parameter use_default_public_load_balancer
150
+ - Model NodeType has a new parameter use_ephemeral_os_disk
151
+ - Model NodeType has a new parameter use_temp_data_disk
152
+ - Model NodeType has a new parameter vm_image_plan
153
+ - Model NodeType has a new parameter vm_image_resource_id
154
+ - Model NodeType has a new parameter vm_setup_actions
155
+ - Model NodeType has a new parameter vm_shared_gallery_image_id
156
+ - Model NodeType has a new parameter zones
157
+ - Model NodeTypeActionParameters has a new parameter update_type
158
+ - Model NodeTypeUpdateParameters has a new parameter sku
159
+ - Model ServiceResourceProperties has a new parameter service_dns_name
160
+ - Model StatefulServiceProperties has a new parameter service_dns_name
161
+ - Model StatelessServiceProperties has a new parameter service_dns_name
162
+ - Model VMSSExtension has a new parameter enable_automatic_upgrade
163
+ - Model VMSSExtension has a new parameter setup_order
164
+
165
+ ### Breaking Changes
166
+
167
+ - Operation ManagedClusterVersionOperations.get_by_environment has a new required parameter environment
168
+ - Operation ManagedClusterVersionOperations.list_by_environment has a new required parameter environment
169
+ - Parameter sku of model ManagedCluster is now required
170
+
171
+ ## 2.0.0b6 (2024-02-22)
172
+
173
+ ### Features Added
174
+
175
+ - Model ManagedCluster has a new parameter enable_http_gateway_exclusive_auth_mode
176
+ - Model ManagedCluster has a new parameter http_gateway_token_auth_connection_port
177
+
178
+ ## 2.0.0b5 (2024-01-18)
179
+
180
+ ### Features Added
181
+
182
+ - Added operation ApplicationsOperations.begin_read_upgrade
183
+ - Added operation ApplicationsOperations.begin_resume_upgrade
184
+ - Added operation ApplicationsOperations.begin_start_rollback
185
+ - Added operation group ManagedApplyMaintenanceWindowOperations
186
+ - Added operation group ManagedMaintenanceWindowStatusOperations
187
+ - Model ManagedCluster has a new parameter ddos_protection_plan_id
188
+ - Model ManagedCluster has a new parameter public_i_pv6_prefix_id
189
+ - Model ManagedCluster has a new parameter public_ip_prefix_id
190
+ - Model ManagedCluster has a new parameter upgrade_description
191
+ - Model NodeType has a new parameter additional_network_interface_configurations
192
+ - Model NodeType has a new parameter dscp_configuration_id
193
+ - Model NodeType has a new parameter enable_node_public_i_pv6
194
+ - Model NodeType has a new parameter nat_gateway_id
195
+ - Model NodeType has a new parameter service_artifact_reference_id
196
+ - Model NodeType has a new parameter vm_image_plan
197
+ - Model VMSSExtension has a new parameter setup_order
198
+
199
+ ## 2.0.0b4 (2023-05-20)
200
+
201
+ ### Features Added
202
+
203
+ - Model ManagedCluster has a new parameter use_custom_vnet
204
+ - Model ManagedCluster has a new parameter zonal_update_mode
205
+ - Model NodeType has a new parameter enable_node_public_ip
206
+ - Model NodeType has a new parameter secure_boot_enabled
207
+ - Model NodeType has a new parameter security_type
208
+ - Model NodeType has a new parameter subnet_id
209
+ - Model NodeType has a new parameter vm_setup_actions
210
+ - Model NodeType has a new parameter vm_shared_gallery_image_id
211
+ - Model NodeTypeActionParameters has a new parameter update_type
212
+ - Model ServiceResourceProperties has a new parameter service_dns_name
213
+ - Model StatefulServiceProperties has a new parameter service_dns_name
214
+ - Model StatelessServiceProperties has a new parameter service_dns_name
215
+
216
+ ### Breaking Changes
217
+
218
+ - Parameter sku of model ManagedCluster is now required
219
+
220
+ ## 2.0.0b3 (2022-12-27)
221
+
222
+ ### Other Changes
223
+
224
+ - Added generated samples in github repo
225
+ - Drop support for python<3.7.0
226
+
227
+ ## 2.0.0b2 (2022-09-14)
228
+
229
+ ### Features Added
230
+
231
+ - Model FrontendConfiguration has a new parameter application_gateway_backend_address_pool_id
232
+ - Model NodeType has a new parameter eviction_policy
233
+ - Model NodeType has a new parameter host_group_id
234
+ - Model NodeType has a new parameter spot_restore_timeout
235
+ - Model NodeType has a new parameter use_ephemeral_os_disk
236
+ - Model NodeType has a new parameter vm_image_resource_id
237
+
238
+ ## 2.0.0b1 (2022-06-02)
239
+
240
+ **Features**
241
+
242
+ - Added operation group ManagedAzResiliencyStatusOperations
243
+ - Added operation group ManagedUnsupportedVMSizesOperations
244
+ - Added operation group NodeTypeSkusOperations
245
+ - Added operation group OperationResultsOperations
246
+ - Added operation group OperationStatusOperations
247
+ - Model LoadBalancingRule has a new parameter load_distribution
248
+ - Model ManagedCluster has a new parameter auxiliary_subnets
249
+ - Model ManagedCluster has a new parameter enable_ipv6
250
+ - Model ManagedCluster has a new parameter enable_service_public_ip
251
+ - Model ManagedCluster has a new parameter ip_tags
252
+ - Model ManagedCluster has a new parameter ipv6_address
253
+ - Model ManagedCluster has a new parameter service_endpoints
254
+ - Model ManagedCluster has a new parameter subnet_id
255
+ - Model NetworkSecurityRule has a new parameter destination_address_prefix
256
+ - Model NetworkSecurityRule has a new parameter destination_port_range
257
+ - Model NetworkSecurityRule has a new parameter source_address_prefix
258
+ - Model NetworkSecurityRule has a new parameter source_port_range
259
+ - Model NodeType has a new parameter additional_data_disks
260
+ - Model NodeType has a new parameter data_disk_letter
261
+ - Model NodeType has a new parameter enable_accelerated_networking
262
+ - Model NodeType has a new parameter enable_encryption_at_host
263
+ - Model NodeType has a new parameter enable_over_provisioning
264
+ - Model NodeType has a new parameter frontend_configurations
265
+ - Model NodeType has a new parameter is_spot_vm
266
+ - Model NodeType has a new parameter network_security_rules
267
+ - Model NodeType has a new parameter sku
268
+ - Model NodeType has a new parameter use_default_public_load_balancer
269
+ - Model NodeType has a new parameter use_temp_data_disk
270
+ - Model NodeType has a new parameter zones
271
+ - Model NodeTypeUpdateParameters has a new parameter sku
272
+ - Model VMSSExtension has a new parameter enable_automatic_upgrade
273
+
274
+ **Breaking changes**
275
+
276
+ - Operation ManagedClusterVersionOperations.get_by_environment has a new parameter environment
277
+ - Operation ManagedClusterVersionOperations.list_by_environment has a new parameter environment
278
+
279
+ ## 1.0.0 (2021-04-27)
280
+
281
+ **Features**
282
+
283
+ - Model ManagedCluster has a new parameter zonal_resiliency
284
+ - Model ManagedCluster has a new parameter cluster_upgrade_mode
285
+ - Model NodeType has a new parameter data_disk_type
286
+ - Model NodeType has a new parameter multiple_placement_groups
287
+ - Model NodeType has a new parameter is_stateless
288
+ - Model LoadBalancingRule has a new parameter probe_port
289
+ - Added operation group ManagedClusterVersionOperations
290
+
291
+ **Breaking changes**
292
+
293
+ - Model StatelessServiceProperties no longer has parameter service_dns_name
294
+ - Model StatelessServiceProperties no longer has parameter instance_close_delay_duration
295
+ - Model ServiceResourceProperties no longer has parameter service_dns_name
296
+ - Model AverageServiceLoadScalingTrigger has a new required parameter use_only_primary_load
297
+ - Model StatefulServiceProperties no longer has parameter service_dns_name
298
+ - Model StatefulServiceProperties no longer has parameter drop_source_replica_on_move
299
+
300
+ ## 1.0.0b1 (2021-02-26)
301
+
302
+ * Initial Release
@@ -0,0 +1,61 @@
1
+ # Microsoft Azure SDK for Python
2
+
3
+ This is the Microsoft Azure Service Fabric Managed Clusters Management Client Library.
4
+ This package has been tested with Python 3.8+.
5
+ For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
6
+
7
+ ## _Disclaimer_
8
+
9
+ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_
10
+
11
+ ## Getting started
12
+
13
+ ### Prerequisites
14
+
15
+ - Python 3.8+ is required to use this package.
16
+ - [Azure subscription](https://azure.microsoft.com/free/)
17
+
18
+ ### Install the package
19
+
20
+ ```bash
21
+ pip install azure-mgmt-servicefabricmanagedclusters
22
+ pip install azure-identity
23
+ ```
24
+
25
+ ### Authentication
26
+
27
+ By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.
28
+
29
+ - `AZURE_CLIENT_ID` for Azure client ID.
30
+ - `AZURE_TENANT_ID` for Azure tenant ID.
31
+ - `AZURE_CLIENT_SECRET` for Azure client secret.
32
+
33
+ In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.
34
+
35
+ With above configuration, client can be authenticated by following code:
36
+
37
+ ```python
38
+ from azure.identity import DefaultAzureCredential
39
+ from azure.mgmt.servicefabricmanagedclusters import ServiceFabricManagedClustersManagementClient
40
+ import os
41
+
42
+ sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
43
+ client = ServiceFabricManagedClustersManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
44
+ ```
45
+
46
+ ## Examples
47
+
48
+ Code samples for this package can be found at:
49
+ - [Search Service Fabric Managed Clusters Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com
50
+ - [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)
51
+
52
+
53
+ ## Troubleshooting
54
+
55
+ ## Next steps
56
+
57
+ ## Provide Feedback
58
+
59
+ If you encounter any bugs or have suggestions, please file an issue in the
60
+ [Issues](https://github.com/Azure/azure-sdk-for-python/issues)
61
+ section of the project.
@@ -0,0 +1,11 @@
1
+ {
2
+ "commit": "d1296700aa6cd650970e9891dd58eef5698327fd",
3
+ "repository_url": "https://github.com/Azure/azure-rest-api-specs",
4
+ "autorest": "3.10.2",
5
+ "use": [
6
+ "@autorest/python@6.13.19",
7
+ "@autorest/modelerfour@4.27.0"
8
+ ],
9
+ "autorest_command": "autorest specification/servicefabricmanagedclusters/resource-manager/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.13.19 --use=@autorest/modelerfour@4.27.0 --version=3.10.2 --version-tolerant=False",
10
+ "readme": "specification/servicefabricmanagedclusters/resource-manager/readme.md"
11
+ }
@@ -0,0 +1 @@
1
+ __path__ = __import__("pkgutil").extend_path(__path__, __name__)
@@ -0,0 +1 @@
1
+ __path__ = __import__("pkgutil").extend_path(__path__, __name__)
@@ -0,0 +1,26 @@
1
+ # coding=utf-8
2
+ # --------------------------------------------------------------------------
3
+ # Copyright (c) Microsoft Corporation. All rights reserved.
4
+ # Licensed under the MIT License. See License.txt in the project root for license information.
5
+ # Code generated by Microsoft (R) AutoRest Code Generator.
6
+ # Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ # --------------------------------------------------------------------------
8
+
9
+ from ._service_fabric_managed_clusters_management_client import ServiceFabricManagedClustersManagementClient
10
+ from ._version import VERSION
11
+
12
+ __version__ = VERSION
13
+
14
+ try:
15
+ from ._patch import __all__ as _patch_all
16
+ from ._patch import * # pylint: disable=unused-wildcard-import
17
+ except ImportError:
18
+ _patch_all = []
19
+ from ._patch import patch_sdk as _patch_sdk
20
+
21
+ __all__ = [
22
+ "ServiceFabricManagedClustersManagementClient",
23
+ ]
24
+ __all__.extend([p for p in _patch_all if p not in __all__])
25
+
26
+ _patch_sdk()