pulumi-azure-native 2.26.0__py3-none-any.whl → 2.26.1__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.

@@ -0,0 +1,157 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetDefenderForStorageResult',
15
+ 'AwaitableGetDefenderForStorageResult',
16
+ 'get_defender_for_storage',
17
+ 'get_defender_for_storage_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetDefenderForStorageResult:
22
+ """
23
+ The Defender for Storage resource.
24
+ """
25
+ def __init__(__self__, id=None, is_enabled=None, malware_scanning=None, name=None, override_subscription_level_settings=None, sensitive_data_discovery=None, type=None):
26
+ if id and not isinstance(id, str):
27
+ raise TypeError("Expected argument 'id' to be a str")
28
+ pulumi.set(__self__, "id", id)
29
+ if is_enabled and not isinstance(is_enabled, bool):
30
+ raise TypeError("Expected argument 'is_enabled' to be a bool")
31
+ pulumi.set(__self__, "is_enabled", is_enabled)
32
+ if malware_scanning and not isinstance(malware_scanning, dict):
33
+ raise TypeError("Expected argument 'malware_scanning' to be a dict")
34
+ pulumi.set(__self__, "malware_scanning", malware_scanning)
35
+ if name and not isinstance(name, str):
36
+ raise TypeError("Expected argument 'name' to be a str")
37
+ pulumi.set(__self__, "name", name)
38
+ if override_subscription_level_settings and not isinstance(override_subscription_level_settings, bool):
39
+ raise TypeError("Expected argument 'override_subscription_level_settings' to be a bool")
40
+ pulumi.set(__self__, "override_subscription_level_settings", override_subscription_level_settings)
41
+ if sensitive_data_discovery and not isinstance(sensitive_data_discovery, dict):
42
+ raise TypeError("Expected argument 'sensitive_data_discovery' to be a dict")
43
+ pulumi.set(__self__, "sensitive_data_discovery", sensitive_data_discovery)
44
+ if type and not isinstance(type, str):
45
+ raise TypeError("Expected argument 'type' to be a str")
46
+ pulumi.set(__self__, "type", type)
47
+
48
+ @property
49
+ @pulumi.getter
50
+ def id(self) -> str:
51
+ """
52
+ Resource Id
53
+ """
54
+ return pulumi.get(self, "id")
55
+
56
+ @property
57
+ @pulumi.getter(name="isEnabled")
58
+ def is_enabled(self) -> Optional[bool]:
59
+ """
60
+ Indicates whether Defender for Storage is enabled on this storage account.
61
+ """
62
+ return pulumi.get(self, "is_enabled")
63
+
64
+ @property
65
+ @pulumi.getter(name="malwareScanning")
66
+ def malware_scanning(self) -> Optional['outputs.MalwareScanningPropertiesResponse']:
67
+ """
68
+ Properties of Malware Scanning.
69
+ """
70
+ return pulumi.get(self, "malware_scanning")
71
+
72
+ @property
73
+ @pulumi.getter
74
+ def name(self) -> str:
75
+ """
76
+ Resource name
77
+ """
78
+ return pulumi.get(self, "name")
79
+
80
+ @property
81
+ @pulumi.getter(name="overrideSubscriptionLevelSettings")
82
+ def override_subscription_level_settings(self) -> Optional[bool]:
83
+ """
84
+ Indicates whether the settings defined for this storage account should override the settings defined for the subscription.
85
+ """
86
+ return pulumi.get(self, "override_subscription_level_settings")
87
+
88
+ @property
89
+ @pulumi.getter(name="sensitiveDataDiscovery")
90
+ def sensitive_data_discovery(self) -> Optional['outputs.SensitiveDataDiscoveryPropertiesResponse']:
91
+ """
92
+ Properties of Sensitive Data Discovery.
93
+ """
94
+ return pulumi.get(self, "sensitive_data_discovery")
95
+
96
+ @property
97
+ @pulumi.getter
98
+ def type(self) -> str:
99
+ """
100
+ Resource type
101
+ """
102
+ return pulumi.get(self, "type")
103
+
104
+
105
+ class AwaitableGetDefenderForStorageResult(GetDefenderForStorageResult):
106
+ # pylint: disable=using-constant-test
107
+ def __await__(self):
108
+ if False:
109
+ yield self
110
+ return GetDefenderForStorageResult(
111
+ id=self.id,
112
+ is_enabled=self.is_enabled,
113
+ malware_scanning=self.malware_scanning,
114
+ name=self.name,
115
+ override_subscription_level_settings=self.override_subscription_level_settings,
116
+ sensitive_data_discovery=self.sensitive_data_discovery,
117
+ type=self.type)
118
+
119
+
120
+ def get_defender_for_storage(resource_id: Optional[str] = None,
121
+ setting_name: Optional[str] = None,
122
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDefenderForStorageResult:
123
+ """
124
+ Gets the Defender for Storage settings for the specified storage account.
125
+
126
+
127
+ :param str resource_id: The identifier of the resource.
128
+ :param str setting_name: Defender for Storage setting name.
129
+ """
130
+ __args__ = dict()
131
+ __args__['resourceId'] = resource_id
132
+ __args__['settingName'] = setting_name
133
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
134
+ __ret__ = pulumi.runtime.invoke('azure-native:security/v20221201preview:getDefenderForStorage', __args__, opts=opts, typ=GetDefenderForStorageResult).value
135
+
136
+ return AwaitableGetDefenderForStorageResult(
137
+ id=pulumi.get(__ret__, 'id'),
138
+ is_enabled=pulumi.get(__ret__, 'is_enabled'),
139
+ malware_scanning=pulumi.get(__ret__, 'malware_scanning'),
140
+ name=pulumi.get(__ret__, 'name'),
141
+ override_subscription_level_settings=pulumi.get(__ret__, 'override_subscription_level_settings'),
142
+ sensitive_data_discovery=pulumi.get(__ret__, 'sensitive_data_discovery'),
143
+ type=pulumi.get(__ret__, 'type'))
144
+
145
+
146
+ @_utilities.lift_output_func(get_defender_for_storage)
147
+ def get_defender_for_storage_output(resource_id: Optional[pulumi.Input[str]] = None,
148
+ setting_name: Optional[pulumi.Input[str]] = None,
149
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDefenderForStorageResult]:
150
+ """
151
+ Gets the Defender for Storage settings for the specified storage account.
152
+
153
+
154
+ :param str resource_id: The identifier of the resource.
155
+ :param str setting_name: Defender for Storage setting name.
156
+ """
157
+ ...
@@ -0,0 +1,187 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'MalwareScanningPropertiesResponse',
15
+ 'OperationStatusResponse',
16
+ 'SensitiveDataDiscoveryPropertiesResponse',
17
+ ]
18
+
19
+ @pulumi.output_type
20
+ class MalwareScanningPropertiesResponse(dict):
21
+ """
22
+ Properties of Malware Scanning.
23
+ """
24
+ @staticmethod
25
+ def __key_warning(key: str):
26
+ suggest = None
27
+ if key == "operationStatus":
28
+ suggest = "operation_status"
29
+ elif key == "capGBPerMonth":
30
+ suggest = "cap_gb_per_month"
31
+ elif key == "isEnabled":
32
+ suggest = "is_enabled"
33
+ elif key == "scanResultsEventGridTopicResourceId":
34
+ suggest = "scan_results_event_grid_topic_resource_id"
35
+
36
+ if suggest:
37
+ pulumi.log.warn(f"Key '{key}' not found in MalwareScanningPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
38
+
39
+ def __getitem__(self, key: str) -> Any:
40
+ MalwareScanningPropertiesResponse.__key_warning(key)
41
+ return super().__getitem__(key)
42
+
43
+ def get(self, key: str, default = None) -> Any:
44
+ MalwareScanningPropertiesResponse.__key_warning(key)
45
+ return super().get(key, default)
46
+
47
+ def __init__(__self__, *,
48
+ operation_status: 'outputs.OperationStatusResponse',
49
+ cap_gb_per_month: Optional[int] = None,
50
+ is_enabled: Optional[bool] = None,
51
+ scan_results_event_grid_topic_resource_id: Optional[str] = None):
52
+ """
53
+ Properties of Malware Scanning.
54
+ :param 'OperationStatusResponse' operation_status: Upon failure or partial success. Additional data describing Malware Scanning enable/disable operation.
55
+ :param int cap_gb_per_month: Defines the max GB to be scanned per Month. Set to -1 if no capping is needed.
56
+ :param bool is_enabled: Indicates whether On Upload malware scanning should be enabled.
57
+ :param str scan_results_event_grid_topic_resource_id: Optional. Resource id of an Event Grid Topic to send scan results to.
58
+ """
59
+ pulumi.set(__self__, "operation_status", operation_status)
60
+ if cap_gb_per_month is not None:
61
+ pulumi.set(__self__, "cap_gb_per_month", cap_gb_per_month)
62
+ if is_enabled is not None:
63
+ pulumi.set(__self__, "is_enabled", is_enabled)
64
+ if scan_results_event_grid_topic_resource_id is not None:
65
+ pulumi.set(__self__, "scan_results_event_grid_topic_resource_id", scan_results_event_grid_topic_resource_id)
66
+
67
+ @property
68
+ @pulumi.getter(name="operationStatus")
69
+ def operation_status(self) -> 'outputs.OperationStatusResponse':
70
+ """
71
+ Upon failure or partial success. Additional data describing Malware Scanning enable/disable operation.
72
+ """
73
+ return pulumi.get(self, "operation_status")
74
+
75
+ @property
76
+ @pulumi.getter(name="capGBPerMonth")
77
+ def cap_gb_per_month(self) -> Optional[int]:
78
+ """
79
+ Defines the max GB to be scanned per Month. Set to -1 if no capping is needed.
80
+ """
81
+ return pulumi.get(self, "cap_gb_per_month")
82
+
83
+ @property
84
+ @pulumi.getter(name="isEnabled")
85
+ def is_enabled(self) -> Optional[bool]:
86
+ """
87
+ Indicates whether On Upload malware scanning should be enabled.
88
+ """
89
+ return pulumi.get(self, "is_enabled")
90
+
91
+ @property
92
+ @pulumi.getter(name="scanResultsEventGridTopicResourceId")
93
+ def scan_results_event_grid_topic_resource_id(self) -> Optional[str]:
94
+ """
95
+ Optional. Resource id of an Event Grid Topic to send scan results to.
96
+ """
97
+ return pulumi.get(self, "scan_results_event_grid_topic_resource_id")
98
+
99
+
100
+ @pulumi.output_type
101
+ class OperationStatusResponse(dict):
102
+ """
103
+ A status describing the success/failure of the enablement/disablement operation.
104
+ """
105
+ def __init__(__self__, *,
106
+ code: Optional[str] = None,
107
+ message: Optional[str] = None):
108
+ """
109
+ A status describing the success/failure of the enablement/disablement operation.
110
+ :param str code: The operation status code.
111
+ :param str message: Additional information regarding the success/failure of the operation.
112
+ """
113
+ if code is not None:
114
+ pulumi.set(__self__, "code", code)
115
+ if message is not None:
116
+ pulumi.set(__self__, "message", message)
117
+
118
+ @property
119
+ @pulumi.getter
120
+ def code(self) -> Optional[str]:
121
+ """
122
+ The operation status code.
123
+ """
124
+ return pulumi.get(self, "code")
125
+
126
+ @property
127
+ @pulumi.getter
128
+ def message(self) -> Optional[str]:
129
+ """
130
+ Additional information regarding the success/failure of the operation.
131
+ """
132
+ return pulumi.get(self, "message")
133
+
134
+
135
+ @pulumi.output_type
136
+ class SensitiveDataDiscoveryPropertiesResponse(dict):
137
+ """
138
+ Properties of Sensitive Data Discovery.
139
+ """
140
+ @staticmethod
141
+ def __key_warning(key: str):
142
+ suggest = None
143
+ if key == "operationStatus":
144
+ suggest = "operation_status"
145
+ elif key == "isEnabled":
146
+ suggest = "is_enabled"
147
+
148
+ if suggest:
149
+ pulumi.log.warn(f"Key '{key}' not found in SensitiveDataDiscoveryPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
150
+
151
+ def __getitem__(self, key: str) -> Any:
152
+ SensitiveDataDiscoveryPropertiesResponse.__key_warning(key)
153
+ return super().__getitem__(key)
154
+
155
+ def get(self, key: str, default = None) -> Any:
156
+ SensitiveDataDiscoveryPropertiesResponse.__key_warning(key)
157
+ return super().get(key, default)
158
+
159
+ def __init__(__self__, *,
160
+ operation_status: 'outputs.OperationStatusResponse',
161
+ is_enabled: Optional[bool] = None):
162
+ """
163
+ Properties of Sensitive Data Discovery.
164
+ :param 'OperationStatusResponse' operation_status: Upon failure or partial success. Additional data describing Sensitive Data Discovery enable/disable operation.
165
+ :param bool is_enabled: Indicates whether Sensitive Data Discovery should be enabled.
166
+ """
167
+ pulumi.set(__self__, "operation_status", operation_status)
168
+ if is_enabled is not None:
169
+ pulumi.set(__self__, "is_enabled", is_enabled)
170
+
171
+ @property
172
+ @pulumi.getter(name="operationStatus")
173
+ def operation_status(self) -> 'outputs.OperationStatusResponse':
174
+ """
175
+ Upon failure or partial success. Additional data describing Sensitive Data Discovery enable/disable operation.
176
+ """
177
+ return pulumi.get(self, "operation_status")
178
+
179
+ @property
180
+ @pulumi.getter(name="isEnabled")
181
+ def is_enabled(self) -> Optional[bool]:
182
+ """
183
+ Indicates whether Sensitive Data Discovery should be enabled.
184
+ """
185
+ return pulumi.get(self, "is_enabled")
186
+
187
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_azure_native
3
- Version: 2.26.0
3
+ Version: 2.26.1
4
4
  Summary: A native Pulumi package for creating and managing Azure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.com
@@ -1,4 +1,4 @@
1
- pulumi_azure_native/__init__.py,sha256=9igOAxo4qiS7pwDHN3VG6amgYdx8sN_a3Mz8XBZnBzs,748996
1
+ pulumi_azure_native/__init__.py,sha256=p5F2-qD4C6qyv-zSY1xXcWbQPGZi46gu3Vlk1gF0A0I,749297
2
2
  pulumi_azure_native/_utilities.py,sha256=WjjUoMUWgEBJiE2KZ76Lihj4rx_1_v__96T1_-RwY0I,9231
3
3
  pulumi_azure_native/provider.py,sha256=LNUQF0if_Zo-PnKfRhLCMwTAj8sZScuh5SUu6m7_e3k,23122
4
4
  pulumi_azure_native/pulumi-plugin.json,sha256=V6SbnACkF8XN-KxV-K5PJhTTTqe9VRprRxzLHQ9nkO8,49
@@ -15295,9 +15295,9 @@ pulumi_azure_native/search/v20231101/outputs.py,sha256=cHpypUL5Arr65GIpsbm9_F9Eg
15295
15295
  pulumi_azure_native/search/v20231101/private_endpoint_connection.py,sha256=dmhJbLhgT7xmOnrFwJDBvMFHo-UMHUyIgePAGkCrkQs,10806
15296
15296
  pulumi_azure_native/search/v20231101/service.py,sha256=VfPYrrL7AisY3SEaFcJz4k7_b8UpJH5lMJzWUPK3In0,35026
15297
15297
  pulumi_azure_native/search/v20231101/shared_private_link_resource.py,sha256=En6zIBZJ19rPJffCEcrK31j7E4D3jvSIeZwUdRDy8cM,10683
15298
- pulumi_azure_native/security/__init__.py,sha256=xZ1GxWcvMoIeZGApNBmqXVE_PG1P1Hcdc3NNPvo9BNk,6948
15298
+ pulumi_azure_native/security/__init__.py,sha256=n6V2_lHuVyVox7cWzAOZanJcpYMYF5Q-iyhjwa09pmA,7240
15299
15299
  pulumi_azure_native/security/_enums.py,sha256=sb7fb2pI21Vm4yz3AEiHyA7gCLFq7ar8uSIQ9bPFXBA,26053
15300
- pulumi_azure_native/security/_inputs.py,sha256=F-ZQ9JxyAks828o6AzsdW5u_fVm3cKxmY_Ogrn-KfsQ,259595
15300
+ pulumi_azure_native/security/_inputs.py,sha256=iNqUTEr4r_u88yhkW4CsflKbqHh2Ngl3sff6ncIVna8,263047
15301
15301
  pulumi_azure_native/security/adaptive_application_control.py,sha256=GImlm9Hn9d_87B3uPixnFBaskTtSKCYc6PMwevqtV7M,14280
15302
15302
  pulumi_azure_native/security/advanced_threat_protection.py,sha256=hyphxoKVBX21w2zrFaYh2W61z-2P90k_rLKKNyztKh4,7738
15303
15303
  pulumi_azure_native/security/alerts_suppression_rule.py,sha256=1PMkhq4O9MUL8eC1TuW8viNXjxq8uOEj60Zldy7ekcA,13963
@@ -15313,6 +15313,7 @@ pulumi_azure_native/security/azure_servers_setting.py,sha256=0lc2lvtad_FEM5eyKTx
15313
15313
  pulumi_azure_native/security/connector.py,sha256=yDBe7DYDknzRlBvOEu7LZi10gQP3YzQgs-18skwRRUY,10135
15314
15314
  pulumi_azure_native/security/custom_assessment_automation.py,sha256=YnHTwkVmU-Zfo64a2_laxii3l5-UM3kMsZm5y0fUcS8,16630
15315
15315
  pulumi_azure_native/security/custom_entity_store_assignment.py,sha256=RmlGUFarIV0mXLLRavwLJeHrgZ72i02PR31JBLLwwAg,9574
15316
+ pulumi_azure_native/security/defender_for_storage.py,sha256=DZ4fGrA106_A7ck6lKitbE1tuLp3JYQwy-SN55VCx0E,12865
15316
15317
  pulumi_azure_native/security/dev_ops_configuration.py,sha256=6nS4J8QbOCc7kGRhUJJZAgc6nYDtWj40jhRsMZ3q-q4,8610
15317
15318
  pulumi_azure_native/security/device_security_group.py,sha256=u2iNv7roP5UUe1ZMNsyb8yDbjBJvSGPO61lmuTCkcxU,13717
15318
15319
  pulumi_azure_native/security/get_adaptive_application_control.py,sha256=4SZhSg_l0uiauGNKCr5xSWqwXb-u6IB1S36BfWlABkk,9093
@@ -15330,6 +15331,7 @@ pulumi_azure_native/security/get_azure_servers_setting.py,sha256=R0reWctwDTkbIbi
15330
15331
  pulumi_azure_native/security/get_connector.py,sha256=WPG0o3TFBk6F17afM6lyNs5Ri2C9s1ytb6azoFePHBw,4527
15331
15332
  pulumi_azure_native/security/get_custom_assessment_automation.py,sha256=H-Xiu4guVe_CrJGQzmELI-WyRV0mXi9Oe6VPUZ41Yis,8857
15332
15333
  pulumi_azure_native/security/get_custom_entity_store_assignment.py,sha256=apdDoO1rBpPV2BxZ0AqAm_lQbwpklD7ruF6S9RHHKSM,5998
15334
+ pulumi_azure_native/security/get_defender_for_storage.py,sha256=i-sOI6XXP35VOBariCK4A6_OOXJF_whRHnYcfRraKVM,6389
15333
15335
  pulumi_azure_native/security/get_dev_ops_configuration.py,sha256=TjN5Y3JE3-EWUiNC4LoG05qsKvWj6Bcdo8o1h0wkDSc,5002
15334
15336
  pulumi_azure_native/security/get_device_security_group.py,sha256=fFoxf2gIUtrvHBvzDP0SBbD-sP1xd7DwCrzfg0c7LmQ,6312
15335
15337
  pulumi_azure_native/security/get_governance_assignment.py,sha256=VnllWyoy_olW5wefUtttvCC9CnQu5wcd7yZ33jopDWg,8557
@@ -15353,7 +15355,7 @@ pulumi_azure_native/security/list_azure_dev_ops_org_available.py,sha256=YczWIsqx
15353
15355
  pulumi_azure_native/security/list_git_hub_owner_available.py,sha256=9QXOYJWddmp7-5kFTNi262c8zmmgMHIrjB0AZJAvdjs,3571
15354
15356
  pulumi_azure_native/security/list_git_lab_group_available.py,sha256=HXY6IACZFHqazSiu23Z-SDkHsXFDMw6gJ78EXQVVpWs,3571
15355
15357
  pulumi_azure_native/security/list_git_lab_subgroup.py,sha256=Zp9HHWIiAXcTTe8fXhXkLjirl5OzKIYf7wefMmqUz3I,3771
15356
- pulumi_azure_native/security/outputs.py,sha256=3MME5d-d0xj0mmDaCo9xMtKKa9zHBpXsURKQhApPd8A,343516
15358
+ pulumi_azure_native/security/outputs.py,sha256=1lx4O8B8S8DnyWmSsATETGyS8cArYXjmPc4xSQJ8qeo,349161
15357
15359
  pulumi_azure_native/security/pricing.py,sha256=dBNf83urfjLZ5Yr7RuX_KEWvqjZEKll4zNugfO_dY1g,19112
15358
15360
  pulumi_azure_native/security/security_connector.py,sha256=DePBnfsnotLgbzjI-gj04PxHhGHu8i9DdctXtXLlzWk,24314
15359
15361
  pulumi_azure_native/security/security_connector_application.py,sha256=80ES59FTvAQdWvhH5nphJZa_AfojRgs4dtiZm12Tmrw,12117
@@ -15457,6 +15459,11 @@ pulumi_azure_native/security/v20220701preview/security_connector_application.py,
15457
15459
  pulumi_azure_native/security/v20221120preview/__init__.py,sha256=hEbEDTujqMpLuOlO8Yizy4R4BL-4_qNoiCzCzFumLPI,316
15458
15460
  pulumi_azure_native/security/v20221120preview/api_collection.py,sha256=WopUarF0RkEwCsSugTzw1VD-kvHT4Ky7eX8zFiYjt48,8467
15459
15461
  pulumi_azure_native/security/v20221120preview/get_api_collection.py,sha256=yEfJLKIeGqAlT3fUvblTggTSUCliyXbuQiTnaSltj9I,5647
15462
+ pulumi_azure_native/security/v20221201preview/__init__.py,sha256=yMyFwPghk4ndFlMgqq7rSgrW2kyZPQMvrvqV-rrbS88,373
15463
+ pulumi_azure_native/security/v20221201preview/_inputs.py,sha256=hSgziPiBoDw4Yd3Lu0TMCgbTWBhZ2p6cdgODPQtQmx8,3795
15464
+ pulumi_azure_native/security/v20221201preview/defender_for_storage.py,sha256=Cr3oTp7ckE5tafzHA70KYbIuHs0Xcq9Ehd_MccKi1aA,12762
15465
+ pulumi_azure_native/security/v20221201preview/get_defender_for_storage.py,sha256=0NyIJqILnStLRs683slBP4ws7Dl-uQ_RBYp1cyH27oU,6311
15466
+ pulumi_azure_native/security/v20221201preview/outputs.py,sha256=_jHVc2tWYm1nLaHWRRD710KVMJaE5Jg_svDAo5eCAQc,7140
15460
15467
  pulumi_azure_native/security/v20230101preview/__init__.py,sha256=1gmAshqmiFoqD6Z4VPuxLmZInktgUSImqAuPk7njk-k,344
15461
15468
  pulumi_azure_native/security/v20230101preview/get_security_operator.py,sha256=FmIeQGA71BjmnVeY-mk660SAGJsZLGZNFrpkhqFBTSU,3941
15462
15469
  pulumi_azure_native/security/v20230101preview/outputs.py,sha256=HbqYJco5k2uvcotv1gkq0gLY2juDQm8LC6u2OZKjFOA,2224
@@ -19754,7 +19761,7 @@ pulumi_azure_native/workloads/v20231001preview/sap_central_instance.py,sha256=Ke
19754
19761
  pulumi_azure_native/workloads/v20231001preview/sap_database_instance.py,sha256=-aR0aCgupI8LNymrLC6Llgkky68v4ZTd2mawd9Lj13U,13907
19755
19762
  pulumi_azure_native/workloads/v20231001preview/sap_landscape_monitor.py,sha256=kh_uPVrU8zJqqfe7v2--2sR1w5evu1dVlo0K44bTAQ0,11157
19756
19763
  pulumi_azure_native/workloads/v20231001preview/sap_virtual_instance.py,sha256=dMa-ylYX90O5UGT8A5yheKhQqS2_1pLbw3OhbgCfLMQ,24031
19757
- pulumi_azure_native-2.26.0.dist-info/METADATA,sha256=c_lRFM7SvOYFaCWiI6ggUwPDyJY8cqUcgScREO_K7Js,4121
19758
- pulumi_azure_native-2.26.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
19759
- pulumi_azure_native-2.26.0.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
19760
- pulumi_azure_native-2.26.0.dist-info/RECORD,,
19764
+ pulumi_azure_native-2.26.1.dist-info/METADATA,sha256=7wbCBf5rxt5XNaxMZH5W5CjEZtINNsNJFuNkW5CM9Cs,4121
19765
+ pulumi_azure_native-2.26.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
19766
+ pulumi_azure_native-2.26.1.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
19767
+ pulumi_azure_native-2.26.1.dist-info/RECORD,,