pulumi-spotinst 3.123.0a1752821103__py3-none-any.whl → 3.124.0a1752907291__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-spotinst might be problematic. Click here for more details.

@@ -4530,6 +4530,7 @@ if not MYPY:
4530
4530
  class StatefulNodeAzureManagedServiceIdentityArgsDict(TypedDict):
4531
4531
  name: pulumi.Input[builtins.str]
4532
4532
  resource_group_name: pulumi.Input[builtins.str]
4533
+ subscription_id: NotRequired[pulumi.Input[builtins.str]]
4533
4534
  elif False:
4534
4535
  StatefulNodeAzureManagedServiceIdentityArgsDict: TypeAlias = Mapping[str, Any]
4535
4536
 
@@ -4537,9 +4538,12 @@ elif False:
4537
4538
  class StatefulNodeAzureManagedServiceIdentityArgs:
4538
4539
  def __init__(__self__, *,
4539
4540
  name: pulumi.Input[builtins.str],
4540
- resource_group_name: pulumi.Input[builtins.str]):
4541
+ resource_group_name: pulumi.Input[builtins.str],
4542
+ subscription_id: Optional[pulumi.Input[builtins.str]] = None):
4541
4543
  pulumi.set(__self__, "name", name)
4542
4544
  pulumi.set(__self__, "resource_group_name", resource_group_name)
4545
+ if subscription_id is not None:
4546
+ pulumi.set(__self__, "subscription_id", subscription_id)
4543
4547
 
4544
4548
  @property
4545
4549
  @pulumi.getter
@@ -4559,6 +4563,15 @@ class StatefulNodeAzureManagedServiceIdentityArgs:
4559
4563
  def resource_group_name(self, value: pulumi.Input[builtins.str]):
4560
4564
  pulumi.set(self, "resource_group_name", value)
4561
4565
 
4566
+ @property
4567
+ @pulumi.getter(name="subscriptionId")
4568
+ def subscription_id(self) -> Optional[pulumi.Input[builtins.str]]:
4569
+ return pulumi.get(self, "subscription_id")
4570
+
4571
+ @subscription_id.setter
4572
+ def subscription_id(self, value: Optional[pulumi.Input[builtins.str]]):
4573
+ pulumi.set(self, "subscription_id", value)
4574
+
4562
4575
 
4563
4576
  if not MYPY:
4564
4577
  class StatefulNodeAzureNetworkArgsDict(TypedDict):
@@ -3913,6 +3913,8 @@ class StatefulNodeAzureManagedServiceIdentity(dict):
3913
3913
  suggest = None
3914
3914
  if key == "resourceGroupName":
3915
3915
  suggest = "resource_group_name"
3916
+ elif key == "subscriptionId":
3917
+ suggest = "subscription_id"
3916
3918
 
3917
3919
  if suggest:
3918
3920
  pulumi.log.warn(f"Key '{key}' not found in StatefulNodeAzureManagedServiceIdentity. Access the value via the '{suggest}' property getter instead.")
@@ -3927,9 +3929,12 @@ class StatefulNodeAzureManagedServiceIdentity(dict):
3927
3929
 
3928
3930
  def __init__(__self__, *,
3929
3931
  name: builtins.str,
3930
- resource_group_name: builtins.str):
3932
+ resource_group_name: builtins.str,
3933
+ subscription_id: Optional[builtins.str] = None):
3931
3934
  pulumi.set(__self__, "name", name)
3932
3935
  pulumi.set(__self__, "resource_group_name", resource_group_name)
3936
+ if subscription_id is not None:
3937
+ pulumi.set(__self__, "subscription_id", subscription_id)
3933
3938
 
3934
3939
  @property
3935
3940
  @pulumi.getter
@@ -3941,6 +3946,11 @@ class StatefulNodeAzureManagedServiceIdentity(dict):
3941
3946
  def resource_group_name(self) -> builtins.str:
3942
3947
  return pulumi.get(self, "resource_group_name")
3943
3948
 
3949
+ @property
3950
+ @pulumi.getter(name="subscriptionId")
3951
+ def subscription_id(self) -> Optional[builtins.str]:
3952
+ return pulumi.get(self, "subscription_id")
3953
+
3944
3954
 
3945
3955
  @pulumi.output_type
3946
3956
  class StatefulNodeAzureNetwork(dict):
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "spotinst",
4
- "version": "3.123.0-alpha.1752821103"
4
+ "version": "3.124.0-alpha.1752907291"
5
5
  }
@@ -1195,6 +1195,7 @@ class StatefulNodeAzure(pulumi.CustomResource):
1195
1195
  managed_service_identities=[{
1196
1196
  "name": "mySI2",
1197
1197
  "resource_group_name": "myResourceGroup",
1198
+ "subscription_id": "12345678-abcd-1234-abcd-123456789ab",
1198
1199
  }],
1199
1200
  network={
1200
1201
  "network_resource_group_name": "subnetResourceGroup",
@@ -1432,6 +1433,9 @@ class StatefulNodeAzure(pulumi.CustomResource):
1432
1433
  * `managed_service_identities` - (Optional) Add a user-assigned managed identity to the Stateful Node's VM.
1433
1434
  * `name` - (Required) name of the managed identity.
1434
1435
  * `resource_group_name` - (Required) The Resource Group that the user-assigned managed identity resides in.
1436
+ * `subscription_id` - (Optional) Defines the subscription ID of the managed service identities. Required if the managed service identity is in a different subscription. To use a user-assigned managed identity in a different subscription, you must ensure that the spotAccount's Service Principal has access to the defined subscription and that it has the two following permissions:
1437
+ 1. Microsoft.ManagedIdentity/userAssignedIdentities/assign/action
1438
+ 2. Microsoft.ManagedIdentity/userAssignedIdentities/read
1435
1439
 
1436
1440
  <a id="proximity_placement_groups"></a>
1437
1441
  ## Proximity Placement Groups
@@ -1727,6 +1731,7 @@ class StatefulNodeAzure(pulumi.CustomResource):
1727
1731
  managed_service_identities=[{
1728
1732
  "name": "mySI2",
1729
1733
  "resource_group_name": "myResourceGroup",
1734
+ "subscription_id": "12345678-abcd-1234-abcd-123456789ab",
1730
1735
  }],
1731
1736
  network={
1732
1737
  "network_resource_group_name": "subnetResourceGroup",
@@ -1964,6 +1969,9 @@ class StatefulNodeAzure(pulumi.CustomResource):
1964
1969
  * `managed_service_identities` - (Optional) Add a user-assigned managed identity to the Stateful Node's VM.
1965
1970
  * `name` - (Required) name of the managed identity.
1966
1971
  * `resource_group_name` - (Required) The Resource Group that the user-assigned managed identity resides in.
1972
+ * `subscription_id` - (Optional) Defines the subscription ID of the managed service identities. Required if the managed service identity is in a different subscription. To use a user-assigned managed identity in a different subscription, you must ensure that the spotAccount's Service Principal has access to the defined subscription and that it has the two following permissions:
1973
+ 1. Microsoft.ManagedIdentity/userAssignedIdentities/assign/action
1974
+ 2. Microsoft.ManagedIdentity/userAssignedIdentities/read
1967
1975
 
1968
1976
  <a id="proximity_placement_groups"></a>
1969
1977
  ## Proximity Placement Groups
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_spotinst
3
- Version: 3.123.0a1752821103
3
+ Version: 3.124.0a1752907291
4
4
  Summary: A Pulumi package for creating and managing spotinst cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,5 +1,5 @@
1
1
  pulumi_spotinst/__init__.py,sha256=XTA3l6mlCkUC_xqhb8yfbDOfjr-TFvMbP-WDFn3PiYU,8949
2
- pulumi_spotinst/_inputs.py,sha256=8my1MDzfrnF-K2g4_7hQ8kAX7S7ctTjfeLO9KSfGKnQ,236642
2
+ pulumi_spotinst/_inputs.py,sha256=MQLNSLgSfIBdRlr-JTB7k9TB1UdW80sHOha4u_Kg-vY,237230
3
3
  pulumi_spotinst/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
4
  pulumi_spotinst/account.py,sha256=8rJCpw5D-w4JuwdggQBFGbyet4xthf8xGEVfNSBSaBQ,6519
5
5
  pulumi_spotinst/credentials_azure.py,sha256=YZMRpAB41R_2QIYMB8v8lQ_FM_srwoRYO-br9Xk7irw,17289
@@ -9,11 +9,11 @@ pulumi_spotinst/elastigroup_azure_v3.py,sha256=89GEGnCpo47-PuPHmtm-UXP9JIBfI7bcK
9
9
  pulumi_spotinst/health_check.py,sha256=VM0rME0taQL4bWA8BG-B_fBY212JWejfmOL7p38p7KQ,14054
10
10
  pulumi_spotinst/notification_center.py,sha256=TLfO1jPVsDp0iF8nyDbBWp8SVDEt8ydurGk6F5YHI80,16480
11
11
  pulumi_spotinst/ocean_right_sizing_rule.py,sha256=qdX2szOREGHtyKM-E5haTns_GG8I2vMmD-4y4qwbivs,31472
12
- pulumi_spotinst/outputs.py,sha256=iZMMC49l7IGdxEywgVLzdnHbJn_c7ILuqAemkb3Yd4I,189195
12
+ pulumi_spotinst/outputs.py,sha256=PwAEHljd_ivu9mYW2bchLylVQUMQ1wggMZpc2bTpjaE,189612
13
13
  pulumi_spotinst/provider.py,sha256=hQRAOFDwFyXEn7Qifa4rW1og1hUBZnQ__FTO6jrl_JA,8704
14
- pulumi_spotinst/pulumi-plugin.json,sha256=TONKy2mh0FGOdWY2vMu-8QrfjuE6AJXH_mSW1ck6hb4,86
14
+ pulumi_spotinst/pulumi-plugin.json,sha256=4yUEUSfXW9SCFbl3RvIN-uwlg_vZ9UlNRAul_efKXrs,86
15
15
  pulumi_spotinst/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- pulumi_spotinst/stateful_node_azure.py,sha256=cGhtKjVdIm7EmAI254K6_l5aKBd9JI5XRrV6pfMJo8o,139842
16
+ pulumi_spotinst/stateful_node_azure.py,sha256=Fo9sfrAubvf8Bbkk_OwwzqWb7HR0RUfgYFjLTHSUkjM,141066
17
17
  pulumi_spotinst/subscription.py,sha256=lqMp5cd6pJ8DMsw7MpHXYFPKRsdBm05NnHRvoA3Eb2k,28553
18
18
  pulumi_spotinst/aws/__init__.py,sha256=vjlG1OvwRuSgo8lXzTgX52CP6gfEStZz3OV0sFYOGOc,601
19
19
  pulumi_spotinst/aws/_inputs.py,sha256=JIwTVX7xPP1kA-FjWNgi7nd6ehcecPGyqiiXUqrgmEA,635612
@@ -71,7 +71,7 @@ pulumi_spotinst/spark/_inputs.py,sha256=2eoWytfpp6Wx659BjUly4f4lRk9d1Q73gzxRFg7N
71
71
  pulumi_spotinst/spark/ocean.py,sha256=9kv9oZ7TPYnq6kZEGzX47-EbaDxvO5O6vcO26KPkXyM,19728
72
72
  pulumi_spotinst/spark/ocean_virtual_node_group.py,sha256=T1mi2x18t7BLh48-d8gDJD0eInl-HYEhSe_L2YuLfAg,8636
73
73
  pulumi_spotinst/spark/outputs.py,sha256=k-kjPQtkyavCMn92uh8HeQfpok4iE2nptl6zo7ssfhs,20516
74
- pulumi_spotinst-3.123.0a1752821103.dist-info/METADATA,sha256=Q5viSh-NUOSqwG4Y92LC_5bhI9BOC_zdX2xPY5pSXOw,2724
75
- pulumi_spotinst-3.123.0a1752821103.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
76
- pulumi_spotinst-3.123.0a1752821103.dist-info/top_level.txt,sha256=B1HTsr4PliwgyZPJ-9Cmg9PELboV_GusiFDrxBSVHeI,16
77
- pulumi_spotinst-3.123.0a1752821103.dist-info/RECORD,,
74
+ pulumi_spotinst-3.124.0a1752907291.dist-info/METADATA,sha256=eErYkOtGXgA8V7SYwreabqmueij7OrQn3zYVmD4mXj8,2724
75
+ pulumi_spotinst-3.124.0a1752907291.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
76
+ pulumi_spotinst-3.124.0a1752907291.dist-info/top_level.txt,sha256=B1HTsr4PliwgyZPJ-9Cmg9PELboV_GusiFDrxBSVHeI,16
77
+ pulumi_spotinst-3.124.0a1752907291.dist-info/RECORD,,