pulumi-azure-native 3.3.0a1745626403__py3-none-any.whl → 3.3.0a1745856299__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +11 -0
- pulumi_azure_native/containerservice/__init__.py +3 -0
- pulumi_azure_native/containerservice/_enums.py +53 -0
- pulumi_azure_native/containerservice/_inputs.py +298 -0
- pulumi_azure_native/containerservice/agent_pool.py +3 -3
- pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
- pulumi_azure_native/containerservice/get_load_balancer.py +2 -2
- pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_namespace.py +209 -0
- pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/containerservice/get_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_namespace_credential.py +97 -0
- pulumi_azure_native/containerservice/load_balancer.py +3 -3
- pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
- pulumi_azure_native/containerservice/namespace.py +303 -0
- pulumi_azure_native/containerservice/outputs.py +243 -0
- pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
- pulumi_azure_native/containerservice/snapshot.py +3 -3
- pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
- pulumi_azure_native/cosmosdb/__init__.py +20 -0
- pulumi_azure_native/cosmosdb/_enums.py +26 -0
- pulumi_azure_native/cosmosdb/_inputs.py +98 -0
- pulumi_azure_native/cosmosdb/cassandra_cluster.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_data_center.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_keyspace.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_role_assignment.py +301 -0
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_role_definition.py +332 -0
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_table.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_view.py +3 -3
- pulumi_azure_native/cosmosdb/database_account.py +3 -3
- pulumi_azure_native/cosmosdb/database_account_cassandra_keyspace.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_cassandra_table.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_gremlin_database.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_gremlin_graph.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_mongo_db_collection.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_mongo_db_database.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_sql_container.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_sql_database.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_table.py +1 -1
- pulumi_azure_native/cosmosdb/fleet.py +251 -0
- pulumi_azure_native/cosmosdb/fleet_analytic.py +273 -0
- pulumi_azure_native/cosmosdb/fleetspace.py +274 -0
- pulumi_azure_native/cosmosdb/fleetspace_account.py +293 -0
- pulumi_azure_native/cosmosdb/get_cassandra_cluster.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_data_center.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_keyspace.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_role_assignment.py +209 -0
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_role_definition.py +195 -0
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_table.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_view.py +2 -2
- pulumi_azure_native/cosmosdb/get_database_account.py +2 -2
- pulumi_azure_native/cosmosdb/get_fleet.py +189 -0
- pulumi_azure_native/cosmosdb/get_fleet_analytic.py +195 -0
- pulumi_azure_native/cosmosdb/get_fleetspace.py +195 -0
- pulumi_azure_native/cosmosdb/get_fleetspace_account.py +201 -0
- pulumi_azure_native/cosmosdb/get_graph_resource_graph.py +2 -2
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_database.py +2 -2
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_graph.py +2 -2
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_role_assignment.py +209 -0
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_role_definition.py +195 -0
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_db_collection.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_db_database.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_role_definition.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_user_definition.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_mi_resource_mongo_mi_role_assignment.py +209 -0
- pulumi_azure_native/cosmosdb/get_mongo_mi_resource_mongo_mi_role_definition.py +195 -0
- pulumi_azure_native/cosmosdb/get_notebook_workspace.py +2 -2
- pulumi_azure_native/cosmosdb/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/cosmosdb/get_service.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_container.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_database.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_role_assignment.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_role_definition.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_stored_procedure.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_trigger.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_user_defined_function.py +2 -2
- pulumi_azure_native/cosmosdb/get_table_resource_table.py +2 -2
- pulumi_azure_native/cosmosdb/get_table_resource_table_role_assignment.py +4 -0
- pulumi_azure_native/cosmosdb/get_table_resource_table_role_definition.py +4 -0
- pulumi_azure_native/cosmosdb/get_throughput_pool.py +2 -2
- pulumi_azure_native/cosmosdb/get_throughput_pool_account.py +2 -2
- pulumi_azure_native/cosmosdb/graph_resource_graph.py +3 -3
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_database.py +3 -3
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_graph.py +3 -3
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_role_assignment.py +301 -0
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_role_definition.py +332 -0
- pulumi_azure_native/cosmosdb/list_database_account_connection_strings.py +2 -2
- pulumi_azure_native/cosmosdb/list_database_account_keys.py +2 -2
- pulumi_azure_native/cosmosdb/list_notebook_workspace_connection_info.py +2 -2
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_db_collection.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_db_database.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_role_definition.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_user_definition.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_mi_resource_mongo_mi_role_assignment.py +301 -0
- pulumi_azure_native/cosmosdb/mongo_mi_resource_mongo_mi_role_definition.py +332 -0
- pulumi_azure_native/cosmosdb/notebook_workspace.py +3 -3
- pulumi_azure_native/cosmosdb/outputs.py +83 -0
- pulumi_azure_native/cosmosdb/private_endpoint_connection.py +3 -3
- pulumi_azure_native/cosmosdb/service.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_container.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_database.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_role_assignment.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_role_definition.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_stored_procedure.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_trigger.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_user_defined_function.py +3 -3
- pulumi_azure_native/cosmosdb/table_resource_table.py +3 -3
- pulumi_azure_native/cosmosdb/table_resource_table_role_assignment.py +5 -1
- pulumi_azure_native/cosmosdb/table_resource_table_role_definition.py +5 -1
- pulumi_azure_native/cosmosdb/throughput_pool.py +3 -3
- pulumi_azure_native/cosmosdb/throughput_pool_account.py +3 -3
- pulumi_azure_native/datafactory/_enums.py +8 -0
- pulumi_azure_native/datafactory/_inputs.py +322 -21
- pulumi_azure_native/datafactory/outputs.py +222 -15
- pulumi_azure_native/devcenter/__init__.py +2 -0
- pulumi_azure_native/devcenter/attached_network_by_dev_center.py +3 -3
- pulumi_azure_native/devcenter/catalog.py +3 -3
- pulumi_azure_native/devcenter/dev_box_definition.py +3 -3
- pulumi_azure_native/devcenter/dev_center.py +3 -3
- pulumi_azure_native/devcenter/encryption_set.py +3 -3
- pulumi_azure_native/devcenter/environment_type.py +3 -3
- pulumi_azure_native/devcenter/gallery.py +3 -3
- pulumi_azure_native/devcenter/get_attached_network_by_dev_center.py +2 -2
- pulumi_azure_native/devcenter/get_catalog.py +2 -2
- pulumi_azure_native/devcenter/get_catalog_sync_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_customization_task_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_dev_box_definition.py +2 -2
- pulumi_azure_native/devcenter/get_dev_center.py +2 -2
- pulumi_azure_native/devcenter/get_dev_center_catalog_image_definition_build_details.py +235 -0
- pulumi_azure_native/devcenter/get_dev_center_catalog_image_definition_error_details.py +103 -0
- pulumi_azure_native/devcenter/get_encryption_set.py +2 -2
- pulumi_azure_native/devcenter/get_environment_definition_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_environment_type.py +2 -2
- pulumi_azure_native/devcenter/get_gallery.py +2 -2
- pulumi_azure_native/devcenter/get_network_connection.py +2 -2
- pulumi_azure_native/devcenter/get_pool.py +2 -2
- pulumi_azure_native/devcenter/get_project.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_environment_definition_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_image_definition_build_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_image_definition_error_details.py +4 -0
- pulumi_azure_native/devcenter/get_project_catalog_sync_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_environment_type.py +2 -2
- pulumi_azure_native/devcenter/get_project_inherited_settings.py +2 -2
- pulumi_azure_native/devcenter/get_project_policy.py +2 -2
- pulumi_azure_native/devcenter/get_schedule.py +2 -2
- pulumi_azure_native/devcenter/list_skus_by_project.py +2 -2
- pulumi_azure_native/devcenter/network_connection.py +3 -3
- pulumi_azure_native/devcenter/pool.py +3 -3
- pulumi_azure_native/devcenter/project.py +3 -3
- pulumi_azure_native/devcenter/project_catalog.py +3 -3
- pulumi_azure_native/devcenter/project_environment_type.py +3 -3
- pulumi_azure_native/devcenter/project_policy.py +3 -3
- pulumi_azure_native/devcenter/schedule.py +3 -3
- pulumi_azure_native/frontdoor/get_policy.py +2 -2
- pulumi_azure_native/frontdoor/policy.py +3 -3
- pulumi_azure_native/hybridcompute/gateway.py +3 -3
- pulumi_azure_native/hybridcompute/get_gateway.py +2 -2
- pulumi_azure_native/hybridcompute/get_license.py +2 -2
- pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_run_command.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
- pulumi_azure_native/hybridcompute/license.py +3 -3
- pulumi_azure_native/hybridcompute/license_profile.py +3 -3
- pulumi_azure_native/hybridcompute/machine.py +3 -3
- pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
- pulumi_azure_native/hybridcompute/machine_run_command.py +3 -3
- pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
- pulumi_azure_native/networkcloud/agent_pool.py +2 -2
- pulumi_azure_native/networkcloud/bare_metal_machine.py +2 -2
- pulumi_azure_native/networkcloud/bare_metal_machine_key_set.py +2 -2
- pulumi_azure_native/networkcloud/bmc_key_set.py +2 -2
- pulumi_azure_native/networkcloud/cloud_services_network.py +2 -2
- pulumi_azure_native/networkcloud/cluster.py +2 -2
- pulumi_azure_native/networkcloud/cluster_manager.py +2 -2
- pulumi_azure_native/networkcloud/console.py +2 -2
- pulumi_azure_native/networkcloud/get_agent_pool.py +2 -2
- pulumi_azure_native/networkcloud/get_bare_metal_machine.py +2 -2
- pulumi_azure_native/networkcloud/get_bare_metal_machine_key_set.py +2 -2
- pulumi_azure_native/networkcloud/get_bmc_key_set.py +2 -2
- pulumi_azure_native/networkcloud/get_cloud_services_network.py +2 -2
- pulumi_azure_native/networkcloud/get_cluster.py +2 -2
- pulumi_azure_native/networkcloud/get_cluster_manager.py +2 -2
- pulumi_azure_native/networkcloud/get_console.py +2 -2
- pulumi_azure_native/networkcloud/get_kubernetes_cluster.py +2 -2
- pulumi_azure_native/networkcloud/get_kubernetes_cluster_feature.py +2 -2
- pulumi_azure_native/networkcloud/get_l2_network.py +2 -2
- pulumi_azure_native/networkcloud/get_l3_network.py +2 -2
- pulumi_azure_native/networkcloud/get_metrics_configuration.py +2 -2
- pulumi_azure_native/networkcloud/get_rack.py +2 -2
- pulumi_azure_native/networkcloud/get_storage_appliance.py +2 -2
- pulumi_azure_native/networkcloud/get_trunked_network.py +2 -2
- pulumi_azure_native/networkcloud/get_virtual_machine.py +2 -2
- pulumi_azure_native/networkcloud/get_volume.py +2 -2
- pulumi_azure_native/networkcloud/kubernetes_cluster.py +2 -2
- pulumi_azure_native/networkcloud/kubernetes_cluster_feature.py +2 -2
- pulumi_azure_native/networkcloud/l2_network.py +2 -2
- pulumi_azure_native/networkcloud/l3_network.py +2 -2
- pulumi_azure_native/networkcloud/metrics_configuration.py +2 -2
- pulumi_azure_native/networkcloud/rack.py +2 -2
- pulumi_azure_native/networkcloud/storage_appliance.py +2 -2
- pulumi_azure_native/networkcloud/trunked_network.py +2 -2
- pulumi_azure_native/networkcloud/virtual_machine.py +2 -2
- pulumi_azure_native/networkcloud/volume.py +2 -2
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/recoveryservices/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/recoveryservices/get_protected_item.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_container.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_intent.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_policy.py +2 -2
- pulumi_azure_native/recoveryservices/get_resource_guard_proxy.py +2 -2
- pulumi_azure_native/recoveryservices/private_endpoint_connection.py +3 -3
- pulumi_azure_native/recoveryservices/protected_item.py +3 -3
- pulumi_azure_native/recoveryservices/protection_container.py +3 -3
- pulumi_azure_native/recoveryservices/protection_intent.py +3 -3
- pulumi_azure_native/recoveryservices/protection_policy.py +3 -3
- pulumi_azure_native/recoveryservices/resource_guard_proxy.py +3 -3
- pulumi_azure_native/resourcehealth/list_security_advisory_impacted_resource_by_subscription_id_and_event_id.py +2 -2
- pulumi_azure_native/resourcehealth/list_security_advisory_impacted_resource_by_tenant_id_and_event_id.py +2 -2
- pulumi_azure_native/resources/deployment.py +3 -3
- pulumi_azure_native/resources/deployment_at_management_group_scope.py +3 -3
- pulumi_azure_native/resources/deployment_at_scope.py +3 -3
- pulumi_azure_native/resources/deployment_at_subscription_scope.py +3 -3
- pulumi_azure_native/resources/deployment_at_tenant_scope.py +3 -3
- pulumi_azure_native/resources/get_deployment.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_management_group_scope.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_scope.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_subscription_scope.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_tenant_scope.py +2 -2
- pulumi_azure_native/resources/get_resource.py +2 -2
- pulumi_azure_native/resources/get_resource_group.py +2 -2
- pulumi_azure_native/resources/get_tag_at_scope.py +2 -2
- pulumi_azure_native/resources/resource.py +3 -3
- pulumi_azure_native/resources/resource_group.py +3 -3
- pulumi_azure_native/resources/tag_at_scope.py +3 -3
- pulumi_azure_native/search/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/search/get_service.py +2 -2
- pulumi_azure_native/search/get_shared_private_link_resource.py +2 -2
- pulumi_azure_native/search/list_admin_key.py +2 -2
- pulumi_azure_native/search/list_query_key_by_search_service.py +2 -2
- pulumi_azure_native/search/private_endpoint_connection.py +3 -3
- pulumi_azure_native/search/service.py +3 -3
- pulumi_azure_native/search/shared_private_link_resource.py +3 -3
- pulumi_azure_native/weightsandbiases/get_instance.py +4 -0
- pulumi_azure_native/weightsandbiases/instance.py +5 -1
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/RECORD +261 -236
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/top_level.txt +0 -0
pulumi_azure_native/__init__.py
CHANGED
|
@@ -1753,6 +1753,7 @@ _utilities.register(
|
|
|
1753
1753
|
"azure-native:containerservice:MaintenanceConfiguration": "MaintenanceConfiguration",
|
|
1754
1754
|
"azure-native:containerservice:ManagedCluster": "ManagedCluster",
|
|
1755
1755
|
"azure-native:containerservice:ManagedClusterSnapshot": "ManagedClusterSnapshot",
|
|
1756
|
+
"azure-native:containerservice:Namespace": "Namespace",
|
|
1756
1757
|
"azure-native:containerservice:PrivateEndpointConnection": "PrivateEndpointConnection",
|
|
1757
1758
|
"azure-native:containerservice:Snapshot": "Snapshot",
|
|
1758
1759
|
"azure-native:containerservice:TrustedAccessRoleBinding": "TrustedAccessRoleBinding",
|
|
@@ -1785,6 +1786,8 @@ _utilities.register(
|
|
|
1785
1786
|
"azure-native:cosmosdb:CassandraCluster": "CassandraCluster",
|
|
1786
1787
|
"azure-native:cosmosdb:CassandraDataCenter": "CassandraDataCenter",
|
|
1787
1788
|
"azure-native:cosmosdb:CassandraResourceCassandraKeyspace": "CassandraResourceCassandraKeyspace",
|
|
1789
|
+
"azure-native:cosmosdb:CassandraResourceCassandraRoleAssignment": "CassandraResourceCassandraRoleAssignment",
|
|
1790
|
+
"azure-native:cosmosdb:CassandraResourceCassandraRoleDefinition": "CassandraResourceCassandraRoleDefinition",
|
|
1788
1791
|
"azure-native:cosmosdb:CassandraResourceCassandraTable": "CassandraResourceCassandraTable",
|
|
1789
1792
|
"azure-native:cosmosdb:CassandraResourceCassandraView": "CassandraResourceCassandraView",
|
|
1790
1793
|
"azure-native:cosmosdb:DatabaseAccount": "DatabaseAccount",
|
|
@@ -1797,15 +1800,23 @@ _utilities.register(
|
|
|
1797
1800
|
"azure-native:cosmosdb:DatabaseAccountSqlContainer": "DatabaseAccountSqlContainer",
|
|
1798
1801
|
"azure-native:cosmosdb:DatabaseAccountSqlDatabase": "DatabaseAccountSqlDatabase",
|
|
1799
1802
|
"azure-native:cosmosdb:DatabaseAccountTable": "DatabaseAccountTable",
|
|
1803
|
+
"azure-native:cosmosdb:Fleet": "Fleet",
|
|
1804
|
+
"azure-native:cosmosdb:FleetAnalytic": "FleetAnalytic",
|
|
1805
|
+
"azure-native:cosmosdb:Fleetspace": "Fleetspace",
|
|
1806
|
+
"azure-native:cosmosdb:FleetspaceAccount": "FleetspaceAccount",
|
|
1800
1807
|
"azure-native:cosmosdb:GraphResourceGraph": "GraphResourceGraph",
|
|
1801
1808
|
"azure-native:cosmosdb:GremlinResourceGremlinDatabase": "GremlinResourceGremlinDatabase",
|
|
1802
1809
|
"azure-native:cosmosdb:GremlinResourceGremlinGraph": "GremlinResourceGremlinGraph",
|
|
1810
|
+
"azure-native:cosmosdb:GremlinResourceGremlinRoleAssignment": "GremlinResourceGremlinRoleAssignment",
|
|
1811
|
+
"azure-native:cosmosdb:GremlinResourceGremlinRoleDefinition": "GremlinResourceGremlinRoleDefinition",
|
|
1803
1812
|
"azure-native:cosmosdb:MongoCluster": "MongoCluster",
|
|
1804
1813
|
"azure-native:cosmosdb:MongoClusterFirewallRule": "MongoClusterFirewallRule",
|
|
1805
1814
|
"azure-native:cosmosdb:MongoDBResourceMongoDBCollection": "MongoDBResourceMongoDBCollection",
|
|
1806
1815
|
"azure-native:cosmosdb:MongoDBResourceMongoDBDatabase": "MongoDBResourceMongoDBDatabase",
|
|
1807
1816
|
"azure-native:cosmosdb:MongoDBResourceMongoRoleDefinition": "MongoDBResourceMongoRoleDefinition",
|
|
1808
1817
|
"azure-native:cosmosdb:MongoDBResourceMongoUserDefinition": "MongoDBResourceMongoUserDefinition",
|
|
1818
|
+
"azure-native:cosmosdb:MongoMIResourceMongoMIRoleAssignment": "MongoMIResourceMongoMIRoleAssignment",
|
|
1819
|
+
"azure-native:cosmosdb:MongoMIResourceMongoMIRoleDefinition": "MongoMIResourceMongoMIRoleDefinition",
|
|
1809
1820
|
"azure-native:cosmosdb:NotebookWorkspace": "NotebookWorkspace",
|
|
1810
1821
|
"azure-native:cosmosdb:PrivateEndpointConnection": "PrivateEndpointConnection",
|
|
1811
1822
|
"azure-native:cosmosdb:Service": "Service",
|
|
@@ -20,6 +20,7 @@ from .get_load_balancer import *
|
|
|
20
20
|
from .get_maintenance_configuration import *
|
|
21
21
|
from .get_managed_cluster import *
|
|
22
22
|
from .get_managed_cluster_snapshot import *
|
|
23
|
+
from .get_namespace import *
|
|
23
24
|
from .get_private_endpoint_connection import *
|
|
24
25
|
from .get_snapshot import *
|
|
25
26
|
from .get_trusted_access_role_binding import *
|
|
@@ -29,10 +30,12 @@ from .list_managed_cluster_access_profile import *
|
|
|
29
30
|
from .list_managed_cluster_admin_credentials import *
|
|
30
31
|
from .list_managed_cluster_monitoring_user_credentials import *
|
|
31
32
|
from .list_managed_cluster_user_credentials import *
|
|
33
|
+
from .list_namespace_credential import *
|
|
32
34
|
from .load_balancer import *
|
|
33
35
|
from .maintenance_configuration import *
|
|
34
36
|
from .managed_cluster import *
|
|
35
37
|
from .managed_cluster_snapshot import *
|
|
38
|
+
from .namespace import *
|
|
36
39
|
from .private_endpoint_connection import *
|
|
37
40
|
from .snapshot import *
|
|
38
41
|
from .trusted_access_role_binding import *
|
|
@@ -5,12 +5,14 @@
|
|
|
5
5
|
from enum import Enum
|
|
6
6
|
|
|
7
7
|
__all__ = [
|
|
8
|
+
'AdoptionPolicy',
|
|
8
9
|
'AgentPoolMode',
|
|
9
10
|
'AgentPoolType',
|
|
10
11
|
'AutoUpgradeNodeImageSelectionType',
|
|
11
12
|
'BackendPoolType',
|
|
12
13
|
'Code',
|
|
13
14
|
'ConnectionStatus',
|
|
15
|
+
'DeletePolicy',
|
|
14
16
|
'Expander',
|
|
15
17
|
'ExtendedLocationTypes',
|
|
16
18
|
'GPUInstanceProfile',
|
|
@@ -37,6 +39,7 @@ __all__ = [
|
|
|
37
39
|
'OSType',
|
|
38
40
|
'Operator',
|
|
39
41
|
'OutboundType',
|
|
42
|
+
'PolicyRule',
|
|
40
43
|
'Protocol',
|
|
41
44
|
'PublicNetworkAccess',
|
|
42
45
|
'ResourceIdentityType',
|
|
@@ -53,6 +56,24 @@ __all__ = [
|
|
|
53
56
|
]
|
|
54
57
|
|
|
55
58
|
|
|
59
|
+
class AdoptionPolicy(str, Enum):
|
|
60
|
+
"""
|
|
61
|
+
Action if Kubernetes namespace with same name already exists.
|
|
62
|
+
"""
|
|
63
|
+
NEVER = "Never"
|
|
64
|
+
"""
|
|
65
|
+
If the namespace already exists in Kubernetes, attempts to create that same namespace in ARM will fail.
|
|
66
|
+
"""
|
|
67
|
+
IF_IDENTICAL = "IfIdentical"
|
|
68
|
+
"""
|
|
69
|
+
Take over the existing namespace to be managed by ARM, if there is no difference.
|
|
70
|
+
"""
|
|
71
|
+
ALWAYS = "Always"
|
|
72
|
+
"""
|
|
73
|
+
Always take over the existing namespace to be managed by ARM, some fields might be overwritten.
|
|
74
|
+
"""
|
|
75
|
+
|
|
76
|
+
|
|
56
77
|
class AgentPoolMode(str, Enum):
|
|
57
78
|
"""
|
|
58
79
|
A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools
|
|
@@ -133,6 +154,20 @@ class ConnectionStatus(str, Enum):
|
|
|
133
154
|
DISCONNECTED = "Disconnected"
|
|
134
155
|
|
|
135
156
|
|
|
157
|
+
class DeletePolicy(str, Enum):
|
|
158
|
+
"""
|
|
159
|
+
Delete options of a namespace.
|
|
160
|
+
"""
|
|
161
|
+
KEEP = "Keep"
|
|
162
|
+
"""
|
|
163
|
+
Only delete the ARM resource, keep the Kubernetes namespace. Also delete the ManagedByARM label.
|
|
164
|
+
"""
|
|
165
|
+
DELETE = "Delete"
|
|
166
|
+
"""
|
|
167
|
+
Delete both the ARM resource and the Kubernetes namespace together.
|
|
168
|
+
"""
|
|
169
|
+
|
|
170
|
+
|
|
136
171
|
class Expander(str, Enum):
|
|
137
172
|
"""
|
|
138
173
|
If not specified, the default is 'random'. See [expanders](https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders) for more information.
|
|
@@ -531,6 +566,24 @@ class OutboundType(str, Enum):
|
|
|
531
566
|
"""
|
|
532
567
|
|
|
533
568
|
|
|
569
|
+
class PolicyRule(str, Enum):
|
|
570
|
+
"""
|
|
571
|
+
Ingress policy for the network.
|
|
572
|
+
"""
|
|
573
|
+
DENY_ALL = "DenyAll"
|
|
574
|
+
"""
|
|
575
|
+
Deny all network traffic.
|
|
576
|
+
"""
|
|
577
|
+
ALLOW_ALL = "AllowAll"
|
|
578
|
+
"""
|
|
579
|
+
Allow all network traffic.
|
|
580
|
+
"""
|
|
581
|
+
ALLOW_SAME_NAMESPACE = "AllowSameNamespace"
|
|
582
|
+
"""
|
|
583
|
+
Allow traffic within the same namespace.
|
|
584
|
+
"""
|
|
585
|
+
|
|
586
|
+
|
|
534
587
|
class Protocol(str, Enum):
|
|
535
588
|
"""
|
|
536
589
|
The network protocol of the port.
|
|
@@ -176,6 +176,10 @@ __all__ = [
|
|
|
176
176
|
'ManagedClusterWorkloadAutoScalerProfileArgsDict',
|
|
177
177
|
'ManagedServiceIdentityArgs',
|
|
178
178
|
'ManagedServiceIdentityArgsDict',
|
|
179
|
+
'NamespacePropertiesArgs',
|
|
180
|
+
'NamespacePropertiesArgsDict',
|
|
181
|
+
'NetworkPoliciesArgs',
|
|
182
|
+
'NetworkPoliciesArgsDict',
|
|
179
183
|
'NodeImageSelectionArgs',
|
|
180
184
|
'NodeImageSelectionArgsDict',
|
|
181
185
|
'PortRangeArgs',
|
|
@@ -190,6 +194,8 @@ __all__ = [
|
|
|
190
194
|
'PrivateLinkServiceConnectionStateArgsDict',
|
|
191
195
|
'RelativeMonthlyScheduleArgs',
|
|
192
196
|
'RelativeMonthlyScheduleArgsDict',
|
|
197
|
+
'ResourceQuotaArgs',
|
|
198
|
+
'ResourceQuotaArgsDict',
|
|
193
199
|
'ResourceReferenceArgs',
|
|
194
200
|
'ResourceReferenceArgsDict',
|
|
195
201
|
'ScheduleArgs',
|
|
@@ -6796,6 +6802,202 @@ class ManagedServiceIdentityArgs:
|
|
|
6796
6802
|
pulumi.set(self, "user_assigned_identities", value)
|
|
6797
6803
|
|
|
6798
6804
|
|
|
6805
|
+
if not MYPY:
|
|
6806
|
+
class NamespacePropertiesArgsDict(TypedDict):
|
|
6807
|
+
"""
|
|
6808
|
+
Properties of a namespace managed by ARM
|
|
6809
|
+
"""
|
|
6810
|
+
adoption_policy: NotRequired[pulumi.Input[Union[str, 'AdoptionPolicy']]]
|
|
6811
|
+
"""
|
|
6812
|
+
Action if Kubernetes namespace with same name already exists.
|
|
6813
|
+
"""
|
|
6814
|
+
annotations: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
|
6815
|
+
"""
|
|
6816
|
+
The annotations of managed namespace.
|
|
6817
|
+
"""
|
|
6818
|
+
default_network_policy: NotRequired[pulumi.Input['NetworkPoliciesArgsDict']]
|
|
6819
|
+
"""
|
|
6820
|
+
The default network policy enforced upon the namespace. Customers can have other Kubernetes network policy objects under the namespace. All the network policies will be enforced.
|
|
6821
|
+
"""
|
|
6822
|
+
default_resource_quota: NotRequired[pulumi.Input['ResourceQuotaArgsDict']]
|
|
6823
|
+
"""
|
|
6824
|
+
The default resource quota enforced upon the namespace. Customers can have other Kubernetes resource quota objects under the namespace. All the resource quotas will be enforced.
|
|
6825
|
+
"""
|
|
6826
|
+
delete_policy: NotRequired[pulumi.Input[Union[str, 'DeletePolicy']]]
|
|
6827
|
+
"""
|
|
6828
|
+
Delete options of a namespace.
|
|
6829
|
+
"""
|
|
6830
|
+
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
|
6831
|
+
"""
|
|
6832
|
+
The labels of managed namespace.
|
|
6833
|
+
"""
|
|
6834
|
+
elif False:
|
|
6835
|
+
NamespacePropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
6836
|
+
|
|
6837
|
+
@pulumi.input_type
|
|
6838
|
+
class NamespacePropertiesArgs:
|
|
6839
|
+
def __init__(__self__, *,
|
|
6840
|
+
adoption_policy: Optional[pulumi.Input[Union[str, 'AdoptionPolicy']]] = None,
|
|
6841
|
+
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
6842
|
+
default_network_policy: Optional[pulumi.Input['NetworkPoliciesArgs']] = None,
|
|
6843
|
+
default_resource_quota: Optional[pulumi.Input['ResourceQuotaArgs']] = None,
|
|
6844
|
+
delete_policy: Optional[pulumi.Input[Union[str, 'DeletePolicy']]] = None,
|
|
6845
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
6846
|
+
"""
|
|
6847
|
+
Properties of a namespace managed by ARM
|
|
6848
|
+
:param pulumi.Input[Union[str, 'AdoptionPolicy']] adoption_policy: Action if Kubernetes namespace with same name already exists.
|
|
6849
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: The annotations of managed namespace.
|
|
6850
|
+
:param pulumi.Input['NetworkPoliciesArgs'] default_network_policy: The default network policy enforced upon the namespace. Customers can have other Kubernetes network policy objects under the namespace. All the network policies will be enforced.
|
|
6851
|
+
:param pulumi.Input['ResourceQuotaArgs'] default_resource_quota: The default resource quota enforced upon the namespace. Customers can have other Kubernetes resource quota objects under the namespace. All the resource quotas will be enforced.
|
|
6852
|
+
:param pulumi.Input[Union[str, 'DeletePolicy']] delete_policy: Delete options of a namespace.
|
|
6853
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels of managed namespace.
|
|
6854
|
+
"""
|
|
6855
|
+
if adoption_policy is not None:
|
|
6856
|
+
pulumi.set(__self__, "adoption_policy", adoption_policy)
|
|
6857
|
+
if annotations is not None:
|
|
6858
|
+
pulumi.set(__self__, "annotations", annotations)
|
|
6859
|
+
if default_network_policy is not None:
|
|
6860
|
+
pulumi.set(__self__, "default_network_policy", default_network_policy)
|
|
6861
|
+
if default_resource_quota is not None:
|
|
6862
|
+
pulumi.set(__self__, "default_resource_quota", default_resource_quota)
|
|
6863
|
+
if delete_policy is not None:
|
|
6864
|
+
pulumi.set(__self__, "delete_policy", delete_policy)
|
|
6865
|
+
if labels is not None:
|
|
6866
|
+
pulumi.set(__self__, "labels", labels)
|
|
6867
|
+
|
|
6868
|
+
@property
|
|
6869
|
+
@pulumi.getter(name="adoptionPolicy")
|
|
6870
|
+
def adoption_policy(self) -> Optional[pulumi.Input[Union[str, 'AdoptionPolicy']]]:
|
|
6871
|
+
"""
|
|
6872
|
+
Action if Kubernetes namespace with same name already exists.
|
|
6873
|
+
"""
|
|
6874
|
+
return pulumi.get(self, "adoption_policy")
|
|
6875
|
+
|
|
6876
|
+
@adoption_policy.setter
|
|
6877
|
+
def adoption_policy(self, value: Optional[pulumi.Input[Union[str, 'AdoptionPolicy']]]):
|
|
6878
|
+
pulumi.set(self, "adoption_policy", value)
|
|
6879
|
+
|
|
6880
|
+
@property
|
|
6881
|
+
@pulumi.getter
|
|
6882
|
+
def annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
6883
|
+
"""
|
|
6884
|
+
The annotations of managed namespace.
|
|
6885
|
+
"""
|
|
6886
|
+
return pulumi.get(self, "annotations")
|
|
6887
|
+
|
|
6888
|
+
@annotations.setter
|
|
6889
|
+
def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
6890
|
+
pulumi.set(self, "annotations", value)
|
|
6891
|
+
|
|
6892
|
+
@property
|
|
6893
|
+
@pulumi.getter(name="defaultNetworkPolicy")
|
|
6894
|
+
def default_network_policy(self) -> Optional[pulumi.Input['NetworkPoliciesArgs']]:
|
|
6895
|
+
"""
|
|
6896
|
+
The default network policy enforced upon the namespace. Customers can have other Kubernetes network policy objects under the namespace. All the network policies will be enforced.
|
|
6897
|
+
"""
|
|
6898
|
+
return pulumi.get(self, "default_network_policy")
|
|
6899
|
+
|
|
6900
|
+
@default_network_policy.setter
|
|
6901
|
+
def default_network_policy(self, value: Optional[pulumi.Input['NetworkPoliciesArgs']]):
|
|
6902
|
+
pulumi.set(self, "default_network_policy", value)
|
|
6903
|
+
|
|
6904
|
+
@property
|
|
6905
|
+
@pulumi.getter(name="defaultResourceQuota")
|
|
6906
|
+
def default_resource_quota(self) -> Optional[pulumi.Input['ResourceQuotaArgs']]:
|
|
6907
|
+
"""
|
|
6908
|
+
The default resource quota enforced upon the namespace. Customers can have other Kubernetes resource quota objects under the namespace. All the resource quotas will be enforced.
|
|
6909
|
+
"""
|
|
6910
|
+
return pulumi.get(self, "default_resource_quota")
|
|
6911
|
+
|
|
6912
|
+
@default_resource_quota.setter
|
|
6913
|
+
def default_resource_quota(self, value: Optional[pulumi.Input['ResourceQuotaArgs']]):
|
|
6914
|
+
pulumi.set(self, "default_resource_quota", value)
|
|
6915
|
+
|
|
6916
|
+
@property
|
|
6917
|
+
@pulumi.getter(name="deletePolicy")
|
|
6918
|
+
def delete_policy(self) -> Optional[pulumi.Input[Union[str, 'DeletePolicy']]]:
|
|
6919
|
+
"""
|
|
6920
|
+
Delete options of a namespace.
|
|
6921
|
+
"""
|
|
6922
|
+
return pulumi.get(self, "delete_policy")
|
|
6923
|
+
|
|
6924
|
+
@delete_policy.setter
|
|
6925
|
+
def delete_policy(self, value: Optional[pulumi.Input[Union[str, 'DeletePolicy']]]):
|
|
6926
|
+
pulumi.set(self, "delete_policy", value)
|
|
6927
|
+
|
|
6928
|
+
@property
|
|
6929
|
+
@pulumi.getter
|
|
6930
|
+
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
6931
|
+
"""
|
|
6932
|
+
The labels of managed namespace.
|
|
6933
|
+
"""
|
|
6934
|
+
return pulumi.get(self, "labels")
|
|
6935
|
+
|
|
6936
|
+
@labels.setter
|
|
6937
|
+
def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
6938
|
+
pulumi.set(self, "labels", value)
|
|
6939
|
+
|
|
6940
|
+
|
|
6941
|
+
if not MYPY:
|
|
6942
|
+
class NetworkPoliciesArgsDict(TypedDict):
|
|
6943
|
+
"""
|
|
6944
|
+
Default network policy of the namespace, specifying ingress and egress rules.
|
|
6945
|
+
"""
|
|
6946
|
+
egress: NotRequired[pulumi.Input[Union[str, 'PolicyRule']]]
|
|
6947
|
+
"""
|
|
6948
|
+
Egress policy for the network.
|
|
6949
|
+
"""
|
|
6950
|
+
ingress: NotRequired[pulumi.Input[Union[str, 'PolicyRule']]]
|
|
6951
|
+
"""
|
|
6952
|
+
Ingress policy for the network.
|
|
6953
|
+
"""
|
|
6954
|
+
elif False:
|
|
6955
|
+
NetworkPoliciesArgsDict: TypeAlias = Mapping[str, Any]
|
|
6956
|
+
|
|
6957
|
+
@pulumi.input_type
|
|
6958
|
+
class NetworkPoliciesArgs:
|
|
6959
|
+
def __init__(__self__, *,
|
|
6960
|
+
egress: Optional[pulumi.Input[Union[str, 'PolicyRule']]] = None,
|
|
6961
|
+
ingress: Optional[pulumi.Input[Union[str, 'PolicyRule']]] = None):
|
|
6962
|
+
"""
|
|
6963
|
+
Default network policy of the namespace, specifying ingress and egress rules.
|
|
6964
|
+
:param pulumi.Input[Union[str, 'PolicyRule']] egress: Egress policy for the network.
|
|
6965
|
+
:param pulumi.Input[Union[str, 'PolicyRule']] ingress: Ingress policy for the network.
|
|
6966
|
+
"""
|
|
6967
|
+
if egress is None:
|
|
6968
|
+
egress = 'AllowAll'
|
|
6969
|
+
if egress is not None:
|
|
6970
|
+
pulumi.set(__self__, "egress", egress)
|
|
6971
|
+
if ingress is None:
|
|
6972
|
+
ingress = 'AllowSameNamespace'
|
|
6973
|
+
if ingress is not None:
|
|
6974
|
+
pulumi.set(__self__, "ingress", ingress)
|
|
6975
|
+
|
|
6976
|
+
@property
|
|
6977
|
+
@pulumi.getter
|
|
6978
|
+
def egress(self) -> Optional[pulumi.Input[Union[str, 'PolicyRule']]]:
|
|
6979
|
+
"""
|
|
6980
|
+
Egress policy for the network.
|
|
6981
|
+
"""
|
|
6982
|
+
return pulumi.get(self, "egress")
|
|
6983
|
+
|
|
6984
|
+
@egress.setter
|
|
6985
|
+
def egress(self, value: Optional[pulumi.Input[Union[str, 'PolicyRule']]]):
|
|
6986
|
+
pulumi.set(self, "egress", value)
|
|
6987
|
+
|
|
6988
|
+
@property
|
|
6989
|
+
@pulumi.getter
|
|
6990
|
+
def ingress(self) -> Optional[pulumi.Input[Union[str, 'PolicyRule']]]:
|
|
6991
|
+
"""
|
|
6992
|
+
Ingress policy for the network.
|
|
6993
|
+
"""
|
|
6994
|
+
return pulumi.get(self, "ingress")
|
|
6995
|
+
|
|
6996
|
+
@ingress.setter
|
|
6997
|
+
def ingress(self, value: Optional[pulumi.Input[Union[str, 'PolicyRule']]]):
|
|
6998
|
+
pulumi.set(self, "ingress", value)
|
|
6999
|
+
|
|
7000
|
+
|
|
6799
7001
|
if not MYPY:
|
|
6800
7002
|
class NodeImageSelectionArgsDict(TypedDict):
|
|
6801
7003
|
"""
|
|
@@ -7224,6 +7426,102 @@ class RelativeMonthlyScheduleArgs:
|
|
|
7224
7426
|
pulumi.set(self, "week_index", value)
|
|
7225
7427
|
|
|
7226
7428
|
|
|
7429
|
+
if not MYPY:
|
|
7430
|
+
class ResourceQuotaArgsDict(TypedDict):
|
|
7431
|
+
"""
|
|
7432
|
+
Resource quota for the namespace.
|
|
7433
|
+
"""
|
|
7434
|
+
cpu_limit: NotRequired[pulumi.Input[str]]
|
|
7435
|
+
"""
|
|
7436
|
+
CPU limit of the namespace in one-thousandth CPU form. See [CPU resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu) for more details.
|
|
7437
|
+
"""
|
|
7438
|
+
cpu_request: NotRequired[pulumi.Input[str]]
|
|
7439
|
+
"""
|
|
7440
|
+
CPU request of the namespace in one-thousandth CPU form. See [CPU resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu) for more details.
|
|
7441
|
+
"""
|
|
7442
|
+
memory_limit: NotRequired[pulumi.Input[str]]
|
|
7443
|
+
"""
|
|
7444
|
+
Memory limit of the namespace in the power-of-two equivalents form: Ei, Pi, Ti, Gi, Mi, Ki. See [Memory resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-memory) for more details.
|
|
7445
|
+
"""
|
|
7446
|
+
memory_request: NotRequired[pulumi.Input[str]]
|
|
7447
|
+
"""
|
|
7448
|
+
Memory request of the namespace in the power-of-two equivalents form: Ei, Pi, Ti, Gi, Mi, Ki. See [Memory resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-memory) for more details.
|
|
7449
|
+
"""
|
|
7450
|
+
elif False:
|
|
7451
|
+
ResourceQuotaArgsDict: TypeAlias = Mapping[str, Any]
|
|
7452
|
+
|
|
7453
|
+
@pulumi.input_type
|
|
7454
|
+
class ResourceQuotaArgs:
|
|
7455
|
+
def __init__(__self__, *,
|
|
7456
|
+
cpu_limit: Optional[pulumi.Input[str]] = None,
|
|
7457
|
+
cpu_request: Optional[pulumi.Input[str]] = None,
|
|
7458
|
+
memory_limit: Optional[pulumi.Input[str]] = None,
|
|
7459
|
+
memory_request: Optional[pulumi.Input[str]] = None):
|
|
7460
|
+
"""
|
|
7461
|
+
Resource quota for the namespace.
|
|
7462
|
+
:param pulumi.Input[str] cpu_limit: CPU limit of the namespace in one-thousandth CPU form. See [CPU resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu) for more details.
|
|
7463
|
+
:param pulumi.Input[str] cpu_request: CPU request of the namespace in one-thousandth CPU form. See [CPU resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu) for more details.
|
|
7464
|
+
:param pulumi.Input[str] memory_limit: Memory limit of the namespace in the power-of-two equivalents form: Ei, Pi, Ti, Gi, Mi, Ki. See [Memory resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-memory) for more details.
|
|
7465
|
+
:param pulumi.Input[str] memory_request: Memory request of the namespace in the power-of-two equivalents form: Ei, Pi, Ti, Gi, Mi, Ki. See [Memory resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-memory) for more details.
|
|
7466
|
+
"""
|
|
7467
|
+
if cpu_limit is not None:
|
|
7468
|
+
pulumi.set(__self__, "cpu_limit", cpu_limit)
|
|
7469
|
+
if cpu_request is not None:
|
|
7470
|
+
pulumi.set(__self__, "cpu_request", cpu_request)
|
|
7471
|
+
if memory_limit is not None:
|
|
7472
|
+
pulumi.set(__self__, "memory_limit", memory_limit)
|
|
7473
|
+
if memory_request is not None:
|
|
7474
|
+
pulumi.set(__self__, "memory_request", memory_request)
|
|
7475
|
+
|
|
7476
|
+
@property
|
|
7477
|
+
@pulumi.getter(name="cpuLimit")
|
|
7478
|
+
def cpu_limit(self) -> Optional[pulumi.Input[str]]:
|
|
7479
|
+
"""
|
|
7480
|
+
CPU limit of the namespace in one-thousandth CPU form. See [CPU resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu) for more details.
|
|
7481
|
+
"""
|
|
7482
|
+
return pulumi.get(self, "cpu_limit")
|
|
7483
|
+
|
|
7484
|
+
@cpu_limit.setter
|
|
7485
|
+
def cpu_limit(self, value: Optional[pulumi.Input[str]]):
|
|
7486
|
+
pulumi.set(self, "cpu_limit", value)
|
|
7487
|
+
|
|
7488
|
+
@property
|
|
7489
|
+
@pulumi.getter(name="cpuRequest")
|
|
7490
|
+
def cpu_request(self) -> Optional[pulumi.Input[str]]:
|
|
7491
|
+
"""
|
|
7492
|
+
CPU request of the namespace in one-thousandth CPU form. See [CPU resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-cpu) for more details.
|
|
7493
|
+
"""
|
|
7494
|
+
return pulumi.get(self, "cpu_request")
|
|
7495
|
+
|
|
7496
|
+
@cpu_request.setter
|
|
7497
|
+
def cpu_request(self, value: Optional[pulumi.Input[str]]):
|
|
7498
|
+
pulumi.set(self, "cpu_request", value)
|
|
7499
|
+
|
|
7500
|
+
@property
|
|
7501
|
+
@pulumi.getter(name="memoryLimit")
|
|
7502
|
+
def memory_limit(self) -> Optional[pulumi.Input[str]]:
|
|
7503
|
+
"""
|
|
7504
|
+
Memory limit of the namespace in the power-of-two equivalents form: Ei, Pi, Ti, Gi, Mi, Ki. See [Memory resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-memory) for more details.
|
|
7505
|
+
"""
|
|
7506
|
+
return pulumi.get(self, "memory_limit")
|
|
7507
|
+
|
|
7508
|
+
@memory_limit.setter
|
|
7509
|
+
def memory_limit(self, value: Optional[pulumi.Input[str]]):
|
|
7510
|
+
pulumi.set(self, "memory_limit", value)
|
|
7511
|
+
|
|
7512
|
+
@property
|
|
7513
|
+
@pulumi.getter(name="memoryRequest")
|
|
7514
|
+
def memory_request(self) -> Optional[pulumi.Input[str]]:
|
|
7515
|
+
"""
|
|
7516
|
+
Memory request of the namespace in the power-of-two equivalents form: Ei, Pi, Ti, Gi, Mi, Ki. See [Memory resource units](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-memory) for more details.
|
|
7517
|
+
"""
|
|
7518
|
+
return pulumi.get(self, "memory_request")
|
|
7519
|
+
|
|
7520
|
+
@memory_request.setter
|
|
7521
|
+
def memory_request(self, value: Optional[pulumi.Input[str]]):
|
|
7522
|
+
pulumi.set(self, "memory_request", value)
|
|
7523
|
+
|
|
7524
|
+
|
|
7227
7525
|
if not MYPY:
|
|
7228
7526
|
class ResourceReferenceArgsDict(TypedDict):
|
|
7229
7527
|
"""
|
|
@@ -818,7 +818,7 @@ class AgentPool(pulumi.CustomResource):
|
|
|
818
818
|
|
|
819
819
|
Uses Azure REST API version 2024-10-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
820
820
|
|
|
821
|
-
Other available API versions: 2019-11-01, 2020-01-01, 2020-02-01, 2020-03-01, 2020-04-01, 2020-06-01, 2020-07-01, 2020-09-01, 2020-11-01, 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
821
|
+
Other available API versions: 2019-11-01, 2020-01-01, 2020-02-01, 2020-03-01, 2020-04-01, 2020-06-01, 2020-07-01, 2020-09-01, 2020-11-01, 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01, 2025-02-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
822
822
|
|
|
823
823
|
:param str resource_name: The name of the resource.
|
|
824
824
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -880,7 +880,7 @@ class AgentPool(pulumi.CustomResource):
|
|
|
880
880
|
|
|
881
881
|
Uses Azure REST API version 2024-10-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
882
882
|
|
|
883
|
-
Other available API versions: 2019-11-01, 2020-01-01, 2020-02-01, 2020-03-01, 2020-04-01, 2020-06-01, 2020-07-01, 2020-09-01, 2020-11-01, 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
883
|
+
Other available API versions: 2019-11-01, 2020-01-01, 2020-02-01, 2020-03-01, 2020-04-01, 2020-06-01, 2020-07-01, 2020-09-01, 2020-11-01, 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01, 2025-02-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
884
884
|
|
|
885
885
|
:param str resource_name: The name of the resource.
|
|
886
886
|
:param AgentPoolArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -1008,7 +1008,7 @@ class AgentPool(pulumi.CustomResource):
|
|
|
1008
1008
|
__props__.__dict__["name"] = None
|
|
1009
1009
|
__props__.__dict__["node_image_version"] = None
|
|
1010
1010
|
__props__.__dict__["provisioning_state"] = None
|
|
1011
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerservice/v20190201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20190401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20190601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20190801:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20191001:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20191101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20201101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20201201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210501:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210801:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20211001:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20211101preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220202preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220302preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220402preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220502preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220602preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220702preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220802preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220803preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220902preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20221002preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20221101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20221102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230202preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230302preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230402preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230501:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230502preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230602preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230702preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230801:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230802preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230902preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231001:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231002preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240202preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240302preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240402preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240501:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240502preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240602preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240702preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240801:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240902preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20241001:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20241002preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20250101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20250102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20250201:AgentPool")])
|
|
1011
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerservice/v20190201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20190401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20190601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20190801:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20191001:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20191101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20201101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20201201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210501:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210801:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20211001:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20211101preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220202preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220302preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220402preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220502preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220602preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220702preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220802preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220803preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220902preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20221002preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20221101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20221102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230202preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230302preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230402preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230501:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230502preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230602preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230702preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230801:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230802preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230902preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231001:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231002preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240202preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240302preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240402preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240501:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240502preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240602preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240702preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240801:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240902preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20241001:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20241002preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20250101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20250102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20250201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20250202preview:AgentPool")])
|
|
1012
1012
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
1013
1013
|
super(AgentPool, __self__).__init__(
|
|
1014
1014
|
'azure-native:containerservice:AgentPool',
|
|
@@ -647,7 +647,7 @@ def get_agent_pool(agent_pool_name: Optional[str] = None,
|
|
|
647
647
|
|
|
648
648
|
Uses Azure REST API version 2024-10-01.
|
|
649
649
|
|
|
650
|
-
Other available API versions: 2019-11-01, 2020-01-01, 2020-02-01, 2020-03-01, 2020-04-01, 2020-06-01, 2020-07-01, 2020-09-01, 2020-11-01, 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
650
|
+
Other available API versions: 2019-11-01, 2020-01-01, 2020-02-01, 2020-03-01, 2020-04-01, 2020-06-01, 2020-07-01, 2020-09-01, 2020-11-01, 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01, 2025-02-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
651
651
|
|
|
652
652
|
|
|
653
653
|
:param str agent_pool_name: The name of the agent pool.
|
|
@@ -721,7 +721,7 @@ def get_agent_pool_output(agent_pool_name: Optional[pulumi.Input[str]] = None,
|
|
|
721
721
|
|
|
722
722
|
Uses Azure REST API version 2024-10-01.
|
|
723
723
|
|
|
724
|
-
Other available API versions: 2019-11-01, 2020-01-01, 2020-02-01, 2020-03-01, 2020-04-01, 2020-06-01, 2020-07-01, 2020-09-01, 2020-11-01, 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
724
|
+
Other available API versions: 2019-11-01, 2020-01-01, 2020-02-01, 2020-03-01, 2020-04-01, 2020-06-01, 2020-07-01, 2020-09-01, 2020-11-01, 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01, 2025-02-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
725
725
|
|
|
726
726
|
|
|
727
727
|
:param str agent_pool_name: The name of the agent pool.
|
|
@@ -179,7 +179,7 @@ def get_load_balancer(load_balancer_name: Optional[str] = None,
|
|
|
179
179
|
|
|
180
180
|
Uses Azure REST API version 2024-10-02-preview.
|
|
181
181
|
|
|
182
|
-
Other available API versions: 2024-03-02-preview, 2024-04-02-preview, 2024-05-02-preview, 2024-06-02-preview, 2024-07-02-preview, 2024-09-02-preview, 2025-01-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
182
|
+
Other available API versions: 2024-03-02-preview, 2024-04-02-preview, 2024-05-02-preview, 2024-06-02-preview, 2024-07-02-preview, 2024-09-02-preview, 2025-01-02-preview, 2025-02-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
183
183
|
|
|
184
184
|
|
|
185
185
|
:param str load_balancer_name: The name of the load balancer.
|
|
@@ -214,7 +214,7 @@ def get_load_balancer_output(load_balancer_name: Optional[pulumi.Input[str]] = N
|
|
|
214
214
|
|
|
215
215
|
Uses Azure REST API version 2024-10-02-preview.
|
|
216
216
|
|
|
217
|
-
Other available API versions: 2024-03-02-preview, 2024-04-02-preview, 2024-05-02-preview, 2024-06-02-preview, 2024-07-02-preview, 2024-09-02-preview, 2025-01-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
217
|
+
Other available API versions: 2024-03-02-preview, 2024-04-02-preview, 2024-05-02-preview, 2024-06-02-preview, 2024-07-02-preview, 2024-09-02-preview, 2025-01-02-preview, 2025-02-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
218
218
|
|
|
219
219
|
|
|
220
220
|
:param str load_balancer_name: The name of the load balancer.
|
|
@@ -143,7 +143,7 @@ def get_maintenance_configuration(config_name: Optional[str] = None,
|
|
|
143
143
|
|
|
144
144
|
Uses Azure REST API version 2024-10-01.
|
|
145
145
|
|
|
146
|
-
Other available API versions: 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
146
|
+
Other available API versions: 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01, 2025-02-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
:param str config_name: The name of the maintenance configuration.
|
|
@@ -175,7 +175,7 @@ def get_maintenance_configuration_output(config_name: Optional[pulumi.Input[str]
|
|
|
175
175
|
|
|
176
176
|
Uses Azure REST API version 2024-10-01.
|
|
177
177
|
|
|
178
|
-
Other available API versions: 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
178
|
+
Other available API versions: 2020-12-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-07-01, 2021-08-01, 2021-09-01, 2021-10-01, 2021-11-01-preview, 2022-01-01, 2022-01-02-preview, 2022-02-01, 2022-02-02-preview, 2022-03-01, 2022-03-02-preview, 2022-04-01, 2022-04-02-preview, 2022-05-02-preview, 2022-06-01, 2022-06-02-preview, 2022-07-01, 2022-07-02-preview, 2022-08-02-preview, 2022-08-03-preview, 2022-09-01, 2022-09-02-preview, 2022-10-02-preview, 2022-11-01, 2022-11-02-preview, 2023-01-01, 2023-01-02-preview, 2023-02-01, 2023-02-02-preview, 2023-03-01, 2023-03-02-preview, 2023-04-01, 2023-04-02-preview, 2023-05-01, 2023-05-02-preview, 2023-06-01, 2023-06-02-preview, 2023-07-01, 2023-07-02-preview, 2023-08-01, 2023-08-02-preview, 2023-09-01, 2023-09-02-preview, 2023-10-01, 2023-10-02-preview, 2023-11-01, 2023-11-02-preview, 2024-01-01, 2024-01-02-preview, 2024-02-01, 2024-02-02-preview, 2024-03-02-preview, 2024-04-02-preview, 2024-05-01, 2024-05-02-preview, 2024-06-02-preview, 2024-07-01, 2024-07-02-preview, 2024-08-01, 2024-09-01, 2024-09-02-preview, 2024-10-02-preview, 2025-01-01, 2025-01-02-preview, 2025-02-01, 2025-02-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
179
179
|
|
|
180
180
|
|
|
181
181
|
:param str config_name: The name of the maintenance configuration.
|