pulumi-azure-native 3.2.0a1744649622__py3-none-any.whl → 3.3.0a1745626403__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 +11 -0
- pulumi_azure_native/advisor/assessment.py +5 -1
- pulumi_azure_native/advisor/get_assessment.py +4 -0
- pulumi_azure_native/advisor/get_suppression.py +2 -2
- pulumi_azure_native/advisor/suppression.py +3 -3
- pulumi_azure_native/containerregistry/cache_rule.py +3 -3
- pulumi_azure_native/containerregistry/connected_registry.py +3 -3
- pulumi_azure_native/containerregistry/credential_set.py +3 -3
- pulumi_azure_native/containerregistry/get_cache_rule.py +2 -2
- pulumi_azure_native/containerregistry/get_connected_registry.py +2 -2
- pulumi_azure_native/containerregistry/get_credential_set.py +2 -2
- pulumi_azure_native/containerregistry/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/containerregistry/get_registry.py +2 -2
- pulumi_azure_native/containerregistry/get_replication.py +2 -2
- pulumi_azure_native/containerregistry/get_scope_map.py +2 -2
- pulumi_azure_native/containerregistry/get_token.py +2 -2
- pulumi_azure_native/containerregistry/get_webhook.py +2 -2
- pulumi_azure_native/containerregistry/get_webhook_callback_config.py +2 -2
- pulumi_azure_native/containerregistry/list_registry_credentials.py +2 -2
- pulumi_azure_native/containerregistry/list_webhook_events.py +2 -2
- pulumi_azure_native/containerregistry/private_endpoint_connection.py +3 -3
- pulumi_azure_native/containerregistry/registry.py +3 -3
- pulumi_azure_native/containerregistry/replication.py +3 -3
- pulumi_azure_native/containerregistry/scope_map.py +3 -3
- pulumi_azure_native/containerregistry/token.py +3 -3
- pulumi_azure_native/containerregistry/webhook.py +3 -3
- pulumi_azure_native/dbforpostgresql/_inputs.py +274 -50
- pulumi_azure_native/dbforpostgresql/get_server_group_cluster.py +3 -3
- pulumi_azure_native/dbforpostgresql/outputs.py +229 -28
- pulumi_azure_native/dbforpostgresql/server_group_cluster.py +24 -24
- pulumi_azure_native/durabletask/_enums.py +1 -1
- pulumi_azure_native/loadtestservice/_inputs.py +3 -3
- pulumi_azure_native/loadtestservice/outputs.py +2 -2
- pulumi_azure_native/migrate/_enums.py +23 -0
- pulumi_azure_native/migrate/_inputs.py +20 -0
- pulumi_azure_native/migrate/outputs.py +14 -0
- pulumi_azure_native/monitor/_enums.py +9 -0
- pulumi_azure_native/monitor/azure_monitor_workspace.py +38 -18
- pulumi_azure_native/monitor/get_azure_monitor_workspace.py +18 -18
- pulumi_azure_native/monitor/outputs.py +106 -106
- pulumi_azure_native/onlineexperimentation/__init__.py +12 -0
- pulumi_azure_native/onlineexperimentation/_enums.py +57 -0
- pulumi_azure_native/onlineexperimentation/_inputs.py +385 -0
- pulumi_azure_native/onlineexperimentation/get_online_experiment_workspace.py +217 -0
- pulumi_azure_native/onlineexperimentation/online_experiment_workspace.py +330 -0
- pulumi_azure_native/onlineexperimentation/outputs.py +577 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/RECORD +51 -45
- {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/top_level.txt +0 -0
|
@@ -35,6 +35,9 @@ __all__ = [
|
|
|
35
35
|
'PrivateLinkServiceConnectionStateResponse',
|
|
36
36
|
'ReplicaResponse',
|
|
37
37
|
'ResourceIdentityResponse',
|
|
38
|
+
'ServerGroupClusterAuthConfigResponse',
|
|
39
|
+
'ServerGroupClusterDataEncryptionResponse',
|
|
40
|
+
'ServerGroupClusterMaintenanceWindowResponse',
|
|
38
41
|
'ServerNameItemResponse',
|
|
39
42
|
'ServerPrivateEndpointConnectionPropertiesResponse',
|
|
40
43
|
'ServerPrivateEndpointConnectionResponse',
|
|
@@ -56,7 +59,7 @@ __all__ = [
|
|
|
56
59
|
@pulumi.output_type
|
|
57
60
|
class AuthConfigResponse(dict):
|
|
58
61
|
"""
|
|
59
|
-
Authentication configuration of a
|
|
62
|
+
Authentication configuration properties of a server
|
|
60
63
|
"""
|
|
61
64
|
@staticmethod
|
|
62
65
|
def __key_warning(key: str):
|
|
@@ -84,11 +87,15 @@ class AuthConfigResponse(dict):
|
|
|
84
87
|
password_auth: Optional[str] = None,
|
|
85
88
|
tenant_id: Optional[str] = None):
|
|
86
89
|
"""
|
|
87
|
-
Authentication configuration of a
|
|
90
|
+
Authentication configuration properties of a server
|
|
91
|
+
:param str active_directory_auth: If Enabled, Azure Active Directory authentication is enabled.
|
|
92
|
+
:param str password_auth: If Enabled, Password authentication is enabled.
|
|
88
93
|
:param str tenant_id: Tenant id of the server.
|
|
89
94
|
"""
|
|
90
95
|
if active_directory_auth is not None:
|
|
91
96
|
pulumi.set(__self__, "active_directory_auth", active_directory_auth)
|
|
97
|
+
if password_auth is None:
|
|
98
|
+
password_auth = 'Enabled'
|
|
92
99
|
if password_auth is not None:
|
|
93
100
|
pulumi.set(__self__, "password_auth", password_auth)
|
|
94
101
|
if tenant_id is None:
|
|
@@ -99,11 +106,17 @@ class AuthConfigResponse(dict):
|
|
|
99
106
|
@property
|
|
100
107
|
@pulumi.getter(name="activeDirectoryAuth")
|
|
101
108
|
def active_directory_auth(self) -> Optional[str]:
|
|
109
|
+
"""
|
|
110
|
+
If Enabled, Azure Active Directory authentication is enabled.
|
|
111
|
+
"""
|
|
102
112
|
return pulumi.get(self, "active_directory_auth")
|
|
103
113
|
|
|
104
114
|
@property
|
|
105
115
|
@pulumi.getter(name="passwordAuth")
|
|
106
116
|
def password_auth(self) -> Optional[str]:
|
|
117
|
+
"""
|
|
118
|
+
If Enabled, Password authentication is enabled.
|
|
119
|
+
"""
|
|
107
120
|
return pulumi.get(self, "password_auth")
|
|
108
121
|
|
|
109
122
|
@property
|
|
@@ -189,7 +202,7 @@ class BackupResponse(dict):
|
|
|
189
202
|
@pulumi.output_type
|
|
190
203
|
class DataEncryptionResponse(dict):
|
|
191
204
|
"""
|
|
192
|
-
|
|
205
|
+
Data encryption properties of a server
|
|
193
206
|
"""
|
|
194
207
|
@staticmethod
|
|
195
208
|
def __key_warning(key: str):
|
|
@@ -204,8 +217,6 @@ class DataEncryptionResponse(dict):
|
|
|
204
217
|
suggest = "primary_encryption_key_status"
|
|
205
218
|
elif key == "primaryKeyURI":
|
|
206
219
|
suggest = "primary_key_uri"
|
|
207
|
-
elif key == "primaryKeyUri":
|
|
208
|
-
suggest = "primary_key_uri"
|
|
209
220
|
elif key == "primaryUserAssignedIdentityId":
|
|
210
221
|
suggest = "primary_user_assigned_identity_id"
|
|
211
222
|
|
|
@@ -226,18 +237,17 @@ class DataEncryptionResponse(dict):
|
|
|
226
237
|
geo_backup_user_assigned_identity_id: Optional[str] = None,
|
|
227
238
|
primary_encryption_key_status: Optional[str] = None,
|
|
228
239
|
primary_key_uri: Optional[str] = None,
|
|
229
|
-
primary_key_uri: Optional[str] = None,
|
|
230
240
|
primary_user_assigned_identity_id: Optional[str] = None,
|
|
231
241
|
type: Optional[str] = None):
|
|
232
242
|
"""
|
|
233
|
-
|
|
243
|
+
Data encryption properties of a server
|
|
234
244
|
:param str geo_backup_encryption_key_status: Geo-backup encryption key status for Data encryption enabled server.
|
|
235
245
|
:param str geo_backup_key_uri: URI for the key in keyvault for data encryption for geo-backup of server.
|
|
236
246
|
:param str geo_backup_user_assigned_identity_id: Resource Id for the User assigned identity to be used for data encryption for geo-backup of server.
|
|
237
247
|
:param str primary_encryption_key_status: Primary encryption key status for Data encryption enabled server.
|
|
238
248
|
:param str primary_key_uri: URI for the key in keyvault for data encryption of the primary server.
|
|
239
|
-
:param str primary_key_uri: URI for the key in keyvault for data encryption of the primary server.
|
|
240
249
|
:param str primary_user_assigned_identity_id: Resource Id for the User assigned identity to be used for data encryption of the primary server.
|
|
250
|
+
:param str type: Data encryption type to depict if it is System Managed vs Azure Key vault.
|
|
241
251
|
"""
|
|
242
252
|
if geo_backup_encryption_key_status is not None:
|
|
243
253
|
pulumi.set(__self__, "geo_backup_encryption_key_status", geo_backup_encryption_key_status)
|
|
@@ -249,8 +259,6 @@ class DataEncryptionResponse(dict):
|
|
|
249
259
|
pulumi.set(__self__, "primary_encryption_key_status", primary_encryption_key_status)
|
|
250
260
|
if primary_key_uri is not None:
|
|
251
261
|
pulumi.set(__self__, "primary_key_uri", primary_key_uri)
|
|
252
|
-
if primary_key_uri is not None:
|
|
253
|
-
pulumi.set(__self__, "primary_key_uri", primary_key_uri)
|
|
254
262
|
if primary_user_assigned_identity_id is not None:
|
|
255
263
|
pulumi.set(__self__, "primary_user_assigned_identity_id", primary_user_assigned_identity_id)
|
|
256
264
|
if type is not None:
|
|
@@ -296,14 +304,6 @@ class DataEncryptionResponse(dict):
|
|
|
296
304
|
"""
|
|
297
305
|
return pulumi.get(self, "primary_key_uri")
|
|
298
306
|
|
|
299
|
-
@property
|
|
300
|
-
@pulumi.getter(name="primaryKeyUri")
|
|
301
|
-
def primary_key_uri(self) -> Optional[str]:
|
|
302
|
-
"""
|
|
303
|
-
URI for the key in keyvault for data encryption of the primary server.
|
|
304
|
-
"""
|
|
305
|
-
return pulumi.get(self, "primary_key_uri")
|
|
306
|
-
|
|
307
307
|
@property
|
|
308
308
|
@pulumi.getter(name="primaryUserAssignedIdentityId")
|
|
309
309
|
def primary_user_assigned_identity_id(self) -> Optional[str]:
|
|
@@ -315,6 +315,9 @@ class DataEncryptionResponse(dict):
|
|
|
315
315
|
@property
|
|
316
316
|
@pulumi.getter
|
|
317
317
|
def type(self) -> Optional[str]:
|
|
318
|
+
"""
|
|
319
|
+
Data encryption type to depict if it is System Managed vs Azure Key vault.
|
|
320
|
+
"""
|
|
318
321
|
return pulumi.get(self, "type")
|
|
319
322
|
|
|
320
323
|
|
|
@@ -837,7 +840,7 @@ class IdentityPropertiesResponse(dict):
|
|
|
837
840
|
@pulumi.output_type
|
|
838
841
|
class MaintenanceWindowResponse(dict):
|
|
839
842
|
"""
|
|
840
|
-
|
|
843
|
+
Maintenance window properties of a server.
|
|
841
844
|
"""
|
|
842
845
|
@staticmethod
|
|
843
846
|
def __key_warning(key: str):
|
|
@@ -868,18 +871,26 @@ class MaintenanceWindowResponse(dict):
|
|
|
868
871
|
start_hour: Optional[int] = None,
|
|
869
872
|
start_minute: Optional[int] = None):
|
|
870
873
|
"""
|
|
871
|
-
|
|
872
|
-
:param str custom_window:
|
|
873
|
-
:param int day_of_week:
|
|
874
|
-
:param int start_hour:
|
|
875
|
-
:param int start_minute:
|
|
874
|
+
Maintenance window properties of a server.
|
|
875
|
+
:param str custom_window: indicates whether custom window is enabled or disabled
|
|
876
|
+
:param int day_of_week: day of week for maintenance window
|
|
877
|
+
:param int start_hour: start hour for maintenance window
|
|
878
|
+
:param int start_minute: start minute for maintenance window
|
|
876
879
|
"""
|
|
880
|
+
if custom_window is None:
|
|
881
|
+
custom_window = 'Disabled'
|
|
877
882
|
if custom_window is not None:
|
|
878
883
|
pulumi.set(__self__, "custom_window", custom_window)
|
|
884
|
+
if day_of_week is None:
|
|
885
|
+
day_of_week = 0
|
|
879
886
|
if day_of_week is not None:
|
|
880
887
|
pulumi.set(__self__, "day_of_week", day_of_week)
|
|
888
|
+
if start_hour is None:
|
|
889
|
+
start_hour = 0
|
|
881
890
|
if start_hour is not None:
|
|
882
891
|
pulumi.set(__self__, "start_hour", start_hour)
|
|
892
|
+
if start_minute is None:
|
|
893
|
+
start_minute = 0
|
|
883
894
|
if start_minute is not None:
|
|
884
895
|
pulumi.set(__self__, "start_minute", start_minute)
|
|
885
896
|
|
|
@@ -887,7 +898,7 @@ class MaintenanceWindowResponse(dict):
|
|
|
887
898
|
@pulumi.getter(name="customWindow")
|
|
888
899
|
def custom_window(self) -> Optional[str]:
|
|
889
900
|
"""
|
|
890
|
-
|
|
901
|
+
indicates whether custom window is enabled or disabled
|
|
891
902
|
"""
|
|
892
903
|
return pulumi.get(self, "custom_window")
|
|
893
904
|
|
|
@@ -895,7 +906,7 @@ class MaintenanceWindowResponse(dict):
|
|
|
895
906
|
@pulumi.getter(name="dayOfWeek")
|
|
896
907
|
def day_of_week(self) -> Optional[int]:
|
|
897
908
|
"""
|
|
898
|
-
|
|
909
|
+
day of week for maintenance window
|
|
899
910
|
"""
|
|
900
911
|
return pulumi.get(self, "day_of_week")
|
|
901
912
|
|
|
@@ -903,7 +914,7 @@ class MaintenanceWindowResponse(dict):
|
|
|
903
914
|
@pulumi.getter(name="startHour")
|
|
904
915
|
def start_hour(self) -> Optional[int]:
|
|
905
916
|
"""
|
|
906
|
-
|
|
917
|
+
start hour for maintenance window
|
|
907
918
|
"""
|
|
908
919
|
return pulumi.get(self, "start_hour")
|
|
909
920
|
|
|
@@ -911,7 +922,7 @@ class MaintenanceWindowResponse(dict):
|
|
|
911
922
|
@pulumi.getter(name="startMinute")
|
|
912
923
|
def start_minute(self) -> Optional[int]:
|
|
913
924
|
"""
|
|
914
|
-
|
|
925
|
+
start minute for maintenance window
|
|
915
926
|
"""
|
|
916
927
|
return pulumi.get(self, "start_minute")
|
|
917
928
|
|
|
@@ -1464,6 +1475,196 @@ class ResourceIdentityResponse(dict):
|
|
|
1464
1475
|
return pulumi.get(self, "type")
|
|
1465
1476
|
|
|
1466
1477
|
|
|
1478
|
+
@pulumi.output_type
|
|
1479
|
+
class ServerGroupClusterAuthConfigResponse(dict):
|
|
1480
|
+
"""
|
|
1481
|
+
Authentication configuration of a cluster.
|
|
1482
|
+
"""
|
|
1483
|
+
@staticmethod
|
|
1484
|
+
def __key_warning(key: str):
|
|
1485
|
+
suggest = None
|
|
1486
|
+
if key == "activeDirectoryAuth":
|
|
1487
|
+
suggest = "active_directory_auth"
|
|
1488
|
+
elif key == "passwordAuth":
|
|
1489
|
+
suggest = "password_auth"
|
|
1490
|
+
|
|
1491
|
+
if suggest:
|
|
1492
|
+
pulumi.log.warn(f"Key '{key}' not found in ServerGroupClusterAuthConfigResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1493
|
+
|
|
1494
|
+
def __getitem__(self, key: str) -> Any:
|
|
1495
|
+
ServerGroupClusterAuthConfigResponse.__key_warning(key)
|
|
1496
|
+
return super().__getitem__(key)
|
|
1497
|
+
|
|
1498
|
+
def get(self, key: str, default = None) -> Any:
|
|
1499
|
+
ServerGroupClusterAuthConfigResponse.__key_warning(key)
|
|
1500
|
+
return super().get(key, default)
|
|
1501
|
+
|
|
1502
|
+
def __init__(__self__, *,
|
|
1503
|
+
active_directory_auth: Optional[str] = None,
|
|
1504
|
+
password_auth: Optional[str] = None):
|
|
1505
|
+
"""
|
|
1506
|
+
Authentication configuration of a cluster.
|
|
1507
|
+
"""
|
|
1508
|
+
if active_directory_auth is not None:
|
|
1509
|
+
pulumi.set(__self__, "active_directory_auth", active_directory_auth)
|
|
1510
|
+
if password_auth is not None:
|
|
1511
|
+
pulumi.set(__self__, "password_auth", password_auth)
|
|
1512
|
+
|
|
1513
|
+
@property
|
|
1514
|
+
@pulumi.getter(name="activeDirectoryAuth")
|
|
1515
|
+
def active_directory_auth(self) -> Optional[str]:
|
|
1516
|
+
return pulumi.get(self, "active_directory_auth")
|
|
1517
|
+
|
|
1518
|
+
@property
|
|
1519
|
+
@pulumi.getter(name="passwordAuth")
|
|
1520
|
+
def password_auth(self) -> Optional[str]:
|
|
1521
|
+
return pulumi.get(self, "password_auth")
|
|
1522
|
+
|
|
1523
|
+
|
|
1524
|
+
@pulumi.output_type
|
|
1525
|
+
class ServerGroupClusterDataEncryptionResponse(dict):
|
|
1526
|
+
"""
|
|
1527
|
+
The data encryption properties of a cluster.
|
|
1528
|
+
"""
|
|
1529
|
+
@staticmethod
|
|
1530
|
+
def __key_warning(key: str):
|
|
1531
|
+
suggest = None
|
|
1532
|
+
if key == "primaryKeyUri":
|
|
1533
|
+
suggest = "primary_key_uri"
|
|
1534
|
+
elif key == "primaryUserAssignedIdentityId":
|
|
1535
|
+
suggest = "primary_user_assigned_identity_id"
|
|
1536
|
+
|
|
1537
|
+
if suggest:
|
|
1538
|
+
pulumi.log.warn(f"Key '{key}' not found in ServerGroupClusterDataEncryptionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1539
|
+
|
|
1540
|
+
def __getitem__(self, key: str) -> Any:
|
|
1541
|
+
ServerGroupClusterDataEncryptionResponse.__key_warning(key)
|
|
1542
|
+
return super().__getitem__(key)
|
|
1543
|
+
|
|
1544
|
+
def get(self, key: str, default = None) -> Any:
|
|
1545
|
+
ServerGroupClusterDataEncryptionResponse.__key_warning(key)
|
|
1546
|
+
return super().get(key, default)
|
|
1547
|
+
|
|
1548
|
+
def __init__(__self__, *,
|
|
1549
|
+
primary_key_uri: Optional[str] = None,
|
|
1550
|
+
primary_user_assigned_identity_id: Optional[str] = None,
|
|
1551
|
+
type: Optional[str] = None):
|
|
1552
|
+
"""
|
|
1553
|
+
The data encryption properties of a cluster.
|
|
1554
|
+
:param str primary_key_uri: URI for the key in keyvault for data encryption of the primary server.
|
|
1555
|
+
:param str primary_user_assigned_identity_id: Resource Id for the User assigned identity to be used for data encryption of the primary server.
|
|
1556
|
+
"""
|
|
1557
|
+
if primary_key_uri is not None:
|
|
1558
|
+
pulumi.set(__self__, "primary_key_uri", primary_key_uri)
|
|
1559
|
+
if primary_user_assigned_identity_id is not None:
|
|
1560
|
+
pulumi.set(__self__, "primary_user_assigned_identity_id", primary_user_assigned_identity_id)
|
|
1561
|
+
if type is not None:
|
|
1562
|
+
pulumi.set(__self__, "type", type)
|
|
1563
|
+
|
|
1564
|
+
@property
|
|
1565
|
+
@pulumi.getter(name="primaryKeyUri")
|
|
1566
|
+
def primary_key_uri(self) -> Optional[str]:
|
|
1567
|
+
"""
|
|
1568
|
+
URI for the key in keyvault for data encryption of the primary server.
|
|
1569
|
+
"""
|
|
1570
|
+
return pulumi.get(self, "primary_key_uri")
|
|
1571
|
+
|
|
1572
|
+
@property
|
|
1573
|
+
@pulumi.getter(name="primaryUserAssignedIdentityId")
|
|
1574
|
+
def primary_user_assigned_identity_id(self) -> Optional[str]:
|
|
1575
|
+
"""
|
|
1576
|
+
Resource Id for the User assigned identity to be used for data encryption of the primary server.
|
|
1577
|
+
"""
|
|
1578
|
+
return pulumi.get(self, "primary_user_assigned_identity_id")
|
|
1579
|
+
|
|
1580
|
+
@property
|
|
1581
|
+
@pulumi.getter
|
|
1582
|
+
def type(self) -> Optional[str]:
|
|
1583
|
+
return pulumi.get(self, "type")
|
|
1584
|
+
|
|
1585
|
+
|
|
1586
|
+
@pulumi.output_type
|
|
1587
|
+
class ServerGroupClusterMaintenanceWindowResponse(dict):
|
|
1588
|
+
"""
|
|
1589
|
+
Schedule settings for regular cluster updates.
|
|
1590
|
+
"""
|
|
1591
|
+
@staticmethod
|
|
1592
|
+
def __key_warning(key: str):
|
|
1593
|
+
suggest = None
|
|
1594
|
+
if key == "customWindow":
|
|
1595
|
+
suggest = "custom_window"
|
|
1596
|
+
elif key == "dayOfWeek":
|
|
1597
|
+
suggest = "day_of_week"
|
|
1598
|
+
elif key == "startHour":
|
|
1599
|
+
suggest = "start_hour"
|
|
1600
|
+
elif key == "startMinute":
|
|
1601
|
+
suggest = "start_minute"
|
|
1602
|
+
|
|
1603
|
+
if suggest:
|
|
1604
|
+
pulumi.log.warn(f"Key '{key}' not found in ServerGroupClusterMaintenanceWindowResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1605
|
+
|
|
1606
|
+
def __getitem__(self, key: str) -> Any:
|
|
1607
|
+
ServerGroupClusterMaintenanceWindowResponse.__key_warning(key)
|
|
1608
|
+
return super().__getitem__(key)
|
|
1609
|
+
|
|
1610
|
+
def get(self, key: str, default = None) -> Any:
|
|
1611
|
+
ServerGroupClusterMaintenanceWindowResponse.__key_warning(key)
|
|
1612
|
+
return super().get(key, default)
|
|
1613
|
+
|
|
1614
|
+
def __init__(__self__, *,
|
|
1615
|
+
custom_window: Optional[str] = None,
|
|
1616
|
+
day_of_week: Optional[int] = None,
|
|
1617
|
+
start_hour: Optional[int] = None,
|
|
1618
|
+
start_minute: Optional[int] = None):
|
|
1619
|
+
"""
|
|
1620
|
+
Schedule settings for regular cluster updates.
|
|
1621
|
+
:param str custom_window: Indicates whether custom maintenance window is enabled or not.
|
|
1622
|
+
:param int day_of_week: Preferred day of the week for maintenance window.
|
|
1623
|
+
:param int start_hour: Start hour within preferred day of the week for maintenance window.
|
|
1624
|
+
:param int start_minute: Start minute within the start hour for maintenance window.
|
|
1625
|
+
"""
|
|
1626
|
+
if custom_window is not None:
|
|
1627
|
+
pulumi.set(__self__, "custom_window", custom_window)
|
|
1628
|
+
if day_of_week is not None:
|
|
1629
|
+
pulumi.set(__self__, "day_of_week", day_of_week)
|
|
1630
|
+
if start_hour is not None:
|
|
1631
|
+
pulumi.set(__self__, "start_hour", start_hour)
|
|
1632
|
+
if start_minute is not None:
|
|
1633
|
+
pulumi.set(__self__, "start_minute", start_minute)
|
|
1634
|
+
|
|
1635
|
+
@property
|
|
1636
|
+
@pulumi.getter(name="customWindow")
|
|
1637
|
+
def custom_window(self) -> Optional[str]:
|
|
1638
|
+
"""
|
|
1639
|
+
Indicates whether custom maintenance window is enabled or not.
|
|
1640
|
+
"""
|
|
1641
|
+
return pulumi.get(self, "custom_window")
|
|
1642
|
+
|
|
1643
|
+
@property
|
|
1644
|
+
@pulumi.getter(name="dayOfWeek")
|
|
1645
|
+
def day_of_week(self) -> Optional[int]:
|
|
1646
|
+
"""
|
|
1647
|
+
Preferred day of the week for maintenance window.
|
|
1648
|
+
"""
|
|
1649
|
+
return pulumi.get(self, "day_of_week")
|
|
1650
|
+
|
|
1651
|
+
@property
|
|
1652
|
+
@pulumi.getter(name="startHour")
|
|
1653
|
+
def start_hour(self) -> Optional[int]:
|
|
1654
|
+
"""
|
|
1655
|
+
Start hour within preferred day of the week for maintenance window.
|
|
1656
|
+
"""
|
|
1657
|
+
return pulumi.get(self, "start_hour")
|
|
1658
|
+
|
|
1659
|
+
@property
|
|
1660
|
+
@pulumi.getter(name="startMinute")
|
|
1661
|
+
def start_minute(self) -> Optional[int]:
|
|
1662
|
+
"""
|
|
1663
|
+
Start minute within the start hour for maintenance window.
|
|
1664
|
+
"""
|
|
1665
|
+
return pulumi.get(self, "start_minute")
|
|
1666
|
+
|
|
1667
|
+
|
|
1467
1668
|
@pulumi.output_type
|
|
1468
1669
|
class ServerNameItemResponse(dict):
|
|
1469
1670
|
"""
|
|
@@ -24,21 +24,21 @@ class ServerGroupClusterArgs:
|
|
|
24
24
|
def __init__(__self__, *,
|
|
25
25
|
resource_group_name: pulumi.Input[str],
|
|
26
26
|
administrator_login_password: Optional[pulumi.Input[str]] = None,
|
|
27
|
-
auth_config: Optional[pulumi.Input['
|
|
27
|
+
auth_config: Optional[pulumi.Input['ServerGroupClusterAuthConfigArgs']] = None,
|
|
28
28
|
citus_version: Optional[pulumi.Input[str]] = None,
|
|
29
29
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
30
30
|
coordinator_enable_public_ip_access: Optional[pulumi.Input[bool]] = None,
|
|
31
31
|
coordinator_server_edition: Optional[pulumi.Input[str]] = None,
|
|
32
32
|
coordinator_storage_quota_in_mb: Optional[pulumi.Input[int]] = None,
|
|
33
33
|
coordinator_v_cores: Optional[pulumi.Input[int]] = None,
|
|
34
|
-
data_encryption: Optional[pulumi.Input['
|
|
34
|
+
data_encryption: Optional[pulumi.Input['ServerGroupClusterDataEncryptionArgs']] = None,
|
|
35
35
|
database_name: Optional[pulumi.Input[str]] = None,
|
|
36
36
|
enable_geo_backup: Optional[pulumi.Input[bool]] = None,
|
|
37
37
|
enable_ha: Optional[pulumi.Input[bool]] = None,
|
|
38
38
|
enable_shards_on_coordinator: Optional[pulumi.Input[bool]] = None,
|
|
39
39
|
identity: Optional[pulumi.Input['IdentityPropertiesArgs']] = None,
|
|
40
40
|
location: Optional[pulumi.Input[str]] = None,
|
|
41
|
-
maintenance_window: Optional[pulumi.Input['
|
|
41
|
+
maintenance_window: Optional[pulumi.Input['ServerGroupClusterMaintenanceWindowArgs']] = None,
|
|
42
42
|
node_count: Optional[pulumi.Input[int]] = None,
|
|
43
43
|
node_enable_public_ip_access: Optional[pulumi.Input[bool]] = None,
|
|
44
44
|
node_server_edition: Optional[pulumi.Input[str]] = None,
|
|
@@ -54,21 +54,21 @@ class ServerGroupClusterArgs:
|
|
|
54
54
|
The set of arguments for constructing a ServerGroupCluster resource.
|
|
55
55
|
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
56
56
|
:param pulumi.Input[str] administrator_login_password: The password of the administrator login. Required for creation.
|
|
57
|
-
:param pulumi.Input['
|
|
57
|
+
:param pulumi.Input['ServerGroupClusterAuthConfigArgs'] auth_config: Authentication configuration of a cluster.
|
|
58
58
|
:param pulumi.Input[str] citus_version: The Citus extension version on all cluster servers.
|
|
59
59
|
:param pulumi.Input[str] cluster_name: The name of the cluster.
|
|
60
60
|
:param pulumi.Input[bool] coordinator_enable_public_ip_access: If public access is enabled on coordinator.
|
|
61
61
|
:param pulumi.Input[str] coordinator_server_edition: The edition of a coordinator server (default: GeneralPurpose). Required for creation.
|
|
62
62
|
:param pulumi.Input[int] coordinator_storage_quota_in_mb: The storage of a server in MB. Required for creation. See https://learn.microsoft.com/azure/cosmos-db/postgresql/resources-compute for more information.
|
|
63
63
|
:param pulumi.Input[int] coordinator_v_cores: The vCores count of a server (max: 96). Required for creation. See https://learn.microsoft.com/azure/cosmos-db/postgresql/resources-compute for more information.
|
|
64
|
-
:param pulumi.Input['
|
|
64
|
+
:param pulumi.Input['ServerGroupClusterDataEncryptionArgs'] data_encryption: The data encryption properties of a cluster.
|
|
65
65
|
:param pulumi.Input[str] database_name: The database name of the cluster. Only one database per cluster is supported.
|
|
66
66
|
:param pulumi.Input[bool] enable_geo_backup: If cluster backup is stored in another Azure region in addition to the copy of the backup stored in the cluster's region. Enabled only at the time of cluster creation.
|
|
67
67
|
:param pulumi.Input[bool] enable_ha: If high availability (HA) is enabled or not for the cluster.
|
|
68
68
|
:param pulumi.Input[bool] enable_shards_on_coordinator: If distributed tables are placed on coordinator or not. Should be set to 'true' on single node clusters. Requires shard rebalancing after value is changed.
|
|
69
69
|
:param pulumi.Input['IdentityPropertiesArgs'] identity: Describes the identity of the cluster.
|
|
70
70
|
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
71
|
-
:param pulumi.Input['
|
|
71
|
+
:param pulumi.Input['ServerGroupClusterMaintenanceWindowArgs'] maintenance_window: Maintenance window of a cluster.
|
|
72
72
|
:param pulumi.Input[int] node_count: Worker node count of the cluster. When node count is 0, it represents a single node configuration with the ability to create distributed tables on that node. 2 or more worker nodes represent multi-node configuration. Node count value cannot be 1. Required for creation.
|
|
73
73
|
:param pulumi.Input[bool] node_enable_public_ip_access: If public access is enabled on worker nodes.
|
|
74
74
|
:param pulumi.Input[str] node_server_edition: The edition of a node server (default: MemoryOptimized).
|
|
@@ -163,14 +163,14 @@ class ServerGroupClusterArgs:
|
|
|
163
163
|
|
|
164
164
|
@property
|
|
165
165
|
@pulumi.getter(name="authConfig")
|
|
166
|
-
def auth_config(self) -> Optional[pulumi.Input['
|
|
166
|
+
def auth_config(self) -> Optional[pulumi.Input['ServerGroupClusterAuthConfigArgs']]:
|
|
167
167
|
"""
|
|
168
168
|
Authentication configuration of a cluster.
|
|
169
169
|
"""
|
|
170
170
|
return pulumi.get(self, "auth_config")
|
|
171
171
|
|
|
172
172
|
@auth_config.setter
|
|
173
|
-
def auth_config(self, value: Optional[pulumi.Input['
|
|
173
|
+
def auth_config(self, value: Optional[pulumi.Input['ServerGroupClusterAuthConfigArgs']]):
|
|
174
174
|
pulumi.set(self, "auth_config", value)
|
|
175
175
|
|
|
176
176
|
@property
|
|
@@ -247,14 +247,14 @@ class ServerGroupClusterArgs:
|
|
|
247
247
|
|
|
248
248
|
@property
|
|
249
249
|
@pulumi.getter(name="dataEncryption")
|
|
250
|
-
def data_encryption(self) -> Optional[pulumi.Input['
|
|
250
|
+
def data_encryption(self) -> Optional[pulumi.Input['ServerGroupClusterDataEncryptionArgs']]:
|
|
251
251
|
"""
|
|
252
252
|
The data encryption properties of a cluster.
|
|
253
253
|
"""
|
|
254
254
|
return pulumi.get(self, "data_encryption")
|
|
255
255
|
|
|
256
256
|
@data_encryption.setter
|
|
257
|
-
def data_encryption(self, value: Optional[pulumi.Input['
|
|
257
|
+
def data_encryption(self, value: Optional[pulumi.Input['ServerGroupClusterDataEncryptionArgs']]):
|
|
258
258
|
pulumi.set(self, "data_encryption", value)
|
|
259
259
|
|
|
260
260
|
@property
|
|
@@ -331,14 +331,14 @@ class ServerGroupClusterArgs:
|
|
|
331
331
|
|
|
332
332
|
@property
|
|
333
333
|
@pulumi.getter(name="maintenanceWindow")
|
|
334
|
-
def maintenance_window(self) -> Optional[pulumi.Input['
|
|
334
|
+
def maintenance_window(self) -> Optional[pulumi.Input['ServerGroupClusterMaintenanceWindowArgs']]:
|
|
335
335
|
"""
|
|
336
336
|
Maintenance window of a cluster.
|
|
337
337
|
"""
|
|
338
338
|
return pulumi.get(self, "maintenance_window")
|
|
339
339
|
|
|
340
340
|
@maintenance_window.setter
|
|
341
|
-
def maintenance_window(self, value: Optional[pulumi.Input['
|
|
341
|
+
def maintenance_window(self, value: Optional[pulumi.Input['ServerGroupClusterMaintenanceWindowArgs']]):
|
|
342
342
|
pulumi.set(self, "maintenance_window", value)
|
|
343
343
|
|
|
344
344
|
@property
|
|
@@ -480,21 +480,21 @@ class ServerGroupCluster(pulumi.CustomResource):
|
|
|
480
480
|
resource_name: str,
|
|
481
481
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
482
482
|
administrator_login_password: Optional[pulumi.Input[str]] = None,
|
|
483
|
-
auth_config: Optional[pulumi.Input[Union['
|
|
483
|
+
auth_config: Optional[pulumi.Input[Union['ServerGroupClusterAuthConfigArgs', 'ServerGroupClusterAuthConfigArgsDict']]] = None,
|
|
484
484
|
citus_version: Optional[pulumi.Input[str]] = None,
|
|
485
485
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
486
486
|
coordinator_enable_public_ip_access: Optional[pulumi.Input[bool]] = None,
|
|
487
487
|
coordinator_server_edition: Optional[pulumi.Input[str]] = None,
|
|
488
488
|
coordinator_storage_quota_in_mb: Optional[pulumi.Input[int]] = None,
|
|
489
489
|
coordinator_v_cores: Optional[pulumi.Input[int]] = None,
|
|
490
|
-
data_encryption: Optional[pulumi.Input[Union['
|
|
490
|
+
data_encryption: Optional[pulumi.Input[Union['ServerGroupClusterDataEncryptionArgs', 'ServerGroupClusterDataEncryptionArgsDict']]] = None,
|
|
491
491
|
database_name: Optional[pulumi.Input[str]] = None,
|
|
492
492
|
enable_geo_backup: Optional[pulumi.Input[bool]] = None,
|
|
493
493
|
enable_ha: Optional[pulumi.Input[bool]] = None,
|
|
494
494
|
enable_shards_on_coordinator: Optional[pulumi.Input[bool]] = None,
|
|
495
495
|
identity: Optional[pulumi.Input[Union['IdentityPropertiesArgs', 'IdentityPropertiesArgsDict']]] = None,
|
|
496
496
|
location: Optional[pulumi.Input[str]] = None,
|
|
497
|
-
maintenance_window: Optional[pulumi.Input[Union['
|
|
497
|
+
maintenance_window: Optional[pulumi.Input[Union['ServerGroupClusterMaintenanceWindowArgs', 'ServerGroupClusterMaintenanceWindowArgsDict']]] = None,
|
|
498
498
|
node_count: Optional[pulumi.Input[int]] = None,
|
|
499
499
|
node_enable_public_ip_access: Optional[pulumi.Input[bool]] = None,
|
|
500
500
|
node_server_edition: Optional[pulumi.Input[str]] = None,
|
|
@@ -518,21 +518,21 @@ class ServerGroupCluster(pulumi.CustomResource):
|
|
|
518
518
|
:param str resource_name: The name of the resource.
|
|
519
519
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
520
520
|
:param pulumi.Input[str] administrator_login_password: The password of the administrator login. Required for creation.
|
|
521
|
-
:param pulumi.Input[Union['
|
|
521
|
+
:param pulumi.Input[Union['ServerGroupClusterAuthConfigArgs', 'ServerGroupClusterAuthConfigArgsDict']] auth_config: Authentication configuration of a cluster.
|
|
522
522
|
:param pulumi.Input[str] citus_version: The Citus extension version on all cluster servers.
|
|
523
523
|
:param pulumi.Input[str] cluster_name: The name of the cluster.
|
|
524
524
|
:param pulumi.Input[bool] coordinator_enable_public_ip_access: If public access is enabled on coordinator.
|
|
525
525
|
:param pulumi.Input[str] coordinator_server_edition: The edition of a coordinator server (default: GeneralPurpose). Required for creation.
|
|
526
526
|
:param pulumi.Input[int] coordinator_storage_quota_in_mb: The storage of a server in MB. Required for creation. See https://learn.microsoft.com/azure/cosmos-db/postgresql/resources-compute for more information.
|
|
527
527
|
:param pulumi.Input[int] coordinator_v_cores: The vCores count of a server (max: 96). Required for creation. See https://learn.microsoft.com/azure/cosmos-db/postgresql/resources-compute for more information.
|
|
528
|
-
:param pulumi.Input[Union['
|
|
528
|
+
:param pulumi.Input[Union['ServerGroupClusterDataEncryptionArgs', 'ServerGroupClusterDataEncryptionArgsDict']] data_encryption: The data encryption properties of a cluster.
|
|
529
529
|
:param pulumi.Input[str] database_name: The database name of the cluster. Only one database per cluster is supported.
|
|
530
530
|
:param pulumi.Input[bool] enable_geo_backup: If cluster backup is stored in another Azure region in addition to the copy of the backup stored in the cluster's region. Enabled only at the time of cluster creation.
|
|
531
531
|
:param pulumi.Input[bool] enable_ha: If high availability (HA) is enabled or not for the cluster.
|
|
532
532
|
:param pulumi.Input[bool] enable_shards_on_coordinator: If distributed tables are placed on coordinator or not. Should be set to 'true' on single node clusters. Requires shard rebalancing after value is changed.
|
|
533
533
|
:param pulumi.Input[Union['IdentityPropertiesArgs', 'IdentityPropertiesArgsDict']] identity: Describes the identity of the cluster.
|
|
534
534
|
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
535
|
-
:param pulumi.Input[Union['
|
|
535
|
+
:param pulumi.Input[Union['ServerGroupClusterMaintenanceWindowArgs', 'ServerGroupClusterMaintenanceWindowArgsDict']] maintenance_window: Maintenance window of a cluster.
|
|
536
536
|
:param pulumi.Input[int] node_count: Worker node count of the cluster. When node count is 0, it represents a single node configuration with the ability to create distributed tables on that node. 2 or more worker nodes represent multi-node configuration. Node count value cannot be 1. Required for creation.
|
|
537
537
|
:param pulumi.Input[bool] node_enable_public_ip_access: If public access is enabled on worker nodes.
|
|
538
538
|
:param pulumi.Input[str] node_server_edition: The edition of a node server (default: MemoryOptimized).
|
|
@@ -575,21 +575,21 @@ class ServerGroupCluster(pulumi.CustomResource):
|
|
|
575
575
|
resource_name: str,
|
|
576
576
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
577
577
|
administrator_login_password: Optional[pulumi.Input[str]] = None,
|
|
578
|
-
auth_config: Optional[pulumi.Input[Union['
|
|
578
|
+
auth_config: Optional[pulumi.Input[Union['ServerGroupClusterAuthConfigArgs', 'ServerGroupClusterAuthConfigArgsDict']]] = None,
|
|
579
579
|
citus_version: Optional[pulumi.Input[str]] = None,
|
|
580
580
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
581
581
|
coordinator_enable_public_ip_access: Optional[pulumi.Input[bool]] = None,
|
|
582
582
|
coordinator_server_edition: Optional[pulumi.Input[str]] = None,
|
|
583
583
|
coordinator_storage_quota_in_mb: Optional[pulumi.Input[int]] = None,
|
|
584
584
|
coordinator_v_cores: Optional[pulumi.Input[int]] = None,
|
|
585
|
-
data_encryption: Optional[pulumi.Input[Union['
|
|
585
|
+
data_encryption: Optional[pulumi.Input[Union['ServerGroupClusterDataEncryptionArgs', 'ServerGroupClusterDataEncryptionArgsDict']]] = None,
|
|
586
586
|
database_name: Optional[pulumi.Input[str]] = None,
|
|
587
587
|
enable_geo_backup: Optional[pulumi.Input[bool]] = None,
|
|
588
588
|
enable_ha: Optional[pulumi.Input[bool]] = None,
|
|
589
589
|
enable_shards_on_coordinator: Optional[pulumi.Input[bool]] = None,
|
|
590
590
|
identity: Optional[pulumi.Input[Union['IdentityPropertiesArgs', 'IdentityPropertiesArgsDict']]] = None,
|
|
591
591
|
location: Optional[pulumi.Input[str]] = None,
|
|
592
|
-
maintenance_window: Optional[pulumi.Input[Union['
|
|
592
|
+
maintenance_window: Optional[pulumi.Input[Union['ServerGroupClusterMaintenanceWindowArgs', 'ServerGroupClusterMaintenanceWindowArgsDict']]] = None,
|
|
593
593
|
node_count: Optional[pulumi.Input[int]] = None,
|
|
594
594
|
node_enable_public_ip_access: Optional[pulumi.Input[bool]] = None,
|
|
595
595
|
node_server_edition: Optional[pulumi.Input[str]] = None,
|
|
@@ -736,7 +736,7 @@ class ServerGroupCluster(pulumi.CustomResource):
|
|
|
736
736
|
|
|
737
737
|
@property
|
|
738
738
|
@pulumi.getter(name="authConfig")
|
|
739
|
-
def auth_config(self) -> pulumi.Output[Optional['outputs.
|
|
739
|
+
def auth_config(self) -> pulumi.Output[Optional['outputs.ServerGroupClusterAuthConfigResponse']]:
|
|
740
740
|
"""
|
|
741
741
|
Authentication configuration of a cluster.
|
|
742
742
|
"""
|
|
@@ -792,7 +792,7 @@ class ServerGroupCluster(pulumi.CustomResource):
|
|
|
792
792
|
|
|
793
793
|
@property
|
|
794
794
|
@pulumi.getter(name="dataEncryption")
|
|
795
|
-
def data_encryption(self) -> pulumi.Output[Optional['outputs.
|
|
795
|
+
def data_encryption(self) -> pulumi.Output[Optional['outputs.ServerGroupClusterDataEncryptionResponse']]:
|
|
796
796
|
"""
|
|
797
797
|
The data encryption properties of a cluster.
|
|
798
798
|
"""
|
|
@@ -856,7 +856,7 @@ class ServerGroupCluster(pulumi.CustomResource):
|
|
|
856
856
|
|
|
857
857
|
@property
|
|
858
858
|
@pulumi.getter(name="maintenanceWindow")
|
|
859
|
-
def maintenance_window(self) -> pulumi.Output[Optional['outputs.
|
|
859
|
+
def maintenance_window(self) -> pulumi.Output[Optional['outputs.ServerGroupClusterMaintenanceWindowResponse']]:
|
|
860
860
|
"""
|
|
861
861
|
Maintenance window of a cluster.
|
|
862
862
|
"""
|
|
@@ -33,7 +33,7 @@ if not MYPY:
|
|
|
33
33
|
"""
|
|
34
34
|
resource_id: NotRequired[pulumi.Input[str]]
|
|
35
35
|
"""
|
|
36
|
-
User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/
|
|
36
|
+
User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/a0a0a0a0-bbbb-cccd-dddd-e1e1e1e1e1e1/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
|
|
37
37
|
"""
|
|
38
38
|
type: NotRequired[pulumi.Input[Union[str, 'Type']]]
|
|
39
39
|
"""
|
|
@@ -49,7 +49,7 @@ class EncryptionPropertiesIdentityArgs:
|
|
|
49
49
|
type: Optional[pulumi.Input[Union[str, 'Type']]] = None):
|
|
50
50
|
"""
|
|
51
51
|
All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
|
|
52
|
-
:param pulumi.Input[str] resource_id: User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/
|
|
52
|
+
:param pulumi.Input[str] resource_id: User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/a0a0a0a0-bbbb-cccd-dddd-e1e1e1e1e1e1/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
|
|
53
53
|
:param pulumi.Input[Union[str, 'Type']] type: Managed identity type to use for accessing encryption key Url.
|
|
54
54
|
"""
|
|
55
55
|
if resource_id is not None:
|
|
@@ -61,7 +61,7 @@ class EncryptionPropertiesIdentityArgs:
|
|
|
61
61
|
@pulumi.getter(name="resourceId")
|
|
62
62
|
def resource_id(self) -> Optional[pulumi.Input[str]]:
|
|
63
63
|
"""
|
|
64
|
-
User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/
|
|
64
|
+
User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/a0a0a0a0-bbbb-cccd-dddd-e1e1e1e1e1e1/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
|
|
65
65
|
"""
|
|
66
66
|
return pulumi.get(self, "resource_id")
|
|
67
67
|
|
|
@@ -51,7 +51,7 @@ class EncryptionPropertiesIdentityResponse(dict):
|
|
|
51
51
|
type: Optional[str] = None):
|
|
52
52
|
"""
|
|
53
53
|
All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
|
|
54
|
-
:param str resource_id: User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/
|
|
54
|
+
:param str resource_id: User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/a0a0a0a0-bbbb-cccd-dddd-e1e1e1e1e1e1/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
|
|
55
55
|
:param str type: Managed identity type to use for accessing encryption key Url.
|
|
56
56
|
"""
|
|
57
57
|
if resource_id is not None:
|
|
@@ -63,7 +63,7 @@ class EncryptionPropertiesIdentityResponse(dict):
|
|
|
63
63
|
@pulumi.getter(name="resourceId")
|
|
64
64
|
def resource_id(self) -> Optional[str]:
|
|
65
65
|
"""
|
|
66
|
-
User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/
|
|
66
|
+
User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/a0a0a0a0-bbbb-cccd-dddd-e1e1e1e1e1e1/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
|
|
67
67
|
"""
|
|
68
68
|
return pulumi.get(self, "resource_id")
|
|
69
69
|
|