pulumi-azure-native 2.57.0a1724076329__py3-none-any.whl → 2.57.0a1724151002__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +104 -0
- pulumi_azure_native/billing/_enums.py +0 -12
- pulumi_azure_native/billing/_inputs.py +5 -5
- pulumi_azure_native/billing/v20240401/_enums.py +0 -12
- pulumi_azure_native/billing/v20240401/_inputs.py +5 -5
- pulumi_azure_native/compute/v20240701/_enums.py +1 -1
- pulumi_azure_native/compute/v20240701/_inputs.py +3 -3
- pulumi_azure_native/compute/v20240701/outputs.py +2 -2
- pulumi_azure_native/datafactory/_inputs.py +140 -19
- pulumi_azure_native/datafactory/outputs.py +98 -13
- pulumi_azure_native/datafactory/v20180601/_inputs.py +140 -19
- pulumi_azure_native/datafactory/v20180601/outputs.py +98 -13
- pulumi_azure_native/documentdb/__init__.py +3 -0
- pulumi_azure_native/documentdb/_inputs.py +56 -0
- pulumi_azure_native/documentdb/firewall_rule.py +30 -70
- pulumi_azure_native/documentdb/get_firewall_rule.py +12 -38
- pulumi_azure_native/documentdb/get_mongo_cluster.py +2 -2
- pulumi_azure_native/documentdb/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/documentdb/list_mongo_cluster_connection_strings.py +2 -2
- pulumi_azure_native/documentdb/mongo_cluster.py +3 -3
- pulumi_azure_native/documentdb/mongo_cluster_firewall_rule.py +1 -1
- pulumi_azure_native/documentdb/outputs.py +66 -0
- pulumi_azure_native/documentdb/private_endpoint_connection.py +2 -2
- pulumi_azure_native/documentdb/v20230315preview/mongo_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/mongo_cluster_firewall_rule.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_cluster_firewall_rule.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_cluster_firewall_rule.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_cluster_firewall_rule.py +1 -1
- pulumi_azure_native/documentdb/v20240301preview/_inputs.py +251 -0
- pulumi_azure_native/documentdb/v20240301preview/firewall_rule.py +28 -68
- pulumi_azure_native/documentdb/v20240301preview/get_firewall_rule.py +10 -36
- pulumi_azure_native/documentdb/v20240301preview/get_mongo_cluster.py +10 -114
- pulumi_azure_native/documentdb/v20240301preview/get_private_endpoint_connection.py +10 -49
- pulumi_azure_native/documentdb/v20240301preview/mongo_cluster.py +21 -218
- pulumi_azure_native/documentdb/v20240301preview/outputs.py +294 -0
- pulumi_azure_native/documentdb/v20240301preview/private_endpoint_connection.py +27 -58
- pulumi_azure_native/documentdb/v20240601preview/_inputs.py +291 -0
- pulumi_azure_native/documentdb/v20240601preview/firewall_rule.py +28 -68
- pulumi_azure_native/documentdb/v20240601preview/get_firewall_rule.py +10 -36
- pulumi_azure_native/documentdb/v20240601preview/get_mongo_cluster.py +9 -152
- pulumi_azure_native/documentdb/v20240601preview/get_private_endpoint_connection.py +10 -49
- pulumi_azure_native/documentdb/v20240601preview/mongo_cluster.py +20 -286
- pulumi_azure_native/documentdb/v20240601preview/outputs.py +332 -0
- pulumi_azure_native/documentdb/v20240601preview/private_endpoint_connection.py +27 -58
- pulumi_azure_native/documentdb/v20240701/__init__.py +17 -0
- pulumi_azure_native/documentdb/v20240701/_enums.py +86 -0
- pulumi_azure_native/documentdb/v20240701/_inputs.py +755 -0
- pulumi_azure_native/documentdb/v20240701/firewall_rule.py +220 -0
- pulumi_azure_native/documentdb/v20240701/get_firewall_rule.py +141 -0
- pulumi_azure_native/documentdb/v20240701/get_mongo_cluster.py +162 -0
- pulumi_azure_native/documentdb/v20240701/get_private_endpoint_connection.py +141 -0
- pulumi_azure_native/documentdb/v20240701/list_mongo_cluster_connection_strings.py +84 -0
- pulumi_azure_native/documentdb/v20240701/mongo_cluster.py +258 -0
- pulumi_azure_native/documentdb/v20240701/outputs.py +1048 -0
- pulumi_azure_native/documentdb/v20240701/private_endpoint_connection.py +221 -0
- pulumi_azure_native/hybridcompute/__init__.py +3 -0
- pulumi_azure_native/hybridcompute/get_license.py +2 -2
- pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
- pulumi_azure_native/hybridcompute/license.py +3 -3
- pulumi_azure_native/hybridcompute/license_profile.py +3 -3
- pulumi_azure_native/hybridcompute/machine.py +3 -3
- pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
- pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
- pulumi_azure_native/hybridcompute/v20200802/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/__init__.py +22 -0
- pulumi_azure_native/hybridcompute/v20240710/_enums.py +164 -0
- pulumi_azure_native/hybridcompute/v20240710/_inputs.py +1712 -0
- pulumi_azure_native/hybridcompute/v20240710/get_license.py +201 -0
- pulumi_azure_native/hybridcompute/v20240710/get_license_profile.py +362 -0
- pulumi_azure_native/hybridcompute/v20240710/get_machine.py +596 -0
- pulumi_azure_native/hybridcompute/v20240710/get_machine_extension.py +167 -0
- pulumi_azure_native/hybridcompute/v20240710/get_private_endpoint_connection.py +141 -0
- pulumi_azure_native/hybridcompute/v20240710/get_private_link_scope.py +162 -0
- pulumi_azure_native/hybridcompute/v20240710/license.py +326 -0
- pulumi_azure_native/hybridcompute/v20240710/license_profile.py +505 -0
- pulumi_azure_native/hybridcompute/v20240710/machine.py +855 -0
- pulumi_azure_native/hybridcompute/v20240710/machine_extension.py +279 -0
- pulumi_azure_native/hybridcompute/v20240710/outputs.py +2817 -0
- pulumi_azure_native/hybridcompute/v20240710/private_endpoint_connection.py +220 -0
- pulumi_azure_native/hybridcompute/v20240710/private_link_scope.py +258 -0
- pulumi_azure_native/iotoperations/__init__.py +3 -0
- pulumi_azure_native/iotoperations/broker.py +5 -1
- pulumi_azure_native/iotoperations/broker_authentication.py +5 -1
- pulumi_azure_native/iotoperations/broker_authorization.py +5 -1
- pulumi_azure_native/iotoperations/broker_listener.py +5 -1
- pulumi_azure_native/iotoperations/data_flow.py +1 -1
- pulumi_azure_native/iotoperations/data_flow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/data_flow_profile.py +1 -1
- pulumi_azure_native/iotoperations/get_broker.py +4 -0
- pulumi_azure_native/iotoperations/get_broker_authentication.py +4 -0
- pulumi_azure_native/iotoperations/get_broker_authorization.py +4 -0
- pulumi_azure_native/iotoperations/get_broker_listener.py +4 -0
- pulumi_azure_native/iotoperations/get_instance.py +4 -0
- pulumi_azure_native/iotoperations/instance.py +5 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_authentication.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_authorization.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_listener.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow_profile.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/instance.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/__init__.py +26 -0
- pulumi_azure_native/iotoperations/v20240815preview/_enums.py +616 -0
- pulumi_azure_native/iotoperations/v20240815preview/_inputs.py +6895 -0
- pulumi_azure_native/iotoperations/v20240815preview/broker.py +251 -0
- pulumi_azure_native/iotoperations/v20240815preview/broker_authentication.py +272 -0
- pulumi_azure_native/iotoperations/v20240815preview/broker_authorization.py +272 -0
- pulumi_azure_native/iotoperations/v20240815preview/broker_listener.py +272 -0
- pulumi_azure_native/iotoperations/v20240815preview/dataflow.py +272 -0
- pulumi_azure_native/iotoperations/v20240815preview/dataflow_endpoint.py +251 -0
- pulumi_azure_native/iotoperations/v20240815preview/dataflow_profile.py +251 -0
- pulumi_azure_native/iotoperations/v20240815preview/get_broker.py +154 -0
- pulumi_azure_native/iotoperations/v20240815preview/get_broker_authentication.py +159 -0
- pulumi_azure_native/iotoperations/v20240815preview/get_broker_authorization.py +159 -0
- pulumi_azure_native/iotoperations/v20240815preview/get_broker_listener.py +159 -0
- pulumi_azure_native/iotoperations/v20240815preview/get_dataflow.py +159 -0
- pulumi_azure_native/iotoperations/v20240815preview/get_dataflow_endpoint.py +154 -0
- pulumi_azure_native/iotoperations/v20240815preview/get_dataflow_profile.py +154 -0
- pulumi_azure_native/iotoperations/v20240815preview/get_instance.py +188 -0
- pulumi_azure_native/iotoperations/v20240815preview/instance.py +317 -0
- pulumi_azure_native/iotoperations/v20240815preview/outputs.py +5753 -0
- pulumi_azure_native/netapp/__init__.py +3 -0
- pulumi_azure_native/netapp/account.py +3 -3
- pulumi_azure_native/netapp/backup.py +2 -2
- pulumi_azure_native/netapp/backup_policy.py +3 -3
- pulumi_azure_native/netapp/backup_vault.py +3 -3
- pulumi_azure_native/netapp/get_account.py +2 -2
- pulumi_azure_native/netapp/get_backup.py +2 -2
- pulumi_azure_native/netapp/get_backup_policy.py +2 -2
- pulumi_azure_native/netapp/get_backup_vault.py +2 -2
- pulumi_azure_native/netapp/get_pool.py +2 -2
- pulumi_azure_native/netapp/get_snapshot.py +2 -2
- pulumi_azure_native/netapp/get_snapshot_policy.py +2 -2
- pulumi_azure_native/netapp/get_subvolume.py +2 -2
- pulumi_azure_native/netapp/get_subvolume_metadata.py +2 -2
- pulumi_azure_native/netapp/get_volume.py +2 -2
- pulumi_azure_native/netapp/get_volume_group.py +2 -2
- pulumi_azure_native/netapp/get_volume_group_id_for_ldap_user.py +2 -2
- pulumi_azure_native/netapp/get_volume_quota_rule.py +2 -2
- pulumi_azure_native/netapp/list_volume_replications.py +2 -2
- pulumi_azure_native/netapp/pool.py +3 -3
- pulumi_azure_native/netapp/snapshot.py +3 -3
- pulumi_azure_native/netapp/snapshot_policy.py +3 -3
- pulumi_azure_native/netapp/subvolume.py +3 -3
- pulumi_azure_native/netapp/v20210401/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20210401preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20211001/volume.py +1 -1
- pulumi_azure_native/netapp/v20211001/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20220501/account.py +1 -1
- pulumi_azure_native/netapp/v20221101/account.py +1 -1
- pulumi_azure_native/netapp/v20221101/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101/pool.py +1 -1
- pulumi_azure_native/netapp/v20221101/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20221101/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20221101/volume.py +1 -1
- pulumi_azure_native/netapp/v20221101/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20221101/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/account.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230501/account.py +1 -1
- pulumi_azure_native/netapp/v20230501/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501/pool.py +1 -1
- pulumi_azure_native/netapp/v20230501/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230501/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230501/volume.py +1 -1
- pulumi_azure_native/netapp/v20230501/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230501/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/account.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230701/account.py +1 -1
- pulumi_azure_native/netapp/v20230701/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701/pool.py +1 -1
- pulumi_azure_native/netapp/v20230701/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230701/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230701/volume.py +1 -1
- pulumi_azure_native/netapp/v20230701/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230701/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/account.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20231101/account.py +1 -1
- pulumi_azure_native/netapp/v20231101/backup.py +1 -1
- pulumi_azure_native/netapp/v20231101/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20231101/pool.py +1 -1
- pulumi_azure_native/netapp/v20231101/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20231101/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20231101/volume.py +1 -1
- pulumi_azure_native/netapp/v20231101/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20231101/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/account.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20240101/__init__.py +35 -0
- pulumi_azure_native/netapp/v20240101/_enums.py +267 -0
- pulumi_azure_native/netapp/v20240101/_inputs.py +2945 -0
- pulumi_azure_native/netapp/v20240101/account.py +346 -0
- pulumi_azure_native/netapp/v20240101/backup.py +402 -0
- pulumi_azure_native/netapp/v20240101/backup_policy.py +414 -0
- pulumi_azure_native/netapp/v20240101/backup_vault.py +258 -0
- pulumi_azure_native/netapp/v20240101/get_account.py +227 -0
- pulumi_azure_native/netapp/v20240101/get_backup.py +276 -0
- pulumi_azure_native/netapp/v20240101/get_backup_policy.py +271 -0
- pulumi_azure_native/netapp/v20240101/get_backup_vault.py +167 -0
- pulumi_azure_native/netapp/v20240101/get_pool.py +284 -0
- pulumi_azure_native/netapp/v20240101/get_snapshot.py +190 -0
- pulumi_azure_native/netapp/v20240101/get_snapshot_policy.py +245 -0
- pulumi_azure_native/netapp/v20240101/get_subvolume.py +190 -0
- pulumi_azure_native/netapp/v20240101/get_subvolume_metadata.py +254 -0
- pulumi_azure_native/netapp/v20240101/get_volume.py +887 -0
- pulumi_azure_native/netapp/v20240101/get_volume_group.py +167 -0
- pulumi_azure_native/netapp/v20240101/get_volume_group_id_for_ldap_user.py +98 -0
- pulumi_azure_native/netapp/v20240101/get_volume_quota_rule.py +216 -0
- pulumi_azure_native/netapp/v20240101/list_volume_replications.py +94 -0
- pulumi_azure_native/netapp/v20240101/outputs.py +3035 -0
- pulumi_azure_native/netapp/v20240101/pool.py +462 -0
- pulumi_azure_native/netapp/v20240101/snapshot.py +291 -0
- pulumi_azure_native/netapp/v20240101/snapshot_policy.py +414 -0
- pulumi_azure_native/netapp/v20240101/subvolume.py +329 -0
- pulumi_azure_native/netapp/v20240101/volume.py +1639 -0
- pulumi_azure_native/netapp/v20240101/volume_group.py +279 -0
- pulumi_azure_native/netapp/v20240101/volume_quota_rule.py +388 -0
- pulumi_azure_native/netapp/v20240301/account.py +1 -1
- pulumi_azure_native/netapp/v20240301/backup.py +1 -1
- pulumi_azure_native/netapp/v20240301/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20240301/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20240301/pool.py +1 -1
- pulumi_azure_native/netapp/v20240301/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20240301/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20240301/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20240301/volume.py +1 -1
- pulumi_azure_native/netapp/v20240301/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20240301/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/account.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/volume.py +3 -3
- pulumi_azure_native/netapp/volume_group.py +3 -3
- pulumi_azure_native/netapp/volume_quota_rule.py +3 -3
- pulumi_azure_native/network/__init__.py +15 -0
- pulumi_azure_native/network/_enums.py +11 -0
- pulumi_azure_native/network/_inputs.py +436 -0
- pulumi_azure_native/network/admin_rule.py +3 -3
- pulumi_azure_native/network/admin_rule_collection.py +3 -3
- pulumi_azure_native/network/default_admin_rule.py +1 -1
- pulumi_azure_native/network/get_admin_rule.py +2 -2
- pulumi_azure_native/network/get_admin_rule_collection.py +2 -2
- pulumi_azure_native/network/get_ipam_pool.py +169 -0
- pulumi_azure_native/network/get_ipam_pool_usage.py +195 -0
- pulumi_azure_native/network/get_network_manager.py +2 -2
- pulumi_azure_native/network/get_reachability_analysis_intent.py +148 -0
- pulumi_azure_native/network/get_reachability_analysis_run.py +148 -0
- pulumi_azure_native/network/get_security_admin_configuration.py +2 -2
- pulumi_azure_native/network/get_static_cidr.py +148 -0
- pulumi_azure_native/network/get_verifier_workspace.py +169 -0
- pulumi_azure_native/network/ipam_pool.py +280 -0
- pulumi_azure_native/network/list_ipam_pool_associated_resources.py +101 -0
- pulumi_azure_native/network/list_network_manager_deployment_status.py +2 -2
- pulumi_azure_native/network/network_manager.py +3 -3
- pulumi_azure_native/network/outputs.py +723 -0
- pulumi_azure_native/network/reachability_analysis_intent.py +245 -0
- pulumi_azure_native/network/reachability_analysis_run.py +244 -0
- pulumi_azure_native/network/security_admin_configuration.py +3 -3
- pulumi_azure_native/network/static_cidr.py +243 -0
- pulumi_azure_native/network/v20210201preview/admin_rule.py +1 -1
- pulumi_azure_native/network/v20210201preview/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20210201preview/network_manager.py +1 -1
- pulumi_azure_native/network/v20210501preview/admin_rule.py +1 -1
- pulumi_azure_native/network/v20210501preview/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20210501preview/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20210501preview/network_manager.py +1 -1
- pulumi_azure_native/network/v20210501preview/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230201/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230201/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230201/network_manager.py +1 -1
- pulumi_azure_native/network/v20230201/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230401/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230401/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230401/network_manager.py +1 -1
- pulumi_azure_native/network/v20230401/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230501/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230501/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230501/network_manager.py +1 -1
- pulumi_azure_native/network/v20230501/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230601/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230601/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230601/network_manager.py +1 -1
- pulumi_azure_native/network/v20230601/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230901/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230901/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230901/network_manager.py +1 -1
- pulumi_azure_native/network/v20230901/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/admin_rule.py +1 -1
- pulumi_azure_native/network/v20231101/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20231101/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20231101/network_manager.py +1 -1
- pulumi_azure_native/network/v20231101/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/admin_rule.py +1 -1
- pulumi_azure_native/network/v20240101/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20240101/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20240101/network_manager.py +1 -1
- pulumi_azure_native/network/v20240101/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20240101preview/__init__.py +33 -0
- pulumi_azure_native/network/v20240101preview/_enums.py +98 -0
- pulumi_azure_native/network/v20240101preview/_inputs.py +611 -0
- pulumi_azure_native/network/v20240101preview/admin_rule.py +553 -0
- pulumi_azure_native/network/v20240101preview/admin_rule_collection.py +291 -0
- pulumi_azure_native/network/v20240101preview/default_admin_rule.py +405 -0
- pulumi_azure_native/network/v20240101preview/get_admin_rule.py +295 -0
- pulumi_azure_native/network/v20240101preview/get_admin_rule_collection.py +185 -0
- pulumi_azure_native/network/v20240101preview/get_default_admin_rule.py +308 -0
- pulumi_azure_native/network/v20240101preview/get_ipam_pool.py +167 -0
- pulumi_azure_native/network/v20240101preview/get_ipam_pool_usage.py +193 -0
- pulumi_azure_native/network/v20240101preview/get_network_manager.py +227 -0
- pulumi_azure_native/network/v20240101preview/get_reachability_analysis_intent.py +146 -0
- pulumi_azure_native/network/v20240101preview/get_reachability_analysis_run.py +146 -0
- pulumi_azure_native/network/v20240101preview/get_security_admin_configuration.py +193 -0
- pulumi_azure_native/network/v20240101preview/get_static_cidr.py +146 -0
- pulumi_azure_native/network/v20240101preview/get_verifier_workspace.py +167 -0
- pulumi_azure_native/network/v20240101preview/ipam_pool.py +278 -0
- pulumi_azure_native/network/v20240101preview/list_ipam_pool_associated_resources.py +99 -0
- pulumi_azure_native/network/v20240101preview/list_network_manager_deployment_status.py +118 -0
- pulumi_azure_native/network/v20240101preview/network_manager.py +368 -0
- pulumi_azure_native/network/v20240101preview/outputs.py +1164 -0
- pulumi_azure_native/network/v20240101preview/reachability_analysis_intent.py +243 -0
- pulumi_azure_native/network/v20240101preview/reachability_analysis_run.py +242 -0
- pulumi_azure_native/network/v20240101preview/security_admin_configuration.py +298 -0
- pulumi_azure_native/network/v20240101preview/static_cidr.py +241 -0
- pulumi_azure_native/network/v20240101preview/verifier_workspace.py +278 -0
- pulumi_azure_native/network/verifier_workspace.py +280 -0
- pulumi_azure_native/portal/__init__.py +3 -0
- pulumi_azure_native/portal/dashboard.py +3 -3
- pulumi_azure_native/portal/get_dashboard.py +2 -2
- pulumi_azure_native/portal/get_tenant_configuration.py +4 -0
- pulumi_azure_native/portal/list_list_tenant_configuration_violation.py +4 -0
- pulumi_azure_native/portal/tenant_configuration.py +5 -1
- pulumi_azure_native/portal/v20190101preview/dashboard.py +1 -1
- pulumi_azure_native/portal/v20200901preview/dashboard.py +1 -1
- pulumi_azure_native/portal/v20200901preview/tenant_configuration.py +1 -1
- pulumi_azure_native/portal/v20221201preview/__init__.py +15 -0
- pulumi_azure_native/portal/v20221201preview/_enums.py +19 -0
- pulumi_azure_native/portal/v20221201preview/_inputs.py +639 -0
- pulumi_azure_native/portal/v20221201preview/dashboard.py +257 -0
- pulumi_azure_native/portal/v20221201preview/get_dashboard.py +162 -0
- pulumi_azure_native/portal/v20221201preview/get_tenant_configuration.py +131 -0
- pulumi_azure_native/portal/v20221201preview/list_list_tenant_configuration_violation.py +83 -0
- pulumi_azure_native/portal/v20221201preview/outputs.py +651 -0
- pulumi_azure_native/portal/v20221201preview/tenant_configuration.py +178 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/standbypool/__init__.py +3 -0
- pulumi_azure_native/standbypool/get_standby_container_group_pool.py +2 -2
- pulumi_azure_native/standbypool/get_standby_virtual_machine_pool.py +2 -2
- pulumi_azure_native/standbypool/standby_container_group_pool.py +3 -3
- pulumi_azure_native/standbypool/standby_virtual_machine_pool.py +3 -3
- pulumi_azure_native/standbypool/v20231201preview/standby_container_group_pool.py +1 -1
- pulumi_azure_native/standbypool/v20231201preview/standby_virtual_machine_pool.py +1 -1
- pulumi_azure_native/standbypool/v20240301/__init__.py +14 -0
- pulumi_azure_native/standbypool/v20240301/_enums.py +34 -0
- pulumi_azure_native/standbypool/v20240301/_inputs.py +287 -0
- pulumi_azure_native/standbypool/v20240301/get_standby_container_group_pool.py +188 -0
- pulumi_azure_native/standbypool/v20240301/get_standby_virtual_machine_pool.py +201 -0
- pulumi_azure_native/standbypool/v20240301/outputs.py +352 -0
- pulumi_azure_native/standbypool/v20240301/standby_container_group_pool.py +299 -0
- pulumi_azure_native/standbypool/v20240301/standby_virtual_machine_pool.py +327 -0
- pulumi_azure_native/standbypool/v20240301preview/standby_container_group_pool.py +1 -1
- pulumi_azure_native/standbypool/v20240301preview/standby_virtual_machine_pool.py +1 -1
- pulumi_azure_native/subscription/__init__.py +3 -0
- pulumi_azure_native/subscription/alias.py +3 -3
- pulumi_azure_native/subscription/get_alias.py +2 -2
- pulumi_azure_native/subscription/v20200901/alias.py +1 -1
- pulumi_azure_native/subscription/v20211001/alias.py +1 -1
- pulumi_azure_native/subscription/v20240801preview/__init__.py +12 -0
- pulumi_azure_native/subscription/v20240801preview/_enums.py +17 -0
- pulumi_azure_native/subscription/v20240801preview/_inputs.py +267 -0
- pulumi_azure_native/subscription/v20240801preview/alias.py +179 -0
- pulumi_azure_native/subscription/v20240801preview/get_alias.py +131 -0
- pulumi_azure_native/subscription/v20240801preview/outputs.py +324 -0
- {pulumi_azure_native-2.57.0a1724076329.dist-info → pulumi_azure_native-2.57.0a1724151002.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.57.0a1724076329.dist-info → pulumi_azure_native-2.57.0a1724151002.dist-info}/RECORD +475 -337
- {pulumi_azure_native-2.57.0a1724076329.dist-info → pulumi_azure_native-2.57.0a1724151002.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-2.57.0a1724076329.dist-info → pulumi_azure_native-2.57.0a1724151002.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetLicenseResult',
|
|
20
|
+
'AwaitableGetLicenseResult',
|
|
21
|
+
'get_license',
|
|
22
|
+
'get_license_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetLicenseResult:
|
|
27
|
+
"""
|
|
28
|
+
Describes a license in a hybrid machine.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, id=None, license_details=None, license_type=None, location=None, name=None, provisioning_state=None, system_data=None, tags=None, tenant_id=None, type=None):
|
|
31
|
+
if id and not isinstance(id, str):
|
|
32
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "id", id)
|
|
34
|
+
if license_details and not isinstance(license_details, dict):
|
|
35
|
+
raise TypeError("Expected argument 'license_details' to be a dict")
|
|
36
|
+
pulumi.set(__self__, "license_details", license_details)
|
|
37
|
+
if license_type and not isinstance(license_type, str):
|
|
38
|
+
raise TypeError("Expected argument 'license_type' to be a str")
|
|
39
|
+
pulumi.set(__self__, "license_type", license_type)
|
|
40
|
+
if location and not isinstance(location, str):
|
|
41
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
42
|
+
pulumi.set(__self__, "location", location)
|
|
43
|
+
if name and not isinstance(name, str):
|
|
44
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
45
|
+
pulumi.set(__self__, "name", name)
|
|
46
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
47
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
48
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
49
|
+
if system_data and not isinstance(system_data, dict):
|
|
50
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
51
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
52
|
+
if tags and not isinstance(tags, dict):
|
|
53
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
54
|
+
pulumi.set(__self__, "tags", tags)
|
|
55
|
+
if tenant_id and not isinstance(tenant_id, str):
|
|
56
|
+
raise TypeError("Expected argument 'tenant_id' to be a str")
|
|
57
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
58
|
+
if type and not isinstance(type, str):
|
|
59
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
60
|
+
pulumi.set(__self__, "type", type)
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter
|
|
64
|
+
def id(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "id")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="licenseDetails")
|
|
72
|
+
def license_details(self) -> Optional['outputs.LicenseDetailsResponse']:
|
|
73
|
+
"""
|
|
74
|
+
Describes the properties of a License.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "license_details")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="licenseType")
|
|
80
|
+
def license_type(self) -> Optional[str]:
|
|
81
|
+
"""
|
|
82
|
+
The type of the license resource.
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "license_type")
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter
|
|
88
|
+
def location(self) -> str:
|
|
89
|
+
"""
|
|
90
|
+
The geo-location where the resource lives
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "location")
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter
|
|
96
|
+
def name(self) -> str:
|
|
97
|
+
"""
|
|
98
|
+
The name of the resource
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "name")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter(name="provisioningState")
|
|
104
|
+
def provisioning_state(self) -> str:
|
|
105
|
+
"""
|
|
106
|
+
The provisioning state, which only appears in the response.
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "provisioning_state")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter(name="systemData")
|
|
112
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
113
|
+
"""
|
|
114
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "system_data")
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter
|
|
120
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
121
|
+
"""
|
|
122
|
+
Resource tags.
|
|
123
|
+
"""
|
|
124
|
+
return pulumi.get(self, "tags")
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter(name="tenantId")
|
|
128
|
+
def tenant_id(self) -> Optional[str]:
|
|
129
|
+
"""
|
|
130
|
+
Describes the tenant id.
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "tenant_id")
|
|
133
|
+
|
|
134
|
+
@property
|
|
135
|
+
@pulumi.getter
|
|
136
|
+
def type(self) -> str:
|
|
137
|
+
"""
|
|
138
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
139
|
+
"""
|
|
140
|
+
return pulumi.get(self, "type")
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class AwaitableGetLicenseResult(GetLicenseResult):
|
|
144
|
+
# pylint: disable=using-constant-test
|
|
145
|
+
def __await__(self):
|
|
146
|
+
if False:
|
|
147
|
+
yield self
|
|
148
|
+
return GetLicenseResult(
|
|
149
|
+
id=self.id,
|
|
150
|
+
license_details=self.license_details,
|
|
151
|
+
license_type=self.license_type,
|
|
152
|
+
location=self.location,
|
|
153
|
+
name=self.name,
|
|
154
|
+
provisioning_state=self.provisioning_state,
|
|
155
|
+
system_data=self.system_data,
|
|
156
|
+
tags=self.tags,
|
|
157
|
+
tenant_id=self.tenant_id,
|
|
158
|
+
type=self.type)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
def get_license(license_name: Optional[str] = None,
|
|
162
|
+
resource_group_name: Optional[str] = None,
|
|
163
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLicenseResult:
|
|
164
|
+
"""
|
|
165
|
+
Retrieves information about the view of a license.
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
:param str license_name: The name of the license.
|
|
169
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
170
|
+
"""
|
|
171
|
+
__args__ = dict()
|
|
172
|
+
__args__['licenseName'] = license_name
|
|
173
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
174
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
175
|
+
__ret__ = pulumi.runtime.invoke('azure-native:hybridcompute/v20240710:getLicense', __args__, opts=opts, typ=GetLicenseResult).value
|
|
176
|
+
|
|
177
|
+
return AwaitableGetLicenseResult(
|
|
178
|
+
id=pulumi.get(__ret__, 'id'),
|
|
179
|
+
license_details=pulumi.get(__ret__, 'license_details'),
|
|
180
|
+
license_type=pulumi.get(__ret__, 'license_type'),
|
|
181
|
+
location=pulumi.get(__ret__, 'location'),
|
|
182
|
+
name=pulumi.get(__ret__, 'name'),
|
|
183
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
184
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
185
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
186
|
+
tenant_id=pulumi.get(__ret__, 'tenant_id'),
|
|
187
|
+
type=pulumi.get(__ret__, 'type'))
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
@_utilities.lift_output_func(get_license)
|
|
191
|
+
def get_license_output(license_name: Optional[pulumi.Input[str]] = None,
|
|
192
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
193
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetLicenseResult]:
|
|
194
|
+
"""
|
|
195
|
+
Retrieves information about the view of a license.
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
:param str license_name: The name of the license.
|
|
199
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
200
|
+
"""
|
|
201
|
+
...
|
|
@@ -0,0 +1,362 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetLicenseProfileResult',
|
|
20
|
+
'AwaitableGetLicenseProfileResult',
|
|
21
|
+
'get_license_profile',
|
|
22
|
+
'get_license_profile_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetLicenseProfileResult:
|
|
27
|
+
"""
|
|
28
|
+
Describes a license profile in a hybrid machine.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, assigned_license=None, assigned_license_immutable_id=None, billing_end_date=None, billing_start_date=None, disenrollment_date=None, enrollment_date=None, error=None, esu_eligibility=None, esu_key_state=None, esu_keys=None, id=None, location=None, name=None, product_features=None, product_type=None, provisioning_state=None, server_type=None, software_assurance_customer=None, subscription_status=None, system_data=None, tags=None, type=None):
|
|
31
|
+
if assigned_license and not isinstance(assigned_license, str):
|
|
32
|
+
raise TypeError("Expected argument 'assigned_license' to be a str")
|
|
33
|
+
pulumi.set(__self__, "assigned_license", assigned_license)
|
|
34
|
+
if assigned_license_immutable_id and not isinstance(assigned_license_immutable_id, str):
|
|
35
|
+
raise TypeError("Expected argument 'assigned_license_immutable_id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "assigned_license_immutable_id", assigned_license_immutable_id)
|
|
37
|
+
if billing_end_date and not isinstance(billing_end_date, str):
|
|
38
|
+
raise TypeError("Expected argument 'billing_end_date' to be a str")
|
|
39
|
+
pulumi.set(__self__, "billing_end_date", billing_end_date)
|
|
40
|
+
if billing_start_date and not isinstance(billing_start_date, str):
|
|
41
|
+
raise TypeError("Expected argument 'billing_start_date' to be a str")
|
|
42
|
+
pulumi.set(__self__, "billing_start_date", billing_start_date)
|
|
43
|
+
if disenrollment_date and not isinstance(disenrollment_date, str):
|
|
44
|
+
raise TypeError("Expected argument 'disenrollment_date' to be a str")
|
|
45
|
+
pulumi.set(__self__, "disenrollment_date", disenrollment_date)
|
|
46
|
+
if enrollment_date and not isinstance(enrollment_date, str):
|
|
47
|
+
raise TypeError("Expected argument 'enrollment_date' to be a str")
|
|
48
|
+
pulumi.set(__self__, "enrollment_date", enrollment_date)
|
|
49
|
+
if error and not isinstance(error, dict):
|
|
50
|
+
raise TypeError("Expected argument 'error' to be a dict")
|
|
51
|
+
pulumi.set(__self__, "error", error)
|
|
52
|
+
if esu_eligibility and not isinstance(esu_eligibility, str):
|
|
53
|
+
raise TypeError("Expected argument 'esu_eligibility' to be a str")
|
|
54
|
+
pulumi.set(__self__, "esu_eligibility", esu_eligibility)
|
|
55
|
+
if esu_key_state and not isinstance(esu_key_state, str):
|
|
56
|
+
raise TypeError("Expected argument 'esu_key_state' to be a str")
|
|
57
|
+
pulumi.set(__self__, "esu_key_state", esu_key_state)
|
|
58
|
+
if esu_keys and not isinstance(esu_keys, list):
|
|
59
|
+
raise TypeError("Expected argument 'esu_keys' to be a list")
|
|
60
|
+
pulumi.set(__self__, "esu_keys", esu_keys)
|
|
61
|
+
if id and not isinstance(id, str):
|
|
62
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
63
|
+
pulumi.set(__self__, "id", id)
|
|
64
|
+
if location and not isinstance(location, str):
|
|
65
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
66
|
+
pulumi.set(__self__, "location", location)
|
|
67
|
+
if name and not isinstance(name, str):
|
|
68
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
69
|
+
pulumi.set(__self__, "name", name)
|
|
70
|
+
if product_features and not isinstance(product_features, list):
|
|
71
|
+
raise TypeError("Expected argument 'product_features' to be a list")
|
|
72
|
+
pulumi.set(__self__, "product_features", product_features)
|
|
73
|
+
if product_type and not isinstance(product_type, str):
|
|
74
|
+
raise TypeError("Expected argument 'product_type' to be a str")
|
|
75
|
+
pulumi.set(__self__, "product_type", product_type)
|
|
76
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
77
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
78
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
79
|
+
if server_type and not isinstance(server_type, str):
|
|
80
|
+
raise TypeError("Expected argument 'server_type' to be a str")
|
|
81
|
+
pulumi.set(__self__, "server_type", server_type)
|
|
82
|
+
if software_assurance_customer and not isinstance(software_assurance_customer, bool):
|
|
83
|
+
raise TypeError("Expected argument 'software_assurance_customer' to be a bool")
|
|
84
|
+
pulumi.set(__self__, "software_assurance_customer", software_assurance_customer)
|
|
85
|
+
if subscription_status and not isinstance(subscription_status, str):
|
|
86
|
+
raise TypeError("Expected argument 'subscription_status' to be a str")
|
|
87
|
+
pulumi.set(__self__, "subscription_status", subscription_status)
|
|
88
|
+
if system_data and not isinstance(system_data, dict):
|
|
89
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
90
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
91
|
+
if tags and not isinstance(tags, dict):
|
|
92
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
93
|
+
pulumi.set(__self__, "tags", tags)
|
|
94
|
+
if type and not isinstance(type, str):
|
|
95
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
96
|
+
pulumi.set(__self__, "type", type)
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
@pulumi.getter(name="assignedLicense")
|
|
100
|
+
def assigned_license(self) -> Optional[str]:
|
|
101
|
+
"""
|
|
102
|
+
The resource id of the license.
|
|
103
|
+
"""
|
|
104
|
+
return pulumi.get(self, "assigned_license")
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
@pulumi.getter(name="assignedLicenseImmutableId")
|
|
108
|
+
def assigned_license_immutable_id(self) -> str:
|
|
109
|
+
"""
|
|
110
|
+
The guid id of the license.
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "assigned_license_immutable_id")
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
@pulumi.getter(name="billingEndDate")
|
|
116
|
+
def billing_end_date(self) -> str:
|
|
117
|
+
"""
|
|
118
|
+
The timestamp in UTC when the billing ends.
|
|
119
|
+
"""
|
|
120
|
+
return pulumi.get(self, "billing_end_date")
|
|
121
|
+
|
|
122
|
+
@property
|
|
123
|
+
@pulumi.getter(name="billingStartDate")
|
|
124
|
+
def billing_start_date(self) -> str:
|
|
125
|
+
"""
|
|
126
|
+
The timestamp in UTC when the billing starts.
|
|
127
|
+
"""
|
|
128
|
+
return pulumi.get(self, "billing_start_date")
|
|
129
|
+
|
|
130
|
+
@property
|
|
131
|
+
@pulumi.getter(name="disenrollmentDate")
|
|
132
|
+
def disenrollment_date(self) -> str:
|
|
133
|
+
"""
|
|
134
|
+
The timestamp in UTC when the user disenrolled the feature.
|
|
135
|
+
"""
|
|
136
|
+
return pulumi.get(self, "disenrollment_date")
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter(name="enrollmentDate")
|
|
140
|
+
def enrollment_date(self) -> str:
|
|
141
|
+
"""
|
|
142
|
+
The timestamp in UTC when the user enrolls the feature.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "enrollment_date")
|
|
145
|
+
|
|
146
|
+
@property
|
|
147
|
+
@pulumi.getter
|
|
148
|
+
def error(self) -> 'outputs.ErrorDetailResponse':
|
|
149
|
+
"""
|
|
150
|
+
The errors that were encountered during the feature enrollment or disenrollment.
|
|
151
|
+
"""
|
|
152
|
+
return pulumi.get(self, "error")
|
|
153
|
+
|
|
154
|
+
@property
|
|
155
|
+
@pulumi.getter(name="esuEligibility")
|
|
156
|
+
def esu_eligibility(self) -> str:
|
|
157
|
+
"""
|
|
158
|
+
Indicates the eligibility state of Esu.
|
|
159
|
+
"""
|
|
160
|
+
return pulumi.get(self, "esu_eligibility")
|
|
161
|
+
|
|
162
|
+
@property
|
|
163
|
+
@pulumi.getter(name="esuKeyState")
|
|
164
|
+
def esu_key_state(self) -> str:
|
|
165
|
+
"""
|
|
166
|
+
Indicates whether there is an ESU Key currently active for the machine.
|
|
167
|
+
"""
|
|
168
|
+
return pulumi.get(self, "esu_key_state")
|
|
169
|
+
|
|
170
|
+
@property
|
|
171
|
+
@pulumi.getter(name="esuKeys")
|
|
172
|
+
def esu_keys(self) -> Sequence['outputs.EsuKeyResponse']:
|
|
173
|
+
"""
|
|
174
|
+
The list of ESU keys.
|
|
175
|
+
"""
|
|
176
|
+
return pulumi.get(self, "esu_keys")
|
|
177
|
+
|
|
178
|
+
@property
|
|
179
|
+
@pulumi.getter
|
|
180
|
+
def id(self) -> str:
|
|
181
|
+
"""
|
|
182
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
183
|
+
"""
|
|
184
|
+
return pulumi.get(self, "id")
|
|
185
|
+
|
|
186
|
+
@property
|
|
187
|
+
@pulumi.getter
|
|
188
|
+
def location(self) -> str:
|
|
189
|
+
"""
|
|
190
|
+
The geo-location where the resource lives
|
|
191
|
+
"""
|
|
192
|
+
return pulumi.get(self, "location")
|
|
193
|
+
|
|
194
|
+
@property
|
|
195
|
+
@pulumi.getter
|
|
196
|
+
def name(self) -> str:
|
|
197
|
+
"""
|
|
198
|
+
The name of the resource
|
|
199
|
+
"""
|
|
200
|
+
return pulumi.get(self, "name")
|
|
201
|
+
|
|
202
|
+
@property
|
|
203
|
+
@pulumi.getter(name="productFeatures")
|
|
204
|
+
def product_features(self) -> Optional[Sequence['outputs.ProductFeatureResponse']]:
|
|
205
|
+
"""
|
|
206
|
+
The list of product features.
|
|
207
|
+
"""
|
|
208
|
+
return pulumi.get(self, "product_features")
|
|
209
|
+
|
|
210
|
+
@property
|
|
211
|
+
@pulumi.getter(name="productType")
|
|
212
|
+
def product_type(self) -> Optional[str]:
|
|
213
|
+
"""
|
|
214
|
+
Indicates the product type of the license.
|
|
215
|
+
"""
|
|
216
|
+
return pulumi.get(self, "product_type")
|
|
217
|
+
|
|
218
|
+
@property
|
|
219
|
+
@pulumi.getter(name="provisioningState")
|
|
220
|
+
def provisioning_state(self) -> str:
|
|
221
|
+
"""
|
|
222
|
+
The provisioning state, which only appears in the response.
|
|
223
|
+
"""
|
|
224
|
+
return pulumi.get(self, "provisioning_state")
|
|
225
|
+
|
|
226
|
+
@property
|
|
227
|
+
@pulumi.getter(name="serverType")
|
|
228
|
+
def server_type(self) -> str:
|
|
229
|
+
"""
|
|
230
|
+
The type of the Esu servers.
|
|
231
|
+
"""
|
|
232
|
+
return pulumi.get(self, "server_type")
|
|
233
|
+
|
|
234
|
+
@property
|
|
235
|
+
@pulumi.getter(name="softwareAssuranceCustomer")
|
|
236
|
+
def software_assurance_customer(self) -> Optional[bool]:
|
|
237
|
+
"""
|
|
238
|
+
Specifies if this machine is licensed as part of a Software Assurance agreement.
|
|
239
|
+
"""
|
|
240
|
+
return pulumi.get(self, "software_assurance_customer")
|
|
241
|
+
|
|
242
|
+
@property
|
|
243
|
+
@pulumi.getter(name="subscriptionStatus")
|
|
244
|
+
def subscription_status(self) -> Optional[str]:
|
|
245
|
+
"""
|
|
246
|
+
Indicates the subscription status of the product.
|
|
247
|
+
"""
|
|
248
|
+
return pulumi.get(self, "subscription_status")
|
|
249
|
+
|
|
250
|
+
@property
|
|
251
|
+
@pulumi.getter(name="systemData")
|
|
252
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
253
|
+
"""
|
|
254
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
255
|
+
"""
|
|
256
|
+
return pulumi.get(self, "system_data")
|
|
257
|
+
|
|
258
|
+
@property
|
|
259
|
+
@pulumi.getter
|
|
260
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
261
|
+
"""
|
|
262
|
+
Resource tags.
|
|
263
|
+
"""
|
|
264
|
+
return pulumi.get(self, "tags")
|
|
265
|
+
|
|
266
|
+
@property
|
|
267
|
+
@pulumi.getter
|
|
268
|
+
def type(self) -> str:
|
|
269
|
+
"""
|
|
270
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
271
|
+
"""
|
|
272
|
+
return pulumi.get(self, "type")
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
class AwaitableGetLicenseProfileResult(GetLicenseProfileResult):
|
|
276
|
+
# pylint: disable=using-constant-test
|
|
277
|
+
def __await__(self):
|
|
278
|
+
if False:
|
|
279
|
+
yield self
|
|
280
|
+
return GetLicenseProfileResult(
|
|
281
|
+
assigned_license=self.assigned_license,
|
|
282
|
+
assigned_license_immutable_id=self.assigned_license_immutable_id,
|
|
283
|
+
billing_end_date=self.billing_end_date,
|
|
284
|
+
billing_start_date=self.billing_start_date,
|
|
285
|
+
disenrollment_date=self.disenrollment_date,
|
|
286
|
+
enrollment_date=self.enrollment_date,
|
|
287
|
+
error=self.error,
|
|
288
|
+
esu_eligibility=self.esu_eligibility,
|
|
289
|
+
esu_key_state=self.esu_key_state,
|
|
290
|
+
esu_keys=self.esu_keys,
|
|
291
|
+
id=self.id,
|
|
292
|
+
location=self.location,
|
|
293
|
+
name=self.name,
|
|
294
|
+
product_features=self.product_features,
|
|
295
|
+
product_type=self.product_type,
|
|
296
|
+
provisioning_state=self.provisioning_state,
|
|
297
|
+
server_type=self.server_type,
|
|
298
|
+
software_assurance_customer=self.software_assurance_customer,
|
|
299
|
+
subscription_status=self.subscription_status,
|
|
300
|
+
system_data=self.system_data,
|
|
301
|
+
tags=self.tags,
|
|
302
|
+
type=self.type)
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
def get_license_profile(license_profile_name: Optional[str] = None,
|
|
306
|
+
machine_name: Optional[str] = None,
|
|
307
|
+
resource_group_name: Optional[str] = None,
|
|
308
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLicenseProfileResult:
|
|
309
|
+
"""
|
|
310
|
+
Retrieves information about the view of a license profile.
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
:param str license_profile_name: The name of the license profile.
|
|
314
|
+
:param str machine_name: The name of the hybrid machine.
|
|
315
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
316
|
+
"""
|
|
317
|
+
__args__ = dict()
|
|
318
|
+
__args__['licenseProfileName'] = license_profile_name
|
|
319
|
+
__args__['machineName'] = machine_name
|
|
320
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
321
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
322
|
+
__ret__ = pulumi.runtime.invoke('azure-native:hybridcompute/v20240710:getLicenseProfile', __args__, opts=opts, typ=GetLicenseProfileResult).value
|
|
323
|
+
|
|
324
|
+
return AwaitableGetLicenseProfileResult(
|
|
325
|
+
assigned_license=pulumi.get(__ret__, 'assigned_license'),
|
|
326
|
+
assigned_license_immutable_id=pulumi.get(__ret__, 'assigned_license_immutable_id'),
|
|
327
|
+
billing_end_date=pulumi.get(__ret__, 'billing_end_date'),
|
|
328
|
+
billing_start_date=pulumi.get(__ret__, 'billing_start_date'),
|
|
329
|
+
disenrollment_date=pulumi.get(__ret__, 'disenrollment_date'),
|
|
330
|
+
enrollment_date=pulumi.get(__ret__, 'enrollment_date'),
|
|
331
|
+
error=pulumi.get(__ret__, 'error'),
|
|
332
|
+
esu_eligibility=pulumi.get(__ret__, 'esu_eligibility'),
|
|
333
|
+
esu_key_state=pulumi.get(__ret__, 'esu_key_state'),
|
|
334
|
+
esu_keys=pulumi.get(__ret__, 'esu_keys'),
|
|
335
|
+
id=pulumi.get(__ret__, 'id'),
|
|
336
|
+
location=pulumi.get(__ret__, 'location'),
|
|
337
|
+
name=pulumi.get(__ret__, 'name'),
|
|
338
|
+
product_features=pulumi.get(__ret__, 'product_features'),
|
|
339
|
+
product_type=pulumi.get(__ret__, 'product_type'),
|
|
340
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
341
|
+
server_type=pulumi.get(__ret__, 'server_type'),
|
|
342
|
+
software_assurance_customer=pulumi.get(__ret__, 'software_assurance_customer'),
|
|
343
|
+
subscription_status=pulumi.get(__ret__, 'subscription_status'),
|
|
344
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
345
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
346
|
+
type=pulumi.get(__ret__, 'type'))
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
@_utilities.lift_output_func(get_license_profile)
|
|
350
|
+
def get_license_profile_output(license_profile_name: Optional[pulumi.Input[str]] = None,
|
|
351
|
+
machine_name: Optional[pulumi.Input[str]] = None,
|
|
352
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
353
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetLicenseProfileResult]:
|
|
354
|
+
"""
|
|
355
|
+
Retrieves information about the view of a license profile.
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
:param str license_profile_name: The name of the license profile.
|
|
359
|
+
:param str machine_name: The name of the hybrid machine.
|
|
360
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
361
|
+
"""
|
|
362
|
+
...
|