pulumi-azure 6.27.0a1758695020__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.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
- {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
- {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
- {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
|
@@ -56,6 +56,7 @@ __all__ = [
|
|
|
56
56
|
'KubernetesClusterApiServerAccessProfile',
|
|
57
57
|
'KubernetesClusterAutoScalerProfile',
|
|
58
58
|
'KubernetesClusterAzureActiveDirectoryRoleBasedAccessControl',
|
|
59
|
+
'KubernetesClusterBootstrapProfile',
|
|
59
60
|
'KubernetesClusterConfidentialComputing',
|
|
60
61
|
'KubernetesClusterDefaultNodePool',
|
|
61
62
|
'KubernetesClusterDefaultNodePoolKubeletConfig',
|
|
@@ -88,6 +89,7 @@ __all__ = [
|
|
|
88
89
|
'KubernetesClusterMicrosoftDefender',
|
|
89
90
|
'KubernetesClusterMonitorMetrics',
|
|
90
91
|
'KubernetesClusterNetworkProfile',
|
|
92
|
+
'KubernetesClusterNetworkProfileAdvancedNetworking',
|
|
91
93
|
'KubernetesClusterNetworkProfileLoadBalancerProfile',
|
|
92
94
|
'KubernetesClusterNetworkProfileNatGatewayProfile',
|
|
93
95
|
'KubernetesClusterNodePoolKubeletConfig',
|
|
@@ -3016,6 +3018,10 @@ class KubernetesClusterApiServerAccessProfile(dict):
|
|
|
3016
3018
|
suggest = None
|
|
3017
3019
|
if key == "authorizedIpRanges":
|
|
3018
3020
|
suggest = "authorized_ip_ranges"
|
|
3021
|
+
elif key == "subnetId":
|
|
3022
|
+
suggest = "subnet_id"
|
|
3023
|
+
elif key == "virtualNetworkIntegrationEnabled":
|
|
3024
|
+
suggest = "virtual_network_integration_enabled"
|
|
3019
3025
|
|
|
3020
3026
|
if suggest:
|
|
3021
3027
|
pulumi.log.warn(f"Key '{key}' not found in KubernetesClusterApiServerAccessProfile. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -3029,12 +3035,20 @@ class KubernetesClusterApiServerAccessProfile(dict):
|
|
|
3029
3035
|
return super().get(key, default)
|
|
3030
3036
|
|
|
3031
3037
|
def __init__(__self__, *,
|
|
3032
|
-
authorized_ip_ranges: Optional[Sequence[_builtins.str]] = None
|
|
3038
|
+
authorized_ip_ranges: Optional[Sequence[_builtins.str]] = None,
|
|
3039
|
+
subnet_id: Optional[_builtins.str] = None,
|
|
3040
|
+
virtual_network_integration_enabled: Optional[_builtins.bool] = None):
|
|
3033
3041
|
"""
|
|
3034
3042
|
:param Sequence[_builtins.str] authorized_ip_ranges: Set of authorized IP ranges to allow access to API server, e.g. ["198.51.100.0/24"].
|
|
3043
|
+
:param _builtins.str subnet_id: The ID of the Subnet where the API server endpoint is delegated to.
|
|
3044
|
+
:param _builtins.bool virtual_network_integration_enabled: Whether to enable virtual network integration for the API Server. Defaults to `false`.
|
|
3035
3045
|
"""
|
|
3036
3046
|
if authorized_ip_ranges is not None:
|
|
3037
3047
|
pulumi.set(__self__, "authorized_ip_ranges", authorized_ip_ranges)
|
|
3048
|
+
if subnet_id is not None:
|
|
3049
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
3050
|
+
if virtual_network_integration_enabled is not None:
|
|
3051
|
+
pulumi.set(__self__, "virtual_network_integration_enabled", virtual_network_integration_enabled)
|
|
3038
3052
|
|
|
3039
3053
|
@_builtins.property
|
|
3040
3054
|
@pulumi.getter(name="authorizedIpRanges")
|
|
@@ -3044,6 +3058,22 @@ class KubernetesClusterApiServerAccessProfile(dict):
|
|
|
3044
3058
|
"""
|
|
3045
3059
|
return pulumi.get(self, "authorized_ip_ranges")
|
|
3046
3060
|
|
|
3061
|
+
@_builtins.property
|
|
3062
|
+
@pulumi.getter(name="subnetId")
|
|
3063
|
+
def subnet_id(self) -> Optional[_builtins.str]:
|
|
3064
|
+
"""
|
|
3065
|
+
The ID of the Subnet where the API server endpoint is delegated to.
|
|
3066
|
+
"""
|
|
3067
|
+
return pulumi.get(self, "subnet_id")
|
|
3068
|
+
|
|
3069
|
+
@_builtins.property
|
|
3070
|
+
@pulumi.getter(name="virtualNetworkIntegrationEnabled")
|
|
3071
|
+
def virtual_network_integration_enabled(self) -> Optional[_builtins.bool]:
|
|
3072
|
+
"""
|
|
3073
|
+
Whether to enable virtual network integration for the API Server. Defaults to `false`.
|
|
3074
|
+
"""
|
|
3075
|
+
return pulumi.get(self, "virtual_network_integration_enabled")
|
|
3076
|
+
|
|
3047
3077
|
|
|
3048
3078
|
@pulumi.output_type
|
|
3049
3079
|
class KubernetesClusterAutoScalerProfile(dict):
|
|
@@ -3140,8 +3170,7 @@ class KubernetesClusterAutoScalerProfile(dict):
|
|
|
3140
3170
|
:param _builtins.str scale_down_unready: How long an unready node should be unneeded before it is eligible for scale down. Defaults to `20m`.
|
|
3141
3171
|
:param _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`.
|
|
3142
3172
|
:param _builtins.str scan_interval: How often the AKS Cluster should be re-evaluated for scale up/down. Defaults to `10s`.
|
|
3143
|
-
:param _builtins.bool
|
|
3144
|
-
:param _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 -->
|
|
3173
|
+
:param _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`.
|
|
3145
3174
|
"""
|
|
3146
3175
|
if balance_similar_node_groups is not None:
|
|
3147
3176
|
pulumi.set(__self__, "balance_similar_node_groups", balance_similar_node_groups)
|
|
@@ -3331,16 +3360,13 @@ class KubernetesClusterAutoScalerProfile(dict):
|
|
|
3331
3360
|
@_builtins.property
|
|
3332
3361
|
@pulumi.getter(name="skipNodesWithLocalStorage")
|
|
3333
3362
|
def skip_nodes_with_local_storage(self) -> Optional[_builtins.bool]:
|
|
3334
|
-
"""
|
|
3335
|
-
If `true` cluster autoscaler will never delete nodes with pods with local storage, for example, EmptyDir or HostPath. Defaults to `true`.
|
|
3336
|
-
"""
|
|
3337
3363
|
return pulumi.get(self, "skip_nodes_with_local_storage")
|
|
3338
3364
|
|
|
3339
3365
|
@_builtins.property
|
|
3340
3366
|
@pulumi.getter(name="skipNodesWithSystemPods")
|
|
3341
3367
|
def skip_nodes_with_system_pods(self) -> Optional[_builtins.bool]:
|
|
3342
3368
|
"""
|
|
3343
|
-
If `true` cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Defaults to `
|
|
3369
|
+
If `true` cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Defaults to `true`.
|
|
3344
3370
|
"""
|
|
3345
3371
|
return pulumi.get(self, "skip_nodes_with_system_pods")
|
|
3346
3372
|
|
|
@@ -3409,6 +3435,64 @@ class KubernetesClusterAzureActiveDirectoryRoleBasedAccessControl(dict):
|
|
|
3409
3435
|
return pulumi.get(self, "tenant_id")
|
|
3410
3436
|
|
|
3411
3437
|
|
|
3438
|
+
@pulumi.output_type
|
|
3439
|
+
class KubernetesClusterBootstrapProfile(dict):
|
|
3440
|
+
@staticmethod
|
|
3441
|
+
def __key_warning(key: str):
|
|
3442
|
+
suggest = None
|
|
3443
|
+
if key == "artifactSource":
|
|
3444
|
+
suggest = "artifact_source"
|
|
3445
|
+
elif key == "containerRegistryId":
|
|
3446
|
+
suggest = "container_registry_id"
|
|
3447
|
+
|
|
3448
|
+
if suggest:
|
|
3449
|
+
pulumi.log.warn(f"Key '{key}' not found in KubernetesClusterBootstrapProfile. Access the value via the '{suggest}' property getter instead.")
|
|
3450
|
+
|
|
3451
|
+
def __getitem__(self, key: str) -> Any:
|
|
3452
|
+
KubernetesClusterBootstrapProfile.__key_warning(key)
|
|
3453
|
+
return super().__getitem__(key)
|
|
3454
|
+
|
|
3455
|
+
def get(self, key: str, default = None) -> Any:
|
|
3456
|
+
KubernetesClusterBootstrapProfile.__key_warning(key)
|
|
3457
|
+
return super().get(key, default)
|
|
3458
|
+
|
|
3459
|
+
def __init__(__self__, *,
|
|
3460
|
+
artifact_source: Optional[_builtins.str] = None,
|
|
3461
|
+
container_registry_id: Optional[_builtins.str] = None):
|
|
3462
|
+
"""
|
|
3463
|
+
:param _builtins.str artifact_source: The artifact source. The source where the artifacts are downloaded from. Possible values are `Cache` and `Direct`. Defaults to `Direct`.
|
|
3464
|
+
|
|
3465
|
+
> **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.
|
|
3466
|
+
:param _builtins.str container_registry_id: The resource Id of Azure Container Registry.
|
|
3467
|
+
|
|
3468
|
+
> **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.
|
|
3469
|
+
"""
|
|
3470
|
+
if artifact_source is not None:
|
|
3471
|
+
pulumi.set(__self__, "artifact_source", artifact_source)
|
|
3472
|
+
if container_registry_id is not None:
|
|
3473
|
+
pulumi.set(__self__, "container_registry_id", container_registry_id)
|
|
3474
|
+
|
|
3475
|
+
@_builtins.property
|
|
3476
|
+
@pulumi.getter(name="artifactSource")
|
|
3477
|
+
def artifact_source(self) -> Optional[_builtins.str]:
|
|
3478
|
+
"""
|
|
3479
|
+
The artifact source. The source where the artifacts are downloaded from. Possible values are `Cache` and `Direct`. Defaults to `Direct`.
|
|
3480
|
+
|
|
3481
|
+
> **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.
|
|
3482
|
+
"""
|
|
3483
|
+
return pulumi.get(self, "artifact_source")
|
|
3484
|
+
|
|
3485
|
+
@_builtins.property
|
|
3486
|
+
@pulumi.getter(name="containerRegistryId")
|
|
3487
|
+
def container_registry_id(self) -> Optional[_builtins.str]:
|
|
3488
|
+
"""
|
|
3489
|
+
The resource Id of Azure Container Registry.
|
|
3490
|
+
|
|
3491
|
+
> **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.
|
|
3492
|
+
"""
|
|
3493
|
+
return pulumi.get(self, "container_registry_id")
|
|
3494
|
+
|
|
3495
|
+
|
|
3412
3496
|
@pulumi.output_type
|
|
3413
3497
|
class KubernetesClusterConfidentialComputing(dict):
|
|
3414
3498
|
@staticmethod
|
|
@@ -3455,6 +3539,8 @@ class KubernetesClusterDefaultNodePool(dict):
|
|
|
3455
3539
|
suggest = "capacity_reservation_group_id"
|
|
3456
3540
|
elif key == "fipsEnabled":
|
|
3457
3541
|
suggest = "fips_enabled"
|
|
3542
|
+
elif key == "gpuDriver":
|
|
3543
|
+
suggest = "gpu_driver"
|
|
3458
3544
|
elif key == "gpuInstance":
|
|
3459
3545
|
suggest = "gpu_instance"
|
|
3460
3546
|
elif key == "hostEncryptionEnabled":
|
|
@@ -3530,6 +3616,7 @@ class KubernetesClusterDefaultNodePool(dict):
|
|
|
3530
3616
|
auto_scaling_enabled: Optional[_builtins.bool] = None,
|
|
3531
3617
|
capacity_reservation_group_id: Optional[_builtins.str] = None,
|
|
3532
3618
|
fips_enabled: Optional[_builtins.bool] = None,
|
|
3619
|
+
gpu_driver: Optional[_builtins.str] = None,
|
|
3533
3620
|
gpu_instance: Optional[_builtins.str] = None,
|
|
3534
3621
|
host_encryption_enabled: Optional[_builtins.bool] = None,
|
|
3535
3622
|
host_group_id: Optional[_builtins.str] = None,
|
|
@@ -3620,6 +3707,8 @@ class KubernetesClusterDefaultNodePool(dict):
|
|
|
3620
3707
|
pulumi.set(__self__, "capacity_reservation_group_id", capacity_reservation_group_id)
|
|
3621
3708
|
if fips_enabled is not None:
|
|
3622
3709
|
pulumi.set(__self__, "fips_enabled", fips_enabled)
|
|
3710
|
+
if gpu_driver is not None:
|
|
3711
|
+
pulumi.set(__self__, "gpu_driver", gpu_driver)
|
|
3623
3712
|
if gpu_instance is not None:
|
|
3624
3713
|
pulumi.set(__self__, "gpu_instance", gpu_instance)
|
|
3625
3714
|
if host_encryption_enabled is not None:
|
|
@@ -3721,6 +3810,11 @@ class KubernetesClusterDefaultNodePool(dict):
|
|
|
3721
3810
|
"""
|
|
3722
3811
|
return pulumi.get(self, "fips_enabled")
|
|
3723
3812
|
|
|
3813
|
+
@_builtins.property
|
|
3814
|
+
@pulumi.getter(name="gpuDriver")
|
|
3815
|
+
def gpu_driver(self) -> Optional[_builtins.str]:
|
|
3816
|
+
return pulumi.get(self, "gpu_driver")
|
|
3817
|
+
|
|
3724
3818
|
@_builtins.property
|
|
3725
3819
|
@pulumi.getter(name="gpuInstance")
|
|
3726
3820
|
def gpu_instance(self) -> Optional[_builtins.str]:
|
|
@@ -6427,6 +6521,8 @@ class KubernetesClusterNetworkProfile(dict):
|
|
|
6427
6521
|
suggest = None
|
|
6428
6522
|
if key == "networkPlugin":
|
|
6429
6523
|
suggest = "network_plugin"
|
|
6524
|
+
elif key == "advancedNetworking":
|
|
6525
|
+
suggest = "advanced_networking"
|
|
6430
6526
|
elif key == "dnsServiceIp":
|
|
6431
6527
|
suggest = "dns_service_ip"
|
|
6432
6528
|
elif key == "ipVersions":
|
|
@@ -6469,6 +6565,7 @@ class KubernetesClusterNetworkProfile(dict):
|
|
|
6469
6565
|
|
|
6470
6566
|
def __init__(__self__, *,
|
|
6471
6567
|
network_plugin: _builtins.str,
|
|
6568
|
+
advanced_networking: Optional['outputs.KubernetesClusterNetworkProfileAdvancedNetworking'] = None,
|
|
6472
6569
|
dns_service_ip: Optional[_builtins.str] = None,
|
|
6473
6570
|
ip_versions: Optional[Sequence[_builtins.str]] = None,
|
|
6474
6571
|
load_balancer_profile: Optional['outputs.KubernetesClusterNetworkProfileLoadBalancerProfile'] = None,
|
|
@@ -6487,6 +6584,7 @@ class KubernetesClusterNetworkProfile(dict):
|
|
|
6487
6584
|
:param _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.
|
|
6488
6585
|
|
|
6489
6586
|
> **Note:** When `network_plugin` is set to `azure` - the `pod_cidr` field must not be set, unless specifying `network_plugin_mode` to `overlay`.
|
|
6587
|
+
:param '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`.
|
|
6490
6588
|
:param _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.
|
|
6491
6589
|
:param Sequence[_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.
|
|
6492
6590
|
|
|
@@ -6514,7 +6612,9 @@ class KubernetesClusterNetworkProfile(dict):
|
|
|
6514
6612
|
> **Note:** When `network_policy` is set to `azure`, the `network_plugin` field can only be set to `azure`.
|
|
6515
6613
|
|
|
6516
6614
|
> **Note:** When `network_policy` is set to `cilium`, the `network_data_plane` field must be set to `cilium`.
|
|
6517
|
-
:param _builtins.str outbound_type: The outbound (egress) routing method which should be used for this Kubernetes Cluster. Possible values are `loadBalancer`, `userDefinedRouting`, `managedNATGateway` and `
|
|
6615
|
+
:param _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`.
|
|
6616
|
+
|
|
6617
|
+
> **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).
|
|
6518
6618
|
:param _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.
|
|
6519
6619
|
:param Sequence[_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.
|
|
6520
6620
|
:param _builtins.str service_cidr: The Network Range used by the Kubernetes service. Changing this forces a new resource to be created.
|
|
@@ -6523,6 +6623,8 @@ class KubernetesClusterNetworkProfile(dict):
|
|
|
6523
6623
|
> **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.
|
|
6524
6624
|
"""
|
|
6525
6625
|
pulumi.set(__self__, "network_plugin", network_plugin)
|
|
6626
|
+
if advanced_networking is not None:
|
|
6627
|
+
pulumi.set(__self__, "advanced_networking", advanced_networking)
|
|
6526
6628
|
if dns_service_ip is not None:
|
|
6527
6629
|
pulumi.set(__self__, "dns_service_ip", dns_service_ip)
|
|
6528
6630
|
if ip_versions is not None:
|
|
@@ -6562,6 +6664,14 @@ class KubernetesClusterNetworkProfile(dict):
|
|
|
6562
6664
|
"""
|
|
6563
6665
|
return pulumi.get(self, "network_plugin")
|
|
6564
6666
|
|
|
6667
|
+
@_builtins.property
|
|
6668
|
+
@pulumi.getter(name="advancedNetworking")
|
|
6669
|
+
def advanced_networking(self) -> Optional['outputs.KubernetesClusterNetworkProfileAdvancedNetworking']:
|
|
6670
|
+
"""
|
|
6671
|
+
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`.
|
|
6672
|
+
"""
|
|
6673
|
+
return pulumi.get(self, "advanced_networking")
|
|
6674
|
+
|
|
6565
6675
|
@_builtins.property
|
|
6566
6676
|
@pulumi.getter(name="dnsServiceIp")
|
|
6567
6677
|
def dns_service_ip(self) -> Optional[_builtins.str]:
|
|
@@ -6656,7 +6766,9 @@ class KubernetesClusterNetworkProfile(dict):
|
|
|
6656
6766
|
@pulumi.getter(name="outboundType")
|
|
6657
6767
|
def outbound_type(self) -> Optional[_builtins.str]:
|
|
6658
6768
|
"""
|
|
6659
|
-
The outbound (egress) routing method which should be used for this Kubernetes Cluster. Possible values are `loadBalancer`, `userDefinedRouting`, `managedNATGateway` and `
|
|
6769
|
+
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`.
|
|
6770
|
+
|
|
6771
|
+
> **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).
|
|
6660
6772
|
"""
|
|
6661
6773
|
return pulumi.get(self, "outbound_type")
|
|
6662
6774
|
|
|
@@ -6695,6 +6807,56 @@ class KubernetesClusterNetworkProfile(dict):
|
|
|
6695
6807
|
return pulumi.get(self, "service_cidrs")
|
|
6696
6808
|
|
|
6697
6809
|
|
|
6810
|
+
@pulumi.output_type
|
|
6811
|
+
class KubernetesClusterNetworkProfileAdvancedNetworking(dict):
|
|
6812
|
+
@staticmethod
|
|
6813
|
+
def __key_warning(key: str):
|
|
6814
|
+
suggest = None
|
|
6815
|
+
if key == "observabilityEnabled":
|
|
6816
|
+
suggest = "observability_enabled"
|
|
6817
|
+
elif key == "securityEnabled":
|
|
6818
|
+
suggest = "security_enabled"
|
|
6819
|
+
|
|
6820
|
+
if suggest:
|
|
6821
|
+
pulumi.log.warn(f"Key '{key}' not found in KubernetesClusterNetworkProfileAdvancedNetworking. Access the value via the '{suggest}' property getter instead.")
|
|
6822
|
+
|
|
6823
|
+
def __getitem__(self, key: str) -> Any:
|
|
6824
|
+
KubernetesClusterNetworkProfileAdvancedNetworking.__key_warning(key)
|
|
6825
|
+
return super().__getitem__(key)
|
|
6826
|
+
|
|
6827
|
+
def get(self, key: str, default = None) -> Any:
|
|
6828
|
+
KubernetesClusterNetworkProfileAdvancedNetworking.__key_warning(key)
|
|
6829
|
+
return super().get(key, default)
|
|
6830
|
+
|
|
6831
|
+
def __init__(__self__, *,
|
|
6832
|
+
observability_enabled: Optional[_builtins.bool] = None,
|
|
6833
|
+
security_enabled: Optional[_builtins.bool] = None):
|
|
6834
|
+
"""
|
|
6835
|
+
:param _builtins.bool observability_enabled: Is observability enabled? Defaults to `false`.
|
|
6836
|
+
:param _builtins.bool security_enabled: Is security enabled? Defaults to `false`.
|
|
6837
|
+
"""
|
|
6838
|
+
if observability_enabled is not None:
|
|
6839
|
+
pulumi.set(__self__, "observability_enabled", observability_enabled)
|
|
6840
|
+
if security_enabled is not None:
|
|
6841
|
+
pulumi.set(__self__, "security_enabled", security_enabled)
|
|
6842
|
+
|
|
6843
|
+
@_builtins.property
|
|
6844
|
+
@pulumi.getter(name="observabilityEnabled")
|
|
6845
|
+
def observability_enabled(self) -> Optional[_builtins.bool]:
|
|
6846
|
+
"""
|
|
6847
|
+
Is observability enabled? Defaults to `false`.
|
|
6848
|
+
"""
|
|
6849
|
+
return pulumi.get(self, "observability_enabled")
|
|
6850
|
+
|
|
6851
|
+
@_builtins.property
|
|
6852
|
+
@pulumi.getter(name="securityEnabled")
|
|
6853
|
+
def security_enabled(self) -> Optional[_builtins.bool]:
|
|
6854
|
+
"""
|
|
6855
|
+
Is security enabled? Defaults to `false`.
|
|
6856
|
+
"""
|
|
6857
|
+
return pulumi.get(self, "security_enabled")
|
|
6858
|
+
|
|
6859
|
+
|
|
6698
6860
|
@pulumi.output_type
|
|
6699
6861
|
class KubernetesClusterNetworkProfileLoadBalancerProfile(dict):
|
|
6700
6862
|
@staticmethod
|
|
@@ -7975,7 +8137,7 @@ class KubernetesClusterServiceMeshProfile(dict):
|
|
|
7975
8137
|
internal_ingress_gateway_enabled: Optional[_builtins.bool] = None):
|
|
7976
8138
|
"""
|
|
7977
8139
|
:param _builtins.str mode: The mode of the service mesh. Possible value is `Istio`.
|
|
7978
|
-
:param Sequence[_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-
|
|
8140
|
+
:param Sequence[_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"]`.
|
|
7979
8141
|
|
|
7980
8142
|
> **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).
|
|
7981
8143
|
:param '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.
|
|
@@ -8005,7 +8167,7 @@ class KubernetesClusterServiceMeshProfile(dict):
|
|
|
8005
8167
|
@pulumi.getter
|
|
8006
8168
|
def revisions(self) -> Sequence[_builtins.str]:
|
|
8007
8169
|
"""
|
|
8008
|
-
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-
|
|
8170
|
+
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"]`.
|
|
8009
8171
|
|
|
8010
8172
|
> **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).
|
|
8011
8173
|
"""
|
pulumi_azure/core/_inputs.py
CHANGED
|
@@ -1298,9 +1298,6 @@ if not MYPY:
|
|
|
1298
1298
|
class ResourceGroupPolicyAssignmentOverrideSelectorArgsDict(TypedDict):
|
|
1299
1299
|
ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
1300
1300
|
kind: NotRequired[pulumi.Input[_builtins.str]]
|
|
1301
|
-
"""
|
|
1302
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1303
|
-
"""
|
|
1304
1301
|
not_ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
1305
1302
|
elif False:
|
|
1306
1303
|
ResourceGroupPolicyAssignmentOverrideSelectorArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1311,9 +1308,6 @@ class ResourceGroupPolicyAssignmentOverrideSelectorArgs:
|
|
|
1311
1308
|
ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1312
1309
|
kind: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1313
1310
|
not_ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
1314
|
-
"""
|
|
1315
|
-
:param pulumi.Input[_builtins.str] kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1316
|
-
"""
|
|
1317
1311
|
if ins is not None:
|
|
1318
1312
|
pulumi.set(__self__, "ins", ins)
|
|
1319
1313
|
if kind is not None:
|
|
@@ -1333,9 +1327,6 @@ class ResourceGroupPolicyAssignmentOverrideSelectorArgs:
|
|
|
1333
1327
|
@_builtins.property
|
|
1334
1328
|
@pulumi.getter
|
|
1335
1329
|
def kind(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1336
|
-
"""
|
|
1337
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1338
|
-
"""
|
|
1339
1330
|
return pulumi.get(self, "kind")
|
|
1340
1331
|
|
|
1341
1332
|
@kind.setter
|
|
@@ -1406,9 +1397,6 @@ class ResourceGroupPolicyAssignmentResourceSelectorArgs:
|
|
|
1406
1397
|
if not MYPY:
|
|
1407
1398
|
class ResourceGroupPolicyAssignmentResourceSelectorSelectorArgsDict(TypedDict):
|
|
1408
1399
|
kind: pulumi.Input[_builtins.str]
|
|
1409
|
-
"""
|
|
1410
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1411
|
-
"""
|
|
1412
1400
|
ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
1413
1401
|
not_ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
1414
1402
|
elif False:
|
|
@@ -1420,9 +1408,6 @@ class ResourceGroupPolicyAssignmentResourceSelectorSelectorArgs:
|
|
|
1420
1408
|
kind: pulumi.Input[_builtins.str],
|
|
1421
1409
|
ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1422
1410
|
not_ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
1423
|
-
"""
|
|
1424
|
-
:param pulumi.Input[_builtins.str] kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1425
|
-
"""
|
|
1426
1411
|
pulumi.set(__self__, "kind", kind)
|
|
1427
1412
|
if ins is not None:
|
|
1428
1413
|
pulumi.set(__self__, "ins", ins)
|
|
@@ -1432,9 +1417,6 @@ class ResourceGroupPolicyAssignmentResourceSelectorSelectorArgs:
|
|
|
1432
1417
|
@_builtins.property
|
|
1433
1418
|
@pulumi.getter
|
|
1434
1419
|
def kind(self) -> pulumi.Input[_builtins.str]:
|
|
1435
|
-
"""
|
|
1436
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1437
|
-
"""
|
|
1438
1420
|
return pulumi.get(self, "kind")
|
|
1439
1421
|
|
|
1440
1422
|
@kind.setter
|
|
@@ -1663,9 +1645,6 @@ if not MYPY:
|
|
|
1663
1645
|
class ResourcePolicyAssignmentOverrideSelectorArgsDict(TypedDict):
|
|
1664
1646
|
ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
1665
1647
|
kind: NotRequired[pulumi.Input[_builtins.str]]
|
|
1666
|
-
"""
|
|
1667
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1668
|
-
"""
|
|
1669
1648
|
not_ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
1670
1649
|
elif False:
|
|
1671
1650
|
ResourcePolicyAssignmentOverrideSelectorArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -1676,9 +1655,6 @@ class ResourcePolicyAssignmentOverrideSelectorArgs:
|
|
|
1676
1655
|
ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1677
1656
|
kind: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1678
1657
|
not_ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
1679
|
-
"""
|
|
1680
|
-
:param pulumi.Input[_builtins.str] kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1681
|
-
"""
|
|
1682
1658
|
if ins is not None:
|
|
1683
1659
|
pulumi.set(__self__, "ins", ins)
|
|
1684
1660
|
if kind is not None:
|
|
@@ -1698,9 +1674,6 @@ class ResourcePolicyAssignmentOverrideSelectorArgs:
|
|
|
1698
1674
|
@_builtins.property
|
|
1699
1675
|
@pulumi.getter
|
|
1700
1676
|
def kind(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1701
|
-
"""
|
|
1702
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1703
|
-
"""
|
|
1704
1677
|
return pulumi.get(self, "kind")
|
|
1705
1678
|
|
|
1706
1679
|
@kind.setter
|
|
@@ -1771,9 +1744,6 @@ class ResourcePolicyAssignmentResourceSelectorArgs:
|
|
|
1771
1744
|
if not MYPY:
|
|
1772
1745
|
class ResourcePolicyAssignmentResourceSelectorSelectorArgsDict(TypedDict):
|
|
1773
1746
|
kind: pulumi.Input[_builtins.str]
|
|
1774
|
-
"""
|
|
1775
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1776
|
-
"""
|
|
1777
1747
|
ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
1778
1748
|
not_ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
1779
1749
|
elif False:
|
|
@@ -1785,9 +1755,6 @@ class ResourcePolicyAssignmentResourceSelectorSelectorArgs:
|
|
|
1785
1755
|
kind: pulumi.Input[_builtins.str],
|
|
1786
1756
|
ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1787
1757
|
not_ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
1788
|
-
"""
|
|
1789
|
-
:param pulumi.Input[_builtins.str] kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1790
|
-
"""
|
|
1791
1758
|
pulumi.set(__self__, "kind", kind)
|
|
1792
1759
|
if ins is not None:
|
|
1793
1760
|
pulumi.set(__self__, "ins", ins)
|
|
@@ -1797,9 +1764,6 @@ class ResourcePolicyAssignmentResourceSelectorSelectorArgs:
|
|
|
1797
1764
|
@_builtins.property
|
|
1798
1765
|
@pulumi.getter
|
|
1799
1766
|
def kind(self) -> pulumi.Input[_builtins.str]:
|
|
1800
|
-
"""
|
|
1801
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1802
|
-
"""
|
|
1803
1767
|
return pulumi.get(self, "kind")
|
|
1804
1768
|
|
|
1805
1769
|
@kind.setter
|
|
@@ -2498,9 +2462,6 @@ if not MYPY:
|
|
|
2498
2462
|
class SubscriptionPolicyAssignmentOverrideSelectorArgsDict(TypedDict):
|
|
2499
2463
|
ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2500
2464
|
kind: NotRequired[pulumi.Input[_builtins.str]]
|
|
2501
|
-
"""
|
|
2502
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
2503
|
-
"""
|
|
2504
2465
|
not_ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2505
2466
|
elif False:
|
|
2506
2467
|
SubscriptionPolicyAssignmentOverrideSelectorArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -2511,9 +2472,6 @@ class SubscriptionPolicyAssignmentOverrideSelectorArgs:
|
|
|
2511
2472
|
ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
2512
2473
|
kind: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2513
2474
|
not_ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
2514
|
-
"""
|
|
2515
|
-
:param pulumi.Input[_builtins.str] kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
2516
|
-
"""
|
|
2517
2475
|
if ins is not None:
|
|
2518
2476
|
pulumi.set(__self__, "ins", ins)
|
|
2519
2477
|
if kind is not None:
|
|
@@ -2533,9 +2491,6 @@ class SubscriptionPolicyAssignmentOverrideSelectorArgs:
|
|
|
2533
2491
|
@_builtins.property
|
|
2534
2492
|
@pulumi.getter
|
|
2535
2493
|
def kind(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2536
|
-
"""
|
|
2537
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
2538
|
-
"""
|
|
2539
2494
|
return pulumi.get(self, "kind")
|
|
2540
2495
|
|
|
2541
2496
|
@kind.setter
|
|
@@ -2606,9 +2561,6 @@ class SubscriptionPolicyAssignmentResourceSelectorArgs:
|
|
|
2606
2561
|
if not MYPY:
|
|
2607
2562
|
class SubscriptionPolicyAssignmentResourceSelectorSelectorArgsDict(TypedDict):
|
|
2608
2563
|
kind: pulumi.Input[_builtins.str]
|
|
2609
|
-
"""
|
|
2610
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
2611
|
-
"""
|
|
2612
2564
|
ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2613
2565
|
not_ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2614
2566
|
elif False:
|
|
@@ -2620,9 +2572,6 @@ class SubscriptionPolicyAssignmentResourceSelectorSelectorArgs:
|
|
|
2620
2572
|
kind: pulumi.Input[_builtins.str],
|
|
2621
2573
|
ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
2622
2574
|
not_ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
2623
|
-
"""
|
|
2624
|
-
:param pulumi.Input[_builtins.str] kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
2625
|
-
"""
|
|
2626
2575
|
pulumi.set(__self__, "kind", kind)
|
|
2627
2576
|
if ins is not None:
|
|
2628
2577
|
pulumi.set(__self__, "ins", ins)
|
|
@@ -2632,9 +2581,6 @@ class SubscriptionPolicyAssignmentResourceSelectorSelectorArgs:
|
|
|
2632
2581
|
@_builtins.property
|
|
2633
2582
|
@pulumi.getter
|
|
2634
2583
|
def kind(self) -> pulumi.Input[_builtins.str]:
|
|
2635
|
-
"""
|
|
2636
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
2637
|
-
"""
|
|
2638
2584
|
return pulumi.get(self, "kind")
|
|
2639
2585
|
|
|
2640
2586
|
@kind.setter
|
pulumi_azure/core/outputs.py
CHANGED
|
@@ -993,9 +993,6 @@ class ResourceGroupPolicyAssignmentOverrideSelector(dict):
|
|
|
993
993
|
ins: Optional[Sequence[_builtins.str]] = None,
|
|
994
994
|
kind: Optional[_builtins.str] = None,
|
|
995
995
|
not_ins: Optional[Sequence[_builtins.str]] = None):
|
|
996
|
-
"""
|
|
997
|
-
:param _builtins.str kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
998
|
-
"""
|
|
999
996
|
if ins is not None:
|
|
1000
997
|
pulumi.set(__self__, "ins", ins)
|
|
1001
998
|
if kind is not None:
|
|
@@ -1011,9 +1008,6 @@ class ResourceGroupPolicyAssignmentOverrideSelector(dict):
|
|
|
1011
1008
|
@_builtins.property
|
|
1012
1009
|
@pulumi.getter
|
|
1013
1010
|
def kind(self) -> Optional[_builtins.str]:
|
|
1014
|
-
"""
|
|
1015
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1016
|
-
"""
|
|
1017
1011
|
return pulumi.get(self, "kind")
|
|
1018
1012
|
|
|
1019
1013
|
@_builtins.property
|
|
@@ -1075,9 +1069,6 @@ class ResourceGroupPolicyAssignmentResourceSelectorSelector(dict):
|
|
|
1075
1069
|
kind: _builtins.str,
|
|
1076
1070
|
ins: Optional[Sequence[_builtins.str]] = None,
|
|
1077
1071
|
not_ins: Optional[Sequence[_builtins.str]] = None):
|
|
1078
|
-
"""
|
|
1079
|
-
:param _builtins.str kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1080
|
-
"""
|
|
1081
1072
|
pulumi.set(__self__, "kind", kind)
|
|
1082
1073
|
if ins is not None:
|
|
1083
1074
|
pulumi.set(__self__, "ins", ins)
|
|
@@ -1087,9 +1078,6 @@ class ResourceGroupPolicyAssignmentResourceSelectorSelector(dict):
|
|
|
1087
1078
|
@_builtins.property
|
|
1088
1079
|
@pulumi.getter
|
|
1089
1080
|
def kind(self) -> _builtins.str:
|
|
1090
|
-
"""
|
|
1091
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1092
|
-
"""
|
|
1093
1081
|
return pulumi.get(self, "kind")
|
|
1094
1082
|
|
|
1095
1083
|
@_builtins.property
|
|
@@ -1282,9 +1270,6 @@ class ResourcePolicyAssignmentOverrideSelector(dict):
|
|
|
1282
1270
|
ins: Optional[Sequence[_builtins.str]] = None,
|
|
1283
1271
|
kind: Optional[_builtins.str] = None,
|
|
1284
1272
|
not_ins: Optional[Sequence[_builtins.str]] = None):
|
|
1285
|
-
"""
|
|
1286
|
-
:param _builtins.str kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1287
|
-
"""
|
|
1288
1273
|
if ins is not None:
|
|
1289
1274
|
pulumi.set(__self__, "ins", ins)
|
|
1290
1275
|
if kind is not None:
|
|
@@ -1300,9 +1285,6 @@ class ResourcePolicyAssignmentOverrideSelector(dict):
|
|
|
1300
1285
|
@_builtins.property
|
|
1301
1286
|
@pulumi.getter
|
|
1302
1287
|
def kind(self) -> Optional[_builtins.str]:
|
|
1303
|
-
"""
|
|
1304
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1305
|
-
"""
|
|
1306
1288
|
return pulumi.get(self, "kind")
|
|
1307
1289
|
|
|
1308
1290
|
@_builtins.property
|
|
@@ -1364,9 +1346,6 @@ class ResourcePolicyAssignmentResourceSelectorSelector(dict):
|
|
|
1364
1346
|
kind: _builtins.str,
|
|
1365
1347
|
ins: Optional[Sequence[_builtins.str]] = None,
|
|
1366
1348
|
not_ins: Optional[Sequence[_builtins.str]] = None):
|
|
1367
|
-
"""
|
|
1368
|
-
:param _builtins.str kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1369
|
-
"""
|
|
1370
1349
|
pulumi.set(__self__, "kind", kind)
|
|
1371
1350
|
if ins is not None:
|
|
1372
1351
|
pulumi.set(__self__, "ins", ins)
|
|
@@ -1376,9 +1355,6 @@ class ResourcePolicyAssignmentResourceSelectorSelector(dict):
|
|
|
1376
1355
|
@_builtins.property
|
|
1377
1356
|
@pulumi.getter
|
|
1378
1357
|
def kind(self) -> _builtins.str:
|
|
1379
|
-
"""
|
|
1380
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1381
|
-
"""
|
|
1382
1358
|
return pulumi.get(self, "kind")
|
|
1383
1359
|
|
|
1384
1360
|
@_builtins.property
|
|
@@ -1898,9 +1874,6 @@ class SubscriptionPolicyAssignmentOverrideSelector(dict):
|
|
|
1898
1874
|
ins: Optional[Sequence[_builtins.str]] = None,
|
|
1899
1875
|
kind: Optional[_builtins.str] = None,
|
|
1900
1876
|
not_ins: Optional[Sequence[_builtins.str]] = None):
|
|
1901
|
-
"""
|
|
1902
|
-
:param _builtins.str kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1903
|
-
"""
|
|
1904
1877
|
if ins is not None:
|
|
1905
1878
|
pulumi.set(__self__, "ins", ins)
|
|
1906
1879
|
if kind is not None:
|
|
@@ -1916,9 +1889,6 @@ class SubscriptionPolicyAssignmentOverrideSelector(dict):
|
|
|
1916
1889
|
@_builtins.property
|
|
1917
1890
|
@pulumi.getter
|
|
1918
1891
|
def kind(self) -> Optional[_builtins.str]:
|
|
1919
|
-
"""
|
|
1920
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1921
|
-
"""
|
|
1922
1892
|
return pulumi.get(self, "kind")
|
|
1923
1893
|
|
|
1924
1894
|
@_builtins.property
|
|
@@ -1980,9 +1950,6 @@ class SubscriptionPolicyAssignmentResourceSelectorSelector(dict):
|
|
|
1980
1950
|
kind: _builtins.str,
|
|
1981
1951
|
ins: Optional[Sequence[_builtins.str]] = None,
|
|
1982
1952
|
not_ins: Optional[Sequence[_builtins.str]] = None):
|
|
1983
|
-
"""
|
|
1984
|
-
:param _builtins.str kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1985
|
-
"""
|
|
1986
1953
|
pulumi.set(__self__, "kind", kind)
|
|
1987
1954
|
if ins is not None:
|
|
1988
1955
|
pulumi.set(__self__, "ins", ins)
|
|
@@ -1992,9 +1959,6 @@ class SubscriptionPolicyAssignmentResourceSelectorSelector(dict):
|
|
|
1992
1959
|
@_builtins.property
|
|
1993
1960
|
@pulumi.getter
|
|
1994
1961
|
def kind(self) -> _builtins.str:
|
|
1995
|
-
"""
|
|
1996
|
-
Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
|
|
1997
|
-
"""
|
|
1998
1962
|
return pulumi.get(self, "kind")
|
|
1999
1963
|
|
|
2000
1964
|
@_builtins.property
|
|
@@ -361,7 +361,7 @@ class ResourceGroupCostManagementExport(pulumi.CustomResource):
|
|
|
361
361
|
recurrence_period_end_date="2020-09-18T00:00:00Z",
|
|
362
362
|
file_format="Csv",
|
|
363
363
|
export_data_storage_location={
|
|
364
|
-
"container_id": example_container.
|
|
364
|
+
"container_id": example_container.id,
|
|
365
365
|
"root_folder_path": "/root/updated",
|
|
366
366
|
},
|
|
367
367
|
export_data_options={
|
|
@@ -432,7 +432,7 @@ class ResourceGroupCostManagementExport(pulumi.CustomResource):
|
|
|
432
432
|
recurrence_period_end_date="2020-09-18T00:00:00Z",
|
|
433
433
|
file_format="Csv",
|
|
434
434
|
export_data_storage_location={
|
|
435
|
-
"container_id": example_container.
|
|
435
|
+
"container_id": example_container.id,
|
|
436
436
|
"root_folder_path": "/root/updated",
|
|
437
437
|
},
|
|
438
438
|
export_data_options={
|