pulumi-azure 6.27.0a1758868424__py3-none-any.whl → 6.27.0a1759511969__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 might be problematic. Click here for more details.
- pulumi_azure/__init__.py +32 -0
- pulumi_azure/apimanagement/backend.py +2 -2
- pulumi_azure/appservice/_inputs.py +78 -6
- pulumi_azure/appservice/app_flex_consumption.py +61 -0
- pulumi_azure/appservice/outputs.py +52 -4
- pulumi_azure/appservice/service_plan.py +14 -14
- pulumi_azure/billing/account_cost_management_export.py +2 -2
- pulumi_azure/cdn/_inputs.py +57 -95
- pulumi_azure/cdn/frontdoor_firewall_policy.py +34 -107
- pulumi_azure/cdn/frontdoor_profile.py +87 -2
- pulumi_azure/cdn/frontdoor_security_policy.py +7 -7
- pulumi_azure/cdn/get_frontdoor_firewall_policy.py +15 -1
- pulumi_azure/cdn/get_frontdoor_profile.py +25 -11
- pulumi_azure/cdn/outputs.py +79 -21
- pulumi_azure/cognitive/account.py +7 -7
- pulumi_azure/compute/__init__.py +1 -0
- pulumi_azure/compute/_inputs.py +79 -47
- pulumi_azure/compute/get_managed_disks.py +140 -0
- pulumi_azure/compute/linux_virtual_machine.py +97 -23
- pulumi_azure/compute/outputs.py +362 -34
- pulumi_azure/compute/windows_virtual_machine.py +172 -42
- pulumi_azure/containerservice/_inputs.py +209 -17
- pulumi_azure/containerservice/cluster_trusted_access_role_binding.py +2 -2
- pulumi_azure/containerservice/get_cluster_node_pool.py +14 -3
- pulumi_azure/containerservice/get_kubernetes_cluster.py +2 -2
- pulumi_azure/containerservice/get_kubernetes_node_pool_snapshot.py +2 -2
- pulumi_azure/containerservice/kubernetes_cluster.py +49 -2
- pulumi_azure/containerservice/kubernetes_cluster_node_pool.py +49 -2
- pulumi_azure/containerservice/outputs.py +173 -11
- pulumi_azure/core/_inputs.py +0 -54
- pulumi_azure/core/outputs.py +0 -36
- pulumi_azure/core/resource_group_cost_management_export.py +2 -2
- pulumi_azure/core/resource_group_policy_assignment.py +7 -7
- pulumi_azure/core/resource_policy_assignment.py +7 -7
- pulumi_azure/core/subscription_cost_management_export.py +2 -2
- pulumi_azure/core/subscription_policy_assignment.py +7 -7
- pulumi_azure/datafactory/__init__.py +1 -0
- pulumi_azure/datafactory/customer_managed_key.py +439 -0
- pulumi_azure/datafactory/factory.py +2 -2
- pulumi_azure/dataprotection/_inputs.py +36 -6
- pulumi_azure/dataprotection/backup_policy_blob_storage.py +76 -2
- pulumi_azure/dataprotection/outputs.py +24 -4
- pulumi_azure/devcenter/get_project_pool.py +15 -1
- pulumi_azure/devcenter/project_pool.py +47 -0
- pulumi_azure/eventgrid/domain.py +2 -2
- pulumi_azure/eventgrid/domain_topic.py +2 -2
- pulumi_azure/eventgrid/event_subscription.py +2 -2
- pulumi_azure/eventgrid/get_domain.py +2 -2
- pulumi_azure/eventgrid/get_domain_topic.py +2 -2
- pulumi_azure/eventgrid/get_partner_namespace.py +2 -2
- pulumi_azure/eventgrid/get_partner_registration.py +2 -2
- pulumi_azure/eventgrid/get_system_topic.py +28 -6
- pulumi_azure/eventgrid/get_topic.py +2 -2
- pulumi_azure/eventgrid/partner_configuration.py +2 -2
- pulumi_azure/eventgrid/partner_namespace.py +2 -2
- pulumi_azure/eventgrid/partner_registration.py +2 -2
- pulumi_azure/eventgrid/system_topic.py +97 -35
- pulumi_azure/eventgrid/system_topic_event_subscription.py +4 -4
- pulumi_azure/eventgrid/topic.py +2 -2
- pulumi_azure/eventhub/domain.py +2 -2
- pulumi_azure/eventhub/event_grid_topic.py +2 -2
- pulumi_azure/eventhub/event_subscription.py +2 -2
- pulumi_azure/hpc/cache_blob_target.py +2 -2
- pulumi_azure/iot/_inputs.py +27 -1
- pulumi_azure/iot/endpoint_cosmosdb_account.py +64 -3
- pulumi_azure/iot/endpoint_eventhub.py +64 -3
- pulumi_azure/iot/endpoint_servicebus_queue.py +64 -3
- pulumi_azure/iot/endpoint_servicebus_topic.py +64 -3
- pulumi_azure/iot/endpoint_storage_container.py +64 -3
- pulumi_azure/iot/outputs.py +19 -1
- pulumi_azure/keyvault/_inputs.py +3 -17
- pulumi_azure/keyvault/get_key_vault.py +13 -1
- pulumi_azure/keyvault/key_vault.py +78 -35
- pulumi_azure/keyvault/outputs.py +2 -10
- pulumi_azure/kusto/_inputs.py +16 -6
- pulumi_azure/kusto/cluster.py +95 -66
- pulumi_azure/kusto/outputs.py +10 -4
- pulumi_azure/lb/get_lb_outbound_rule.py +12 -1
- pulumi_azure/lb/get_lb_rule.py +28 -4
- pulumi_azure/lb/load_balancer.py +94 -0
- pulumi_azure/lb/nat_rule.py +115 -29
- pulumi_azure/lb/outbound_rule.py +60 -17
- pulumi_azure/lb/rule.py +116 -30
- pulumi_azure/loadtest/_inputs.py +6 -3
- pulumi_azure/loadtest/load_test.py +0 -4
- pulumi_azure/loadtest/outputs.py +4 -2
- pulumi_azure/logicapps/_inputs.py +46 -987
- pulumi_azure/logicapps/get_standard.py +0 -7
- pulumi_azure/logicapps/outputs.py +117 -101
- pulumi_azure/logicapps/standard.py +7 -7
- pulumi_azure/machinelearning/_inputs.py +24 -4
- pulumi_azure/machinelearning/compute_instance.py +35 -7
- pulumi_azure/machinelearning/datastore_blobstorage.py +2 -2
- pulumi_azure/machinelearning/datastore_datalake_gen2.py +2 -2
- pulumi_azure/machinelearning/inference_cluster.py +2 -2
- pulumi_azure/machinelearning/outputs.py +17 -3
- pulumi_azure/machinelearning/workspace.py +61 -0
- pulumi_azure/management/_inputs.py +0 -18
- pulumi_azure/management/group_policy_assignment.py +7 -7
- pulumi_azure/management/outputs.py +0 -12
- pulumi_azure/management/private_link_association.py +0 -70
- pulumi_azure/mobile/_inputs.py +14 -6
- pulumi_azure/mobile/network_sim.py +2 -6
- pulumi_azure/mobile/network_sim_policy.py +2 -6
- pulumi_azure/mobile/network_slice.py +116 -31
- pulumi_azure/mobile/outputs.py +6 -4
- pulumi_azure/monitoring/_inputs.py +15 -9
- pulumi_azure/monitoring/activity_log_alert.py +7 -7
- pulumi_azure/monitoring/outputs.py +10 -6
- pulumi_azure/mssql/job_step.py +11 -11
- pulumi_azure/mysql/_inputs.py +20 -0
- pulumi_azure/mysql/outputs.py +14 -0
- pulumi_azure/netapp/_inputs.py +18 -6
- pulumi_azure/netapp/account.py +2 -2
- pulumi_azure/netapp/account_encryption.py +132 -4
- pulumi_azure/netapp/backup_policy.py +2 -2
- pulumi_azure/netapp/backup_vault.py +2 -2
- pulumi_azure/netapp/get_account.py +2 -2
- pulumi_azure/netapp/get_account_encryption.py +25 -3
- pulumi_azure/netapp/get_backup_policy.py +2 -2
- pulumi_azure/netapp/get_backup_vault.py +2 -2
- pulumi_azure/netapp/get_pool.py +17 -3
- pulumi_azure/netapp/get_snapshot.py +2 -2
- pulumi_azure/netapp/get_snapshot_policy.py +2 -2
- pulumi_azure/netapp/get_volume.py +17 -3
- pulumi_azure/netapp/get_volume_group_oracle.py +2 -2
- pulumi_azure/netapp/get_volume_group_sap_hana.py +2 -2
- pulumi_azure/netapp/get_volume_quota_rule.py +2 -2
- pulumi_azure/netapp/outputs.py +12 -4
- pulumi_azure/netapp/pool.py +104 -9
- pulumi_azure/netapp/snapshot.py +2 -2
- pulumi_azure/netapp/snapshot_policy.py +2 -2
- pulumi_azure/netapp/volume.py +82 -7
- pulumi_azure/netapp/volume_group_oracle.py +2 -2
- pulumi_azure/netapp/volume_group_sap_hana.py +2 -2
- pulumi_azure/netapp/volume_quota_rule.py +2 -2
- pulumi_azure/network/__init__.py +2 -0
- pulumi_azure/network/network_manager_ipam_pool_static_cidr.py +415 -0
- pulumi_azure/network/network_manager_routing_configuration.py +7 -7
- pulumi_azure/network/network_manager_routing_rule_collection.py +429 -0
- pulumi_azure/network/subnet.py +76 -1
- pulumi_azure/oracle/__init__.py +3 -0
- pulumi_azure/oracle/autonomous_database_backup.py +310 -0
- pulumi_azure/oracle/get_autonomous_database_backup.py +347 -0
- pulumi_azure/oracle/get_autonomous_database_backups.py +138 -0
- pulumi_azure/oracle/outputs.py +191 -0
- pulumi_azure/paloalto/next_generation_firewall_virtual_hub_local_rulestack.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_hub_panorama.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_network_local_rulestack.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_network_panorama.py +2 -2
- pulumi_azure/policy/_inputs.py +6 -0
- pulumi_azure/policy/outputs.py +4 -0
- pulumi_azure/postgresql/flexible_server.py +7 -7
- pulumi_azure/postgresql/flexible_server_firewall_rule.py +14 -14
- pulumi_azure/pulumi-plugin.json +1 -1
- pulumi_azure/search/service.py +7 -7
- pulumi_azure/sentinel/_inputs.py +144 -0
- pulumi_azure/sentinel/authomation_rule.py +47 -0
- pulumi_azure/sentinel/automation_rule.py +47 -0
- pulumi_azure/sentinel/outputs.py +84 -0
- pulumi_azure/storage/_inputs.py +3 -3
- pulumi_azure/storage/container_immutability_policy.py +2 -2
- pulumi_azure/storage/get_queue.py +59 -8
- pulumi_azure/storage/outputs.py +2 -2
- pulumi_azure/storage/queue.py +159 -27
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
|
@@ -95,6 +95,8 @@ __all__ = [
|
|
|
95
95
|
'KubernetesClusterAutoScalerProfileArgsDict',
|
|
96
96
|
'KubernetesClusterAzureActiveDirectoryRoleBasedAccessControlArgs',
|
|
97
97
|
'KubernetesClusterAzureActiveDirectoryRoleBasedAccessControlArgsDict',
|
|
98
|
+
'KubernetesClusterBootstrapProfileArgs',
|
|
99
|
+
'KubernetesClusterBootstrapProfileArgsDict',
|
|
98
100
|
'KubernetesClusterConfidentialComputingArgs',
|
|
99
101
|
'KubernetesClusterConfidentialComputingArgsDict',
|
|
100
102
|
'KubernetesClusterDefaultNodePoolArgs',
|
|
@@ -159,6 +161,8 @@ __all__ = [
|
|
|
159
161
|
'KubernetesClusterMonitorMetricsArgsDict',
|
|
160
162
|
'KubernetesClusterNetworkProfileArgs',
|
|
161
163
|
'KubernetesClusterNetworkProfileArgsDict',
|
|
164
|
+
'KubernetesClusterNetworkProfileAdvancedNetworkingArgs',
|
|
165
|
+
'KubernetesClusterNetworkProfileAdvancedNetworkingArgsDict',
|
|
162
166
|
'KubernetesClusterNetworkProfileLoadBalancerProfileArgs',
|
|
163
167
|
'KubernetesClusterNetworkProfileLoadBalancerProfileArgsDict',
|
|
164
168
|
'KubernetesClusterNetworkProfileNatGatewayProfileArgs',
|
|
@@ -4012,18 +4016,34 @@ if not MYPY:
|
|
|
4012
4016
|
"""
|
|
4013
4017
|
Set of authorized IP ranges to allow access to API server, e.g. ["198.51.100.0/24"].
|
|
4014
4018
|
"""
|
|
4019
|
+
subnet_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
4020
|
+
"""
|
|
4021
|
+
The ID of the Subnet where the API server endpoint is delegated to.
|
|
4022
|
+
"""
|
|
4023
|
+
virtual_network_integration_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
|
4024
|
+
"""
|
|
4025
|
+
Whether to enable virtual network integration for the API Server. Defaults to `false`.
|
|
4026
|
+
"""
|
|
4015
4027
|
elif False:
|
|
4016
4028
|
KubernetesClusterApiServerAccessProfileArgsDict: TypeAlias = Mapping[str, Any]
|
|
4017
4029
|
|
|
4018
4030
|
@pulumi.input_type
|
|
4019
4031
|
class KubernetesClusterApiServerAccessProfileArgs:
|
|
4020
4032
|
def __init__(__self__, *,
|
|
4021
|
-
authorized_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None
|
|
4033
|
+
authorized_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
4034
|
+
subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4035
|
+
virtual_network_integration_enabled: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
4022
4036
|
"""
|
|
4023
4037
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] authorized_ip_ranges: Set of authorized IP ranges to allow access to API server, e.g. ["198.51.100.0/24"].
|
|
4038
|
+
:param pulumi.Input[_builtins.str] subnet_id: The ID of the Subnet where the API server endpoint is delegated to.
|
|
4039
|
+
:param pulumi.Input[_builtins.bool] virtual_network_integration_enabled: Whether to enable virtual network integration for the API Server. Defaults to `false`.
|
|
4024
4040
|
"""
|
|
4025
4041
|
if authorized_ip_ranges is not None:
|
|
4026
4042
|
pulumi.set(__self__, "authorized_ip_ranges", authorized_ip_ranges)
|
|
4043
|
+
if subnet_id is not None:
|
|
4044
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
4045
|
+
if virtual_network_integration_enabled is not None:
|
|
4046
|
+
pulumi.set(__self__, "virtual_network_integration_enabled", virtual_network_integration_enabled)
|
|
4027
4047
|
|
|
4028
4048
|
@_builtins.property
|
|
4029
4049
|
@pulumi.getter(name="authorizedIpRanges")
|
|
@@ -4037,6 +4057,30 @@ class KubernetesClusterApiServerAccessProfileArgs:
|
|
|
4037
4057
|
def authorized_ip_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
4038
4058
|
pulumi.set(self, "authorized_ip_ranges", value)
|
|
4039
4059
|
|
|
4060
|
+
@_builtins.property
|
|
4061
|
+
@pulumi.getter(name="subnetId")
|
|
4062
|
+
def subnet_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4063
|
+
"""
|
|
4064
|
+
The ID of the Subnet where the API server endpoint is delegated to.
|
|
4065
|
+
"""
|
|
4066
|
+
return pulumi.get(self, "subnet_id")
|
|
4067
|
+
|
|
4068
|
+
@subnet_id.setter
|
|
4069
|
+
def subnet_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4070
|
+
pulumi.set(self, "subnet_id", value)
|
|
4071
|
+
|
|
4072
|
+
@_builtins.property
|
|
4073
|
+
@pulumi.getter(name="virtualNetworkIntegrationEnabled")
|
|
4074
|
+
def virtual_network_integration_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
4075
|
+
"""
|
|
4076
|
+
Whether to enable virtual network integration for the API Server. Defaults to `false`.
|
|
4077
|
+
"""
|
|
4078
|
+
return pulumi.get(self, "virtual_network_integration_enabled")
|
|
4079
|
+
|
|
4080
|
+
@virtual_network_integration_enabled.setter
|
|
4081
|
+
def virtual_network_integration_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
4082
|
+
pulumi.set(self, "virtual_network_integration_enabled", value)
|
|
4083
|
+
|
|
4040
4084
|
|
|
4041
4085
|
if not MYPY:
|
|
4042
4086
|
class KubernetesClusterAutoScalerProfileArgsDict(TypedDict):
|
|
@@ -4113,12 +4157,9 @@ if not MYPY:
|
|
|
4113
4157
|
How often the AKS Cluster should be re-evaluated for scale up/down. Defaults to `10s`.
|
|
4114
4158
|
"""
|
|
4115
4159
|
skip_nodes_with_local_storage: NotRequired[pulumi.Input[_builtins.bool]]
|
|
4116
|
-
"""
|
|
4117
|
-
If `true` cluster autoscaler will never delete nodes with pods with local storage, for example, EmptyDir or HostPath. Defaults to `true`.
|
|
4118
|
-
"""
|
|
4119
4160
|
skip_nodes_with_system_pods: NotRequired[pulumi.Input[_builtins.bool]]
|
|
4120
4161
|
"""
|
|
4121
|
-
If `true` cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Defaults to `
|
|
4162
|
+
If `true` cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Defaults to `true`.
|
|
4122
4163
|
"""
|
|
4123
4164
|
elif False:
|
|
4124
4165
|
KubernetesClusterAutoScalerProfileArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -4165,8 +4206,7 @@ class KubernetesClusterAutoScalerProfileArgs:
|
|
|
4165
4206
|
:param pulumi.Input[_builtins.str] scale_down_unready: How long an unready node should be unneeded before it is eligible for scale down. Defaults to `20m`.
|
|
4166
4207
|
:param pulumi.Input[_builtins.str] scale_down_utilization_threshold: Node utilization level, defined as sum of requested resources divided by capacity, below which a node can be considered for scale down. Defaults to `0.5`.
|
|
4167
4208
|
:param pulumi.Input[_builtins.str] scan_interval: How often the AKS Cluster should be re-evaluated for scale up/down. Defaults to `10s`.
|
|
4168
|
-
:param pulumi.Input[_builtins.bool]
|
|
4169
|
-
:param pulumi.Input[_builtins.bool] skip_nodes_with_system_pods: If `true` cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Defaults to `false`. <!-- defaults to `false` in code, not in Schema -->
|
|
4209
|
+
:param pulumi.Input[_builtins.bool] skip_nodes_with_system_pods: If `true` cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Defaults to `true`.
|
|
4170
4210
|
"""
|
|
4171
4211
|
if balance_similar_node_groups is not None:
|
|
4172
4212
|
pulumi.set(__self__, "balance_similar_node_groups", balance_similar_node_groups)
|
|
@@ -4428,9 +4468,6 @@ class KubernetesClusterAutoScalerProfileArgs:
|
|
|
4428
4468
|
@_builtins.property
|
|
4429
4469
|
@pulumi.getter(name="skipNodesWithLocalStorage")
|
|
4430
4470
|
def skip_nodes_with_local_storage(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
4431
|
-
"""
|
|
4432
|
-
If `true` cluster autoscaler will never delete nodes with pods with local storage, for example, EmptyDir or HostPath. Defaults to `true`.
|
|
4433
|
-
"""
|
|
4434
4471
|
return pulumi.get(self, "skip_nodes_with_local_storage")
|
|
4435
4472
|
|
|
4436
4473
|
@skip_nodes_with_local_storage.setter
|
|
@@ -4441,7 +4478,7 @@ class KubernetesClusterAutoScalerProfileArgs:
|
|
|
4441
4478
|
@pulumi.getter(name="skipNodesWithSystemPods")
|
|
4442
4479
|
def skip_nodes_with_system_pods(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
4443
4480
|
"""
|
|
4444
|
-
If `true` cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Defaults to `
|
|
4481
|
+
If `true` cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Defaults to `true`.
|
|
4445
4482
|
"""
|
|
4446
4483
|
return pulumi.get(self, "skip_nodes_with_system_pods")
|
|
4447
4484
|
|
|
@@ -4522,6 +4559,70 @@ class KubernetesClusterAzureActiveDirectoryRoleBasedAccessControlArgs:
|
|
|
4522
4559
|
pulumi.set(self, "tenant_id", value)
|
|
4523
4560
|
|
|
4524
4561
|
|
|
4562
|
+
if not MYPY:
|
|
4563
|
+
class KubernetesClusterBootstrapProfileArgsDict(TypedDict):
|
|
4564
|
+
artifact_source: NotRequired[pulumi.Input[_builtins.str]]
|
|
4565
|
+
"""
|
|
4566
|
+
The artifact source. The source where the artifacts are downloaded from. Possible values are `Cache` and `Direct`. Defaults to `Direct`.
|
|
4567
|
+
|
|
4568
|
+
> **Note:** If the `artifact_source` is set to `Cache` and the `outbound_type` has been specified, the managed ACR and related resources will **not** be automatically deleted and must be removed manually. Please see the product [documentation](https://learn.microsoft.com/azure/aks/concepts-network-isolated#how-a-network-isolated-cluster-works) for more information.
|
|
4569
|
+
"""
|
|
4570
|
+
container_registry_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
4571
|
+
"""
|
|
4572
|
+
The resource Id of Azure Container Registry.
|
|
4573
|
+
|
|
4574
|
+
> **Note:** The `container_registry_id` requires an ACR with a private link to the cluster. You must manage permissions, cache rules, the associated private link and the private endpoint. Please see the product [documentation](https://learn.microsoft.com/azure/container-registry/container-registry-private-link) for more information on configuring an ACR with a private endpoint.
|
|
4575
|
+
"""
|
|
4576
|
+
elif False:
|
|
4577
|
+
KubernetesClusterBootstrapProfileArgsDict: TypeAlias = Mapping[str, Any]
|
|
4578
|
+
|
|
4579
|
+
@pulumi.input_type
|
|
4580
|
+
class KubernetesClusterBootstrapProfileArgs:
|
|
4581
|
+
def __init__(__self__, *,
|
|
4582
|
+
artifact_source: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4583
|
+
container_registry_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
4584
|
+
"""
|
|
4585
|
+
:param pulumi.Input[_builtins.str] artifact_source: The artifact source. The source where the artifacts are downloaded from. Possible values are `Cache` and `Direct`. Defaults to `Direct`.
|
|
4586
|
+
|
|
4587
|
+
> **Note:** If the `artifact_source` is set to `Cache` and the `outbound_type` has been specified, the managed ACR and related resources will **not** be automatically deleted and must be removed manually. Please see the product [documentation](https://learn.microsoft.com/azure/aks/concepts-network-isolated#how-a-network-isolated-cluster-works) for more information.
|
|
4588
|
+
:param pulumi.Input[_builtins.str] container_registry_id: The resource Id of Azure Container Registry.
|
|
4589
|
+
|
|
4590
|
+
> **Note:** The `container_registry_id` requires an ACR with a private link to the cluster. You must manage permissions, cache rules, the associated private link and the private endpoint. Please see the product [documentation](https://learn.microsoft.com/azure/container-registry/container-registry-private-link) for more information on configuring an ACR with a private endpoint.
|
|
4591
|
+
"""
|
|
4592
|
+
if artifact_source is not None:
|
|
4593
|
+
pulumi.set(__self__, "artifact_source", artifact_source)
|
|
4594
|
+
if container_registry_id is not None:
|
|
4595
|
+
pulumi.set(__self__, "container_registry_id", container_registry_id)
|
|
4596
|
+
|
|
4597
|
+
@_builtins.property
|
|
4598
|
+
@pulumi.getter(name="artifactSource")
|
|
4599
|
+
def artifact_source(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4600
|
+
"""
|
|
4601
|
+
The artifact source. The source where the artifacts are downloaded from. Possible values are `Cache` and `Direct`. Defaults to `Direct`.
|
|
4602
|
+
|
|
4603
|
+
> **Note:** If the `artifact_source` is set to `Cache` and the `outbound_type` has been specified, the managed ACR and related resources will **not** be automatically deleted and must be removed manually. Please see the product [documentation](https://learn.microsoft.com/azure/aks/concepts-network-isolated#how-a-network-isolated-cluster-works) for more information.
|
|
4604
|
+
"""
|
|
4605
|
+
return pulumi.get(self, "artifact_source")
|
|
4606
|
+
|
|
4607
|
+
@artifact_source.setter
|
|
4608
|
+
def artifact_source(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4609
|
+
pulumi.set(self, "artifact_source", value)
|
|
4610
|
+
|
|
4611
|
+
@_builtins.property
|
|
4612
|
+
@pulumi.getter(name="containerRegistryId")
|
|
4613
|
+
def container_registry_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4614
|
+
"""
|
|
4615
|
+
The resource Id of Azure Container Registry.
|
|
4616
|
+
|
|
4617
|
+
> **Note:** The `container_registry_id` requires an ACR with a private link to the cluster. You must manage permissions, cache rules, the associated private link and the private endpoint. Please see the product [documentation](https://learn.microsoft.com/azure/container-registry/container-registry-private-link) for more information on configuring an ACR with a private endpoint.
|
|
4618
|
+
"""
|
|
4619
|
+
return pulumi.get(self, "container_registry_id")
|
|
4620
|
+
|
|
4621
|
+
@container_registry_id.setter
|
|
4622
|
+
def container_registry_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4623
|
+
pulumi.set(self, "container_registry_id", value)
|
|
4624
|
+
|
|
4625
|
+
|
|
4525
4626
|
if not MYPY:
|
|
4526
4627
|
class KubernetesClusterConfidentialComputingArgsDict(TypedDict):
|
|
4527
4628
|
sgx_quote_helper_enabled: pulumi.Input[_builtins.bool]
|
|
@@ -4575,6 +4676,7 @@ if not MYPY:
|
|
|
4575
4676
|
"""
|
|
4576
4677
|
Should the nodes in this Node Pool have Federal Information Processing Standard enabled? `temporary_name_for_rotation` must be specified when changing this block.
|
|
4577
4678
|
"""
|
|
4679
|
+
gpu_driver: NotRequired[pulumi.Input[_builtins.str]]
|
|
4578
4680
|
gpu_instance: NotRequired[pulumi.Input[_builtins.str]]
|
|
4579
4681
|
"""
|
|
4580
4682
|
Specifies the GPU MIG instance profile for supported GPU VM SKU. The allowed values are `MIG1g`, `MIG2g`, `MIG3g`, `MIG4g` and `MIG7g`. Changing this forces a new resource to be created.
|
|
@@ -4716,6 +4818,7 @@ class KubernetesClusterDefaultNodePoolArgs:
|
|
|
4716
4818
|
auto_scaling_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
4717
4819
|
capacity_reservation_group_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4718
4820
|
fips_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
4821
|
+
gpu_driver: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4719
4822
|
gpu_instance: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4720
4823
|
host_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
4721
4824
|
host_group_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -4806,6 +4909,8 @@ class KubernetesClusterDefaultNodePoolArgs:
|
|
|
4806
4909
|
pulumi.set(__self__, "capacity_reservation_group_id", capacity_reservation_group_id)
|
|
4807
4910
|
if fips_enabled is not None:
|
|
4808
4911
|
pulumi.set(__self__, "fips_enabled", fips_enabled)
|
|
4912
|
+
if gpu_driver is not None:
|
|
4913
|
+
pulumi.set(__self__, "gpu_driver", gpu_driver)
|
|
4809
4914
|
if gpu_instance is not None:
|
|
4810
4915
|
pulumi.set(__self__, "gpu_instance", gpu_instance)
|
|
4811
4916
|
if host_encryption_enabled is not None:
|
|
@@ -4923,6 +5028,15 @@ class KubernetesClusterDefaultNodePoolArgs:
|
|
|
4923
5028
|
def fips_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
4924
5029
|
pulumi.set(self, "fips_enabled", value)
|
|
4925
5030
|
|
|
5031
|
+
@_builtins.property
|
|
5032
|
+
@pulumi.getter(name="gpuDriver")
|
|
5033
|
+
def gpu_driver(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
5034
|
+
return pulumi.get(self, "gpu_driver")
|
|
5035
|
+
|
|
5036
|
+
@gpu_driver.setter
|
|
5037
|
+
def gpu_driver(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
5038
|
+
pulumi.set(self, "gpu_driver", value)
|
|
5039
|
+
|
|
4926
5040
|
@_builtins.property
|
|
4927
5041
|
@pulumi.getter(name="gpuInstance")
|
|
4928
5042
|
def gpu_instance(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -8418,6 +8532,10 @@ if not MYPY:
|
|
|
8418
8532
|
|
|
8419
8533
|
> **Note:** When `network_plugin` is set to `azure` - the `pod_cidr` field must not be set, unless specifying `network_plugin_mode` to `overlay`.
|
|
8420
8534
|
"""
|
|
8535
|
+
advanced_networking: NotRequired[pulumi.Input['KubernetesClusterNetworkProfileAdvancedNetworkingArgsDict']]
|
|
8536
|
+
"""
|
|
8537
|
+
An `advanced_networking` block as defined below. This can only be specified when `network_plugin` is set to `azure` and `network_data_plane` is set to `cilium`.
|
|
8538
|
+
"""
|
|
8421
8539
|
dns_service_ip: NotRequired[pulumi.Input[_builtins.str]]
|
|
8422
8540
|
"""
|
|
8423
8541
|
IP address within the Kubernetes service address range that will be used by cluster service discovery (kube-dns). Changing this forces a new resource to be created.
|
|
@@ -8474,7 +8592,9 @@ if not MYPY:
|
|
|
8474
8592
|
"""
|
|
8475
8593
|
outbound_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
8476
8594
|
"""
|
|
8477
|
-
The outbound (egress) routing method which should be used for this Kubernetes Cluster. Possible values are `loadBalancer`, `userDefinedRouting`, `managedNATGateway` and `
|
|
8595
|
+
The outbound (egress) routing method which should be used for this Kubernetes Cluster. Possible values are `loadBalancer`, `userDefinedRouting`, `managedNATGateway`, `userAssignedNATGateway` and `none`. Defaults to `loadBalancer`.
|
|
8596
|
+
|
|
8597
|
+
> **Note:** For more information on supported `outbound_type` migration paths please see the product [documentation](https://learn.microsoft.com/azure/aks/egress-outboundtype#updating-outboundtype-after-cluster-creation).
|
|
8478
8598
|
"""
|
|
8479
8599
|
pod_cidr: NotRequired[pulumi.Input[_builtins.str]]
|
|
8480
8600
|
"""
|
|
@@ -8501,6 +8621,7 @@ elif False:
|
|
|
8501
8621
|
class KubernetesClusterNetworkProfileArgs:
|
|
8502
8622
|
def __init__(__self__, *,
|
|
8503
8623
|
network_plugin: pulumi.Input[_builtins.str],
|
|
8624
|
+
advanced_networking: Optional[pulumi.Input['KubernetesClusterNetworkProfileAdvancedNetworkingArgs']] = None,
|
|
8504
8625
|
dns_service_ip: Optional[pulumi.Input[_builtins.str]] = None,
|
|
8505
8626
|
ip_versions: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
8506
8627
|
load_balancer_profile: Optional[pulumi.Input['KubernetesClusterNetworkProfileLoadBalancerProfileArgs']] = None,
|
|
@@ -8519,6 +8640,7 @@ class KubernetesClusterNetworkProfileArgs:
|
|
|
8519
8640
|
:param pulumi.Input[_builtins.str] network_plugin: Network plugin to use for networking. Currently supported values are `azure`, `kubenet` and `none`. Changing this forces a new resource to be created.
|
|
8520
8641
|
|
|
8521
8642
|
> **Note:** When `network_plugin` is set to `azure` - the `pod_cidr` field must not be set, unless specifying `network_plugin_mode` to `overlay`.
|
|
8643
|
+
:param pulumi.Input['KubernetesClusterNetworkProfileAdvancedNetworkingArgs'] advanced_networking: An `advanced_networking` block as defined below. This can only be specified when `network_plugin` is set to `azure` and `network_data_plane` is set to `cilium`.
|
|
8522
8644
|
:param pulumi.Input[_builtins.str] dns_service_ip: IP address within the Kubernetes service address range that will be used by cluster service discovery (kube-dns). Changing this forces a new resource to be created.
|
|
8523
8645
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] ip_versions: Specifies a list of IP versions the Kubernetes Cluster will use to assign IP addresses to its nodes and pods. Possible values are `IPv4` and/or `IPv6`. `IPv4` must always be specified. Changing this forces a new resource to be created.
|
|
8524
8646
|
|
|
@@ -8546,7 +8668,9 @@ class KubernetesClusterNetworkProfileArgs:
|
|
|
8546
8668
|
> **Note:** When `network_policy` is set to `azure`, the `network_plugin` field can only be set to `azure`.
|
|
8547
8669
|
|
|
8548
8670
|
> **Note:** When `network_policy` is set to `cilium`, the `network_data_plane` field must be set to `cilium`.
|
|
8549
|
-
:param pulumi.Input[_builtins.str] outbound_type: The outbound (egress) routing method which should be used for this Kubernetes Cluster. Possible values are `loadBalancer`, `userDefinedRouting`, `managedNATGateway` and `
|
|
8671
|
+
:param pulumi.Input[_builtins.str] outbound_type: The outbound (egress) routing method which should be used for this Kubernetes Cluster. Possible values are `loadBalancer`, `userDefinedRouting`, `managedNATGateway`, `userAssignedNATGateway` and `none`. Defaults to `loadBalancer`.
|
|
8672
|
+
|
|
8673
|
+
> **Note:** For more information on supported `outbound_type` migration paths please see the product [documentation](https://learn.microsoft.com/azure/aks/egress-outboundtype#updating-outboundtype-after-cluster-creation).
|
|
8550
8674
|
:param pulumi.Input[_builtins.str] pod_cidr: The CIDR to use for pod IP addresses. This field can only be set when `network_plugin` is set to `kubenet` or `network_plugin_mode` is set to `overlay`. Changing this forces a new resource to be created.
|
|
8551
8675
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] pod_cidrs: A list of CIDRs to use for pod IP addresses. For single-stack networking a single IPv4 CIDR is expected. For dual-stack networking an IPv4 and IPv6 CIDR are expected. Changing this forces a new resource to be created.
|
|
8552
8676
|
:param pulumi.Input[_builtins.str] service_cidr: The Network Range used by the Kubernetes service. Changing this forces a new resource to be created.
|
|
@@ -8555,6 +8679,8 @@ class KubernetesClusterNetworkProfileArgs:
|
|
|
8555
8679
|
> **Note:** This range should not be used by any network element on or connected to this VNet. Service address CIDR must be smaller than /12. `docker_bridge_cidr`, `dns_service_ip` and `service_cidr` should all be empty or all should be set.
|
|
8556
8680
|
"""
|
|
8557
8681
|
pulumi.set(__self__, "network_plugin", network_plugin)
|
|
8682
|
+
if advanced_networking is not None:
|
|
8683
|
+
pulumi.set(__self__, "advanced_networking", advanced_networking)
|
|
8558
8684
|
if dns_service_ip is not None:
|
|
8559
8685
|
pulumi.set(__self__, "dns_service_ip", dns_service_ip)
|
|
8560
8686
|
if ip_versions is not None:
|
|
@@ -8598,6 +8724,18 @@ class KubernetesClusterNetworkProfileArgs:
|
|
|
8598
8724
|
def network_plugin(self, value: pulumi.Input[_builtins.str]):
|
|
8599
8725
|
pulumi.set(self, "network_plugin", value)
|
|
8600
8726
|
|
|
8727
|
+
@_builtins.property
|
|
8728
|
+
@pulumi.getter(name="advancedNetworking")
|
|
8729
|
+
def advanced_networking(self) -> Optional[pulumi.Input['KubernetesClusterNetworkProfileAdvancedNetworkingArgs']]:
|
|
8730
|
+
"""
|
|
8731
|
+
An `advanced_networking` block as defined below. This can only be specified when `network_plugin` is set to `azure` and `network_data_plane` is set to `cilium`.
|
|
8732
|
+
"""
|
|
8733
|
+
return pulumi.get(self, "advanced_networking")
|
|
8734
|
+
|
|
8735
|
+
@advanced_networking.setter
|
|
8736
|
+
def advanced_networking(self, value: Optional[pulumi.Input['KubernetesClusterNetworkProfileAdvancedNetworkingArgs']]):
|
|
8737
|
+
pulumi.set(self, "advanced_networking", value)
|
|
8738
|
+
|
|
8601
8739
|
@_builtins.property
|
|
8602
8740
|
@pulumi.getter(name="dnsServiceIp")
|
|
8603
8741
|
def dns_service_ip(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -8728,7 +8866,9 @@ class KubernetesClusterNetworkProfileArgs:
|
|
|
8728
8866
|
@pulumi.getter(name="outboundType")
|
|
8729
8867
|
def outbound_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
8730
8868
|
"""
|
|
8731
|
-
The outbound (egress) routing method which should be used for this Kubernetes Cluster. Possible values are `loadBalancer`, `userDefinedRouting`, `managedNATGateway` and `
|
|
8869
|
+
The outbound (egress) routing method which should be used for this Kubernetes Cluster. Possible values are `loadBalancer`, `userDefinedRouting`, `managedNATGateway`, `userAssignedNATGateway` and `none`. Defaults to `loadBalancer`.
|
|
8870
|
+
|
|
8871
|
+
> **Note:** For more information on supported `outbound_type` migration paths please see the product [documentation](https://learn.microsoft.com/azure/aks/egress-outboundtype#updating-outboundtype-after-cluster-creation).
|
|
8732
8872
|
"""
|
|
8733
8873
|
return pulumi.get(self, "outbound_type")
|
|
8734
8874
|
|
|
@@ -8787,6 +8927,58 @@ class KubernetesClusterNetworkProfileArgs:
|
|
|
8787
8927
|
pulumi.set(self, "service_cidrs", value)
|
|
8788
8928
|
|
|
8789
8929
|
|
|
8930
|
+
if not MYPY:
|
|
8931
|
+
class KubernetesClusterNetworkProfileAdvancedNetworkingArgsDict(TypedDict):
|
|
8932
|
+
observability_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
|
8933
|
+
"""
|
|
8934
|
+
Is observability enabled? Defaults to `false`.
|
|
8935
|
+
"""
|
|
8936
|
+
security_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
|
8937
|
+
"""
|
|
8938
|
+
Is security enabled? Defaults to `false`.
|
|
8939
|
+
"""
|
|
8940
|
+
elif False:
|
|
8941
|
+
KubernetesClusterNetworkProfileAdvancedNetworkingArgsDict: TypeAlias = Mapping[str, Any]
|
|
8942
|
+
|
|
8943
|
+
@pulumi.input_type
|
|
8944
|
+
class KubernetesClusterNetworkProfileAdvancedNetworkingArgs:
|
|
8945
|
+
def __init__(__self__, *,
|
|
8946
|
+
observability_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
8947
|
+
security_enabled: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
8948
|
+
"""
|
|
8949
|
+
:param pulumi.Input[_builtins.bool] observability_enabled: Is observability enabled? Defaults to `false`.
|
|
8950
|
+
:param pulumi.Input[_builtins.bool] security_enabled: Is security enabled? Defaults to `false`.
|
|
8951
|
+
"""
|
|
8952
|
+
if observability_enabled is not None:
|
|
8953
|
+
pulumi.set(__self__, "observability_enabled", observability_enabled)
|
|
8954
|
+
if security_enabled is not None:
|
|
8955
|
+
pulumi.set(__self__, "security_enabled", security_enabled)
|
|
8956
|
+
|
|
8957
|
+
@_builtins.property
|
|
8958
|
+
@pulumi.getter(name="observabilityEnabled")
|
|
8959
|
+
def observability_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
8960
|
+
"""
|
|
8961
|
+
Is observability enabled? Defaults to `false`.
|
|
8962
|
+
"""
|
|
8963
|
+
return pulumi.get(self, "observability_enabled")
|
|
8964
|
+
|
|
8965
|
+
@observability_enabled.setter
|
|
8966
|
+
def observability_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
8967
|
+
pulumi.set(self, "observability_enabled", value)
|
|
8968
|
+
|
|
8969
|
+
@_builtins.property
|
|
8970
|
+
@pulumi.getter(name="securityEnabled")
|
|
8971
|
+
def security_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
8972
|
+
"""
|
|
8973
|
+
Is security enabled? Defaults to `false`.
|
|
8974
|
+
"""
|
|
8975
|
+
return pulumi.get(self, "security_enabled")
|
|
8976
|
+
|
|
8977
|
+
@security_enabled.setter
|
|
8978
|
+
def security_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
8979
|
+
pulumi.set(self, "security_enabled", value)
|
|
8980
|
+
|
|
8981
|
+
|
|
8790
8982
|
if not MYPY:
|
|
8791
8983
|
class KubernetesClusterNetworkProfileLoadBalancerProfileArgsDict(TypedDict):
|
|
8792
8984
|
backend_pool_type: NotRequired[pulumi.Input[_builtins.str]]
|
|
@@ -10372,7 +10564,7 @@ if not MYPY:
|
|
|
10372
10564
|
"""
|
|
10373
10565
|
revisions: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
10374
10566
|
"""
|
|
10375
|
-
Specify 1 or 2 Istio control plane revisions for managing minor upgrades using the canary upgrade process. For example, create the resource with `revisions` set to `["asm-1-
|
|
10567
|
+
Specify 1 or 2 Istio control plane revisions for managing minor upgrades using the canary upgrade process. For example, create the resource with `revisions` set to `["asm-1-25"]`, or leave it empty (the `revisions` will only be known after apply). To start the canary upgrade, change `revisions` to `["asm-1-25", "asm-1-26"]`. To roll back the canary upgrade, revert to `["asm-1-25"]`. To confirm the upgrade, change to `["asm-1-26"]`.
|
|
10376
10568
|
|
|
10377
10569
|
> **NOTE:** Upgrading to a new (canary) revision does not affect existing sidecar proxies. You need to apply the canary revision label to selected namespaces and restart pods with kubectl to inject the new sidecar proxy. [Learn more](https://istio.io/latest/docs/setup/upgrade/canary/#data-plane).
|
|
10378
10570
|
"""
|
|
@@ -10403,7 +10595,7 @@ class KubernetesClusterServiceMeshProfileArgs:
|
|
|
10403
10595
|
internal_ingress_gateway_enabled: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
10404
10596
|
"""
|
|
10405
10597
|
:param pulumi.Input[_builtins.str] mode: The mode of the service mesh. Possible value is `Istio`.
|
|
10406
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] revisions: Specify 1 or 2 Istio control plane revisions for managing minor upgrades using the canary upgrade process. For example, create the resource with `revisions` set to `["asm-1-
|
|
10598
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] revisions: Specify 1 or 2 Istio control plane revisions for managing minor upgrades using the canary upgrade process. For example, create the resource with `revisions` set to `["asm-1-25"]`, or leave it empty (the `revisions` will only be known after apply). To start the canary upgrade, change `revisions` to `["asm-1-25", "asm-1-26"]`. To roll back the canary upgrade, revert to `["asm-1-25"]`. To confirm the upgrade, change to `["asm-1-26"]`.
|
|
10407
10599
|
|
|
10408
10600
|
> **NOTE:** Upgrading to a new (canary) revision does not affect existing sidecar proxies. You need to apply the canary revision label to selected namespaces and restart pods with kubectl to inject the new sidecar proxy. [Learn more](https://istio.io/latest/docs/setup/upgrade/canary/#data-plane).
|
|
10409
10601
|
:param pulumi.Input['KubernetesClusterServiceMeshProfileCertificateAuthorityArgs'] certificate_authority: A `certificate_authority` block as defined below. When this property is specified, `key_vault_secrets_provider` is also required to be set. This configuration allows you to bring your own root certificate and keys for Istio CA in the Istio-based service mesh add-on for Azure Kubernetes Service.
|
|
@@ -10437,7 +10629,7 @@ class KubernetesClusterServiceMeshProfileArgs:
|
|
|
10437
10629
|
@pulumi.getter
|
|
10438
10630
|
def revisions(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
10439
10631
|
"""
|
|
10440
|
-
Specify 1 or 2 Istio control plane revisions for managing minor upgrades using the canary upgrade process. For example, create the resource with `revisions` set to `["asm-1-
|
|
10632
|
+
Specify 1 or 2 Istio control plane revisions for managing minor upgrades using the canary upgrade process. For example, create the resource with `revisions` set to `["asm-1-25"]`, or leave it empty (the `revisions` will only be known after apply). To start the canary upgrade, change `revisions` to `["asm-1-25", "asm-1-26"]`. To roll back the canary upgrade, revert to `["asm-1-25"]`. To confirm the upgrade, change to `["asm-1-26"]`.
|
|
10441
10633
|
|
|
10442
10634
|
> **NOTE:** Upgrading to a new (canary) revision does not affect existing sidecar proxies. You need to apply the canary revision label to selected namespaces and restart pods with kubectl to inject the new sidecar proxy. [Learn more](https://istio.io/latest/docs/setup/upgrade/canary/#data-plane).
|
|
10443
10635
|
"""
|
|
@@ -240,7 +240,7 @@ class ClusterTrustedAccessRoleBinding(pulumi.CustomResource):
|
|
|
240
240
|
<!-- This section is generated, changes will be overwritten -->
|
|
241
241
|
This resource uses the following Azure API Providers:
|
|
242
242
|
|
|
243
|
-
* `Microsoft.ContainerService` - 2025-
|
|
243
|
+
* `Microsoft.ContainerService` - 2025-05-01
|
|
244
244
|
|
|
245
245
|
## Import
|
|
246
246
|
|
|
@@ -343,7 +343,7 @@ class ClusterTrustedAccessRoleBinding(pulumi.CustomResource):
|
|
|
343
343
|
<!-- This section is generated, changes will be overwritten -->
|
|
344
344
|
This resource uses the following Azure API Providers:
|
|
345
345
|
|
|
346
|
-
* `Microsoft.ContainerService` - 2025-
|
|
346
|
+
* `Microsoft.ContainerService` - 2025-05-01
|
|
347
347
|
|
|
348
348
|
## Import
|
|
349
349
|
|
|
@@ -27,13 +27,16 @@ class GetClusterNodePoolResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getClusterNodePool.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, auto_scaling_enabled=None, eviction_policy=None, id=None, kubernetes_cluster_name=None, max_count=None, max_pods=None, min_count=None, mode=None, name=None, node_count=None, node_labels=None, node_public_ip_enabled=None, node_public_ip_prefix_id=None, node_taints=None, orchestrator_version=None, os_disk_size_gb=None, os_disk_type=None, os_type=None, priority=None, proximity_placement_group_id=None, resource_group_name=None, spot_max_price=None, tags=None, upgrade_settings=None, vm_size=None, vnet_subnet_id=None, zones=None):
|
|
30
|
+
def __init__(__self__, auto_scaling_enabled=None, eviction_policy=None, gpu_driver=None, id=None, kubernetes_cluster_name=None, max_count=None, max_pods=None, min_count=None, mode=None, name=None, node_count=None, node_labels=None, node_public_ip_enabled=None, node_public_ip_prefix_id=None, node_taints=None, orchestrator_version=None, os_disk_size_gb=None, os_disk_type=None, os_type=None, priority=None, proximity_placement_group_id=None, resource_group_name=None, spot_max_price=None, tags=None, upgrade_settings=None, vm_size=None, vnet_subnet_id=None, zones=None):
|
|
31
31
|
if auto_scaling_enabled and not isinstance(auto_scaling_enabled, bool):
|
|
32
32
|
raise TypeError("Expected argument 'auto_scaling_enabled' to be a bool")
|
|
33
33
|
pulumi.set(__self__, "auto_scaling_enabled", auto_scaling_enabled)
|
|
34
34
|
if eviction_policy and not isinstance(eviction_policy, str):
|
|
35
35
|
raise TypeError("Expected argument 'eviction_policy' to be a str")
|
|
36
36
|
pulumi.set(__self__, "eviction_policy", eviction_policy)
|
|
37
|
+
if gpu_driver and not isinstance(gpu_driver, str):
|
|
38
|
+
raise TypeError("Expected argument 'gpu_driver' to be a str")
|
|
39
|
+
pulumi.set(__self__, "gpu_driver", gpu_driver)
|
|
37
40
|
if id and not isinstance(id, str):
|
|
38
41
|
raise TypeError("Expected argument 'id' to be a str")
|
|
39
42
|
pulumi.set(__self__, "id", id)
|
|
@@ -126,6 +129,11 @@ class GetClusterNodePoolResult:
|
|
|
126
129
|
"""
|
|
127
130
|
return pulumi.get(self, "eviction_policy")
|
|
128
131
|
|
|
132
|
+
@_builtins.property
|
|
133
|
+
@pulumi.getter(name="gpuDriver")
|
|
134
|
+
def gpu_driver(self) -> _builtins.str:
|
|
135
|
+
return pulumi.get(self, "gpu_driver")
|
|
136
|
+
|
|
129
137
|
@_builtins.property
|
|
130
138
|
@pulumi.getter
|
|
131
139
|
def id(self) -> _builtins.str:
|
|
@@ -326,6 +334,7 @@ class AwaitableGetClusterNodePoolResult(GetClusterNodePoolResult):
|
|
|
326
334
|
return GetClusterNodePoolResult(
|
|
327
335
|
auto_scaling_enabled=self.auto_scaling_enabled,
|
|
328
336
|
eviction_policy=self.eviction_policy,
|
|
337
|
+
gpu_driver=self.gpu_driver,
|
|
329
338
|
id=self.id,
|
|
330
339
|
kubernetes_cluster_name=self.kubernetes_cluster_name,
|
|
331
340
|
max_count=self.max_count,
|
|
@@ -377,7 +386,7 @@ def get_cluster_node_pool(kubernetes_cluster_name: Optional[_builtins.str] = Non
|
|
|
377
386
|
<!-- This section is generated, changes will be overwritten -->
|
|
378
387
|
This data source uses the following Azure API Providers:
|
|
379
388
|
|
|
380
|
-
* `Microsoft.ContainerService` - 2025-
|
|
389
|
+
* `Microsoft.ContainerService` - 2025-05-01
|
|
381
390
|
|
|
382
391
|
|
|
383
392
|
:param _builtins.str kubernetes_cluster_name: The Name of the Kubernetes Cluster where this Node Pool is located.
|
|
@@ -394,6 +403,7 @@ def get_cluster_node_pool(kubernetes_cluster_name: Optional[_builtins.str] = Non
|
|
|
394
403
|
return AwaitableGetClusterNodePoolResult(
|
|
395
404
|
auto_scaling_enabled=pulumi.get(__ret__, 'auto_scaling_enabled'),
|
|
396
405
|
eviction_policy=pulumi.get(__ret__, 'eviction_policy'),
|
|
406
|
+
gpu_driver=pulumi.get(__ret__, 'gpu_driver'),
|
|
397
407
|
id=pulumi.get(__ret__, 'id'),
|
|
398
408
|
kubernetes_cluster_name=pulumi.get(__ret__, 'kubernetes_cluster_name'),
|
|
399
409
|
max_count=pulumi.get(__ret__, 'max_count'),
|
|
@@ -443,7 +453,7 @@ def get_cluster_node_pool_output(kubernetes_cluster_name: Optional[pulumi.Input[
|
|
|
443
453
|
<!-- This section is generated, changes will be overwritten -->
|
|
444
454
|
This data source uses the following Azure API Providers:
|
|
445
455
|
|
|
446
|
-
* `Microsoft.ContainerService` - 2025-
|
|
456
|
+
* `Microsoft.ContainerService` - 2025-05-01
|
|
447
457
|
|
|
448
458
|
|
|
449
459
|
:param _builtins.str kubernetes_cluster_name: The Name of the Kubernetes Cluster where this Node Pool is located.
|
|
@@ -459,6 +469,7 @@ def get_cluster_node_pool_output(kubernetes_cluster_name: Optional[pulumi.Input[
|
|
|
459
469
|
return __ret__.apply(lambda __response__: GetClusterNodePoolResult(
|
|
460
470
|
auto_scaling_enabled=pulumi.get(__response__, 'auto_scaling_enabled'),
|
|
461
471
|
eviction_policy=pulumi.get(__response__, 'eviction_policy'),
|
|
472
|
+
gpu_driver=pulumi.get(__response__, 'gpu_driver'),
|
|
462
473
|
id=pulumi.get(__response__, 'id'),
|
|
463
474
|
kubernetes_cluster_name=pulumi.get(__response__, 'kubernetes_cluster_name'),
|
|
464
475
|
max_count=pulumi.get(__response__, 'max_count'),
|
|
@@ -557,7 +557,7 @@ def get_kubernetes_cluster(name: Optional[_builtins.str] = None,
|
|
|
557
557
|
<!-- This section is generated, changes will be overwritten -->
|
|
558
558
|
This data source uses the following Azure API Providers:
|
|
559
559
|
|
|
560
|
-
* `Microsoft.ContainerService` - 2025-
|
|
560
|
+
* `Microsoft.ContainerService` - 2025-05-01
|
|
561
561
|
|
|
562
562
|
|
|
563
563
|
:param _builtins.str name: The name of the managed Kubernetes Cluster.
|
|
@@ -633,7 +633,7 @@ def get_kubernetes_cluster_output(name: Optional[pulumi.Input[_builtins.str]] =
|
|
|
633
633
|
<!-- This section is generated, changes will be overwritten -->
|
|
634
634
|
This data source uses the following Azure API Providers:
|
|
635
635
|
|
|
636
|
-
* `Microsoft.ContainerService` - 2025-
|
|
636
|
+
* `Microsoft.ContainerService` - 2025-05-01
|
|
637
637
|
|
|
638
638
|
|
|
639
639
|
:param _builtins.str name: The name of the managed Kubernetes Cluster.
|
|
@@ -109,7 +109,7 @@ def get_kubernetes_node_pool_snapshot(name: Optional[_builtins.str] = None,
|
|
|
109
109
|
<!-- This section is generated, changes will be overwritten -->
|
|
110
110
|
This data source uses the following Azure API Providers:
|
|
111
111
|
|
|
112
|
-
* `Microsoft.ContainerService` - 2025-
|
|
112
|
+
* `Microsoft.ContainerService` - 2025-05-01
|
|
113
113
|
|
|
114
114
|
|
|
115
115
|
:param _builtins.str name: The name of the Kubernetes Node Pool Snapshot.
|
|
@@ -148,7 +148,7 @@ def get_kubernetes_node_pool_snapshot_output(name: Optional[pulumi.Input[_builti
|
|
|
148
148
|
<!-- This section is generated, changes will be overwritten -->
|
|
149
149
|
This data source uses the following Azure API Providers:
|
|
150
150
|
|
|
151
|
-
* `Microsoft.ContainerService` - 2025-
|
|
151
|
+
* `Microsoft.ContainerService` - 2025-05-01
|
|
152
152
|
|
|
153
153
|
|
|
154
154
|
:param _builtins.str name: The name of the Kubernetes Node Pool Snapshot.
|