pulumi-azure-native 3.8.0a1755549300__py3-none-any.whl → 3.8.0a1756942349__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/config/__init__.pyi +11 -1
- pulumi_azure_native/config/vars.py +15 -1
- pulumi_azure_native/monitor/_enums.py +1 -1
- pulumi_azure_native/monitor/_inputs.py +23 -3
- pulumi_azure_native/monitor/get_scheduled_query_rule.py +6 -6
- pulumi_azure_native/monitor/outputs.py +16 -2
- pulumi_azure_native/monitor/scheduled_query_rule.py +12 -12
- pulumi_azure_native/provider.py +43 -3
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/redisenterprise/_enums.py +82 -5
- pulumi_azure_native/redisenterprise/_inputs.py +19 -19
- pulumi_azure_native/redisenterprise/access_policy_assignment.py +7 -7
- pulumi_azure_native/redisenterprise/database.py +56 -17
- pulumi_azure_native/redisenterprise/get_access_policy_assignment.py +6 -6
- pulumi_azure_native/redisenterprise/get_database.py +40 -12
- pulumi_azure_native/redisenterprise/get_private_endpoint_connection.py +8 -8
- pulumi_azure_native/redisenterprise/get_redis_enterprise.py +54 -12
- pulumi_azure_native/redisenterprise/list_database_keys.py +8 -8
- pulumi_azure_native/redisenterprise/outputs.py +125 -14
- pulumi_azure_native/redisenterprise/private_endpoint_connection.py +7 -7
- pulumi_azure_native/redisenterprise/redis_enterprise.py +63 -14
- pulumi_azure_native/search/_enums.py +121 -10
- pulumi_azure_native/search/_inputs.py +109 -69
- pulumi_azure_native/search/get_private_endpoint_connection.py +26 -12
- pulumi_azure_native/search/get_service.py +117 -19
- pulumi_azure_native/search/get_shared_private_link_resource.py +26 -12
- pulumi_azure_native/search/list_admin_key.py +9 -9
- pulumi_azure_native/search/list_query_key_by_search_service.py +10 -10
- pulumi_azure_native/search/outputs.py +303 -57
- pulumi_azure_native/search/private_endpoint_connection.py +26 -16
- pulumi_azure_native/search/service.py +179 -33
- pulumi_azure_native/search/shared_private_link_resource.py +26 -16
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/RECORD +36 -36
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-3.8.0a1755549300.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/top_level.txt +0 -0
|
@@ -30,9 +30,9 @@ class SharedPrivateLinkResourceArgs:
|
|
|
30
30
|
"""
|
|
31
31
|
The set of arguments for constructing a SharedPrivateLinkResource resource.
|
|
32
32
|
:param pulumi.Input[builtins.str] resource_group_name: The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
|
|
33
|
-
:param pulumi.Input[builtins.str] search_service_name: The name of the
|
|
34
|
-
:param pulumi.Input['SharedPrivateLinkResourcePropertiesArgs'] properties: Describes the properties of a
|
|
35
|
-
:param pulumi.Input[builtins.str] shared_private_link_resource_name: The name of the shared private link resource managed by the
|
|
33
|
+
:param pulumi.Input[builtins.str] search_service_name: The name of the Azure AI Search service associated with the specified resource group.
|
|
34
|
+
:param pulumi.Input['SharedPrivateLinkResourcePropertiesArgs'] properties: Describes the properties of a shared private link resource managed by the Azure AI Search service.
|
|
35
|
+
:param pulumi.Input[builtins.str] shared_private_link_resource_name: The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.
|
|
36
36
|
"""
|
|
37
37
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
38
38
|
pulumi.set(__self__, "search_service_name", search_service_name)
|
|
@@ -57,7 +57,7 @@ class SharedPrivateLinkResourceArgs:
|
|
|
57
57
|
@pulumi.getter(name="searchServiceName")
|
|
58
58
|
def search_service_name(self) -> pulumi.Input[builtins.str]:
|
|
59
59
|
"""
|
|
60
|
-
The name of the
|
|
60
|
+
The name of the Azure AI Search service associated with the specified resource group.
|
|
61
61
|
"""
|
|
62
62
|
return pulumi.get(self, "search_service_name")
|
|
63
63
|
|
|
@@ -69,7 +69,7 @@ class SharedPrivateLinkResourceArgs:
|
|
|
69
69
|
@pulumi.getter
|
|
70
70
|
def properties(self) -> Optional[pulumi.Input['SharedPrivateLinkResourcePropertiesArgs']]:
|
|
71
71
|
"""
|
|
72
|
-
Describes the properties of a
|
|
72
|
+
Describes the properties of a shared private link resource managed by the Azure AI Search service.
|
|
73
73
|
"""
|
|
74
74
|
return pulumi.get(self, "properties")
|
|
75
75
|
|
|
@@ -81,7 +81,7 @@ class SharedPrivateLinkResourceArgs:
|
|
|
81
81
|
@pulumi.getter(name="sharedPrivateLinkResourceName")
|
|
82
82
|
def shared_private_link_resource_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
83
83
|
"""
|
|
84
|
-
The name of the shared private link resource managed by the
|
|
84
|
+
The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.
|
|
85
85
|
"""
|
|
86
86
|
return pulumi.get(self, "shared_private_link_resource_name")
|
|
87
87
|
|
|
@@ -102,18 +102,18 @@ class SharedPrivateLinkResource(pulumi.CustomResource):
|
|
|
102
102
|
shared_private_link_resource_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
103
103
|
__props__=None):
|
|
104
104
|
"""
|
|
105
|
-
Describes a
|
|
105
|
+
Describes a shared private link resource managed by the Azure AI Search service.
|
|
106
106
|
|
|
107
|
-
Uses Azure REST API version
|
|
107
|
+
Uses Azure REST API version 2025-05-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.
|
|
108
108
|
|
|
109
|
-
Other available API versions: 2022-09-01, 2024-03-01-preview, 2024-06-01-preview, 2025-02-01-preview
|
|
109
|
+
Other available API versions: 2022-09-01, 2023-11-01, 2024-03-01-preview, 2024-06-01-preview, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native search [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
110
110
|
|
|
111
111
|
:param str resource_name: The name of the resource.
|
|
112
112
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
113
|
-
:param pulumi.Input[Union['SharedPrivateLinkResourcePropertiesArgs', 'SharedPrivateLinkResourcePropertiesArgsDict']] properties: Describes the properties of a
|
|
113
|
+
:param pulumi.Input[Union['SharedPrivateLinkResourcePropertiesArgs', 'SharedPrivateLinkResourcePropertiesArgsDict']] properties: Describes the properties of a shared private link resource managed by the Azure AI Search service.
|
|
114
114
|
:param pulumi.Input[builtins.str] resource_group_name: The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
|
|
115
|
-
:param pulumi.Input[builtins.str] search_service_name: The name of the
|
|
116
|
-
:param pulumi.Input[builtins.str] shared_private_link_resource_name: The name of the shared private link resource managed by the
|
|
115
|
+
:param pulumi.Input[builtins.str] search_service_name: The name of the Azure AI Search service associated with the specified resource group.
|
|
116
|
+
:param pulumi.Input[builtins.str] shared_private_link_resource_name: The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.
|
|
117
117
|
"""
|
|
118
118
|
...
|
|
119
119
|
@overload
|
|
@@ -122,11 +122,11 @@ class SharedPrivateLinkResource(pulumi.CustomResource):
|
|
|
122
122
|
args: SharedPrivateLinkResourceArgs,
|
|
123
123
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
124
124
|
"""
|
|
125
|
-
Describes a
|
|
125
|
+
Describes a shared private link resource managed by the Azure AI Search service.
|
|
126
126
|
|
|
127
|
-
Uses Azure REST API version
|
|
127
|
+
Uses Azure REST API version 2025-05-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.
|
|
128
128
|
|
|
129
|
-
Other available API versions: 2022-09-01, 2024-03-01-preview, 2024-06-01-preview, 2025-02-01-preview
|
|
129
|
+
Other available API versions: 2022-09-01, 2023-11-01, 2024-03-01-preview, 2024-06-01-preview, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native search [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
130
130
|
|
|
131
131
|
:param str resource_name: The name of the resource.
|
|
132
132
|
:param SharedPrivateLinkResourceArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -166,6 +166,7 @@ class SharedPrivateLinkResource(pulumi.CustomResource):
|
|
|
166
166
|
__props__.__dict__["shared_private_link_resource_name"] = shared_private_link_resource_name
|
|
167
167
|
__props__.__dict__["azure_api_version"] = None
|
|
168
168
|
__props__.__dict__["name"] = None
|
|
169
|
+
__props__.__dict__["system_data"] = None
|
|
169
170
|
__props__.__dict__["type"] = None
|
|
170
171
|
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:search/v20200801:SharedPrivateLinkResource"), pulumi.Alias(type_="azure-native:search/v20200801preview:SharedPrivateLinkResource"), pulumi.Alias(type_="azure-native:search/v20210401preview:SharedPrivateLinkResource"), pulumi.Alias(type_="azure-native:search/v20220901:SharedPrivateLinkResource"), pulumi.Alias(type_="azure-native:search/v20231101:SharedPrivateLinkResource"), pulumi.Alias(type_="azure-native:search/v20240301preview:SharedPrivateLinkResource"), pulumi.Alias(type_="azure-native:search/v20240601preview:SharedPrivateLinkResource"), pulumi.Alias(type_="azure-native:search/v20250201preview:SharedPrivateLinkResource"), pulumi.Alias(type_="azure-native:search/v20250501:SharedPrivateLinkResource")])
|
|
171
172
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
@@ -194,6 +195,7 @@ class SharedPrivateLinkResource(pulumi.CustomResource):
|
|
|
194
195
|
__props__.__dict__["azure_api_version"] = None
|
|
195
196
|
__props__.__dict__["name"] = None
|
|
196
197
|
__props__.__dict__["properties"] = None
|
|
198
|
+
__props__.__dict__["system_data"] = None
|
|
197
199
|
__props__.__dict__["type"] = None
|
|
198
200
|
return SharedPrivateLinkResource(resource_name, opts=opts, __props__=__props__)
|
|
199
201
|
|
|
@@ -217,10 +219,18 @@ class SharedPrivateLinkResource(pulumi.CustomResource):
|
|
|
217
219
|
@pulumi.getter
|
|
218
220
|
def properties(self) -> pulumi.Output['outputs.SharedPrivateLinkResourcePropertiesResponse']:
|
|
219
221
|
"""
|
|
220
|
-
Describes the properties of a
|
|
222
|
+
Describes the properties of a shared private link resource managed by the Azure AI Search service.
|
|
221
223
|
"""
|
|
222
224
|
return pulumi.get(self, "properties")
|
|
223
225
|
|
|
226
|
+
@property
|
|
227
|
+
@pulumi.getter(name="systemData")
|
|
228
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
229
|
+
"""
|
|
230
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
231
|
+
"""
|
|
232
|
+
return pulumi.get(self, "system_data")
|
|
233
|
+
|
|
224
234
|
@property
|
|
225
235
|
@pulumi.getter
|
|
226
236
|
def type(self) -> pulumi.Output[builtins.str]:
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
pulumi_azure_native/__init__.py,sha256=aHU5oCOBAgdZVNnJ0clqVxdi60zBbIH53Bwji7Hbyz8,232894
|
|
2
2
|
pulumi_azure_native/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
3
|
-
pulumi_azure_native/provider.py,sha256=
|
|
4
|
-
pulumi_azure_native/pulumi-plugin.json,sha256=
|
|
3
|
+
pulumi_azure_native/provider.py,sha256=wFtv9bstCftBEQyjo6mXdC90WoFP3XCRojBCV3zlFVc,28417
|
|
4
|
+
pulumi_azure_native/pulumi-plugin.json,sha256=bV9BLdpebj44ynatsnl6gNFRVm5sxYfEFws6TtAPhIw,88
|
|
5
5
|
pulumi_azure_native/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
pulumi_azure_native/aad/__init__.py,sha256=ccEtqbS_TALS7ZcGtiIgGedTaWNafb3Wg0cEv_wEDPU,458
|
|
7
7
|
pulumi_azure_native/aad/_enums.py,sha256=8OZ253rp_TZn_CKyOvqb274H8LTVILEWJJpGQYHOXVU,4441
|
|
@@ -1436,8 +1436,8 @@ pulumi_azure_native/confidentialledger/ledger.py,sha256=Vt5-F9_QAUklfV4WxoMtoUOz
|
|
|
1436
1436
|
pulumi_azure_native/confidentialledger/managed_ccf.py,sha256=LKmd6InjtxQCBJFeTHawiXLvuonJOefVn9QCHbWpgZs,12702
|
|
1437
1437
|
pulumi_azure_native/confidentialledger/outputs.py,sha256=4KkstIiVTL0iWooi5jMy4-tFhQzrCI1R2uSl4UJzMZs,25376
|
|
1438
1438
|
pulumi_azure_native/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
|
|
1439
|
-
pulumi_azure_native/config/__init__.pyi,sha256=
|
|
1440
|
-
pulumi_azure_native/config/vars.py,sha256=
|
|
1439
|
+
pulumi_azure_native/config/__init__.pyi,sha256=2zNZeDNvLPgkwDjh5LvTtnAQAOTODewBpO76RBgGUhc,3497
|
|
1440
|
+
pulumi_azure_native/config/vars.py,sha256=fYT6elSBI6gBIjlXlUutdi_wiGJN4rQXqh25J2rlGWE,5821
|
|
1441
1441
|
pulumi_azure_native/confluent/__init__.py,sha256=vFlm35o5tgJt70-z8jf-uVJydqaoh__BM53OqUp-bQw,997
|
|
1442
1442
|
pulumi_azure_native/confluent/_enums.py,sha256=tWOKEM6f3lFRWuwu63N08xABoqMGX2YlXfweg_AgWo8,3208
|
|
1443
1443
|
pulumi_azure_native/confluent/_inputs.py,sha256=BXzYWShLoKxSyKVwZdxFoNxtTD7RjlEpttS89AlAamk,118938
|
|
@@ -3771,8 +3771,8 @@ pulumi_azure_native/mongocluster/outputs.py,sha256=4uY_dqVx07hO-b_xqN8_Vxnx1pNk7
|
|
|
3771
3771
|
pulumi_azure_native/mongocluster/private_endpoint_connection.py,sha256=dOTSFOAl5-IPv7umqFvyTYU1EeQKl5O9xfAUT1jjgAY,12772
|
|
3772
3772
|
pulumi_azure_native/mongocluster/user.py,sha256=Ibiy2i_80S43A876P-aLfoOmhQEmlnG-_3vuRtGH7Yg,10633
|
|
3773
3773
|
pulumi_azure_native/monitor/__init__.py,sha256=TKaZdILFjeJnkN6v6ghezwWhy7MFpZr5HKt5FvSiqnE,1731
|
|
3774
|
-
pulumi_azure_native/monitor/_enums.py,sha256=
|
|
3775
|
-
pulumi_azure_native/monitor/_inputs.py,sha256=
|
|
3774
|
+
pulumi_azure_native/monitor/_enums.py,sha256=ZcmdeLP0IHjZXI901QrycUMrPJl2BuCSfSqILwViplw,18274
|
|
3775
|
+
pulumi_azure_native/monitor/_inputs.py,sha256=M8B9J76NOzOP_gW4gl85PGk1icBVOVJLJ43jo8RmTIw,404119
|
|
3776
3776
|
pulumi_azure_native/monitor/action_group.py,sha256=cR909loyJJNMxi87pUlfvAqy7xfklxy2WMFZE-occ3Y,38672
|
|
3777
3777
|
pulumi_azure_native/monitor/activity_log_alert.py,sha256=WcXeO4suzRrT-wwv1UzN-p_kNRzuby6i69-dm4qBh6o,18506
|
|
3778
3778
|
pulumi_azure_native/monitor/autoscale_setting.py,sha256=sPvr-BcWdqxijuslrGJPww3wbc5gNNNsjjCxufaUKfk,20818
|
|
@@ -3795,18 +3795,18 @@ pulumi_azure_native/monitor/get_pipeline_group.py,sha256=C3CCwgH9CTNAO6sXsqvxXHU
|
|
|
3795
3795
|
pulumi_azure_native/monitor/get_private_endpoint_connection.py,sha256=HCQvf4SnlXikiyP00Ydv15fuQUPhIPg6O4GoFkyfV2U,9206
|
|
3796
3796
|
pulumi_azure_native/monitor/get_private_link_scope.py,sha256=hy7t0oHYhP81-16MiW_lPKmCauLoIFOO9Sfp5qGPqvo,9960
|
|
3797
3797
|
pulumi_azure_native/monitor/get_private_link_scoped_resource.py,sha256=QmKEYneP5pZ3HLTv1HNesquZmN6TQc4kMM8Jm2WlFUA,9784
|
|
3798
|
-
pulumi_azure_native/monitor/get_scheduled_query_rule.py,sha256=
|
|
3798
|
+
pulumi_azure_native/monitor/get_scheduled_query_rule.py,sha256=vFDLu6xhXCY-H0dmCnntBV2y-4I-8h7jzdds5AFoK4c,24213
|
|
3799
3799
|
pulumi_azure_native/monitor/get_subscription_diagnostic_setting.py,sha256=TruW769EWlINOFptlR_EuHcBKFPf_E0jzgZZKqgzpFk,10981
|
|
3800
3800
|
pulumi_azure_native/monitor/get_tenant_action_group.py,sha256=YFqTm4isQ3AwpFBSo7Ivd-TcJw-XmW_GMyrJ5x-A1u0,11077
|
|
3801
3801
|
pulumi_azure_native/monitor/list_diagnostic_settings_category.py,sha256=fwtx8EyJVz1r3O7YJ8dQ6OrhPaXcNhY47wDjOSiwYaA,3432
|
|
3802
3802
|
pulumi_azure_native/monitor/management_group_diagnostic_setting.py,sha256=XCeHyTlJCMflcjTvAl6tQ6x1i3M0qf-fWISWCux4CWM,19846
|
|
3803
3803
|
pulumi_azure_native/monitor/metric_alert.py,sha256=W6hMnvTxHI6cZfaQeyIOv88Hzsj9_X3RI9OwUVQImf0,28834
|
|
3804
|
-
pulumi_azure_native/monitor/outputs.py,sha256=
|
|
3804
|
+
pulumi_azure_native/monitor/outputs.py,sha256=_5omq2G93XvMb8PLYQv7I4Y0_ACxUISoHFZv6gedH6w,361041
|
|
3805
3805
|
pulumi_azure_native/monitor/pipeline_group.py,sha256=YIji1_5NRKPfC8r1KRL5vmwUjjtvksNQFi0QNgrCmKY,14426
|
|
3806
3806
|
pulumi_azure_native/monitor/private_endpoint_connection.py,sha256=wJjiqDQdj-w-E3EdJA6WknfTlBCZiFAW15pCrYi6Krg,13401
|
|
3807
3807
|
pulumi_azure_native/monitor/private_link_scope.py,sha256=WuOV4hfNdfmobiDa37ak3PiOuwDmuRIxJofEhuSE3XE,13819
|
|
3808
3808
|
pulumi_azure_native/monitor/private_link_scoped_resource.py,sha256=k9LwvXR-vrlv6gTHZ5zSWDOD7kBlY7JTiXlJvPhzbF4,14627
|
|
3809
|
-
pulumi_azure_native/monitor/scheduled_query_rule.py,sha256=
|
|
3809
|
+
pulumi_azure_native/monitor/scheduled_query_rule.py,sha256=CU8FdFrQGI3F9exw3Ecm9ORY4R8PgyN3PfqYMTnwRUg,44507
|
|
3810
3810
|
pulumi_azure_native/monitor/subscription_diagnostic_setting.py,sha256=YDrJt9c4deqppIrV1I4F5ua7CbW-z4FXji-dnJoGBr4,18657
|
|
3811
3811
|
pulumi_azure_native/monitor/tenant_action_group.py,sha256=idfDTAM2ZcC3D1bLticyWuDfivFg4CsyvaeA5nawcf4,22258
|
|
3812
3812
|
pulumi_azure_native/mysqldiscovery/__init__.py,sha256=rIskdpPY5Ygxd6qz4W9Cv9xG9xpfKDkWWN9dcqiDw4w,454
|
|
@@ -4574,19 +4574,19 @@ pulumi_azure_native/redis/redis.py,sha256=jLWJLbx0L04wdrzb9KYcqtJerGC14kIg7nYTvv
|
|
|
4574
4574
|
pulumi_azure_native/redis/redis_firewall_rule.py,sha256=EHuPp76fakHwbMYBnk1Twxu2eJgeO1gx1dMKqifxTJY,12116
|
|
4575
4575
|
pulumi_azure_native/redis/redis_linked_server.py,sha256=oztJgE4867agrJ5M4siQnr2ivFrrz8Rs-Szm-pUvIrk,14411
|
|
4576
4576
|
pulumi_azure_native/redisenterprise/__init__.py,sha256=gJx97htkLcvpyotP3AVL7yFVIXNRVMZCWWmViAoEaKg,716
|
|
4577
|
-
pulumi_azure_native/redisenterprise/_enums.py,sha256=
|
|
4578
|
-
pulumi_azure_native/redisenterprise/_inputs.py,sha256=
|
|
4579
|
-
pulumi_azure_native/redisenterprise/access_policy_assignment.py,sha256=
|
|
4580
|
-
pulumi_azure_native/redisenterprise/database.py,sha256=
|
|
4581
|
-
pulumi_azure_native/redisenterprise/get_access_policy_assignment.py,sha256=
|
|
4582
|
-
pulumi_azure_native/redisenterprise/get_database.py,sha256=
|
|
4583
|
-
pulumi_azure_native/redisenterprise/get_private_endpoint_connection.py,sha256=
|
|
4584
|
-
pulumi_azure_native/redisenterprise/get_redis_enterprise.py,sha256=
|
|
4585
|
-
pulumi_azure_native/redisenterprise/list_database_keys.py,sha256=
|
|
4577
|
+
pulumi_azure_native/redisenterprise/_enums.py,sha256=En6mL2Q6yfGG6ECdjaihMpi1Yp0gWuzV7pFPqXQEuNw,8214
|
|
4578
|
+
pulumi_azure_native/redisenterprise/_inputs.py,sha256=DyR5hxdaskn7ONHKH8JhOi2UEaGdCF3TCl22Pt-W6WM,30696
|
|
4579
|
+
pulumi_azure_native/redisenterprise/access_policy_assignment.py,sha256=yt-yIR6I-LbEhyZD7Sh9BCs1Qsb_OU9d8CSQ_8goJZk,14923
|
|
4580
|
+
pulumi_azure_native/redisenterprise/database.py,sha256=aiwJWA9GRjO8tA1cxThyJGnxMYnL2Rm8FBhxOiSeyfU,28935
|
|
4581
|
+
pulumi_azure_native/redisenterprise/get_access_policy_assignment.py,sha256=TyvU33oUn8zK_8uHH4ppqJXy24lIyJkGrXb_WJjF_OY,9502
|
|
4582
|
+
pulumi_azure_native/redisenterprise/get_database.py,sha256=x6KSZhHQh9--bOsHV2DfRC5F5QZzCB6oB21wynQE9Uw,15964
|
|
4583
|
+
pulumi_azure_native/redisenterprise/get_private_endpoint_connection.py,sha256=n7yRp2wAzPqABRBVeWbLeeVyj1oFp8mfQ4EKcJ4S59I,10208
|
|
4584
|
+
pulumi_azure_native/redisenterprise/get_redis_enterprise.py,sha256=ZMvxDaln1ziimrR91CRZBER2sSvXLf4BAot2tzSwEvk,16259
|
|
4585
|
+
pulumi_azure_native/redisenterprise/list_database_keys.py,sha256=PP14kpqDTY-JLbJ9eb6Se-DZ_WXjHdrsPf8jhyzK2gc,6148
|
|
4586
4586
|
pulumi_azure_native/redisenterprise/list_redis_enterprise_skus_for_scaling.py,sha256=xObogQkiloUZMhagtHD2HNaG4EdqvD3nJ_kXrNKYX4o,4299
|
|
4587
|
-
pulumi_azure_native/redisenterprise/outputs.py,sha256=
|
|
4588
|
-
pulumi_azure_native/redisenterprise/private_endpoint_connection.py,sha256=
|
|
4589
|
-
pulumi_azure_native/redisenterprise/redis_enterprise.py,sha256=
|
|
4587
|
+
pulumi_azure_native/redisenterprise/outputs.py,sha256=nmT_k4evmoeP3pAvotsb1nYhbtIFXoJbtz0nHQZZxrg,38165
|
|
4588
|
+
pulumi_azure_native/redisenterprise/private_endpoint_connection.py,sha256=hqJEg6yDFrhpM6_nNuAulrxfXonORokR0Hr2Jly2UTA,16368
|
|
4589
|
+
pulumi_azure_native/redisenterprise/redis_enterprise.py,sha256=ro7ZlSDsAKY4Sc8ZzwDHknPqZwMIJpy01vbtiqmXVKM,26090
|
|
4590
4590
|
pulumi_azure_native/relationships/__init__.py,sha256=5NDcdTftTdqQQccUZbf9wD2sT4uSfB3u1sJecrVATNI,502
|
|
4591
4591
|
pulumi_azure_native/relationships/_inputs.py,sha256=WShPwDH9I27ntxG_qyeQPUUrTRdZNHIsUfHiO_RFpRA,4502
|
|
4592
4592
|
pulumi_azure_native/relationships/dependency_of_relationship.py,sha256=txqK70lrb0gZTuyjLinPK1AfuqwxHb6wNg6JBphh4SI,9230
|
|
@@ -4721,17 +4721,17 @@ pulumi_azure_native/scvmm/virtual_network.py,sha256=ofthPcYVoIppbu-axVkdDbwQENS-
|
|
|
4721
4721
|
pulumi_azure_native/scvmm/vm_instance_guest_agent.py,sha256=OzttJmlRhn2VpnnNtW_br2CbymLxzZf_NE13adRsslA,13416
|
|
4722
4722
|
pulumi_azure_native/scvmm/vmm_server.py,sha256=VcwnOXzhzpR5QnLZxrnOBOG7CefS2HYVga-8fVJ3PWs,17778
|
|
4723
4723
|
pulumi_azure_native/search/__init__.py,sha256=6ytsffuhq2g7XNTUEP1u9uW7TAbR2FjZWvc5hkETBe4,644
|
|
4724
|
-
pulumi_azure_native/search/_enums.py,sha256=
|
|
4725
|
-
pulumi_azure_native/search/_inputs.py,sha256=
|
|
4726
|
-
pulumi_azure_native/search/get_private_endpoint_connection.py,sha256=
|
|
4727
|
-
pulumi_azure_native/search/get_service.py,sha256=
|
|
4728
|
-
pulumi_azure_native/search/get_shared_private_link_resource.py,sha256=
|
|
4729
|
-
pulumi_azure_native/search/list_admin_key.py,sha256
|
|
4730
|
-
pulumi_azure_native/search/list_query_key_by_search_service.py,sha256=
|
|
4731
|
-
pulumi_azure_native/search/outputs.py,sha256=
|
|
4732
|
-
pulumi_azure_native/search/private_endpoint_connection.py,sha256=
|
|
4733
|
-
pulumi_azure_native/search/service.py,sha256=
|
|
4734
|
-
pulumi_azure_native/search/shared_private_link_resource.py,sha256=
|
|
4724
|
+
pulumi_azure_native/search/_enums.py,sha256=Kzz_ANkI8x_8IoPF06LqmmsdTIdmV0HEnvnIfiJuVi8,12747
|
|
4725
|
+
pulumi_azure_native/search/_inputs.py,sha256=VPaybmv627HSRA7LQf8Y8dmP7y0Q1XL0xCNm1Ptcen8,36379
|
|
4726
|
+
pulumi_azure_native/search/get_private_endpoint_connection.py,sha256=YdpfmjSwwMBNVxnE6J7uFZLFYP1JA3hGc1mSy8lLdL0,8725
|
|
4727
|
+
pulumi_azure_native/search/get_service.py,sha256=kLZu-oJmPjBduYCcGOHIUl0R8Q-XdomWAAkdInKOiLg,25944
|
|
4728
|
+
pulumi_azure_native/search/get_shared_private_link_resource.py,sha256=Kg6NbK4dMLmBDzJZXlED_QDkBlKePHwRXhh4I1jRUP0,8779
|
|
4729
|
+
pulumi_azure_native/search/list_admin_key.py,sha256=fGf1cWh01ggutDuME3WzUUjRzKR1euxwUiwltkWV_eE,5283
|
|
4730
|
+
pulumi_azure_native/search/list_query_key_by_search_service.py,sha256=K9pQyzihLl-EdMA0AsPDOb5fSxo8wqWElBXFSXYkWYo,5562
|
|
4731
|
+
pulumi_azure_native/search/outputs.py,sha256=e8hHMksGuLdmuSAyriNh2Rpc9j6Nj7JQ6p2Fyak43DQ,44340
|
|
4732
|
+
pulumi_azure_native/search/private_endpoint_connection.py,sha256=eL-GZD99cLvCXDLsuc9voTmwBMYNV457pjwxR5SZHAE,13550
|
|
4733
|
+
pulumi_azure_native/search/service.py,sha256=M7jqBS8stkad7e34Os37JXmhLfhnK3-jXkD4hDGStFc,46676
|
|
4734
|
+
pulumi_azure_native/search/shared_private_link_resource.py,sha256=i1cIPrFDVie2pVtYhTjqw-T0A6Swi5Pe8M3oF_GhDLo,13427
|
|
4735
4735
|
pulumi_azure_native/secretsynccontroller/__init__.py,sha256=SP_kc8oX-fcv5rLxkO1pJetYyOt8e7zC0lEcbsSvpKs,502
|
|
4736
4736
|
pulumi_azure_native/secretsynccontroller/_enums.py,sha256=XzzJfCqiBu03UiqK67UY00tkUon9SpFk0i3tJGr4qF0,1201
|
|
4737
4737
|
pulumi_azure_native/secretsynccontroller/_inputs.py,sha256=AUrFKbiVLrxFuapzsW_OUwf5QtiNoXs9B82sh6erLH0,5750
|
|
@@ -5872,7 +5872,7 @@ pulumi_azure_native/workloads/sap_instance.py,sha256=ULExy3GhjIxAsQmvq4FWrIvHD7-
|
|
|
5872
5872
|
pulumi_azure_native/workloads/sap_landscape_monitor.py,sha256=pWyrZsrAYRQDDD7eRZQbTTiNepu0_LQnfBt0ZHSSzAE,13248
|
|
5873
5873
|
pulumi_azure_native/workloads/sap_virtual_instance.py,sha256=HXoGvddemKCL2ux5DiKXbeQJjYIrsbWJY3mVLHzjmwk,25730
|
|
5874
5874
|
pulumi_azure_native/workloads/server_instance.py,sha256=YT7jlDPywuLH0g7msnYKsUNdT_2xUVvh0XujngLxFtM,14422
|
|
5875
|
-
pulumi_azure_native-3.8.
|
|
5876
|
-
pulumi_azure_native-3.8.
|
|
5877
|
-
pulumi_azure_native-3.8.
|
|
5878
|
-
pulumi_azure_native-3.8.
|
|
5875
|
+
pulumi_azure_native-3.8.0a1756942349.dist-info/METADATA,sha256=3PfEgcRrhRw1PTsNvZCdceEhrjZoBtvNBAXhXDcw-ZE,3637
|
|
5876
|
+
pulumi_azure_native-3.8.0a1756942349.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
5877
|
+
pulumi_azure_native-3.8.0a1756942349.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
|
|
5878
|
+
pulumi_azure_native-3.8.0a1756942349.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|