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.

Files changed (169) hide show
  1. pulumi_azure/__init__.py +32 -0
  2. pulumi_azure/apimanagement/backend.py +2 -2
  3. pulumi_azure/appservice/_inputs.py +78 -6
  4. pulumi_azure/appservice/app_flex_consumption.py +61 -0
  5. pulumi_azure/appservice/outputs.py +52 -4
  6. pulumi_azure/appservice/service_plan.py +14 -14
  7. pulumi_azure/billing/account_cost_management_export.py +2 -2
  8. pulumi_azure/cdn/_inputs.py +57 -95
  9. pulumi_azure/cdn/frontdoor_firewall_policy.py +34 -107
  10. pulumi_azure/cdn/frontdoor_profile.py +87 -2
  11. pulumi_azure/cdn/frontdoor_security_policy.py +7 -7
  12. pulumi_azure/cdn/get_frontdoor_firewall_policy.py +15 -1
  13. pulumi_azure/cdn/get_frontdoor_profile.py +25 -11
  14. pulumi_azure/cdn/outputs.py +79 -21
  15. pulumi_azure/cognitive/account.py +7 -7
  16. pulumi_azure/compute/__init__.py +1 -0
  17. pulumi_azure/compute/_inputs.py +79 -47
  18. pulumi_azure/compute/get_managed_disks.py +140 -0
  19. pulumi_azure/compute/linux_virtual_machine.py +97 -23
  20. pulumi_azure/compute/outputs.py +362 -34
  21. pulumi_azure/compute/windows_virtual_machine.py +172 -42
  22. pulumi_azure/containerservice/_inputs.py +209 -17
  23. pulumi_azure/containerservice/cluster_trusted_access_role_binding.py +2 -2
  24. pulumi_azure/containerservice/get_cluster_node_pool.py +14 -3
  25. pulumi_azure/containerservice/get_kubernetes_cluster.py +2 -2
  26. pulumi_azure/containerservice/get_kubernetes_node_pool_snapshot.py +2 -2
  27. pulumi_azure/containerservice/kubernetes_cluster.py +49 -2
  28. pulumi_azure/containerservice/kubernetes_cluster_node_pool.py +49 -2
  29. pulumi_azure/containerservice/outputs.py +173 -11
  30. pulumi_azure/core/_inputs.py +0 -54
  31. pulumi_azure/core/outputs.py +0 -36
  32. pulumi_azure/core/resource_group_cost_management_export.py +2 -2
  33. pulumi_azure/core/resource_group_policy_assignment.py +7 -7
  34. pulumi_azure/core/resource_policy_assignment.py +7 -7
  35. pulumi_azure/core/subscription_cost_management_export.py +2 -2
  36. pulumi_azure/core/subscription_policy_assignment.py +7 -7
  37. pulumi_azure/datafactory/__init__.py +1 -0
  38. pulumi_azure/datafactory/customer_managed_key.py +439 -0
  39. pulumi_azure/datafactory/factory.py +2 -2
  40. pulumi_azure/dataprotection/_inputs.py +36 -6
  41. pulumi_azure/dataprotection/backup_policy_blob_storage.py +76 -2
  42. pulumi_azure/dataprotection/outputs.py +24 -4
  43. pulumi_azure/devcenter/get_project_pool.py +15 -1
  44. pulumi_azure/devcenter/project_pool.py +47 -0
  45. pulumi_azure/eventgrid/domain.py +2 -2
  46. pulumi_azure/eventgrid/domain_topic.py +2 -2
  47. pulumi_azure/eventgrid/event_subscription.py +2 -2
  48. pulumi_azure/eventgrid/get_domain.py +2 -2
  49. pulumi_azure/eventgrid/get_domain_topic.py +2 -2
  50. pulumi_azure/eventgrid/get_partner_namespace.py +2 -2
  51. pulumi_azure/eventgrid/get_partner_registration.py +2 -2
  52. pulumi_azure/eventgrid/get_system_topic.py +28 -6
  53. pulumi_azure/eventgrid/get_topic.py +2 -2
  54. pulumi_azure/eventgrid/partner_configuration.py +2 -2
  55. pulumi_azure/eventgrid/partner_namespace.py +2 -2
  56. pulumi_azure/eventgrid/partner_registration.py +2 -2
  57. pulumi_azure/eventgrid/system_topic.py +97 -35
  58. pulumi_azure/eventgrid/system_topic_event_subscription.py +4 -4
  59. pulumi_azure/eventgrid/topic.py +2 -2
  60. pulumi_azure/eventhub/domain.py +2 -2
  61. pulumi_azure/eventhub/event_grid_topic.py +2 -2
  62. pulumi_azure/eventhub/event_subscription.py +2 -2
  63. pulumi_azure/hpc/cache_blob_target.py +2 -2
  64. pulumi_azure/iot/_inputs.py +27 -1
  65. pulumi_azure/iot/endpoint_cosmosdb_account.py +64 -3
  66. pulumi_azure/iot/endpoint_eventhub.py +64 -3
  67. pulumi_azure/iot/endpoint_servicebus_queue.py +64 -3
  68. pulumi_azure/iot/endpoint_servicebus_topic.py +64 -3
  69. pulumi_azure/iot/endpoint_storage_container.py +64 -3
  70. pulumi_azure/iot/outputs.py +19 -1
  71. pulumi_azure/keyvault/_inputs.py +3 -17
  72. pulumi_azure/keyvault/get_key_vault.py +13 -1
  73. pulumi_azure/keyvault/key_vault.py +78 -35
  74. pulumi_azure/keyvault/outputs.py +2 -10
  75. pulumi_azure/kusto/_inputs.py +16 -6
  76. pulumi_azure/kusto/cluster.py +95 -66
  77. pulumi_azure/kusto/outputs.py +10 -4
  78. pulumi_azure/lb/get_lb_outbound_rule.py +12 -1
  79. pulumi_azure/lb/get_lb_rule.py +28 -4
  80. pulumi_azure/lb/load_balancer.py +94 -0
  81. pulumi_azure/lb/nat_rule.py +115 -29
  82. pulumi_azure/lb/outbound_rule.py +60 -17
  83. pulumi_azure/lb/rule.py +116 -30
  84. pulumi_azure/loadtest/_inputs.py +6 -3
  85. pulumi_azure/loadtest/load_test.py +0 -4
  86. pulumi_azure/loadtest/outputs.py +4 -2
  87. pulumi_azure/logicapps/_inputs.py +46 -987
  88. pulumi_azure/logicapps/get_standard.py +0 -7
  89. pulumi_azure/logicapps/outputs.py +117 -101
  90. pulumi_azure/logicapps/standard.py +7 -7
  91. pulumi_azure/machinelearning/_inputs.py +24 -4
  92. pulumi_azure/machinelearning/compute_instance.py +35 -7
  93. pulumi_azure/machinelearning/datastore_blobstorage.py +2 -2
  94. pulumi_azure/machinelearning/datastore_datalake_gen2.py +2 -2
  95. pulumi_azure/machinelearning/inference_cluster.py +2 -2
  96. pulumi_azure/machinelearning/outputs.py +17 -3
  97. pulumi_azure/machinelearning/workspace.py +61 -0
  98. pulumi_azure/management/_inputs.py +0 -18
  99. pulumi_azure/management/group_policy_assignment.py +7 -7
  100. pulumi_azure/management/outputs.py +0 -12
  101. pulumi_azure/management/private_link_association.py +0 -70
  102. pulumi_azure/mobile/_inputs.py +14 -6
  103. pulumi_azure/mobile/network_sim.py +2 -6
  104. pulumi_azure/mobile/network_sim_policy.py +2 -6
  105. pulumi_azure/mobile/network_slice.py +116 -31
  106. pulumi_azure/mobile/outputs.py +6 -4
  107. pulumi_azure/monitoring/_inputs.py +15 -9
  108. pulumi_azure/monitoring/activity_log_alert.py +7 -7
  109. pulumi_azure/monitoring/outputs.py +10 -6
  110. pulumi_azure/mssql/job_step.py +11 -11
  111. pulumi_azure/mysql/_inputs.py +20 -0
  112. pulumi_azure/mysql/outputs.py +14 -0
  113. pulumi_azure/netapp/_inputs.py +18 -6
  114. pulumi_azure/netapp/account.py +2 -2
  115. pulumi_azure/netapp/account_encryption.py +132 -4
  116. pulumi_azure/netapp/backup_policy.py +2 -2
  117. pulumi_azure/netapp/backup_vault.py +2 -2
  118. pulumi_azure/netapp/get_account.py +2 -2
  119. pulumi_azure/netapp/get_account_encryption.py +25 -3
  120. pulumi_azure/netapp/get_backup_policy.py +2 -2
  121. pulumi_azure/netapp/get_backup_vault.py +2 -2
  122. pulumi_azure/netapp/get_pool.py +17 -3
  123. pulumi_azure/netapp/get_snapshot.py +2 -2
  124. pulumi_azure/netapp/get_snapshot_policy.py +2 -2
  125. pulumi_azure/netapp/get_volume.py +17 -3
  126. pulumi_azure/netapp/get_volume_group_oracle.py +2 -2
  127. pulumi_azure/netapp/get_volume_group_sap_hana.py +2 -2
  128. pulumi_azure/netapp/get_volume_quota_rule.py +2 -2
  129. pulumi_azure/netapp/outputs.py +12 -4
  130. pulumi_azure/netapp/pool.py +104 -9
  131. pulumi_azure/netapp/snapshot.py +2 -2
  132. pulumi_azure/netapp/snapshot_policy.py +2 -2
  133. pulumi_azure/netapp/volume.py +82 -7
  134. pulumi_azure/netapp/volume_group_oracle.py +2 -2
  135. pulumi_azure/netapp/volume_group_sap_hana.py +2 -2
  136. pulumi_azure/netapp/volume_quota_rule.py +2 -2
  137. pulumi_azure/network/__init__.py +2 -0
  138. pulumi_azure/network/network_manager_ipam_pool_static_cidr.py +415 -0
  139. pulumi_azure/network/network_manager_routing_configuration.py +7 -7
  140. pulumi_azure/network/network_manager_routing_rule_collection.py +429 -0
  141. pulumi_azure/network/subnet.py +76 -1
  142. pulumi_azure/oracle/__init__.py +3 -0
  143. pulumi_azure/oracle/autonomous_database_backup.py +310 -0
  144. pulumi_azure/oracle/get_autonomous_database_backup.py +347 -0
  145. pulumi_azure/oracle/get_autonomous_database_backups.py +138 -0
  146. pulumi_azure/oracle/outputs.py +191 -0
  147. pulumi_azure/paloalto/next_generation_firewall_virtual_hub_local_rulestack.py +2 -2
  148. pulumi_azure/paloalto/next_generation_firewall_virtual_hub_panorama.py +2 -2
  149. pulumi_azure/paloalto/next_generation_firewall_virtual_network_local_rulestack.py +2 -2
  150. pulumi_azure/paloalto/next_generation_firewall_virtual_network_panorama.py +2 -2
  151. pulumi_azure/policy/_inputs.py +6 -0
  152. pulumi_azure/policy/outputs.py +4 -0
  153. pulumi_azure/postgresql/flexible_server.py +7 -7
  154. pulumi_azure/postgresql/flexible_server_firewall_rule.py +14 -14
  155. pulumi_azure/pulumi-plugin.json +1 -1
  156. pulumi_azure/search/service.py +7 -7
  157. pulumi_azure/sentinel/_inputs.py +144 -0
  158. pulumi_azure/sentinel/authomation_rule.py +47 -0
  159. pulumi_azure/sentinel/automation_rule.py +47 -0
  160. pulumi_azure/sentinel/outputs.py +84 -0
  161. pulumi_azure/storage/_inputs.py +3 -3
  162. pulumi_azure/storage/container_immutability_policy.py +2 -2
  163. pulumi_azure/storage/get_queue.py +59 -8
  164. pulumi_azure/storage/outputs.py +2 -2
  165. pulumi_azure/storage/queue.py +159 -27
  166. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
  167. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
  168. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
  169. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
@@ -205,9 +205,6 @@ class GroupPolicyAssignmentOverrideSelector(dict):
205
205
  ins: Optional[Sequence[_builtins.str]] = None,
206
206
  kind: Optional[_builtins.str] = None,
207
207
  not_ins: Optional[Sequence[_builtins.str]] = None):
208
- """
209
- :param _builtins.str kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
210
- """
211
208
  if ins is not None:
212
209
  pulumi.set(__self__, "ins", ins)
213
210
  if kind is not None:
@@ -223,9 +220,6 @@ class GroupPolicyAssignmentOverrideSelector(dict):
223
220
  @_builtins.property
224
221
  @pulumi.getter
225
222
  def kind(self) -> Optional[_builtins.str]:
226
- """
227
- Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
228
- """
229
223
  return pulumi.get(self, "kind")
230
224
 
231
225
  @_builtins.property
@@ -287,9 +281,6 @@ class GroupPolicyAssignmentResourceSelectorSelector(dict):
287
281
  kind: _builtins.str,
288
282
  ins: Optional[Sequence[_builtins.str]] = None,
289
283
  not_ins: Optional[Sequence[_builtins.str]] = None):
290
- """
291
- :param _builtins.str kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
292
- """
293
284
  pulumi.set(__self__, "kind", kind)
294
285
  if ins is not None:
295
286
  pulumi.set(__self__, "ins", ins)
@@ -299,9 +290,6 @@ class GroupPolicyAssignmentResourceSelectorSelector(dict):
299
290
  @_builtins.property
300
291
  @pulumi.getter
301
292
  def kind(self) -> _builtins.str:
302
- """
303
- Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
304
- """
305
293
  return pulumi.get(self, "kind")
306
294
 
307
295
  @_builtins.property
@@ -31,16 +31,6 @@ class PrivateLinkAssociationArgs:
31
31
  :param pulumi.Input[_builtins.bool] public_network_access_enabled: Whether public network access is allowed. Changing this forces a new Private Link Association to be created.
32
32
  :param pulumi.Input[_builtins.str] resource_management_private_link_id: The Resource ID of Resource Management Private Link. Changing this forces a new Private Link Association to be created.
33
33
  :param pulumi.Input[_builtins.str] name: Specifies the name of this Private Link Association, which should be a UUID. If `name` is not provided, a UUID will be generated, you should use the `ignore_changes` attribute to ignore changes to this field. Changing this forces a new Private Link Association to be created.
34
-
35
- ```python
36
- import pulumi
37
- import pulumi_azure as azure
38
-
39
- example = azure.management.PrivateLinkAssociation("example",
40
- management_group_id=example_azurerm_management_group["id"],
41
- resource_management_private_link_id=example_azurerm_resource_management_private_link["id"],
42
- public_network_access_enabled=True)
43
- ```
44
34
  """
45
35
  pulumi.set(__self__, "management_group_id", management_group_id)
46
36
  pulumi.set(__self__, "public_network_access_enabled", public_network_access_enabled)
@@ -91,16 +81,6 @@ class PrivateLinkAssociationArgs:
91
81
  def name(self) -> Optional[pulumi.Input[_builtins.str]]:
92
82
  """
93
83
  Specifies the name of this Private Link Association, which should be a UUID. If `name` is not provided, a UUID will be generated, you should use the `ignore_changes` attribute to ignore changes to this field. Changing this forces a new Private Link Association to be created.
94
-
95
- ```python
96
- import pulumi
97
- import pulumi_azure as azure
98
-
99
- example = azure.management.PrivateLinkAssociation("example",
100
- management_group_id=example_azurerm_management_group["id"],
101
- resource_management_private_link_id=example_azurerm_resource_management_private_link["id"],
102
- public_network_access_enabled=True)
103
- ```
104
84
  """
105
85
  return pulumi.get(self, "name")
106
86
 
@@ -123,16 +103,6 @@ class _PrivateLinkAssociationState:
123
103
 
124
104
  > **Note:** For now, `management_group_id` must be the ID of [Root Management Group](https://learn.microsoft.com/en-us/azure/governance/management-groups/overview#root-management-group-for-each-directory).
125
105
  :param pulumi.Input[_builtins.str] name: Specifies the name of this Private Link Association, which should be a UUID. If `name` is not provided, a UUID will be generated, you should use the `ignore_changes` attribute to ignore changes to this field. Changing this forces a new Private Link Association to be created.
126
-
127
- ```python
128
- import pulumi
129
- import pulumi_azure as azure
130
-
131
- example = azure.management.PrivateLinkAssociation("example",
132
- management_group_id=example_azurerm_management_group["id"],
133
- resource_management_private_link_id=example_azurerm_resource_management_private_link["id"],
134
- public_network_access_enabled=True)
135
- ```
136
106
  :param pulumi.Input[_builtins.bool] public_network_access_enabled: Whether public network access is allowed. Changing this forces a new Private Link Association to be created.
137
107
  :param pulumi.Input[_builtins.str] resource_management_private_link_id: The Resource ID of Resource Management Private Link. Changing this forces a new Private Link Association to be created.
138
108
  :param pulumi.Input[_builtins.str] tenant_id: The Tenant ID.
@@ -167,16 +137,6 @@ class _PrivateLinkAssociationState:
167
137
  def name(self) -> Optional[pulumi.Input[_builtins.str]]:
168
138
  """
169
139
  Specifies the name of this Private Link Association, which should be a UUID. If `name` is not provided, a UUID will be generated, you should use the `ignore_changes` attribute to ignore changes to this field. Changing this forces a new Private Link Association to be created.
170
-
171
- ```python
172
- import pulumi
173
- import pulumi_azure as azure
174
-
175
- example = azure.management.PrivateLinkAssociation("example",
176
- management_group_id=example_azurerm_management_group["id"],
177
- resource_management_private_link_id=example_azurerm_resource_management_private_link["id"],
178
- public_network_access_enabled=True)
179
- ```
180
140
  """
181
141
  return pulumi.get(self, "name")
182
142
 
@@ -280,16 +240,6 @@ class PrivateLinkAssociation(pulumi.CustomResource):
280
240
 
281
241
  > **Note:** For now, `management_group_id` must be the ID of [Root Management Group](https://learn.microsoft.com/en-us/azure/governance/management-groups/overview#root-management-group-for-each-directory).
282
242
  :param pulumi.Input[_builtins.str] name: Specifies the name of this Private Link Association, which should be a UUID. If `name` is not provided, a UUID will be generated, you should use the `ignore_changes` attribute to ignore changes to this field. Changing this forces a new Private Link Association to be created.
283
-
284
- ```python
285
- import pulumi
286
- import pulumi_azure as azure
287
-
288
- example = azure.management.PrivateLinkAssociation("example",
289
- management_group_id=example_azurerm_management_group["id"],
290
- resource_management_private_link_id=example_azurerm_resource_management_private_link["id"],
291
- public_network_access_enabled=True)
292
- ```
293
243
  :param pulumi.Input[_builtins.bool] public_network_access_enabled: Whether public network access is allowed. Changing this forces a new Private Link Association to be created.
294
244
  :param pulumi.Input[_builtins.str] resource_management_private_link_id: The Resource ID of Resource Management Private Link. Changing this forces a new Private Link Association to be created.
295
245
  """
@@ -406,16 +356,6 @@ class PrivateLinkAssociation(pulumi.CustomResource):
406
356
 
407
357
  > **Note:** For now, `management_group_id` must be the ID of [Root Management Group](https://learn.microsoft.com/en-us/azure/governance/management-groups/overview#root-management-group-for-each-directory).
408
358
  :param pulumi.Input[_builtins.str] name: Specifies the name of this Private Link Association, which should be a UUID. If `name` is not provided, a UUID will be generated, you should use the `ignore_changes` attribute to ignore changes to this field. Changing this forces a new Private Link Association to be created.
409
-
410
- ```python
411
- import pulumi
412
- import pulumi_azure as azure
413
-
414
- example = azure.management.PrivateLinkAssociation("example",
415
- management_group_id=example_azurerm_management_group["id"],
416
- resource_management_private_link_id=example_azurerm_resource_management_private_link["id"],
417
- public_network_access_enabled=True)
418
- ```
419
359
  :param pulumi.Input[_builtins.bool] public_network_access_enabled: Whether public network access is allowed. Changing this forces a new Private Link Association to be created.
420
360
  :param pulumi.Input[_builtins.str] resource_management_private_link_id: The Resource ID of Resource Management Private Link. Changing this forces a new Private Link Association to be created.
421
361
  :param pulumi.Input[_builtins.str] tenant_id: The Tenant ID.
@@ -446,16 +386,6 @@ class PrivateLinkAssociation(pulumi.CustomResource):
446
386
  def name(self) -> pulumi.Output[_builtins.str]:
447
387
  """
448
388
  Specifies the name of this Private Link Association, which should be a UUID. If `name` is not provided, a UUID will be generated, you should use the `ignore_changes` attribute to ignore changes to this field. Changing this forces a new Private Link Association to be created.
449
-
450
- ```python
451
- import pulumi
452
- import pulumi_azure as azure
453
-
454
- example = azure.management.PrivateLinkAssociation("example",
455
- management_group_id=example_azurerm_management_group["id"],
456
- resource_management_private_link_id=example_azurerm_resource_management_private_link["id"],
457
- public_network_access_enabled=True)
458
- ```
459
389
  """
460
390
  return pulumi.get(self, "name")
461
391
 
@@ -1588,11 +1588,11 @@ if not MYPY:
1588
1588
  class NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgsDict(TypedDict):
1589
1589
  slice_service_type: pulumi.Input[_builtins.int]
1590
1590
  """
1591
- Slice/service type (SST). Must be between `0` and `255`.
1591
+ Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
1592
1592
  """
1593
1593
  slice_differentiator: NotRequired[pulumi.Input[_builtins.str]]
1594
1594
  """
1595
- Slice differentiator (SD). Must be a 6 digit hex string.
1595
+ Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
1596
1596
  """
1597
1597
  elif False:
1598
1598
  NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgsDict: TypeAlias = Mapping[str, Any]
@@ -1603,18 +1603,25 @@ class NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs:
1603
1603
  slice_service_type: pulumi.Input[_builtins.int],
1604
1604
  slice_differentiator: Optional[pulumi.Input[_builtins.str]] = None):
1605
1605
  """
1606
- :param pulumi.Input[_builtins.int] slice_service_type: Slice/service type (SST). Must be between `0` and `255`.
1607
- :param pulumi.Input[_builtins.str] slice_differentiator: Slice differentiator (SD). Must be a 6 digit hex string.
1606
+ :param pulumi.Input[_builtins.int] slice_service_type: Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
1607
+ :param pulumi.Input[_builtins.str] slice_differentiator: Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
1608
1608
  """
1609
+ if slice_service_type is not None:
1610
+ warnings.warn("""`single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""", DeprecationWarning)
1611
+ pulumi.log.warn("""slice_service_type is deprecated: `single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""")
1609
1612
  pulumi.set(__self__, "slice_service_type", slice_service_type)
1613
+ if slice_differentiator is not None:
1614
+ warnings.warn("""`single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""", DeprecationWarning)
1615
+ pulumi.log.warn("""slice_differentiator is deprecated: `single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""")
1610
1616
  if slice_differentiator is not None:
1611
1617
  pulumi.set(__self__, "slice_differentiator", slice_differentiator)
1612
1618
 
1613
1619
  @_builtins.property
1614
1620
  @pulumi.getter(name="sliceServiceType")
1621
+ @_utilities.deprecated("""`single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""")
1615
1622
  def slice_service_type(self) -> pulumi.Input[_builtins.int]:
1616
1623
  """
1617
- Slice/service type (SST). Must be between `0` and `255`.
1624
+ Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
1618
1625
  """
1619
1626
  return pulumi.get(self, "slice_service_type")
1620
1627
 
@@ -1624,9 +1631,10 @@ class NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs:
1624
1631
 
1625
1632
  @_builtins.property
1626
1633
  @pulumi.getter(name="sliceDifferentiator")
1634
+ @_utilities.deprecated("""`single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""")
1627
1635
  def slice_differentiator(self) -> Optional[pulumi.Input[_builtins.str]]:
1628
1636
  """
1629
- Slice differentiator (SD). Must be a 6 digit hex string.
1637
+ Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
1630
1638
  """
1631
1639
  return pulumi.get(self, "slice_differentiator")
1632
1640
 
@@ -407,9 +407,7 @@ class NetworkSim(pulumi.CustomResource):
407
407
  name="example-slice",
408
408
  mobile_network_id=example_network.id,
409
409
  location=example.location,
410
- single_network_slice_selection_assistance_information={
411
- "slice_service_type": 1,
412
- })
410
+ slice_service_type=1)
413
411
  example_network_attached_data_network = azure.mobile.NetworkAttachedDataNetwork("example",
414
412
  mobile_network_data_network_name=example_azurerm_mobile_network_data_network["name"],
415
413
  mobile_network_packet_core_data_plane_id=example_azurerm_mobile_network_packet_core_data_plane["id"],
@@ -494,9 +492,7 @@ class NetworkSim(pulumi.CustomResource):
494
492
  name="example-slice",
495
493
  mobile_network_id=example_network.id,
496
494
  location=example.location,
497
- single_network_slice_selection_assistance_information={
498
- "slice_service_type": 1,
499
- })
495
+ slice_service_type=1)
500
496
  example_network_attached_data_network = azure.mobile.NetworkAttachedDataNetwork("example",
501
497
  mobile_network_data_network_name=example_azurerm_mobile_network_data_network["name"],
502
498
  mobile_network_packet_core_data_plane_id=example_azurerm_mobile_network_packet_core_data_plane["id"],
@@ -377,9 +377,7 @@ class NetworkSimPolicy(pulumi.CustomResource):
377
377
  name="example-mns",
378
378
  mobile_network_id=example_network.id,
379
379
  location=example.location,
380
- single_network_slice_selection_assistance_information={
381
- "slice_service_type": 1,
382
- })
380
+ slice_service_type=1)
383
381
  example_network_sim_policy = azure.mobile.NetworkSimPolicy("example",
384
382
  name="example-mnsp",
385
383
  mobile_network_id=example_network.id,
@@ -488,9 +486,7 @@ class NetworkSimPolicy(pulumi.CustomResource):
488
486
  name="example-mns",
489
487
  mobile_network_id=example_network.id,
490
488
  location=example.location,
491
- single_network_slice_selection_assistance_information={
492
- "slice_service_type": 1,
493
- })
489
+ slice_service_type=1)
494
490
  example_network_sim_policy = azure.mobile.NetworkSimPolicy("example",
495
491
  name="example-mnsp",
496
492
  mobile_network_id=example_network.id,
@@ -22,28 +22,39 @@ __all__ = ['NetworkSliceArgs', 'NetworkSlice']
22
22
  class NetworkSliceArgs:
23
23
  def __init__(__self__, *,
24
24
  mobile_network_id: pulumi.Input[_builtins.str],
25
- single_network_slice_selection_assistance_information: pulumi.Input['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs'],
26
25
  description: Optional[pulumi.Input[_builtins.str]] = None,
27
26
  location: Optional[pulumi.Input[_builtins.str]] = None,
28
27
  name: Optional[pulumi.Input[_builtins.str]] = None,
28
+ single_network_slice_selection_assistance_information: Optional[pulumi.Input['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs']] = None,
29
+ slice_differentiator: Optional[pulumi.Input[_builtins.str]] = None,
30
+ slice_service_type: Optional[pulumi.Input[_builtins.int]] = None,
29
31
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
30
32
  """
31
33
  The set of arguments for constructing a NetworkSlice resource.
32
34
  :param pulumi.Input[_builtins.str] mobile_network_id: The ID of Mobile Network which the Mobile Network Slice belongs to. Changing this forces a new Mobile Network Slice to be created.
33
- :param pulumi.Input['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs'] single_network_slice_selection_assistance_information: A `single_network_slice_selection_assistance_information` block as defined below. Single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
34
35
  :param pulumi.Input[_builtins.str] description: A description for this Mobile Network Slice.
35
36
  :param pulumi.Input[_builtins.str] location: Specifies the Azure Region where the Mobile Network Slice should exist. Changing this forces a new Mobile Network Slice to be created.
36
37
  :param pulumi.Input[_builtins.str] name: Specifies the name which should be used for this Mobile Network Slice. Changing this forces a new Mobile Network Slice to be created.
38
+ :param pulumi.Input[_builtins.str] slice_differentiator: Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
39
+ :param pulumi.Input[_builtins.int] slice_service_type: Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
37
40
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Mobile Network Slice.
38
41
  """
39
42
  pulumi.set(__self__, "mobile_network_id", mobile_network_id)
40
- pulumi.set(__self__, "single_network_slice_selection_assistance_information", single_network_slice_selection_assistance_information)
41
43
  if description is not None:
42
44
  pulumi.set(__self__, "description", description)
43
45
  if location is not None:
44
46
  pulumi.set(__self__, "location", location)
45
47
  if name is not None:
46
48
  pulumi.set(__self__, "name", name)
49
+ if single_network_slice_selection_assistance_information is not None:
50
+ warnings.warn("""`single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""", DeprecationWarning)
51
+ pulumi.log.warn("""single_network_slice_selection_assistance_information is deprecated: `single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""")
52
+ if single_network_slice_selection_assistance_information is not None:
53
+ pulumi.set(__self__, "single_network_slice_selection_assistance_information", single_network_slice_selection_assistance_information)
54
+ if slice_differentiator is not None:
55
+ pulumi.set(__self__, "slice_differentiator", slice_differentiator)
56
+ if slice_service_type is not None:
57
+ pulumi.set(__self__, "slice_service_type", slice_service_type)
47
58
  if tags is not None:
48
59
  pulumi.set(__self__, "tags", tags)
49
60
 
@@ -59,18 +70,6 @@ class NetworkSliceArgs:
59
70
  def mobile_network_id(self, value: pulumi.Input[_builtins.str]):
60
71
  pulumi.set(self, "mobile_network_id", value)
61
72
 
62
- @_builtins.property
63
- @pulumi.getter(name="singleNetworkSliceSelectionAssistanceInformation")
64
- def single_network_slice_selection_assistance_information(self) -> pulumi.Input['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs']:
65
- """
66
- A `single_network_slice_selection_assistance_information` block as defined below. Single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
67
- """
68
- return pulumi.get(self, "single_network_slice_selection_assistance_information")
69
-
70
- @single_network_slice_selection_assistance_information.setter
71
- def single_network_slice_selection_assistance_information(self, value: pulumi.Input['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs']):
72
- pulumi.set(self, "single_network_slice_selection_assistance_information", value)
73
-
74
73
  @_builtins.property
75
74
  @pulumi.getter
76
75
  def description(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -107,6 +106,40 @@ class NetworkSliceArgs:
107
106
  def name(self, value: Optional[pulumi.Input[_builtins.str]]):
108
107
  pulumi.set(self, "name", value)
109
108
 
109
+ @_builtins.property
110
+ @pulumi.getter(name="singleNetworkSliceSelectionAssistanceInformation")
111
+ @_utilities.deprecated("""`single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""")
112
+ def single_network_slice_selection_assistance_information(self) -> Optional[pulumi.Input['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs']]:
113
+ return pulumi.get(self, "single_network_slice_selection_assistance_information")
114
+
115
+ @single_network_slice_selection_assistance_information.setter
116
+ def single_network_slice_selection_assistance_information(self, value: Optional[pulumi.Input['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs']]):
117
+ pulumi.set(self, "single_network_slice_selection_assistance_information", value)
118
+
119
+ @_builtins.property
120
+ @pulumi.getter(name="sliceDifferentiator")
121
+ def slice_differentiator(self) -> Optional[pulumi.Input[_builtins.str]]:
122
+ """
123
+ Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
124
+ """
125
+ return pulumi.get(self, "slice_differentiator")
126
+
127
+ @slice_differentiator.setter
128
+ def slice_differentiator(self, value: Optional[pulumi.Input[_builtins.str]]):
129
+ pulumi.set(self, "slice_differentiator", value)
130
+
131
+ @_builtins.property
132
+ @pulumi.getter(name="sliceServiceType")
133
+ def slice_service_type(self) -> Optional[pulumi.Input[_builtins.int]]:
134
+ """
135
+ Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
136
+ """
137
+ return pulumi.get(self, "slice_service_type")
138
+
139
+ @slice_service_type.setter
140
+ def slice_service_type(self, value: Optional[pulumi.Input[_builtins.int]]):
141
+ pulumi.set(self, "slice_service_type", value)
142
+
110
143
  @_builtins.property
111
144
  @pulumi.getter
112
145
  def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
@@ -128,6 +161,8 @@ class _NetworkSliceState:
128
161
  mobile_network_id: Optional[pulumi.Input[_builtins.str]] = None,
129
162
  name: Optional[pulumi.Input[_builtins.str]] = None,
130
163
  single_network_slice_selection_assistance_information: Optional[pulumi.Input['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs']] = None,
164
+ slice_differentiator: Optional[pulumi.Input[_builtins.str]] = None,
165
+ slice_service_type: Optional[pulumi.Input[_builtins.int]] = None,
131
166
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
132
167
  """
133
168
  Input properties used for looking up and filtering NetworkSlice resources.
@@ -135,7 +170,8 @@ class _NetworkSliceState:
135
170
  :param pulumi.Input[_builtins.str] location: Specifies the Azure Region where the Mobile Network Slice should exist. Changing this forces a new Mobile Network Slice to be created.
136
171
  :param pulumi.Input[_builtins.str] mobile_network_id: The ID of Mobile Network which the Mobile Network Slice belongs to. Changing this forces a new Mobile Network Slice to be created.
137
172
  :param pulumi.Input[_builtins.str] name: Specifies the name which should be used for this Mobile Network Slice. Changing this forces a new Mobile Network Slice to be created.
138
- :param pulumi.Input['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs'] single_network_slice_selection_assistance_information: A `single_network_slice_selection_assistance_information` block as defined below. Single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
173
+ :param pulumi.Input[_builtins.str] slice_differentiator: Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
174
+ :param pulumi.Input[_builtins.int] slice_service_type: Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
139
175
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Mobile Network Slice.
140
176
  """
141
177
  if description is not None:
@@ -146,8 +182,15 @@ class _NetworkSliceState:
146
182
  pulumi.set(__self__, "mobile_network_id", mobile_network_id)
147
183
  if name is not None:
148
184
  pulumi.set(__self__, "name", name)
185
+ if single_network_slice_selection_assistance_information is not None:
186
+ warnings.warn("""`single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""", DeprecationWarning)
187
+ pulumi.log.warn("""single_network_slice_selection_assistance_information is deprecated: `single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""")
149
188
  if single_network_slice_selection_assistance_information is not None:
150
189
  pulumi.set(__self__, "single_network_slice_selection_assistance_information", single_network_slice_selection_assistance_information)
190
+ if slice_differentiator is not None:
191
+ pulumi.set(__self__, "slice_differentiator", slice_differentiator)
192
+ if slice_service_type is not None:
193
+ pulumi.set(__self__, "slice_service_type", slice_service_type)
151
194
  if tags is not None:
152
195
  pulumi.set(__self__, "tags", tags)
153
196
 
@@ -201,16 +244,38 @@ class _NetworkSliceState:
201
244
 
202
245
  @_builtins.property
203
246
  @pulumi.getter(name="singleNetworkSliceSelectionAssistanceInformation")
247
+ @_utilities.deprecated("""`single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""")
204
248
  def single_network_slice_selection_assistance_information(self) -> Optional[pulumi.Input['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs']]:
205
- """
206
- A `single_network_slice_selection_assistance_information` block as defined below. Single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
207
- """
208
249
  return pulumi.get(self, "single_network_slice_selection_assistance_information")
209
250
 
210
251
  @single_network_slice_selection_assistance_information.setter
211
252
  def single_network_slice_selection_assistance_information(self, value: Optional[pulumi.Input['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs']]):
212
253
  pulumi.set(self, "single_network_slice_selection_assistance_information", value)
213
254
 
255
+ @_builtins.property
256
+ @pulumi.getter(name="sliceDifferentiator")
257
+ def slice_differentiator(self) -> Optional[pulumi.Input[_builtins.str]]:
258
+ """
259
+ Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
260
+ """
261
+ return pulumi.get(self, "slice_differentiator")
262
+
263
+ @slice_differentiator.setter
264
+ def slice_differentiator(self, value: Optional[pulumi.Input[_builtins.str]]):
265
+ pulumi.set(self, "slice_differentiator", value)
266
+
267
+ @_builtins.property
268
+ @pulumi.getter(name="sliceServiceType")
269
+ def slice_service_type(self) -> Optional[pulumi.Input[_builtins.int]]:
270
+ """
271
+ Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
272
+ """
273
+ return pulumi.get(self, "slice_service_type")
274
+
275
+ @slice_service_type.setter
276
+ def slice_service_type(self, value: Optional[pulumi.Input[_builtins.int]]):
277
+ pulumi.set(self, "slice_service_type", value)
278
+
214
279
  @_builtins.property
215
280
  @pulumi.getter
216
281
  def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
@@ -235,6 +300,8 @@ class NetworkSlice(pulumi.CustomResource):
235
300
  mobile_network_id: Optional[pulumi.Input[_builtins.str]] = None,
236
301
  name: Optional[pulumi.Input[_builtins.str]] = None,
237
302
  single_network_slice_selection_assistance_information: Optional[pulumi.Input[Union['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs', 'NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgsDict']]] = None,
303
+ slice_differentiator: Optional[pulumi.Input[_builtins.str]] = None,
304
+ slice_service_type: Optional[pulumi.Input[_builtins.int]] = None,
238
305
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
239
306
  __props__=None):
240
307
  """
@@ -260,9 +327,7 @@ class NetworkSlice(pulumi.CustomResource):
260
327
  mobile_network_id=example_network.id,
261
328
  location=example.location,
262
329
  description="an example slice",
263
- single_network_slice_selection_assistance_information={
264
- "slice_service_type": 1,
265
- },
330
+ slice_service_type=1,
266
331
  tags={
267
332
  "key": "value",
268
333
  })
@@ -289,7 +354,8 @@ class NetworkSlice(pulumi.CustomResource):
289
354
  :param pulumi.Input[_builtins.str] location: Specifies the Azure Region where the Mobile Network Slice should exist. Changing this forces a new Mobile Network Slice to be created.
290
355
  :param pulumi.Input[_builtins.str] mobile_network_id: The ID of Mobile Network which the Mobile Network Slice belongs to. Changing this forces a new Mobile Network Slice to be created.
291
356
  :param pulumi.Input[_builtins.str] name: Specifies the name which should be used for this Mobile Network Slice. Changing this forces a new Mobile Network Slice to be created.
292
- :param pulumi.Input[Union['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs', 'NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgsDict']] single_network_slice_selection_assistance_information: A `single_network_slice_selection_assistance_information` block as defined below. Single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
357
+ :param pulumi.Input[_builtins.str] slice_differentiator: Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
358
+ :param pulumi.Input[_builtins.int] slice_service_type: Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
293
359
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Mobile Network Slice.
294
360
  """
295
361
  ...
@@ -321,9 +387,7 @@ class NetworkSlice(pulumi.CustomResource):
321
387
  mobile_network_id=example_network.id,
322
388
  location=example.location,
323
389
  description="an example slice",
324
- single_network_slice_selection_assistance_information={
325
- "slice_service_type": 1,
326
- },
390
+ slice_service_type=1,
327
391
  tags={
328
392
  "key": "value",
329
393
  })
@@ -364,6 +428,8 @@ class NetworkSlice(pulumi.CustomResource):
364
428
  mobile_network_id: Optional[pulumi.Input[_builtins.str]] = None,
365
429
  name: Optional[pulumi.Input[_builtins.str]] = None,
366
430
  single_network_slice_selection_assistance_information: Optional[pulumi.Input[Union['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs', 'NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgsDict']]] = None,
431
+ slice_differentiator: Optional[pulumi.Input[_builtins.str]] = None,
432
+ slice_service_type: Optional[pulumi.Input[_builtins.int]] = None,
367
433
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
368
434
  __props__=None):
369
435
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -380,9 +446,9 @@ class NetworkSlice(pulumi.CustomResource):
380
446
  raise TypeError("Missing required property 'mobile_network_id'")
381
447
  __props__.__dict__["mobile_network_id"] = mobile_network_id
382
448
  __props__.__dict__["name"] = name
383
- if single_network_slice_selection_assistance_information is None and not opts.urn:
384
- raise TypeError("Missing required property 'single_network_slice_selection_assistance_information'")
385
449
  __props__.__dict__["single_network_slice_selection_assistance_information"] = single_network_slice_selection_assistance_information
450
+ __props__.__dict__["slice_differentiator"] = slice_differentiator
451
+ __props__.__dict__["slice_service_type"] = slice_service_type
386
452
  __props__.__dict__["tags"] = tags
387
453
  super(NetworkSlice, __self__).__init__(
388
454
  'azure:mobile/networkSlice:NetworkSlice',
@@ -399,6 +465,8 @@ class NetworkSlice(pulumi.CustomResource):
399
465
  mobile_network_id: Optional[pulumi.Input[_builtins.str]] = None,
400
466
  name: Optional[pulumi.Input[_builtins.str]] = None,
401
467
  single_network_slice_selection_assistance_information: Optional[pulumi.Input[Union['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs', 'NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgsDict']]] = None,
468
+ slice_differentiator: Optional[pulumi.Input[_builtins.str]] = None,
469
+ slice_service_type: Optional[pulumi.Input[_builtins.int]] = None,
402
470
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None) -> 'NetworkSlice':
403
471
  """
404
472
  Get an existing NetworkSlice resource's state with the given name, id, and optional extra
@@ -411,7 +479,8 @@ class NetworkSlice(pulumi.CustomResource):
411
479
  :param pulumi.Input[_builtins.str] location: Specifies the Azure Region where the Mobile Network Slice should exist. Changing this forces a new Mobile Network Slice to be created.
412
480
  :param pulumi.Input[_builtins.str] mobile_network_id: The ID of Mobile Network which the Mobile Network Slice belongs to. Changing this forces a new Mobile Network Slice to be created.
413
481
  :param pulumi.Input[_builtins.str] name: Specifies the name which should be used for this Mobile Network Slice. Changing this forces a new Mobile Network Slice to be created.
414
- :param pulumi.Input[Union['NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgs', 'NetworkSliceSingleNetworkSliceSelectionAssistanceInformationArgsDict']] single_network_slice_selection_assistance_information: A `single_network_slice_selection_assistance_information` block as defined below. Single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
482
+ :param pulumi.Input[_builtins.str] slice_differentiator: Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
483
+ :param pulumi.Input[_builtins.int] slice_service_type: Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
415
484
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Mobile Network Slice.
416
485
  """
417
486
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -423,6 +492,8 @@ class NetworkSlice(pulumi.CustomResource):
423
492
  __props__.__dict__["mobile_network_id"] = mobile_network_id
424
493
  __props__.__dict__["name"] = name
425
494
  __props__.__dict__["single_network_slice_selection_assistance_information"] = single_network_slice_selection_assistance_information
495
+ __props__.__dict__["slice_differentiator"] = slice_differentiator
496
+ __props__.__dict__["slice_service_type"] = slice_service_type
426
497
  __props__.__dict__["tags"] = tags
427
498
  return NetworkSlice(resource_name, opts=opts, __props__=__props__)
428
499
 
@@ -460,11 +531,25 @@ class NetworkSlice(pulumi.CustomResource):
460
531
 
461
532
  @_builtins.property
462
533
  @pulumi.getter(name="singleNetworkSliceSelectionAssistanceInformation")
534
+ @_utilities.deprecated("""`single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""")
463
535
  def single_network_slice_selection_assistance_information(self) -> pulumi.Output['outputs.NetworkSliceSingleNetworkSliceSelectionAssistanceInformation']:
536
+ return pulumi.get(self, "single_network_slice_selection_assistance_information")
537
+
538
+ @_builtins.property
539
+ @pulumi.getter(name="sliceDifferentiator")
540
+ def slice_differentiator(self) -> pulumi.Output[_builtins.str]:
464
541
  """
465
- A `single_network_slice_selection_assistance_information` block as defined below. Single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
542
+ Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
466
543
  """
467
- return pulumi.get(self, "single_network_slice_selection_assistance_information")
544
+ return pulumi.get(self, "slice_differentiator")
545
+
546
+ @_builtins.property
547
+ @pulumi.getter(name="sliceServiceType")
548
+ def slice_service_type(self) -> pulumi.Output[_builtins.int]:
549
+ """
550
+ Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
551
+ """
552
+ return pulumi.get(self, "slice_service_type")
468
553
 
469
554
  @_builtins.property
470
555
  @pulumi.getter
@@ -1252,8 +1252,8 @@ class NetworkSliceSingleNetworkSliceSelectionAssistanceInformation(dict):
1252
1252
  slice_service_type: _builtins.int,
1253
1253
  slice_differentiator: Optional[_builtins.str] = None):
1254
1254
  """
1255
- :param _builtins.int slice_service_type: Slice/service type (SST). Must be between `0` and `255`.
1256
- :param _builtins.str slice_differentiator: Slice differentiator (SD). Must be a 6 digit hex string.
1255
+ :param _builtins.int slice_service_type: Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
1256
+ :param _builtins.str slice_differentiator: Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
1257
1257
  """
1258
1258
  pulumi.set(__self__, "slice_service_type", slice_service_type)
1259
1259
  if slice_differentiator is not None:
@@ -1261,17 +1261,19 @@ class NetworkSliceSingleNetworkSliceSelectionAssistanceInformation(dict):
1261
1261
 
1262
1262
  @_builtins.property
1263
1263
  @pulumi.getter(name="sliceServiceType")
1264
+ @_utilities.deprecated("""`single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""")
1264
1265
  def slice_service_type(self) -> _builtins.int:
1265
1266
  """
1266
- Slice/service type (SST). Must be between `0` and `255`.
1267
+ Slice/service type (SST). Must be between `0` and `255`. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
1267
1268
  """
1268
1269
  return pulumi.get(self, "slice_service_type")
1269
1270
 
1270
1271
  @_builtins.property
1271
1272
  @pulumi.getter(name="sliceDifferentiator")
1273
+ @_utilities.deprecated("""`single_network_slice_selection_assistance_information` has been deprecated and its properties, `slice_differentiator` and `slice_service_type` have been moved to the top level. The `single_network_slice_selection_assistance_information` block will be removed in v5.0 of the AzureRM Provider.""")
1272
1274
  def slice_differentiator(self) -> Optional[_builtins.str]:
1273
1275
  """
1274
- Slice differentiator (SD). Must be a 6 digit hex string.
1276
+ Slice differentiator (SD). Must be a 6 digit hex string. For single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
1275
1277
  """
1276
1278
  return pulumi.get(self, "slice_differentiator")
1277
1279