pulumi-azure-native 3.2.0__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.0.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.2.0.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/RECORD +51 -45
- {pulumi_azure_native-3.2.0.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-3.2.0.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/top_level.txt +0 -0
pulumi_azure_native/__init__.py
CHANGED
|
@@ -353,6 +353,8 @@ if typing.TYPE_CHECKING:
|
|
|
353
353
|
offazure = __offazure
|
|
354
354
|
import pulumi_azure_native.offazurespringboot as __offazurespringboot
|
|
355
355
|
offazurespringboot = __offazurespringboot
|
|
356
|
+
import pulumi_azure_native.onlineexperimentation as __onlineexperimentation
|
|
357
|
+
onlineexperimentation = __onlineexperimentation
|
|
356
358
|
import pulumi_azure_native.openenergyplatform as __openenergyplatform
|
|
357
359
|
openenergyplatform = __openenergyplatform
|
|
358
360
|
import pulumi_azure_native.operationalinsights as __operationalinsights
|
|
@@ -678,6 +680,7 @@ else:
|
|
|
678
680
|
notificationhubs = _utilities.lazy_import('pulumi_azure_native.notificationhubs')
|
|
679
681
|
offazure = _utilities.lazy_import('pulumi_azure_native.offazure')
|
|
680
682
|
offazurespringboot = _utilities.lazy_import('pulumi_azure_native.offazurespringboot')
|
|
683
|
+
onlineexperimentation = _utilities.lazy_import('pulumi_azure_native.onlineexperimentation')
|
|
681
684
|
openenergyplatform = _utilities.lazy_import('pulumi_azure_native.openenergyplatform')
|
|
682
685
|
operationalinsights = _utilities.lazy_import('pulumi_azure_native.operationalinsights')
|
|
683
686
|
operationsmanagement = _utilities.lazy_import('pulumi_azure_native.operationsmanagement')
|
|
@@ -3488,6 +3491,14 @@ _utilities.register(
|
|
|
3488
3491
|
"azure-native:offazurespringboot:Springbootsite": "Springbootsite"
|
|
3489
3492
|
}
|
|
3490
3493
|
},
|
|
3494
|
+
{
|
|
3495
|
+
"pkg": "azure-native",
|
|
3496
|
+
"mod": "onlineexperimentation",
|
|
3497
|
+
"fqn": "pulumi_azure_native.onlineexperimentation",
|
|
3498
|
+
"classes": {
|
|
3499
|
+
"azure-native:onlineexperimentation:OnlineExperimentWorkspace": "OnlineExperimentWorkspace"
|
|
3500
|
+
}
|
|
3501
|
+
},
|
|
3491
3502
|
{
|
|
3492
3503
|
"pkg": "azure-native",
|
|
3493
3504
|
"mod": "openenergyplatform",
|
|
@@ -104,6 +104,8 @@ class Assessment(pulumi.CustomResource):
|
|
|
104
104
|
|
|
105
105
|
Uses Azure REST API version 2023-09-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01-preview.
|
|
106
106
|
|
|
107
|
+
Other available API versions: 2024-11-18-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
108
|
+
|
|
107
109
|
:param str resource_name: The name of the resource.
|
|
108
110
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
109
111
|
:param pulumi.Input[str] assessment_name: Advisor assessment name.
|
|
@@ -122,6 +124,8 @@ class Assessment(pulumi.CustomResource):
|
|
|
122
124
|
|
|
123
125
|
Uses Azure REST API version 2023-09-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01-preview.
|
|
124
126
|
|
|
127
|
+
Other available API versions: 2024-11-18-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
128
|
+
|
|
125
129
|
:param str resource_name: The name of the resource.
|
|
126
130
|
:param AssessmentArgs args: The arguments to use to populate this resource's properties.
|
|
127
131
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -164,7 +168,7 @@ class Assessment(pulumi.CustomResource):
|
|
|
164
168
|
__props__.__dict__["type"] = None
|
|
165
169
|
__props__.__dict__["type_version"] = None
|
|
166
170
|
__props__.__dict__["workload_name"] = None
|
|
167
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:advisor/v20230901preview:Assessment")])
|
|
171
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:advisor/v20230901preview:Assessment"), pulumi.Alias(type_="azure-native:advisor/v20241118preview:Assessment")])
|
|
168
172
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
169
173
|
super(Assessment, __self__).__init__(
|
|
170
174
|
'azure-native:advisor:Assessment',
|
|
@@ -213,6 +213,8 @@ def get_assessment(assessment_name: Optional[str] = None,
|
|
|
213
213
|
|
|
214
214
|
Uses Azure REST API version 2023-09-01-preview.
|
|
215
215
|
|
|
216
|
+
Other available API versions: 2024-11-18-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
217
|
+
|
|
216
218
|
|
|
217
219
|
:param str assessment_name: Advisor assessment name.
|
|
218
220
|
"""
|
|
@@ -243,6 +245,8 @@ def get_assessment_output(assessment_name: Optional[pulumi.Input[str]] = None,
|
|
|
243
245
|
|
|
244
246
|
Uses Azure REST API version 2023-09-01-preview.
|
|
245
247
|
|
|
248
|
+
Other available API versions: 2024-11-18-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
249
|
+
|
|
246
250
|
|
|
247
251
|
:param str assessment_name: Advisor assessment name.
|
|
248
252
|
"""
|
|
@@ -143,7 +143,7 @@ def get_suppression(name: Optional[str] = None,
|
|
|
143
143
|
|
|
144
144
|
Uses Azure REST API version 2023-09-01-preview.
|
|
145
145
|
|
|
146
|
-
Other available API versions: 2023-01-01, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
146
|
+
Other available API versions: 2023-01-01, 2024-11-18-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
:param str name: The name of the suppression.
|
|
@@ -175,7 +175,7 @@ def get_suppression_output(name: Optional[pulumi.Input[str]] = None,
|
|
|
175
175
|
|
|
176
176
|
Uses Azure REST API version 2023-09-01-preview.
|
|
177
177
|
|
|
178
|
-
Other available API versions: 2023-01-01, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
178
|
+
Other available API versions: 2023-01-01, 2024-11-18-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
179
179
|
|
|
180
180
|
|
|
181
181
|
:param str name: The name of the suppression.
|
|
@@ -119,7 +119,7 @@ class Suppression(pulumi.CustomResource):
|
|
|
119
119
|
|
|
120
120
|
Uses Azure REST API version 2023-09-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-01-01.
|
|
121
121
|
|
|
122
|
-
Other available API versions: 2023-01-01, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
122
|
+
Other available API versions: 2023-01-01, 2024-11-18-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
123
123
|
|
|
124
124
|
:param str resource_name: The name of the resource.
|
|
125
125
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -140,7 +140,7 @@ class Suppression(pulumi.CustomResource):
|
|
|
140
140
|
|
|
141
141
|
Uses Azure REST API version 2023-09-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-01-01.
|
|
142
142
|
|
|
143
|
-
Other available API versions: 2023-01-01, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
143
|
+
Other available API versions: 2023-01-01, 2024-11-18-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native advisor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
144
144
|
|
|
145
145
|
:param str resource_name: The name of the resource.
|
|
146
146
|
:param SuppressionArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -184,7 +184,7 @@ class Suppression(pulumi.CustomResource):
|
|
|
184
184
|
__props__.__dict__["expiration_time_stamp"] = None
|
|
185
185
|
__props__.__dict__["system_data"] = None
|
|
186
186
|
__props__.__dict__["type"] = None
|
|
187
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:advisor/v20160712preview:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20170331:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20170419:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20200101:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20220901:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20221001:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20230101:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20230901preview:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20250101:Suppression")])
|
|
187
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:advisor/v20160712preview:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20170331:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20170419:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20200101:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20220901:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20221001:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20230101:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20230901preview:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20241118preview:Suppression"), pulumi.Alias(type_="azure-native:advisor/v20250101:Suppression")])
|
|
188
188
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
189
189
|
super(Suppression, __self__).__init__(
|
|
190
190
|
'azure-native:advisor:Suppression',
|
|
@@ -138,7 +138,7 @@ class CacheRule(pulumi.CustomResource):
|
|
|
138
138
|
|
|
139
139
|
Uses Azure REST API version 2024-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-01-01-preview.
|
|
140
140
|
|
|
141
|
-
Other available API versions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
141
|
+
Other available API versions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
142
142
|
|
|
143
143
|
:param str resource_name: The name of the resource.
|
|
144
144
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -161,7 +161,7 @@ class CacheRule(pulumi.CustomResource):
|
|
|
161
161
|
|
|
162
162
|
Uses Azure REST API version 2024-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-01-01-preview.
|
|
163
163
|
|
|
164
|
-
Other available API versions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
164
|
+
Other available API versions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
165
165
|
|
|
166
166
|
:param str resource_name: The name of the resource.
|
|
167
167
|
:param CacheRuleArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -209,7 +209,7 @@ class CacheRule(pulumi.CustomResource):
|
|
|
209
209
|
__props__.__dict__["provisioning_state"] = None
|
|
210
210
|
__props__.__dict__["system_data"] = None
|
|
211
211
|
__props__.__dict__["type"] = None
|
|
212
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20230701:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:CacheRule")])
|
|
212
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20230701:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:CacheRule"), pulumi.Alias(type_="azure-native:containerregistry/v20250401:CacheRule")])
|
|
213
213
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
214
214
|
super(CacheRule, __self__).__init__(
|
|
215
215
|
'azure-native:containerregistry:CacheRule',
|
|
@@ -187,7 +187,7 @@ class ConnectedRegistry(pulumi.CustomResource):
|
|
|
187
187
|
|
|
188
188
|
Uses Azure REST API version 2024-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-01-01-preview.
|
|
189
189
|
|
|
190
|
-
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2023-01-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
190
|
+
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2023-01-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
191
191
|
|
|
192
192
|
:param str resource_name: The name of the resource.
|
|
193
193
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -212,7 +212,7 @@ class ConnectedRegistry(pulumi.CustomResource):
|
|
|
212
212
|
|
|
213
213
|
Uses Azure REST API version 2024-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-01-01-preview.
|
|
214
214
|
|
|
215
|
-
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2023-01-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
215
|
+
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2023-01-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
216
216
|
|
|
217
217
|
:param str resource_name: The name of the resource.
|
|
218
218
|
:param ConnectedRegistryArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -275,7 +275,7 @@ class ConnectedRegistry(pulumi.CustomResource):
|
|
|
275
275
|
__props__.__dict__["system_data"] = None
|
|
276
276
|
__props__.__dict__["type"] = None
|
|
277
277
|
__props__.__dict__["version"] = None
|
|
278
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20201101preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20210601preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20210801preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20211201preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20220201preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:ConnectedRegistry")])
|
|
278
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20201101preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20210601preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20210801preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20211201preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20220201preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:ConnectedRegistry"), pulumi.Alias(type_="azure-native:containerregistry/v20250401:ConnectedRegistry")])
|
|
279
279
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
280
280
|
super(ConnectedRegistry, __self__).__init__(
|
|
281
281
|
'azure-native:containerregistry:ConnectedRegistry',
|
|
@@ -140,7 +140,7 @@ class CredentialSet(pulumi.CustomResource):
|
|
|
140
140
|
|
|
141
141
|
Uses Azure REST API version 2023-01-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-01-01-preview.
|
|
142
142
|
|
|
143
|
-
Other available API versions: 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
143
|
+
Other available API versions: 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
144
144
|
|
|
145
145
|
:param str resource_name: The name of the resource.
|
|
146
146
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -163,7 +163,7 @@ class CredentialSet(pulumi.CustomResource):
|
|
|
163
163
|
|
|
164
164
|
Uses Azure REST API version 2023-01-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-01-01-preview.
|
|
165
165
|
|
|
166
|
-
Other available API versions: 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
166
|
+
Other available API versions: 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
167
167
|
|
|
168
168
|
:param str resource_name: The name of the resource.
|
|
169
169
|
:param CredentialSetArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -211,7 +211,7 @@ class CredentialSet(pulumi.CustomResource):
|
|
|
211
211
|
__props__.__dict__["provisioning_state"] = None
|
|
212
212
|
__props__.__dict__["system_data"] = None
|
|
213
213
|
__props__.__dict__["type"] = None
|
|
214
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20230701:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:CredentialSet")])
|
|
214
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20230701:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:CredentialSet"), pulumi.Alias(type_="azure-native:containerregistry/v20250401:CredentialSet")])
|
|
215
215
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
216
216
|
super(CredentialSet, __self__).__init__(
|
|
217
217
|
'azure-native:containerregistry:CredentialSet',
|
|
@@ -168,7 +168,7 @@ def get_cache_rule(cache_rule_name: Optional[str] = None,
|
|
|
168
168
|
|
|
169
169
|
Uses Azure REST API version 2024-11-01-preview.
|
|
170
170
|
|
|
171
|
-
Other available API versions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
171
|
+
Other available API versions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
172
172
|
|
|
173
173
|
|
|
174
174
|
:param str cache_rule_name: The name of the cache rule.
|
|
@@ -202,7 +202,7 @@ def get_cache_rule_output(cache_rule_name: Optional[pulumi.Input[str]] = None,
|
|
|
202
202
|
|
|
203
203
|
Uses Azure REST API version 2024-11-01-preview.
|
|
204
204
|
|
|
205
|
-
Other available API versions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
205
|
+
Other available API versions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
206
206
|
|
|
207
207
|
|
|
208
208
|
:param str cache_rule_name: The name of the cache rule.
|
|
@@ -263,7 +263,7 @@ def get_connected_registry(connected_registry_name: Optional[str] = None,
|
|
|
263
263
|
|
|
264
264
|
Uses Azure REST API version 2024-11-01-preview.
|
|
265
265
|
|
|
266
|
-
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2023-01-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
266
|
+
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2023-01-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
267
267
|
|
|
268
268
|
|
|
269
269
|
:param str connected_registry_name: The name of the connected registry.
|
|
@@ -305,7 +305,7 @@ def get_connected_registry_output(connected_registry_name: Optional[pulumi.Input
|
|
|
305
305
|
|
|
306
306
|
Uses Azure REST API version 2024-11-01-preview.
|
|
307
307
|
|
|
308
|
-
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2023-01-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
308
|
+
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2023-01-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
309
309
|
|
|
310
310
|
|
|
311
311
|
:param str connected_registry_name: The name of the connected registry.
|
|
@@ -168,7 +168,7 @@ def get_credential_set(credential_set_name: Optional[str] = None,
|
|
|
168
168
|
|
|
169
169
|
Uses Azure REST API version 2023-01-01-preview.
|
|
170
170
|
|
|
171
|
-
Other available API versions: 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
171
|
+
Other available API versions: 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
172
172
|
|
|
173
173
|
|
|
174
174
|
:param str credential_set_name: The name of the credential set.
|
|
@@ -202,7 +202,7 @@ def get_credential_set_output(credential_set_name: Optional[pulumi.Input[str]] =
|
|
|
202
202
|
|
|
203
203
|
Uses Azure REST API version 2023-01-01-preview.
|
|
204
204
|
|
|
205
|
-
Other available API versions: 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
205
|
+
Other available API versions: 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
206
206
|
|
|
207
207
|
|
|
208
208
|
:param str credential_set_name: The name of the credential set.
|
|
@@ -143,7 +143,7 @@ def get_private_endpoint_connection(private_endpoint_connection_name: Optional[s
|
|
|
143
143
|
|
|
144
144
|
Uses Azure REST API version 2024-11-01-preview.
|
|
145
145
|
|
|
146
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
146
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
:param str private_endpoint_connection_name: The name of the private endpoint connection.
|
|
@@ -175,7 +175,7 @@ def get_private_endpoint_connection_output(private_endpoint_connection_name: Opt
|
|
|
175
175
|
|
|
176
176
|
Uses Azure REST API version 2024-11-01-preview.
|
|
177
177
|
|
|
178
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
178
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
179
179
|
|
|
180
180
|
|
|
181
181
|
:param str private_endpoint_connection_name: The name of the private endpoint connection.
|
|
@@ -334,7 +334,7 @@ def get_registry(registry_name: Optional[str] = None,
|
|
|
334
334
|
|
|
335
335
|
Uses Azure REST API version 2023-01-01-preview.
|
|
336
336
|
|
|
337
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
337
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
338
338
|
|
|
339
339
|
|
|
340
340
|
:param str registry_name: The name of the container registry.
|
|
@@ -379,7 +379,7 @@ def get_registry_output(registry_name: Optional[pulumi.Input[str]] = None,
|
|
|
379
379
|
|
|
380
380
|
Uses Azure REST API version 2023-01-01-preview.
|
|
381
381
|
|
|
382
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
382
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
383
383
|
|
|
384
384
|
|
|
385
385
|
:param str registry_name: The name of the container registry.
|
|
@@ -179,7 +179,7 @@ def get_replication(registry_name: Optional[str] = None,
|
|
|
179
179
|
|
|
180
180
|
Uses Azure REST API version 2024-11-01-preview.
|
|
181
181
|
|
|
182
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
182
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
183
183
|
|
|
184
184
|
|
|
185
185
|
:param str registry_name: The name of the container registry.
|
|
@@ -214,7 +214,7 @@ def get_replication_output(registry_name: Optional[pulumi.Input[str]] = None,
|
|
|
214
214
|
|
|
215
215
|
Uses Azure REST API version 2024-11-01-preview.
|
|
216
216
|
|
|
217
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
217
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
218
218
|
|
|
219
219
|
|
|
220
220
|
:param str registry_name: The name of the container registry.
|
|
@@ -157,7 +157,7 @@ def get_scope_map(registry_name: Optional[str] = None,
|
|
|
157
157
|
|
|
158
158
|
Uses Azure REST API version 2024-11-01-preview.
|
|
159
159
|
|
|
160
|
-
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
160
|
+
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
161
161
|
|
|
162
162
|
|
|
163
163
|
:param str registry_name: The name of the container registry.
|
|
@@ -190,7 +190,7 @@ def get_scope_map_output(registry_name: Optional[pulumi.Input[str]] = None,
|
|
|
190
190
|
|
|
191
191
|
Uses Azure REST API version 2024-11-01-preview.
|
|
192
192
|
|
|
193
|
-
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
193
|
+
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
194
194
|
|
|
195
195
|
|
|
196
196
|
:param str registry_name: The name of the container registry.
|
|
@@ -167,7 +167,7 @@ def get_token(registry_name: Optional[str] = None,
|
|
|
167
167
|
|
|
168
168
|
Uses Azure REST API version 2024-11-01-preview.
|
|
169
169
|
|
|
170
|
-
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
170
|
+
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
171
171
|
|
|
172
172
|
|
|
173
173
|
:param str registry_name: The name of the container registry.
|
|
@@ -201,7 +201,7 @@ def get_token_output(registry_name: Optional[pulumi.Input[str]] = None,
|
|
|
201
201
|
|
|
202
202
|
Uses Azure REST API version 2024-11-01-preview.
|
|
203
203
|
|
|
204
|
-
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
204
|
+
Other available API versions: 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
205
205
|
|
|
206
206
|
|
|
207
207
|
:param str registry_name: The name of the container registry.
|
|
@@ -179,7 +179,7 @@ def get_webhook(registry_name: Optional[str] = None,
|
|
|
179
179
|
|
|
180
180
|
Uses Azure REST API version 2024-11-01-preview.
|
|
181
181
|
|
|
182
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
182
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
183
183
|
|
|
184
184
|
|
|
185
185
|
:param str registry_name: The name of the container registry.
|
|
@@ -214,7 +214,7 @@ def get_webhook_output(registry_name: Optional[pulumi.Input[str]] = None,
|
|
|
214
214
|
|
|
215
215
|
Uses Azure REST API version 2024-11-01-preview.
|
|
216
216
|
|
|
217
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
217
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
218
218
|
|
|
219
219
|
|
|
220
220
|
:param str registry_name: The name of the container registry.
|
|
@@ -70,7 +70,7 @@ def get_webhook_callback_config(registry_name: Optional[str] = None,
|
|
|
70
70
|
|
|
71
71
|
Uses Azure REST API version 2024-11-01-preview.
|
|
72
72
|
|
|
73
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
73
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
74
74
|
|
|
75
75
|
|
|
76
76
|
:param str registry_name: The name of the container registry.
|
|
@@ -96,7 +96,7 @@ def get_webhook_callback_config_output(registry_name: Optional[pulumi.Input[str]
|
|
|
96
96
|
|
|
97
97
|
Uses Azure REST API version 2024-11-01-preview.
|
|
98
98
|
|
|
99
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
99
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
100
100
|
|
|
101
101
|
|
|
102
102
|
:param str registry_name: The name of the container registry.
|
|
@@ -70,7 +70,7 @@ def list_registry_credentials(registry_name: Optional[str] = None,
|
|
|
70
70
|
|
|
71
71
|
Uses Azure REST API version 2024-11-01-preview.
|
|
72
72
|
|
|
73
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
73
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
74
74
|
|
|
75
75
|
|
|
76
76
|
:param str registry_name: The name of the container registry.
|
|
@@ -93,7 +93,7 @@ def list_registry_credentials_output(registry_name: Optional[pulumi.Input[str]]
|
|
|
93
93
|
|
|
94
94
|
Uses Azure REST API version 2024-11-01-preview.
|
|
95
95
|
|
|
96
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
96
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
97
97
|
|
|
98
98
|
|
|
99
99
|
:param str registry_name: The name of the container registry.
|
|
@@ -71,7 +71,7 @@ def list_webhook_events(registry_name: Optional[str] = None,
|
|
|
71
71
|
|
|
72
72
|
Uses Azure REST API version 2024-11-01-preview.
|
|
73
73
|
|
|
74
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
74
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
:param str registry_name: The name of the container registry.
|
|
@@ -97,7 +97,7 @@ def list_webhook_events_output(registry_name: Optional[pulumi.Input[str]] = None
|
|
|
97
97
|
|
|
98
98
|
Uses Azure REST API version 2024-11-01-preview.
|
|
99
99
|
|
|
100
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
100
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
101
101
|
|
|
102
102
|
|
|
103
103
|
:param str registry_name: The name of the container registry.
|
|
@@ -121,7 +121,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
121
121
|
|
|
122
122
|
Uses Azure REST API version 2024-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-12-01.
|
|
123
123
|
|
|
124
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
124
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
125
125
|
|
|
126
126
|
:param str resource_name: The name of the resource.
|
|
127
127
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -142,7 +142,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
142
142
|
|
|
143
143
|
Uses Azure REST API version 2024-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-12-01.
|
|
144
144
|
|
|
145
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
145
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
146
146
|
|
|
147
147
|
:param str resource_name: The name of the resource.
|
|
148
148
|
:param PrivateEndpointConnectionArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -187,7 +187,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
187
187
|
__props__.__dict__["provisioning_state"] = None
|
|
188
188
|
__props__.__dict__["system_data"] = None
|
|
189
189
|
__props__.__dict__["type"] = None
|
|
190
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20191201preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20201101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20210601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20210801preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20210901:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20211201preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20220201preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20221201:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20230701:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:PrivateEndpointConnection")])
|
|
190
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20191201preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20201101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20210601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20210801preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20210901:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20211201preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20220201preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20221201:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20230701:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:containerregistry/v20250401:PrivateEndpointConnection")])
|
|
191
191
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
192
192
|
super(PrivateEndpointConnection, __self__).__init__(
|
|
193
193
|
'azure-native:containerregistry:PrivateEndpointConnection',
|
|
@@ -301,7 +301,7 @@ class Registry(pulumi.CustomResource):
|
|
|
301
301
|
|
|
302
302
|
Uses Azure REST API version 2023-01-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-12-01.
|
|
303
303
|
|
|
304
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
304
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
305
305
|
|
|
306
306
|
:param str resource_name: The name of the resource.
|
|
307
307
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -332,7 +332,7 @@ class Registry(pulumi.CustomResource):
|
|
|
332
332
|
|
|
333
333
|
Uses Azure REST API version 2023-01-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-12-01.
|
|
334
334
|
|
|
335
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
335
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
336
336
|
|
|
337
337
|
:param str resource_name: The name of the resource.
|
|
338
338
|
:param RegistryArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -412,7 +412,7 @@ class Registry(pulumi.CustomResource):
|
|
|
412
412
|
__props__.__dict__["status"] = None
|
|
413
413
|
__props__.__dict__["system_data"] = None
|
|
414
414
|
__props__.__dict__["type"] = None
|
|
415
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20170301:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20171001:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20190501:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20191201preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20201101preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20210601preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20210801preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20210901:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20211201preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20220201preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20221201:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20230701:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:Registry")])
|
|
415
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20170301:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20171001:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20190501:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20191201preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20201101preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20210601preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20210801preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20210901:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20211201preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20220201preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20221201:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20230701:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:Registry"), pulumi.Alias(type_="azure-native:containerregistry/v20250401:Registry")])
|
|
416
416
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
417
417
|
super(Registry, __self__).__init__(
|
|
418
418
|
'azure-native:containerregistry:Registry',
|
|
@@ -158,7 +158,7 @@ class Replication(pulumi.CustomResource):
|
|
|
158
158
|
|
|
159
159
|
Uses Azure REST API version 2024-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-12-01.
|
|
160
160
|
|
|
161
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
161
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
162
162
|
|
|
163
163
|
:param str resource_name: The name of the resource.
|
|
164
164
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -181,7 +181,7 @@ class Replication(pulumi.CustomResource):
|
|
|
181
181
|
|
|
182
182
|
Uses Azure REST API version 2024-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-12-01.
|
|
183
183
|
|
|
184
|
-
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
184
|
+
Other available API versions: 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2025-03-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerregistry [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
185
185
|
|
|
186
186
|
:param str resource_name: The name of the resource.
|
|
187
187
|
:param ReplicationArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -235,7 +235,7 @@ class Replication(pulumi.CustomResource):
|
|
|
235
235
|
__props__.__dict__["status"] = None
|
|
236
236
|
__props__.__dict__["system_data"] = None
|
|
237
237
|
__props__.__dict__["type"] = None
|
|
238
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20171001:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20190501:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20191201preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20201101preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20210601preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20210801preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20210901:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20211201preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20220201preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20221201:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20230701:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:Replication")])
|
|
238
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerregistry/v20171001:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20190501:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20191201preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20201101preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20210601preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20210801preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20210901:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20211201preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20220201preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20221201:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20230101preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20230601preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20230701:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20230801preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20231101preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20241101preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20250301preview:Replication"), pulumi.Alias(type_="azure-native:containerregistry/v20250401:Replication")])
|
|
239
239
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
240
240
|
super(Replication, __self__).__init__(
|
|
241
241
|
'azure-native:containerregistry:Replication',
|