pulumi-azure-native 2.68.0a1729176987__py3-none-any.whl → 2.68.0a1729519840__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.

Files changed (41) hide show
  1. pulumi_azure_native/__init__.py +29 -0
  2. pulumi_azure_native/kubernetes/__init__.py +3 -0
  3. pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
  4. pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
  5. pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
  6. pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
  7. pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
  8. pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
  9. pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +1 -1
  10. pulumi_azure_native/kubernetes/v20240201preview/connected_cluster.py +1 -1
  11. pulumi_azure_native/kubernetes/v20240601preview/connected_cluster.py +1 -1
  12. pulumi_azure_native/kubernetes/v20240701preview/connected_cluster.py +1 -1
  13. pulumi_azure_native/kubernetes/v20240715preview/connected_cluster.py +1 -1
  14. pulumi_azure_native/kubernetes/v20241201preview/__init__.py +13 -0
  15. pulumi_azure_native/kubernetes/v20241201preview/_enums.py +77 -0
  16. pulumi_azure_native/kubernetes/v20241201preview/_inputs.py +559 -0
  17. pulumi_azure_native/kubernetes/v20241201preview/connected_cluster.py +793 -0
  18. pulumi_azure_native/kubernetes/v20241201preview/get_connected_cluster.py +507 -0
  19. pulumi_azure_native/kubernetes/v20241201preview/list_connected_cluster_user_credential.py +114 -0
  20. pulumi_azure_native/kubernetes/v20241201preview/outputs.py +854 -0
  21. pulumi_azure_native/pulumi-plugin.json +1 -1
  22. pulumi_azure_native/secretsynccontroller/__init__.py +22 -0
  23. pulumi_azure_native/secretsynccontroller/_enums.py +38 -0
  24. pulumi_azure_native/secretsynccontroller/_inputs.py +134 -0
  25. pulumi_azure_native/secretsynccontroller/azure_key_vault_secret_provider_class.py +389 -0
  26. pulumi_azure_native/secretsynccontroller/get_azure_key_vault_secret_provider_class.py +243 -0
  27. pulumi_azure_native/secretsynccontroller/get_secret_sync.py +271 -0
  28. pulumi_azure_native/secretsynccontroller/outputs.py +367 -0
  29. pulumi_azure_native/secretsynccontroller/secret_sync.py +429 -0
  30. pulumi_azure_native/secretsynccontroller/v20240821preview/__init__.py +14 -0
  31. pulumi_azure_native/secretsynccontroller/v20240821preview/_enums.py +38 -0
  32. pulumi_azure_native/secretsynccontroller/v20240821preview/_inputs.py +134 -0
  33. pulumi_azure_native/secretsynccontroller/v20240821preview/azure_key_vault_secret_provider_class.py +387 -0
  34. pulumi_azure_native/secretsynccontroller/v20240821preview/get_azure_key_vault_secret_provider_class.py +241 -0
  35. pulumi_azure_native/secretsynccontroller/v20240821preview/get_secret_sync.py +269 -0
  36. pulumi_azure_native/secretsynccontroller/v20240821preview/outputs.py +367 -0
  37. pulumi_azure_native/secretsynccontroller/v20240821preview/secret_sync.py +427 -0
  38. {pulumi_azure_native-2.68.0a1729176987.dist-info → pulumi_azure_native-2.68.0a1729519840.dist-info}/METADATA +1 -1
  39. {pulumi_azure_native-2.68.0a1729176987.dist-info → pulumi_azure_native-2.68.0a1729519840.dist-info}/RECORD +41 -18
  40. {pulumi_azure_native-2.68.0a1729176987.dist-info → pulumi_azure_native-2.68.0a1729519840.dist-info}/WHEEL +0 -0
  41. {pulumi_azure_native-2.68.0a1729176987.dist-info → pulumi_azure_native-2.68.0a1729519840.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,427 @@
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 sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+ from ._enums import *
18
+ from ._inputs import *
19
+
20
+ __all__ = ['SecretSyncArgs', 'SecretSync']
21
+
22
+ @pulumi.input_type
23
+ class SecretSyncArgs:
24
+ def __init__(__self__, *,
25
+ kubernetes_secret_type: pulumi.Input[Union[str, 'KubernetesSecretType']],
26
+ object_secret_mapping: pulumi.Input[Sequence[pulumi.Input['KubernetesSecretObjectMappingArgs']]],
27
+ resource_group_name: pulumi.Input[str],
28
+ secret_provider_class_name: pulumi.Input[str],
29
+ service_account_name: pulumi.Input[str],
30
+ extended_location: Optional[pulumi.Input['AzureResourceManagerCommonTypesExtendedLocationArgs']] = None,
31
+ force_synchronization: Optional[pulumi.Input[str]] = None,
32
+ location: Optional[pulumi.Input[str]] = None,
33
+ secret_sync_name: Optional[pulumi.Input[str]] = None,
34
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
35
+ """
36
+ The set of arguments for constructing a SecretSync resource.
37
+ :param pulumi.Input[Union[str, 'KubernetesSecretType']] kubernetes_secret_type: Type specifies the type of the Kubernetes secret object, e.g. "Opaque" or"kubernetes.io/tls". The controller must have permission to create secrets of the specified type.
38
+ :param pulumi.Input[Sequence[pulumi.Input['KubernetesSecretObjectMappingArgs']]] object_secret_mapping: An array of SecretObjectData that maps secret data from the external secret provider to the Kubernetes secret. Each entry specifies the source secret in the external provider and the corresponding key in the Kubernetes secret.
39
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
40
+ :param pulumi.Input[str] secret_provider_class_name: SecretProviderClassName specifies the name of the SecretProviderClass resource, which contains the information needed to access the cloud provider secret store.
41
+ :param pulumi.Input[str] service_account_name: ServiceAccountName specifies the name of the service account used to access the cloud provider secret store. The audience field in the service account token must be passed as parameter in the controller configuration. The audience is used when requesting a token from the API server for the service account; the supported audiences are defined by each provider.
42
+ :param pulumi.Input['AzureResourceManagerCommonTypesExtendedLocationArgs'] extended_location: The complex type of the extended location.
43
+ :param pulumi.Input[str] force_synchronization: ForceSynchronization can be used to force the secret synchronization. The secret synchronization is triggered by changing the value in this field. This field is not used to resolve synchronization conflicts.
44
+ :param pulumi.Input[str] location: The geo-location where the resource lives
45
+ :param pulumi.Input[str] secret_sync_name: The name of the SecretSync
46
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
47
+ """
48
+ pulumi.set(__self__, "kubernetes_secret_type", kubernetes_secret_type)
49
+ pulumi.set(__self__, "object_secret_mapping", object_secret_mapping)
50
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
51
+ pulumi.set(__self__, "secret_provider_class_name", secret_provider_class_name)
52
+ pulumi.set(__self__, "service_account_name", service_account_name)
53
+ if extended_location is not None:
54
+ pulumi.set(__self__, "extended_location", extended_location)
55
+ if force_synchronization is not None:
56
+ pulumi.set(__self__, "force_synchronization", force_synchronization)
57
+ if location is not None:
58
+ pulumi.set(__self__, "location", location)
59
+ if secret_sync_name is not None:
60
+ pulumi.set(__self__, "secret_sync_name", secret_sync_name)
61
+ if tags is not None:
62
+ pulumi.set(__self__, "tags", tags)
63
+
64
+ @property
65
+ @pulumi.getter(name="kubernetesSecretType")
66
+ def kubernetes_secret_type(self) -> pulumi.Input[Union[str, 'KubernetesSecretType']]:
67
+ """
68
+ Type specifies the type of the Kubernetes secret object, e.g. "Opaque" or"kubernetes.io/tls". The controller must have permission to create secrets of the specified type.
69
+ """
70
+ return pulumi.get(self, "kubernetes_secret_type")
71
+
72
+ @kubernetes_secret_type.setter
73
+ def kubernetes_secret_type(self, value: pulumi.Input[Union[str, 'KubernetesSecretType']]):
74
+ pulumi.set(self, "kubernetes_secret_type", value)
75
+
76
+ @property
77
+ @pulumi.getter(name="objectSecretMapping")
78
+ def object_secret_mapping(self) -> pulumi.Input[Sequence[pulumi.Input['KubernetesSecretObjectMappingArgs']]]:
79
+ """
80
+ An array of SecretObjectData that maps secret data from the external secret provider to the Kubernetes secret. Each entry specifies the source secret in the external provider and the corresponding key in the Kubernetes secret.
81
+ """
82
+ return pulumi.get(self, "object_secret_mapping")
83
+
84
+ @object_secret_mapping.setter
85
+ def object_secret_mapping(self, value: pulumi.Input[Sequence[pulumi.Input['KubernetesSecretObjectMappingArgs']]]):
86
+ pulumi.set(self, "object_secret_mapping", value)
87
+
88
+ @property
89
+ @pulumi.getter(name="resourceGroupName")
90
+ def resource_group_name(self) -> pulumi.Input[str]:
91
+ """
92
+ The name of the resource group. The name is case insensitive.
93
+ """
94
+ return pulumi.get(self, "resource_group_name")
95
+
96
+ @resource_group_name.setter
97
+ def resource_group_name(self, value: pulumi.Input[str]):
98
+ pulumi.set(self, "resource_group_name", value)
99
+
100
+ @property
101
+ @pulumi.getter(name="secretProviderClassName")
102
+ def secret_provider_class_name(self) -> pulumi.Input[str]:
103
+ """
104
+ SecretProviderClassName specifies the name of the SecretProviderClass resource, which contains the information needed to access the cloud provider secret store.
105
+ """
106
+ return pulumi.get(self, "secret_provider_class_name")
107
+
108
+ @secret_provider_class_name.setter
109
+ def secret_provider_class_name(self, value: pulumi.Input[str]):
110
+ pulumi.set(self, "secret_provider_class_name", value)
111
+
112
+ @property
113
+ @pulumi.getter(name="serviceAccountName")
114
+ def service_account_name(self) -> pulumi.Input[str]:
115
+ """
116
+ ServiceAccountName specifies the name of the service account used to access the cloud provider secret store. The audience field in the service account token must be passed as parameter in the controller configuration. The audience is used when requesting a token from the API server for the service account; the supported audiences are defined by each provider.
117
+ """
118
+ return pulumi.get(self, "service_account_name")
119
+
120
+ @service_account_name.setter
121
+ def service_account_name(self, value: pulumi.Input[str]):
122
+ pulumi.set(self, "service_account_name", value)
123
+
124
+ @property
125
+ @pulumi.getter(name="extendedLocation")
126
+ def extended_location(self) -> Optional[pulumi.Input['AzureResourceManagerCommonTypesExtendedLocationArgs']]:
127
+ """
128
+ The complex type of the extended location.
129
+ """
130
+ return pulumi.get(self, "extended_location")
131
+
132
+ @extended_location.setter
133
+ def extended_location(self, value: Optional[pulumi.Input['AzureResourceManagerCommonTypesExtendedLocationArgs']]):
134
+ pulumi.set(self, "extended_location", value)
135
+
136
+ @property
137
+ @pulumi.getter(name="forceSynchronization")
138
+ def force_synchronization(self) -> Optional[pulumi.Input[str]]:
139
+ """
140
+ ForceSynchronization can be used to force the secret synchronization. The secret synchronization is triggered by changing the value in this field. This field is not used to resolve synchronization conflicts.
141
+ """
142
+ return pulumi.get(self, "force_synchronization")
143
+
144
+ @force_synchronization.setter
145
+ def force_synchronization(self, value: Optional[pulumi.Input[str]]):
146
+ pulumi.set(self, "force_synchronization", value)
147
+
148
+ @property
149
+ @pulumi.getter
150
+ def location(self) -> Optional[pulumi.Input[str]]:
151
+ """
152
+ The geo-location where the resource lives
153
+ """
154
+ return pulumi.get(self, "location")
155
+
156
+ @location.setter
157
+ def location(self, value: Optional[pulumi.Input[str]]):
158
+ pulumi.set(self, "location", value)
159
+
160
+ @property
161
+ @pulumi.getter(name="secretSyncName")
162
+ def secret_sync_name(self) -> Optional[pulumi.Input[str]]:
163
+ """
164
+ The name of the SecretSync
165
+ """
166
+ return pulumi.get(self, "secret_sync_name")
167
+
168
+ @secret_sync_name.setter
169
+ def secret_sync_name(self, value: Optional[pulumi.Input[str]]):
170
+ pulumi.set(self, "secret_sync_name", value)
171
+
172
+ @property
173
+ @pulumi.getter
174
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
175
+ """
176
+ Resource tags.
177
+ """
178
+ return pulumi.get(self, "tags")
179
+
180
+ @tags.setter
181
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
182
+ pulumi.set(self, "tags", value)
183
+
184
+
185
+ class SecretSync(pulumi.CustomResource):
186
+ @overload
187
+ def __init__(__self__,
188
+ resource_name: str,
189
+ opts: Optional[pulumi.ResourceOptions] = None,
190
+ extended_location: Optional[pulumi.Input[Union['AzureResourceManagerCommonTypesExtendedLocationArgs', 'AzureResourceManagerCommonTypesExtendedLocationArgsDict']]] = None,
191
+ force_synchronization: Optional[pulumi.Input[str]] = None,
192
+ kubernetes_secret_type: Optional[pulumi.Input[Union[str, 'KubernetesSecretType']]] = None,
193
+ location: Optional[pulumi.Input[str]] = None,
194
+ object_secret_mapping: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KubernetesSecretObjectMappingArgs', 'KubernetesSecretObjectMappingArgsDict']]]]] = None,
195
+ resource_group_name: Optional[pulumi.Input[str]] = None,
196
+ secret_provider_class_name: Optional[pulumi.Input[str]] = None,
197
+ secret_sync_name: Optional[pulumi.Input[str]] = None,
198
+ service_account_name: Optional[pulumi.Input[str]] = None,
199
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
200
+ __props__=None):
201
+ """
202
+ The SecretSync resource.
203
+
204
+ :param str resource_name: The name of the resource.
205
+ :param pulumi.ResourceOptions opts: Options for the resource.
206
+ :param pulumi.Input[Union['AzureResourceManagerCommonTypesExtendedLocationArgs', 'AzureResourceManagerCommonTypesExtendedLocationArgsDict']] extended_location: The complex type of the extended location.
207
+ :param pulumi.Input[str] force_synchronization: ForceSynchronization can be used to force the secret synchronization. The secret synchronization is triggered by changing the value in this field. This field is not used to resolve synchronization conflicts.
208
+ :param pulumi.Input[Union[str, 'KubernetesSecretType']] kubernetes_secret_type: Type specifies the type of the Kubernetes secret object, e.g. "Opaque" or"kubernetes.io/tls". The controller must have permission to create secrets of the specified type.
209
+ :param pulumi.Input[str] location: The geo-location where the resource lives
210
+ :param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesSecretObjectMappingArgs', 'KubernetesSecretObjectMappingArgsDict']]]] object_secret_mapping: An array of SecretObjectData that maps secret data from the external secret provider to the Kubernetes secret. Each entry specifies the source secret in the external provider and the corresponding key in the Kubernetes secret.
211
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
212
+ :param pulumi.Input[str] secret_provider_class_name: SecretProviderClassName specifies the name of the SecretProviderClass resource, which contains the information needed to access the cloud provider secret store.
213
+ :param pulumi.Input[str] secret_sync_name: The name of the SecretSync
214
+ :param pulumi.Input[str] service_account_name: ServiceAccountName specifies the name of the service account used to access the cloud provider secret store. The audience field in the service account token must be passed as parameter in the controller configuration. The audience is used when requesting a token from the API server for the service account; the supported audiences are defined by each provider.
215
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
216
+ """
217
+ ...
218
+ @overload
219
+ def __init__(__self__,
220
+ resource_name: str,
221
+ args: SecretSyncArgs,
222
+ opts: Optional[pulumi.ResourceOptions] = None):
223
+ """
224
+ The SecretSync resource.
225
+
226
+ :param str resource_name: The name of the resource.
227
+ :param SecretSyncArgs args: The arguments to use to populate this resource's properties.
228
+ :param pulumi.ResourceOptions opts: Options for the resource.
229
+ """
230
+ ...
231
+ def __init__(__self__, resource_name: str, *args, **kwargs):
232
+ resource_args, opts = _utilities.get_resource_args_opts(SecretSyncArgs, pulumi.ResourceOptions, *args, **kwargs)
233
+ if resource_args is not None:
234
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
235
+ else:
236
+ __self__._internal_init(resource_name, *args, **kwargs)
237
+
238
+ def _internal_init(__self__,
239
+ resource_name: str,
240
+ opts: Optional[pulumi.ResourceOptions] = None,
241
+ extended_location: Optional[pulumi.Input[Union['AzureResourceManagerCommonTypesExtendedLocationArgs', 'AzureResourceManagerCommonTypesExtendedLocationArgsDict']]] = None,
242
+ force_synchronization: Optional[pulumi.Input[str]] = None,
243
+ kubernetes_secret_type: Optional[pulumi.Input[Union[str, 'KubernetesSecretType']]] = None,
244
+ location: Optional[pulumi.Input[str]] = None,
245
+ object_secret_mapping: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KubernetesSecretObjectMappingArgs', 'KubernetesSecretObjectMappingArgsDict']]]]] = None,
246
+ resource_group_name: Optional[pulumi.Input[str]] = None,
247
+ secret_provider_class_name: Optional[pulumi.Input[str]] = None,
248
+ secret_sync_name: Optional[pulumi.Input[str]] = None,
249
+ service_account_name: Optional[pulumi.Input[str]] = None,
250
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
251
+ __props__=None):
252
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
253
+ if not isinstance(opts, pulumi.ResourceOptions):
254
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
255
+ if opts.id is None:
256
+ if __props__ is not None:
257
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
258
+ __props__ = SecretSyncArgs.__new__(SecretSyncArgs)
259
+
260
+ __props__.__dict__["extended_location"] = extended_location
261
+ __props__.__dict__["force_synchronization"] = force_synchronization
262
+ if kubernetes_secret_type is None and not opts.urn:
263
+ raise TypeError("Missing required property 'kubernetes_secret_type'")
264
+ __props__.__dict__["kubernetes_secret_type"] = kubernetes_secret_type
265
+ __props__.__dict__["location"] = location
266
+ if object_secret_mapping is None and not opts.urn:
267
+ raise TypeError("Missing required property 'object_secret_mapping'")
268
+ __props__.__dict__["object_secret_mapping"] = object_secret_mapping
269
+ if resource_group_name is None and not opts.urn:
270
+ raise TypeError("Missing required property 'resource_group_name'")
271
+ __props__.__dict__["resource_group_name"] = resource_group_name
272
+ if secret_provider_class_name is None and not opts.urn:
273
+ raise TypeError("Missing required property 'secret_provider_class_name'")
274
+ __props__.__dict__["secret_provider_class_name"] = secret_provider_class_name
275
+ __props__.__dict__["secret_sync_name"] = secret_sync_name
276
+ if service_account_name is None and not opts.urn:
277
+ raise TypeError("Missing required property 'service_account_name'")
278
+ __props__.__dict__["service_account_name"] = service_account_name
279
+ __props__.__dict__["tags"] = tags
280
+ __props__.__dict__["name"] = None
281
+ __props__.__dict__["provisioning_state"] = None
282
+ __props__.__dict__["status"] = None
283
+ __props__.__dict__["system_data"] = None
284
+ __props__.__dict__["type"] = None
285
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:secretsynccontroller:SecretSync")])
286
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
287
+ super(SecretSync, __self__).__init__(
288
+ 'azure-native:secretsynccontroller/v20240821preview:SecretSync',
289
+ resource_name,
290
+ __props__,
291
+ opts)
292
+
293
+ @staticmethod
294
+ def get(resource_name: str,
295
+ id: pulumi.Input[str],
296
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'SecretSync':
297
+ """
298
+ Get an existing SecretSync resource's state with the given name, id, and optional extra
299
+ properties used to qualify the lookup.
300
+
301
+ :param str resource_name: The unique name of the resulting resource.
302
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
303
+ :param pulumi.ResourceOptions opts: Options for the resource.
304
+ """
305
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
306
+
307
+ __props__ = SecretSyncArgs.__new__(SecretSyncArgs)
308
+
309
+ __props__.__dict__["extended_location"] = None
310
+ __props__.__dict__["force_synchronization"] = None
311
+ __props__.__dict__["kubernetes_secret_type"] = None
312
+ __props__.__dict__["location"] = None
313
+ __props__.__dict__["name"] = None
314
+ __props__.__dict__["object_secret_mapping"] = None
315
+ __props__.__dict__["provisioning_state"] = None
316
+ __props__.__dict__["secret_provider_class_name"] = None
317
+ __props__.__dict__["service_account_name"] = None
318
+ __props__.__dict__["status"] = None
319
+ __props__.__dict__["system_data"] = None
320
+ __props__.__dict__["tags"] = None
321
+ __props__.__dict__["type"] = None
322
+ return SecretSync(resource_name, opts=opts, __props__=__props__)
323
+
324
+ @property
325
+ @pulumi.getter(name="extendedLocation")
326
+ def extended_location(self) -> pulumi.Output[Optional['outputs.AzureResourceManagerCommonTypesExtendedLocationResponse']]:
327
+ """
328
+ The complex type of the extended location.
329
+ """
330
+ return pulumi.get(self, "extended_location")
331
+
332
+ @property
333
+ @pulumi.getter(name="forceSynchronization")
334
+ def force_synchronization(self) -> pulumi.Output[Optional[str]]:
335
+ """
336
+ ForceSynchronization can be used to force the secret synchronization. The secret synchronization is triggered by changing the value in this field. This field is not used to resolve synchronization conflicts.
337
+ """
338
+ return pulumi.get(self, "force_synchronization")
339
+
340
+ @property
341
+ @pulumi.getter(name="kubernetesSecretType")
342
+ def kubernetes_secret_type(self) -> pulumi.Output[str]:
343
+ """
344
+ Type specifies the type of the Kubernetes secret object, e.g. "Opaque" or"kubernetes.io/tls". The controller must have permission to create secrets of the specified type.
345
+ """
346
+ return pulumi.get(self, "kubernetes_secret_type")
347
+
348
+ @property
349
+ @pulumi.getter
350
+ def location(self) -> pulumi.Output[str]:
351
+ """
352
+ The geo-location where the resource lives
353
+ """
354
+ return pulumi.get(self, "location")
355
+
356
+ @property
357
+ @pulumi.getter
358
+ def name(self) -> pulumi.Output[str]:
359
+ """
360
+ The name of the resource
361
+ """
362
+ return pulumi.get(self, "name")
363
+
364
+ @property
365
+ @pulumi.getter(name="objectSecretMapping")
366
+ def object_secret_mapping(self) -> pulumi.Output[Sequence['outputs.KubernetesSecretObjectMappingResponse']]:
367
+ """
368
+ An array of SecretObjectData that maps secret data from the external secret provider to the Kubernetes secret. Each entry specifies the source secret in the external provider and the corresponding key in the Kubernetes secret.
369
+ """
370
+ return pulumi.get(self, "object_secret_mapping")
371
+
372
+ @property
373
+ @pulumi.getter(name="provisioningState")
374
+ def provisioning_state(self) -> pulumi.Output[str]:
375
+ """
376
+ Provisioning state of the SecretSync instance.
377
+ """
378
+ return pulumi.get(self, "provisioning_state")
379
+
380
+ @property
381
+ @pulumi.getter(name="secretProviderClassName")
382
+ def secret_provider_class_name(self) -> pulumi.Output[str]:
383
+ """
384
+ SecretProviderClassName specifies the name of the SecretProviderClass resource, which contains the information needed to access the cloud provider secret store.
385
+ """
386
+ return pulumi.get(self, "secret_provider_class_name")
387
+
388
+ @property
389
+ @pulumi.getter(name="serviceAccountName")
390
+ def service_account_name(self) -> pulumi.Output[str]:
391
+ """
392
+ ServiceAccountName specifies the name of the service account used to access the cloud provider secret store. The audience field in the service account token must be passed as parameter in the controller configuration. The audience is used when requesting a token from the API server for the service account; the supported audiences are defined by each provider.
393
+ """
394
+ return pulumi.get(self, "service_account_name")
395
+
396
+ @property
397
+ @pulumi.getter
398
+ def status(self) -> pulumi.Output['outputs.SecretSyncStatusResponse']:
399
+ """
400
+ SecretSyncStatus defines the observed state of the secret synchronization process.
401
+ """
402
+ return pulumi.get(self, "status")
403
+
404
+ @property
405
+ @pulumi.getter(name="systemData")
406
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
407
+ """
408
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
409
+ """
410
+ return pulumi.get(self, "system_data")
411
+
412
+ @property
413
+ @pulumi.getter
414
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
415
+ """
416
+ Resource tags.
417
+ """
418
+ return pulumi.get(self, "tags")
419
+
420
+ @property
421
+ @pulumi.getter
422
+ def type(self) -> pulumi.Output[str]:
423
+ """
424
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
425
+ """
426
+ return pulumi.get(self, "type")
427
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_azure_native
3
- Version: 2.68.0a1729176987
3
+ Version: 2.68.0a1729519840
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,7 +1,7 @@
1
- pulumi_azure_native/__init__.py,sha256=h16Cjxd4zqW3jm5ZyqN9nZncZAhjnByjOp8-DsCEnkM,1075249
1
+ pulumi_azure_native/__init__.py,sha256=GO2FpK8SbeNuZqzpcF5XXgBJ-VQz5sCKcKFec5sUvYE,1076393
2
2
  pulumi_azure_native/_utilities.py,sha256=UL5vEmfNrBfiaeFQS69cz7xlHoBnPH8PY_UIVNwShcM,10486
3
3
  pulumi_azure_native/provider.py,sha256=ijD50GjYD0xTGWJVAR_zi8DRpow_AcfiaEDdwOwh-D8,23052
4
- pulumi_azure_native/pulumi-plugin.json,sha256=C3PqRceKKU916KHdJ_jE7cyhDDGtnD-Nm71EyyS0USo,89
4
+ pulumi_azure_native/pulumi-plugin.json,sha256=J5S9kCw_tKrz7rklawUr3N5JjWUiBWyoXOtMvoLvZeE,89
5
5
  pulumi_azure_native/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  pulumi_azure_native/aad/__init__.py,sha256=O2XPJyft-EiRyZdbKAbADw_hWhoH_Yn8KOwWpJprjs0,669
7
7
  pulumi_azure_native/aad/_enums.py,sha256=nEE4b-gxeGR_DXhJA6WTIznl4AA5UmVTKpvu2PV66RE,3419
@@ -14319,12 +14319,12 @@ pulumi_azure_native/keyvault/v20240401preview/outputs.py,sha256=cmlz_JhD2ksw9Xt0
14319
14319
  pulumi_azure_native/keyvault/v20240401preview/private_endpoint_connection.py,sha256=T683AYCx_TuGh1Dkx2GkCk1ylp0uaQ_ZmMxrXtTxvTU,12894
14320
14320
  pulumi_azure_native/keyvault/v20240401preview/secret.py,sha256=4i0a9_C6Od1C-YBf27nd6rTuhnUQi8BAZCs4jzwtu2o,11502
14321
14321
  pulumi_azure_native/keyvault/v20240401preview/vault.py,sha256=wWO5Zvm6vLEb_sdBc6BmXQNFsaEzWtRIiFXJaUNGAnY,11371
14322
- pulumi_azure_native/kubernetes/__init__.py,sha256=cJsZM5EczNXH0g4zT8z3mWCA6Ijgmh1Yz1QNYW7zeWU,2498
14322
+ pulumi_azure_native/kubernetes/__init__.py,sha256=5VRnCQ07oJ74RlFytZHK1r_vqNSdyKHd2eUDP986P10,2718
14323
14323
  pulumi_azure_native/kubernetes/_enums.py,sha256=isZzw_Vi4Ts_qi80hrjb52hqlahj6NpWQPk-gKx6Fz8,1237
14324
14324
  pulumi_azure_native/kubernetes/_inputs.py,sha256=oGF0mtDW0moYt8-wCaig-ZlFfpUU9oaBC4mivBwlZ6w,2174
14325
- pulumi_azure_native/kubernetes/connected_cluster.py,sha256=gmB7v5RAVYsV21BApPnoSEBJn3xspgM_NzEabjqt4pE,24957
14326
- pulumi_azure_native/kubernetes/get_connected_cluster.py,sha256=GBHoe4oFBuFkxFqGoEIhK9_Zdv1ee4O9oAZqG941ZWg,17523
14327
- pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py,sha256=W_NlDt23m016zRHD4Jftp3r3FSg_zwW04IxyXdcaklQ,6317
14325
+ pulumi_azure_native/kubernetes/connected_cluster.py,sha256=-zajP9asqDWmiDZdLRTpVyxrY0S2-peOPQktRxagwsg,25078
14326
+ pulumi_azure_native/kubernetes/get_connected_cluster.py,sha256=e5GyVQ2ShB7uKCkHXPRs90jgFue5tziqwhwSPiXafyw,17563
14327
+ pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py,sha256=m5msRYPo7r2MJQORBHiOzua0wUB3imSegpowKR_gGNI,6357
14328
14328
  pulumi_azure_native/kubernetes/list_connected_cluster_user_credentials.py,sha256=Gzq_GR24XwCsojBppggO887TC2QYhG7dsMmFJ3ewqg0,6119
14329
14329
  pulumi_azure_native/kubernetes/outputs.py,sha256=alVu1eewYYOLqXzGVQigNiHNZPg9m57c2a-w1-ClL0c,9894
14330
14330
  pulumi_azure_native/kubernetes/v20210401preview/__init__.py,sha256=SAOjE72i_5utrvx8gn1FG17IhZN6iebJMdlcOzZttzM,351
@@ -14334,59 +14334,66 @@ pulumi_azure_native/kubernetes/v20210401preview/outputs.py,sha256=R9MtDOR1vKNENe
14334
14334
  pulumi_azure_native/kubernetes/v20220501preview/__init__.py,sha256=U7roluLVhGF7F5Re078hQppuUTs5rbKhYhPoDRgkzXk,443
14335
14335
  pulumi_azure_native/kubernetes/v20220501preview/_enums.py,sha256=isZzw_Vi4Ts_qi80hrjb52hqlahj6NpWQPk-gKx6Fz8,1237
14336
14336
  pulumi_azure_native/kubernetes/v20220501preview/_inputs.py,sha256=ixuHpTWb3xi3tCJlLjc7s-690KAC3xzIgZYQ2CyC3eM,2175
14337
- pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py,sha256=bGMjbZWeCuS5qISIbPN6Vv8_0Ws-jo79QuTnkPp__gU,24370
14337
+ pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py,sha256=VcxSetTGVHsaAbU5lRRaCfvjCJyOa8kHLCjJU5RrP8U,24451
14338
14338
  pulumi_azure_native/kubernetes/v20220501preview/get_connected_cluster.py,sha256=VPLbIywhhPV5svT6zLxn3Ym93gcrEDlR-7HSb3zEQ5c,17088
14339
14339
  pulumi_azure_native/kubernetes/v20220501preview/list_connected_cluster_user_credential.py,sha256=ul9-FaID9KsoYlD4edIzaOVrRoZ7oEyamUoX0Ll91PA,5922
14340
14340
  pulumi_azure_native/kubernetes/v20220501preview/outputs.py,sha256=UR4KAS7MaMtJY8cwtEEQykjefk-ogPRFT1nivEKC4vk,9895
14341
14341
  pulumi_azure_native/kubernetes/v20221001preview/__init__.py,sha256=U7roluLVhGF7F5Re078hQppuUTs5rbKhYhPoDRgkzXk,443
14342
14342
  pulumi_azure_native/kubernetes/v20221001preview/_enums.py,sha256=E9y1hSxFgjJg-DHLozOrGCIGh_JkeFi1SDx22vo0Rfo,1448
14343
14343
  pulumi_azure_native/kubernetes/v20221001preview/_inputs.py,sha256=ixuHpTWb3xi3tCJlLjc7s-690KAC3xzIgZYQ2CyC3eM,2175
14344
- pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py,sha256=cF0ee1ZnX50J6gGGvUcbY2Tq6VMYRUWnrjg7k9QX-Ok,28014
14344
+ pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py,sha256=lVkwe1W274SordJnMp-rOxZMyxXN00P3W5-LqBFnVYc,28095
14345
14345
  pulumi_azure_native/kubernetes/v20221001preview/get_connected_cluster.py,sha256=xxsnlSBKH2M_RbMxRwVaacAB2yWA7JhAKU4pm56Rm1k,19359
14346
14346
  pulumi_azure_native/kubernetes/v20221001preview/list_connected_cluster_user_credential.py,sha256=19AbEnr3sznd5dXnaB2YeLUCOpcOuG0zyvTNlyEa-Aw,5922
14347
14347
  pulumi_azure_native/kubernetes/v20221001preview/outputs.py,sha256=UR4KAS7MaMtJY8cwtEEQykjefk-ogPRFT1nivEKC4vk,9895
14348
14348
  pulumi_azure_native/kubernetes/v20231101preview/__init__.py,sha256=U7roluLVhGF7F5Re078hQppuUTs5rbKhYhPoDRgkzXk,443
14349
14349
  pulumi_azure_native/kubernetes/v20231101preview/_enums.py,sha256=KMZ6eZHLT8e5hAFNwPM-V2iwJ9Yrj6t1aioFfMElICI,1860
14350
14350
  pulumi_azure_native/kubernetes/v20231101preview/_inputs.py,sha256=7nRUtvpxIKWfaFtu9yVr0ALPOSMrH--OgIej0rjHXJQ,8158
14351
- pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py,sha256=iebEZW_ynlU4UQ4bG06SAu42RYA-q-DMw9U6j0h-6uU,32182
14351
+ pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py,sha256=0mvsdqqg4c-VOZU80v33hwCNr40I8ZIDsRy4flfpjpQ,32263
14352
14352
  pulumi_azure_native/kubernetes/v20231101preview/get_connected_cluster.py,sha256=IizzWWT2Je0nrtlPsG-8M9wIYR8hAwdlo-ImBDK424A,21153
14353
14353
  pulumi_azure_native/kubernetes/v20231101preview/list_connected_cluster_user_credential.py,sha256=gjrjSPV5_7CLmtVGSS0dVq6FhbQQLJtRk24L5f3RT_0,5922
14354
14354
  pulumi_azure_native/kubernetes/v20231101preview/outputs.py,sha256=oG1jOD9I9xGQoplVWUbK5OZyX93QIUYqO-1f1M-mn5c,14912
14355
14355
  pulumi_azure_native/kubernetes/v20240101/__init__.py,sha256=U7roluLVhGF7F5Re078hQppuUTs5rbKhYhPoDRgkzXk,443
14356
14356
  pulumi_azure_native/kubernetes/v20240101/_enums.py,sha256=KMZ6eZHLT8e5hAFNwPM-V2iwJ9Yrj6t1aioFfMElICI,1860
14357
14357
  pulumi_azure_native/kubernetes/v20240101/_inputs.py,sha256=7nRUtvpxIKWfaFtu9yVr0ALPOSMrH--OgIej0rjHXJQ,8158
14358
- pulumi_azure_native/kubernetes/v20240101/connected_cluster.py,sha256=w-e8SIultbY9uwTd1sqJsOz4M8zuvbEboPLN9xb-POI,32182
14358
+ pulumi_azure_native/kubernetes/v20240101/connected_cluster.py,sha256=xrSJHQr3qBws1_5Jx6ute0yaXVv37f4Y-OIAtIo0KJ0,32263
14359
14359
  pulumi_azure_native/kubernetes/v20240101/get_connected_cluster.py,sha256=kIWCKR-2TDIAlsG1wqYHhwP6IcnSAb2ePJCtUyV5K6c,21139
14360
14360
  pulumi_azure_native/kubernetes/v20240101/list_connected_cluster_user_credential.py,sha256=aC1xPI0MWNdtdkP3fXkx8rHCupr16YKjUFo6xo6ESZk,5908
14361
14361
  pulumi_azure_native/kubernetes/v20240101/outputs.py,sha256=oG1jOD9I9xGQoplVWUbK5OZyX93QIUYqO-1f1M-mn5c,14912
14362
14362
  pulumi_azure_native/kubernetes/v20240201preview/__init__.py,sha256=U7roluLVhGF7F5Re078hQppuUTs5rbKhYhPoDRgkzXk,443
14363
14363
  pulumi_azure_native/kubernetes/v20240201preview/_enums.py,sha256=KMZ6eZHLT8e5hAFNwPM-V2iwJ9Yrj6t1aioFfMElICI,1860
14364
14364
  pulumi_azure_native/kubernetes/v20240201preview/_inputs.py,sha256=6VxcVwWS1YCIs6-KmJDucg-epdpC9LUvzHjza4zswm0,12220
14365
- pulumi_azure_native/kubernetes/v20240201preview/connected_cluster.py,sha256=VJ6PLmE0uJXrXzIj61JvCvBfYuJ4-AMRie-4ltg1vSI,32182
14365
+ pulumi_azure_native/kubernetes/v20240201preview/connected_cluster.py,sha256=91lUqEwCeL9zLLXo8viorv688CLv21n8PvClUx19wUA,32263
14366
14366
  pulumi_azure_native/kubernetes/v20240201preview/get_connected_cluster.py,sha256=v1Like9onLAomL0ylOg6xvhmSIL_H_3sXaHOEfvOjr4,21153
14367
14367
  pulumi_azure_native/kubernetes/v20240201preview/list_connected_cluster_user_credential.py,sha256=qwj1gzvNHpkfyl8TKs7Ou7-zg7uovatwRy7qTcLJHuM,5922
14368
14368
  pulumi_azure_native/kubernetes/v20240201preview/outputs.py,sha256=17FLuGAkHU6buMlODXvlRPg1VHNU_rZKHqU6C7JrG2o,20931
14369
14369
  pulumi_azure_native/kubernetes/v20240601preview/__init__.py,sha256=U7roluLVhGF7F5Re078hQppuUTs5rbKhYhPoDRgkzXk,443
14370
14370
  pulumi_azure_native/kubernetes/v20240601preview/_enums.py,sha256=KMZ6eZHLT8e5hAFNwPM-V2iwJ9Yrj6t1aioFfMElICI,1860
14371
14371
  pulumi_azure_native/kubernetes/v20240601preview/_inputs.py,sha256=pZ-2jyiiRuGK7uZ_Nmk4h2RxvNrLV8CeN-jM1x1yBfY,17224
14372
- pulumi_azure_native/kubernetes/v20240601preview/connected_cluster.py,sha256=XGCEp4U4wS1MqwVrMRIp-qAn8KMb-s4xy_9lpckBHzo,35658
14372
+ pulumi_azure_native/kubernetes/v20240601preview/connected_cluster.py,sha256=4_U6gsfaPsG7AqdUiWru2BB7e3pMK_i8EJXY5o9IAOI,35739
14373
14373
  pulumi_azure_native/kubernetes/v20240601preview/get_connected_cluster.py,sha256=pVdEeUGD4F6no--vL2jqHLHjXt4qhbgs_py7a7e7tvs,22669
14374
14374
  pulumi_azure_native/kubernetes/v20240601preview/list_connected_cluster_user_credential.py,sha256=Hwl4loTAgcU1wf1FWn4PJ74fO6MiGINmTWCgRBbRBnI,5922
14375
14375
  pulumi_azure_native/kubernetes/v20240601preview/outputs.py,sha256=XQlrwWzWT1rSPZ0hCI4stFR_r1UxmNHU1eqBFZL4YtQ,26289
14376
14376
  pulumi_azure_native/kubernetes/v20240701preview/__init__.py,sha256=U7roluLVhGF7F5Re078hQppuUTs5rbKhYhPoDRgkzXk,443
14377
14377
  pulumi_azure_native/kubernetes/v20240701preview/_enums.py,sha256=KMZ6eZHLT8e5hAFNwPM-V2iwJ9Yrj6t1aioFfMElICI,1860
14378
14378
  pulumi_azure_native/kubernetes/v20240701preview/_inputs.py,sha256=uNbXaHNbwcUxzPdT6vmvN8AoZepvAWNPoKPSReOoy4c,22270
14379
- pulumi_azure_native/kubernetes/v20240701preview/connected_cluster.py,sha256=MltsGpRZA7OKI1XVq_hc-T3VwCI3Xb5FCpX3m4Z_VYk,39143
14379
+ pulumi_azure_native/kubernetes/v20240701preview/connected_cluster.py,sha256=oi9aR9_dXrU4NPyJqLnfKWVhoTr7H2JRDT_Clat6eJA,39224
14380
14380
  pulumi_azure_native/kubernetes/v20240701preview/get_connected_cluster.py,sha256=2I1uQikKnP6Sm-8bgNDWl8JJCfAa4LTN0jkoCb9cX2c,24127
14381
14381
  pulumi_azure_native/kubernetes/v20240701preview/list_connected_cluster_user_credential.py,sha256=Ic1aJeMe2LRBQ0n3sY88KEezoMbkLWK8GXoyRZAmNp0,5922
14382
14382
  pulumi_azure_native/kubernetes/v20240701preview/outputs.py,sha256=saR9VrZd-NoobSGnYli96yoeJ4MT-i175I8011BJ2HY,30354
14383
14383
  pulumi_azure_native/kubernetes/v20240715preview/__init__.py,sha256=U7roluLVhGF7F5Re078hQppuUTs5rbKhYhPoDRgkzXk,443
14384
14384
  pulumi_azure_native/kubernetes/v20240715preview/_enums.py,sha256=KMZ6eZHLT8e5hAFNwPM-V2iwJ9Yrj6t1aioFfMElICI,1860
14385
14385
  pulumi_azure_native/kubernetes/v20240715preview/_inputs.py,sha256=uNbXaHNbwcUxzPdT6vmvN8AoZepvAWNPoKPSReOoy4c,22270
14386
- pulumi_azure_native/kubernetes/v20240715preview/connected_cluster.py,sha256=tIE3cr4UR4eFFTrOIOdAgwFIBzYR2jDSVuQJXtqZ7x0,39143
14386
+ pulumi_azure_native/kubernetes/v20240715preview/connected_cluster.py,sha256=Usl0yyPEeJKpvCAZv3_kgBmvu8I0xkePvA0s3ts1ZGY,39224
14387
14387
  pulumi_azure_native/kubernetes/v20240715preview/get_connected_cluster.py,sha256=gqmnp5-aEC6MVQTo5vA6TmAEE4gNCJG9_BqcshY_Z3M,24127
14388
14388
  pulumi_azure_native/kubernetes/v20240715preview/list_connected_cluster_user_credential.py,sha256=O_pAdba0hx_P5mMGpgLx14ccvl2e_PQ0nJAEMFxMXww,5922
14389
14389
  pulumi_azure_native/kubernetes/v20240715preview/outputs.py,sha256=wvovSIWLiVcWyYS0XZdeui_DNL0DnRlY9rTb7pzyPUQ,30985
14390
+ pulumi_azure_native/kubernetes/v20241201preview/__init__.py,sha256=U7roluLVhGF7F5Re078hQppuUTs5rbKhYhPoDRgkzXk,443
14391
+ pulumi_azure_native/kubernetes/v20241201preview/_enums.py,sha256=SIVNhQ1ZZuESjbflXiYbdgOYdWkEuqSItW3WnRmkfoQ,1876
14392
+ pulumi_azure_native/kubernetes/v20241201preview/_inputs.py,sha256=uNbXaHNbwcUxzPdT6vmvN8AoZepvAWNPoKPSReOoy4c,22270
14393
+ pulumi_azure_native/kubernetes/v20241201preview/connected_cluster.py,sha256=KUmkryr5CkLLDI0daacLsBMPIv5wOGOHRfTWaJxWv8E,39224
14394
+ pulumi_azure_native/kubernetes/v20241201preview/get_connected_cluster.py,sha256=qmPM3nC2t2EFfcH2dkq0TWdhJrhEbor6a_nbVEGKJrg,24127
14395
+ pulumi_azure_native/kubernetes/v20241201preview/list_connected_cluster_user_credential.py,sha256=nFdQe-JSq5j2tCDULovDhCJ7MKms9ROLhlfJQ04XfUQ,5922
14396
+ pulumi_azure_native/kubernetes/v20241201preview/outputs.py,sha256=wvovSIWLiVcWyYS0XZdeui_DNL0DnRlY9rTb7pzyPUQ,30985
14390
14397
  pulumi_azure_native/kubernetesconfiguration/__init__.py,sha256=FQWhDHU0SrMLN2lvu1BF296_xAF96GVq4Dd1c9-AMkQ,2399
14391
14398
  pulumi_azure_native/kubernetesconfiguration/_enums.py,sha256=VTOU5ObwapCfX2V011eJYfN8gUKdFA_uN5kYRxnwuk8,2216
14392
14399
  pulumi_azure_native/kubernetesconfiguration/_inputs.py,sha256=2VwmD6xKmj0qtgerEoiA_NMGHv8RIHorgiy-DgEA5I8,74274
@@ -22393,6 +22400,22 @@ pulumi_azure_native/search/v20240601preview/outputs.py,sha256=EalqcFNkbbXOtqXtOa
22393
22400
  pulumi_azure_native/search/v20240601preview/private_endpoint_connection.py,sha256=GfMU5YcWT2OUdLd6TWEk4qqs3U7CRpS2L9_iC7TKyFs,11368
22394
22401
  pulumi_azure_native/search/v20240601preview/service.py,sha256=7ecj3DVPHXMWqymWTWEoO3HREB3SQLX07lSmc0jR3UQ,39153
22395
22402
  pulumi_azure_native/search/v20240601preview/shared_private_link_resource.py,sha256=bmu4P7Ec-yQF-wFDk9pkIMYEKvo85BioklCiEWJNFP0,11245
22403
+ pulumi_azure_native/secretsynccontroller/__init__.py,sha256=Y7yCXyVtQa4-vm0KLXdkXaHFy0kfGFP_lvwB5Xp8Kdg,789
22404
+ pulumi_azure_native/secretsynccontroller/_enums.py,sha256=FTwG8EVglQGKR6I_MgNQNaLV5m9MkNdNOeG17kfCaAo,999
22405
+ pulumi_azure_native/secretsynccontroller/_inputs.py,sha256=ZX9F6Y8A_SYCLW46lmWonRFdJItz7GaAThowTjCWikM,5554
22406
+ pulumi_azure_native/secretsynccontroller/azure_key_vault_secret_provider_class.py,sha256=d_uh7MGxSACvfFH3wLXzfsb9nml_Edv6xuceAnZCx3c,17785
22407
+ pulumi_azure_native/secretsynccontroller/get_azure_key_vault_secret_provider_class.py,sha256=Gtbu7Hldh6WCZyyySmwjyAS09RZiCgA2bIXOft9s7xw,10656
22408
+ pulumi_azure_native/secretsynccontroller/get_secret_sync.py,sha256=qWarsBBMTxGPyk8uJf395clJnOs4ft0pE9wKOKYA9lw,12693
22409
+ pulumi_azure_native/secretsynccontroller/outputs.py,sha256=OXmeqI9kJxQqky3YmatWthzXsDqb-s_qOyT8k6xEi1A,16550
22410
+ pulumi_azure_native/secretsynccontroller/secret_sync.py,sha256=T9iGt2DGkvkG9dWB84JFdUWnpb2DhzFk6Ojw5VyO2NQ,23578
22411
+ pulumi_azure_native/secretsynccontroller/v20240821preview/__init__.py,sha256=xrZznmgI7sueASo66PhpvCxK6uSBQeD24BXVn2BpPNo,487
22412
+ pulumi_azure_native/secretsynccontroller/v20240821preview/_enums.py,sha256=FTwG8EVglQGKR6I_MgNQNaLV5m9MkNdNOeG17kfCaAo,999
22413
+ pulumi_azure_native/secretsynccontroller/v20240821preview/_inputs.py,sha256=0qVlNThpKpqKLQ7yrpUq4Es-DFqeZwScjWOTDx8pXaM,5555
22414
+ pulumi_azure_native/secretsynccontroller/v20240821preview/azure_key_vault_secret_provider_class.py,sha256=eBq3hPcJbmIEtxlFpB7WG1Y7YhxmfDbtd7Sy90GnMzw,17682
22415
+ pulumi_azure_native/secretsynccontroller/v20240821preview/get_azure_key_vault_secret_provider_class.py,sha256=GzG62f6vrQnOFls2Bb80ORYHfS9DHWokuaZ4kcp98vA,10595
22416
+ pulumi_azure_native/secretsynccontroller/v20240821preview/get_secret_sync.py,sha256=xl1dT9w6-dVtRrtXA93yq0rz8-4np4WJETfaAR6kphg,12632
22417
+ pulumi_azure_native/secretsynccontroller/v20240821preview/outputs.py,sha256=UXLsq70uN8lv4Xh88FjU_dtQoS58VibmiTm8Ro8QnrI,16551
22418
+ pulumi_azure_native/secretsynccontroller/v20240821preview/secret_sync.py,sha256=3op4a0GsvQSxCMe9w6mAJy6d2ODgKdOM0-7GflOpMsc,23475
22396
22419
  pulumi_azure_native/security/__init__.py,sha256=4oyCFPSRTxoG2Hl6qTd-FAgORmU7AdNQNMWjwNhSqag,8668
22397
22420
  pulumi_azure_native/security/_enums.py,sha256=EKET1nRmnM04T_UBJksq0IPJm6E6UrPCLCls44sjETs,27797
22398
22421
  pulumi_azure_native/security/_inputs.py,sha256=qZmu1TDGDohlhjnOFqnLQz-guuKZiWxlxZI9IvPT6dM,364244
@@ -28604,7 +28627,7 @@ pulumi_azure_native/workloads/v20240901/sap_application_server_instance.py,sha25
28604
28627
  pulumi_azure_native/workloads/v20240901/sap_central_server_instance.py,sha256=eorizuwGPlHaa-R7seqv1ZW7oqM3Ae68X_EUHHfHMzQ,16551
28605
28628
  pulumi_azure_native/workloads/v20240901/sap_database_instance.py,sha256=glkxQJ8mHANMOyZ_m_GEUO9doepUAPxuPshRLYxwaMU,14157
28606
28629
  pulumi_azure_native/workloads/v20240901/sap_virtual_instance.py,sha256=FKSG8o-qximHgOX3bz9Wcr72SXnw3-ZWw4rhhtuEyBA,24387
28607
- pulumi_azure_native-2.68.0a1729176987.dist-info/METADATA,sha256=INImr2frwU3j-CHhCQPfsw6OlyBT86GpURzI8KX0dOA,4205
28608
- pulumi_azure_native-2.68.0a1729176987.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
28609
- pulumi_azure_native-2.68.0a1729176987.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
28610
- pulumi_azure_native-2.68.0a1729176987.dist-info/RECORD,,
28630
+ pulumi_azure_native-2.68.0a1729519840.dist-info/METADATA,sha256=93HX-df0KRDxwDAshAh-GRUU1i3miAbI03e00PMcnfI,4205
28631
+ pulumi_azure_native-2.68.0a1729519840.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
28632
+ pulumi_azure_native-2.68.0a1729519840.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
28633
+ pulumi_azure_native-2.68.0a1729519840.dist-info/RECORD,,