pulumi-azure-native 3.7.0a1755038471__py3-none-any.whl → 3.7.0a1755047742__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/app/_enums.py +89 -1
- pulumi_azure_native/app/_inputs.py +2903 -126
- pulumi_azure_native/app/app_resiliency.py +4 -4
- pulumi_azure_native/app/build.py +4 -4
- pulumi_azure_native/app/builder.py +4 -4
- pulumi_azure_native/app/certificate.py +5 -4
- pulumi_azure_native/app/connected_environment.py +4 -4
- pulumi_azure_native/app/connected_environments_certificate.py +5 -4
- pulumi_azure_native/app/connected_environments_dapr_component.py +53 -4
- pulumi_azure_native/app/connected_environments_storage.py +4 -4
- pulumi_azure_native/app/container_app.py +72 -4
- pulumi_azure_native/app/container_apps_auth_config.py +4 -4
- pulumi_azure_native/app/container_apps_session_pool.py +4 -4
- pulumi_azure_native/app/container_apps_source_control.py +4 -4
- pulumi_azure_native/app/dapr_component.py +33 -4
- pulumi_azure_native/app/dapr_component_resiliency_policy.py +4 -4
- pulumi_azure_native/app/dapr_subscription.py +4 -4
- pulumi_azure_native/app/dot_net_component.py +4 -4
- pulumi_azure_native/app/get_app_resiliency.py +4 -4
- pulumi_azure_native/app/get_build.py +4 -4
- pulumi_azure_native/app/get_builder.py +4 -4
- pulumi_azure_native/app/get_certificate.py +4 -4
- pulumi_azure_native/app/get_connected_environment.py +4 -4
- pulumi_azure_native/app/get_connected_environments_certificate.py +4 -4
- pulumi_azure_native/app/get_connected_environments_dapr_component.py +47 -5
- pulumi_azure_native/app/get_connected_environments_storage.py +4 -4
- pulumi_azure_native/app/get_container_app.py +47 -5
- pulumi_azure_native/app/get_container_app_auth_token.py +4 -4
- pulumi_azure_native/app/get_container_apps_auth_config.py +4 -4
- pulumi_azure_native/app/get_container_apps_session_pool.py +4 -4
- pulumi_azure_native/app/get_container_apps_source_control.py +4 -4
- pulumi_azure_native/app/get_custom_domain_verification_id.py +4 -4
- pulumi_azure_native/app/get_dapr_component.py +19 -5
- pulumi_azure_native/app/get_dapr_component_resiliency_policy.py +4 -4
- pulumi_azure_native/app/get_dapr_subscription.py +4 -4
- pulumi_azure_native/app/get_dot_net_component.py +4 -4
- pulumi_azure_native/app/get_http_route_config.py +4 -4
- pulumi_azure_native/app/get_java_component.py +4 -4
- pulumi_azure_native/app/get_job.py +33 -5
- pulumi_azure_native/app/get_logic_app.py +4 -4
- pulumi_azure_native/app/get_maintenance_configuration.py +4 -4
- pulumi_azure_native/app/get_managed_certificate.py +4 -4
- pulumi_azure_native/app/get_managed_environment.py +118 -6
- pulumi_azure_native/app/get_managed_environment_auth_token.py +4 -4
- pulumi_azure_native/app/get_managed_environment_private_endpoint_connection.py +4 -4
- pulumi_azure_native/app/get_managed_environments_storage.py +4 -4
- pulumi_azure_native/app/http_route_config.py +4 -4
- pulumi_azure_native/app/java_component.py +11 -11
- pulumi_azure_native/app/job.py +43 -4
- pulumi_azure_native/app/list_build_auth_token.py +4 -4
- pulumi_azure_native/app/list_connected_environments_dapr_component_secrets.py +4 -4
- pulumi_azure_native/app/list_container_app_custom_host_name_analysis.py +4 -4
- pulumi_azure_native/app/list_container_app_secrets.py +4 -4
- pulumi_azure_native/app/list_dapr_component_secrets.py +4 -4
- pulumi_azure_native/app/list_job_secrets.py +4 -4
- pulumi_azure_native/app/list_logic_app_workflows_connections.py +4 -4
- pulumi_azure_native/app/logic_app.py +4 -4
- pulumi_azure_native/app/maintenance_configuration.py +4 -4
- pulumi_azure_native/app/managed_certificate.py +4 -4
- pulumi_azure_native/app/managed_environment.py +202 -8
- pulumi_azure_native/app/managed_environment_private_endpoint_connection.py +4 -4
- pulumi_azure_native/app/managed_environments_storage.py +4 -4
- pulumi_azure_native/app/outputs.py +2484 -150
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-3.7.0a1755038471.dist-info → pulumi_azure_native-3.7.0a1755047742.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.7.0a1755038471.dist-info → pulumi_azure_native-3.7.0a1755047742.dist-info}/RECORD +68 -68
- {pulumi_azure_native-3.7.0a1755038471.dist-info → pulumi_azure_native-3.7.0a1755047742.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-3.7.0a1755038471.dist-info → pulumi_azure_native-3.7.0a1755047742.dist-info}/top_level.txt +0 -0
|
@@ -25,13 +25,13 @@ class JavaComponentArgs:
|
|
|
25
25
|
environment_name: pulumi.Input[builtins.str],
|
|
26
26
|
resource_group_name: pulumi.Input[builtins.str],
|
|
27
27
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
|
28
|
-
properties: Optional[pulumi.Input[Union['SpringBootAdminComponentArgs', 'SpringCloudConfigComponentArgs', 'SpringCloudEurekaComponentArgs']]] = None):
|
|
28
|
+
properties: Optional[pulumi.Input[Union['NacosComponentArgs', 'SpringBootAdminComponentArgs', 'SpringCloudConfigComponentArgs', 'SpringCloudEurekaComponentArgs', 'SpringCloudGatewayComponentArgs']]] = None):
|
|
29
29
|
"""
|
|
30
30
|
The set of arguments for constructing a JavaComponent resource.
|
|
31
31
|
:param pulumi.Input[builtins.str] environment_name: Name of the Managed Environment.
|
|
32
32
|
:param pulumi.Input[builtins.str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
33
33
|
:param pulumi.Input[builtins.str] name: Name of the Java Component.
|
|
34
|
-
:param pulumi.Input[Union['SpringBootAdminComponentArgs', 'SpringCloudConfigComponentArgs', 'SpringCloudEurekaComponentArgs']] properties: Java Component resource specific properties
|
|
34
|
+
:param pulumi.Input[Union['NacosComponentArgs', 'SpringBootAdminComponentArgs', 'SpringCloudConfigComponentArgs', 'SpringCloudEurekaComponentArgs', 'SpringCloudGatewayComponentArgs']] properties: Java Component resource specific properties
|
|
35
35
|
"""
|
|
36
36
|
pulumi.set(__self__, "environment_name", environment_name)
|
|
37
37
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
@@ -78,14 +78,14 @@ class JavaComponentArgs:
|
|
|
78
78
|
|
|
79
79
|
@property
|
|
80
80
|
@pulumi.getter
|
|
81
|
-
def properties(self) -> Optional[pulumi.Input[Union['SpringBootAdminComponentArgs', 'SpringCloudConfigComponentArgs', 'SpringCloudEurekaComponentArgs']]]:
|
|
81
|
+
def properties(self) -> Optional[pulumi.Input[Union['NacosComponentArgs', 'SpringBootAdminComponentArgs', 'SpringCloudConfigComponentArgs', 'SpringCloudEurekaComponentArgs', 'SpringCloudGatewayComponentArgs']]]:
|
|
82
82
|
"""
|
|
83
83
|
Java Component resource specific properties
|
|
84
84
|
"""
|
|
85
85
|
return pulumi.get(self, "properties")
|
|
86
86
|
|
|
87
87
|
@properties.setter
|
|
88
|
-
def properties(self, value: Optional[pulumi.Input[Union['SpringBootAdminComponentArgs', 'SpringCloudConfigComponentArgs', 'SpringCloudEurekaComponentArgs']]]):
|
|
88
|
+
def properties(self, value: Optional[pulumi.Input[Union['NacosComponentArgs', 'SpringBootAdminComponentArgs', 'SpringCloudConfigComponentArgs', 'SpringCloudEurekaComponentArgs', 'SpringCloudGatewayComponentArgs']]]):
|
|
89
89
|
pulumi.set(self, "properties", value)
|
|
90
90
|
|
|
91
91
|
|
|
@@ -97,21 +97,21 @@ class JavaComponent(pulumi.CustomResource):
|
|
|
97
97
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
98
98
|
environment_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
99
99
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
|
100
|
-
properties: Optional[pulumi.Input[Union[Union['SpringBootAdminComponentArgs', 'SpringBootAdminComponentArgsDict'], Union['SpringCloudConfigComponentArgs', 'SpringCloudConfigComponentArgsDict'], Union['SpringCloudEurekaComponentArgs', 'SpringCloudEurekaComponentArgsDict']]]] = None,
|
|
100
|
+
properties: Optional[pulumi.Input[Union[Union['NacosComponentArgs', 'NacosComponentArgsDict'], Union['SpringBootAdminComponentArgs', 'SpringBootAdminComponentArgsDict'], Union['SpringCloudConfigComponentArgs', 'SpringCloudConfigComponentArgsDict'], Union['SpringCloudEurekaComponentArgs', 'SpringCloudEurekaComponentArgsDict'], Union['SpringCloudGatewayComponentArgs', 'SpringCloudGatewayComponentArgsDict']]]] = None,
|
|
101
101
|
resource_group_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
102
102
|
__props__=None):
|
|
103
103
|
"""
|
|
104
104
|
Java Component.
|
|
105
105
|
|
|
106
|
-
Uses Azure REST API version 2025-
|
|
106
|
+
Uses Azure REST API version 2025-02-02-preview. In version 2.x of the Azure Native provider, it used API version 2023-11-02-preview.
|
|
107
107
|
|
|
108
|
-
Other available API versions: 2023-11-02-preview, 2024-02-02-preview, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
108
|
+
Other available API versions: 2023-11-02-preview, 2024-02-02-preview, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
109
109
|
|
|
110
110
|
:param str resource_name: The name of the resource.
|
|
111
111
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
112
112
|
:param pulumi.Input[builtins.str] environment_name: Name of the Managed Environment.
|
|
113
113
|
:param pulumi.Input[builtins.str] name: Name of the Java Component.
|
|
114
|
-
:param pulumi.Input[Union[Union['SpringBootAdminComponentArgs', 'SpringBootAdminComponentArgsDict'], Union['SpringCloudConfigComponentArgs', 'SpringCloudConfigComponentArgsDict'], Union['SpringCloudEurekaComponentArgs', 'SpringCloudEurekaComponentArgsDict']]] properties: Java Component resource specific properties
|
|
114
|
+
:param pulumi.Input[Union[Union['NacosComponentArgs', 'NacosComponentArgsDict'], Union['SpringBootAdminComponentArgs', 'SpringBootAdminComponentArgsDict'], Union['SpringCloudConfigComponentArgs', 'SpringCloudConfigComponentArgsDict'], Union['SpringCloudEurekaComponentArgs', 'SpringCloudEurekaComponentArgsDict'], Union['SpringCloudGatewayComponentArgs', 'SpringCloudGatewayComponentArgsDict']]] properties: Java Component resource specific properties
|
|
115
115
|
:param pulumi.Input[builtins.str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
116
116
|
"""
|
|
117
117
|
...
|
|
@@ -123,9 +123,9 @@ class JavaComponent(pulumi.CustomResource):
|
|
|
123
123
|
"""
|
|
124
124
|
Java Component.
|
|
125
125
|
|
|
126
|
-
Uses Azure REST API version 2025-
|
|
126
|
+
Uses Azure REST API version 2025-02-02-preview. In version 2.x of the Azure Native provider, it used API version 2023-11-02-preview.
|
|
127
127
|
|
|
128
|
-
Other available API versions: 2023-11-02-preview, 2024-02-02-preview, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
128
|
+
Other available API versions: 2023-11-02-preview, 2024-02-02-preview, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
129
129
|
|
|
130
130
|
:param str resource_name: The name of the resource.
|
|
131
131
|
:param JavaComponentArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -144,7 +144,7 @@ class JavaComponent(pulumi.CustomResource):
|
|
|
144
144
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
145
145
|
environment_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
146
146
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
|
147
|
-
properties: Optional[pulumi.Input[Union[Union['SpringBootAdminComponentArgs', 'SpringBootAdminComponentArgsDict'], Union['SpringCloudConfigComponentArgs', 'SpringCloudConfigComponentArgsDict'], Union['SpringCloudEurekaComponentArgs', 'SpringCloudEurekaComponentArgsDict']]]] = None,
|
|
147
|
+
properties: Optional[pulumi.Input[Union[Union['NacosComponentArgs', 'NacosComponentArgsDict'], Union['SpringBootAdminComponentArgs', 'SpringBootAdminComponentArgsDict'], Union['SpringCloudConfigComponentArgs', 'SpringCloudConfigComponentArgsDict'], Union['SpringCloudEurekaComponentArgs', 'SpringCloudEurekaComponentArgsDict'], Union['SpringCloudGatewayComponentArgs', 'SpringCloudGatewayComponentArgsDict']]]] = None,
|
|
148
148
|
resource_group_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
149
149
|
__props__=None):
|
|
150
150
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
pulumi_azure_native/app/job.py
CHANGED
|
@@ -26,6 +26,7 @@ class JobArgs:
|
|
|
26
26
|
resource_group_name: pulumi.Input[builtins.str],
|
|
27
27
|
configuration: Optional[pulumi.Input['JobConfigurationArgs']] = None,
|
|
28
28
|
environment_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
29
|
+
extended_location: Optional[pulumi.Input['ExtendedLocationArgs']] = None,
|
|
29
30
|
identity: Optional[pulumi.Input['ManagedServiceIdentityArgs']] = None,
|
|
30
31
|
job_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
31
32
|
location: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -37,6 +38,7 @@ class JobArgs:
|
|
|
37
38
|
:param pulumi.Input[builtins.str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
38
39
|
:param pulumi.Input['JobConfigurationArgs'] configuration: Container Apps Job configuration properties.
|
|
39
40
|
:param pulumi.Input[builtins.str] environment_id: Resource ID of environment.
|
|
41
|
+
:param pulumi.Input['ExtendedLocationArgs'] extended_location: The complex type of the extended location.
|
|
40
42
|
:param pulumi.Input['ManagedServiceIdentityArgs'] identity: Managed identities needed by a container app job to interact with other Azure services to not maintain any secrets or credentials in code.
|
|
41
43
|
:param pulumi.Input[builtins.str] job_name: Job Name
|
|
42
44
|
:param pulumi.Input[builtins.str] location: The geo-location where the resource lives
|
|
@@ -49,6 +51,8 @@ class JobArgs:
|
|
|
49
51
|
pulumi.set(__self__, "configuration", configuration)
|
|
50
52
|
if environment_id is not None:
|
|
51
53
|
pulumi.set(__self__, "environment_id", environment_id)
|
|
54
|
+
if extended_location is not None:
|
|
55
|
+
pulumi.set(__self__, "extended_location", extended_location)
|
|
52
56
|
if identity is not None:
|
|
53
57
|
pulumi.set(__self__, "identity", identity)
|
|
54
58
|
if job_name is not None:
|
|
@@ -98,6 +102,18 @@ class JobArgs:
|
|
|
98
102
|
def environment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
99
103
|
pulumi.set(self, "environment_id", value)
|
|
100
104
|
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter(name="extendedLocation")
|
|
107
|
+
def extended_location(self) -> Optional[pulumi.Input['ExtendedLocationArgs']]:
|
|
108
|
+
"""
|
|
109
|
+
The complex type of the extended location.
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "extended_location")
|
|
112
|
+
|
|
113
|
+
@extended_location.setter
|
|
114
|
+
def extended_location(self, value: Optional[pulumi.Input['ExtendedLocationArgs']]):
|
|
115
|
+
pulumi.set(self, "extended_location", value)
|
|
116
|
+
|
|
101
117
|
@property
|
|
102
118
|
@pulumi.getter
|
|
103
119
|
def identity(self) -> Optional[pulumi.Input['ManagedServiceIdentityArgs']]:
|
|
@@ -179,6 +195,7 @@ class Job(pulumi.CustomResource):
|
|
|
179
195
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
180
196
|
configuration: Optional[pulumi.Input[Union['JobConfigurationArgs', 'JobConfigurationArgsDict']]] = None,
|
|
181
197
|
environment_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
198
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
182
199
|
identity: Optional[pulumi.Input[Union['ManagedServiceIdentityArgs', 'ManagedServiceIdentityArgsDict']]] = None,
|
|
183
200
|
job_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
184
201
|
location: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -190,14 +207,15 @@ class Job(pulumi.CustomResource):
|
|
|
190
207
|
"""
|
|
191
208
|
Container App Job
|
|
192
209
|
|
|
193
|
-
Uses Azure REST API version 2025-
|
|
210
|
+
Uses Azure REST API version 2025-02-02-preview. In version 2.x of the Azure Native provider, it used API version 2023-04-01-preview.
|
|
194
211
|
|
|
195
|
-
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
212
|
+
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
196
213
|
|
|
197
214
|
:param str resource_name: The name of the resource.
|
|
198
215
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
199
216
|
:param pulumi.Input[Union['JobConfigurationArgs', 'JobConfigurationArgsDict']] configuration: Container Apps Job configuration properties.
|
|
200
217
|
:param pulumi.Input[builtins.str] environment_id: Resource ID of environment.
|
|
218
|
+
:param pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']] extended_location: The complex type of the extended location.
|
|
201
219
|
:param pulumi.Input[Union['ManagedServiceIdentityArgs', 'ManagedServiceIdentityArgsDict']] identity: Managed identities needed by a container app job to interact with other Azure services to not maintain any secrets or credentials in code.
|
|
202
220
|
:param pulumi.Input[builtins.str] job_name: Job Name
|
|
203
221
|
:param pulumi.Input[builtins.str] location: The geo-location where the resource lives
|
|
@@ -215,9 +233,9 @@ class Job(pulumi.CustomResource):
|
|
|
215
233
|
"""
|
|
216
234
|
Container App Job
|
|
217
235
|
|
|
218
|
-
Uses Azure REST API version 2025-
|
|
236
|
+
Uses Azure REST API version 2025-02-02-preview. In version 2.x of the Azure Native provider, it used API version 2023-04-01-preview.
|
|
219
237
|
|
|
220
|
-
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
238
|
+
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
221
239
|
|
|
222
240
|
:param str resource_name: The name of the resource.
|
|
223
241
|
:param JobArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -236,6 +254,7 @@ class Job(pulumi.CustomResource):
|
|
|
236
254
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
237
255
|
configuration: Optional[pulumi.Input[Union['JobConfigurationArgs', 'JobConfigurationArgsDict']]] = None,
|
|
238
256
|
environment_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
257
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
239
258
|
identity: Optional[pulumi.Input[Union['ManagedServiceIdentityArgs', 'ManagedServiceIdentityArgsDict']]] = None,
|
|
240
259
|
job_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
241
260
|
location: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -254,6 +273,7 @@ class Job(pulumi.CustomResource):
|
|
|
254
273
|
|
|
255
274
|
__props__.__dict__["configuration"] = configuration
|
|
256
275
|
__props__.__dict__["environment_id"] = environment_id
|
|
276
|
+
__props__.__dict__["extended_location"] = extended_location
|
|
257
277
|
__props__.__dict__["identity"] = identity
|
|
258
278
|
__props__.__dict__["job_name"] = job_name
|
|
259
279
|
__props__.__dict__["location"] = location
|
|
@@ -268,6 +288,7 @@ class Job(pulumi.CustomResource):
|
|
|
268
288
|
__props__.__dict__["name"] = None
|
|
269
289
|
__props__.__dict__["outbound_ip_addresses"] = None
|
|
270
290
|
__props__.__dict__["provisioning_state"] = None
|
|
291
|
+
__props__.__dict__["running_state"] = None
|
|
271
292
|
__props__.__dict__["system_data"] = None
|
|
272
293
|
__props__.__dict__["type"] = None
|
|
273
294
|
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20221101preview:Job"), pulumi.Alias(type_="azure-native:app/v20230401preview:Job"), pulumi.Alias(type_="azure-native:app/v20230501:Job"), pulumi.Alias(type_="azure-native:app/v20230502preview:Job"), pulumi.Alias(type_="azure-native:app/v20230801preview:Job"), pulumi.Alias(type_="azure-native:app/v20231102preview:Job"), pulumi.Alias(type_="azure-native:app/v20240202preview:Job"), pulumi.Alias(type_="azure-native:app/v20240301:Job"), pulumi.Alias(type_="azure-native:app/v20240802preview:Job"), pulumi.Alias(type_="azure-native:app/v20241002preview:Job"), pulumi.Alias(type_="azure-native:app/v20250101:Job"), pulumi.Alias(type_="azure-native:app/v20250202preview:Job")])
|
|
@@ -298,11 +319,13 @@ class Job(pulumi.CustomResource):
|
|
|
298
319
|
__props__.__dict__["configuration"] = None
|
|
299
320
|
__props__.__dict__["environment_id"] = None
|
|
300
321
|
__props__.__dict__["event_stream_endpoint"] = None
|
|
322
|
+
__props__.__dict__["extended_location"] = None
|
|
301
323
|
__props__.__dict__["identity"] = None
|
|
302
324
|
__props__.__dict__["location"] = None
|
|
303
325
|
__props__.__dict__["name"] = None
|
|
304
326
|
__props__.__dict__["outbound_ip_addresses"] = None
|
|
305
327
|
__props__.__dict__["provisioning_state"] = None
|
|
328
|
+
__props__.__dict__["running_state"] = None
|
|
306
329
|
__props__.__dict__["system_data"] = None
|
|
307
330
|
__props__.__dict__["tags"] = None
|
|
308
331
|
__props__.__dict__["template"] = None
|
|
@@ -342,6 +365,14 @@ class Job(pulumi.CustomResource):
|
|
|
342
365
|
"""
|
|
343
366
|
return pulumi.get(self, "event_stream_endpoint")
|
|
344
367
|
|
|
368
|
+
@property
|
|
369
|
+
@pulumi.getter(name="extendedLocation")
|
|
370
|
+
def extended_location(self) -> pulumi.Output[Optional['outputs.ExtendedLocationResponse']]:
|
|
371
|
+
"""
|
|
372
|
+
The complex type of the extended location.
|
|
373
|
+
"""
|
|
374
|
+
return pulumi.get(self, "extended_location")
|
|
375
|
+
|
|
345
376
|
@property
|
|
346
377
|
@pulumi.getter
|
|
347
378
|
def identity(self) -> pulumi.Output[Optional['outputs.ManagedServiceIdentityResponse']]:
|
|
@@ -382,6 +413,14 @@ class Job(pulumi.CustomResource):
|
|
|
382
413
|
"""
|
|
383
414
|
return pulumi.get(self, "provisioning_state")
|
|
384
415
|
|
|
416
|
+
@property
|
|
417
|
+
@pulumi.getter(name="runningState")
|
|
418
|
+
def running_state(self) -> pulumi.Output[builtins.str]:
|
|
419
|
+
"""
|
|
420
|
+
Current running state of the job
|
|
421
|
+
"""
|
|
422
|
+
return pulumi.get(self, "running_state")
|
|
423
|
+
|
|
385
424
|
@property
|
|
386
425
|
@pulumi.getter(name="systemData")
|
|
387
426
|
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
@@ -69,9 +69,9 @@ def list_build_auth_token(build_name: Optional[builtins.str] = None,
|
|
|
69
69
|
"""
|
|
70
70
|
Gets the token used to connect to the endpoint where source code can be uploaded for a build.
|
|
71
71
|
|
|
72
|
-
Uses Azure REST API version
|
|
72
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
73
73
|
|
|
74
|
-
Other available API versions: 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-08-02-preview,
|
|
74
|
+
Other available API versions: 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-08-02-preview, 2024-10-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
:param builtins.str build_name: The name of a build.
|
|
@@ -95,9 +95,9 @@ def list_build_auth_token_output(build_name: Optional[pulumi.Input[builtins.str]
|
|
|
95
95
|
"""
|
|
96
96
|
Gets the token used to connect to the endpoint where source code can be uploaded for a build.
|
|
97
97
|
|
|
98
|
-
Uses Azure REST API version
|
|
98
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
99
99
|
|
|
100
|
-
Other available API versions: 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-08-02-preview,
|
|
100
|
+
Other available API versions: 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-08-02-preview, 2024-10-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
101
101
|
|
|
102
102
|
|
|
103
103
|
:param builtins.str build_name: The name of a build.
|
|
@@ -58,9 +58,9 @@ def list_connected_environments_dapr_component_secrets(component_name: Optional[
|
|
|
58
58
|
"""
|
|
59
59
|
Dapr component Secrets Collection for ListSecrets Action.
|
|
60
60
|
|
|
61
|
-
Uses Azure REST API version 2025-
|
|
61
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
62
62
|
|
|
63
|
-
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
63
|
+
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
:param builtins.str component_name: Name of the Dapr Component.
|
|
@@ -83,9 +83,9 @@ def list_connected_environments_dapr_component_secrets_output(component_name: Op
|
|
|
83
83
|
"""
|
|
84
84
|
Dapr component Secrets Collection for ListSecrets Action.
|
|
85
85
|
|
|
86
|
-
Uses Azure REST API version 2025-
|
|
86
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
87
87
|
|
|
88
|
-
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
88
|
+
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
89
89
|
|
|
90
90
|
|
|
91
91
|
:param builtins.str component_name: Name of the Dapr Component.
|
|
@@ -190,9 +190,9 @@ def list_container_app_custom_host_name_analysis(container_app_name: Optional[bu
|
|
|
190
190
|
"""
|
|
191
191
|
Custom domain analysis.
|
|
192
192
|
|
|
193
|
-
Uses Azure REST API version 2025-
|
|
193
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
194
194
|
|
|
195
|
-
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
195
|
+
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
196
196
|
|
|
197
197
|
|
|
198
198
|
:param builtins.str container_app_name: Name of the Container App.
|
|
@@ -226,9 +226,9 @@ def list_container_app_custom_host_name_analysis_output(container_app_name: Opti
|
|
|
226
226
|
"""
|
|
227
227
|
Custom domain analysis.
|
|
228
228
|
|
|
229
|
-
Uses Azure REST API version 2025-
|
|
229
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
230
230
|
|
|
231
|
-
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
231
|
+
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
232
232
|
|
|
233
233
|
|
|
234
234
|
:param builtins.str container_app_name: Name of the Container App.
|
|
@@ -57,9 +57,9 @@ def list_container_app_secrets(container_app_name: Optional[builtins.str] = None
|
|
|
57
57
|
"""
|
|
58
58
|
Container App Secrets Collection ARM resource.
|
|
59
59
|
|
|
60
|
-
Uses Azure REST API version 2025-
|
|
60
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
61
61
|
|
|
62
|
-
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
62
|
+
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
:param builtins.str container_app_name: Name of the Container App.
|
|
@@ -79,9 +79,9 @@ def list_container_app_secrets_output(container_app_name: Optional[pulumi.Input[
|
|
|
79
79
|
"""
|
|
80
80
|
Container App Secrets Collection ARM resource.
|
|
81
81
|
|
|
82
|
-
Uses Azure REST API version 2025-
|
|
82
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
83
83
|
|
|
84
|
-
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
84
|
+
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
85
85
|
|
|
86
86
|
|
|
87
87
|
:param builtins.str container_app_name: Name of the Container App.
|
|
@@ -58,9 +58,9 @@ def list_dapr_component_secrets(component_name: Optional[builtins.str] = None,
|
|
|
58
58
|
"""
|
|
59
59
|
Dapr component Secrets Collection for ListSecrets Action.
|
|
60
60
|
|
|
61
|
-
Uses Azure REST API version 2025-
|
|
61
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
62
62
|
|
|
63
|
-
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
63
|
+
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
:param builtins.str component_name: Name of the Dapr Component.
|
|
@@ -83,9 +83,9 @@ def list_dapr_component_secrets_output(component_name: Optional[pulumi.Input[bui
|
|
|
83
83
|
"""
|
|
84
84
|
Dapr component Secrets Collection for ListSecrets Action.
|
|
85
85
|
|
|
86
|
-
Uses Azure REST API version 2025-
|
|
86
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
87
87
|
|
|
88
|
-
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
88
|
+
Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
89
89
|
|
|
90
90
|
|
|
91
91
|
:param builtins.str component_name: Name of the Dapr Component.
|
|
@@ -57,9 +57,9 @@ def list_job_secrets(job_name: Optional[builtins.str] = None,
|
|
|
57
57
|
"""
|
|
58
58
|
Container Apps Job Secrets Collection ARM resource.
|
|
59
59
|
|
|
60
|
-
Uses Azure REST API version 2025-
|
|
60
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
61
61
|
|
|
62
|
-
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
62
|
+
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
:param builtins.str job_name: Job Name
|
|
@@ -79,9 +79,9 @@ def list_job_secrets_output(job_name: Optional[pulumi.Input[builtins.str]] = Non
|
|
|
79
79
|
"""
|
|
80
80
|
Container Apps Job Secrets Collection ARM resource.
|
|
81
81
|
|
|
82
|
-
Uses Azure REST API version 2025-
|
|
82
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
83
83
|
|
|
84
|
-
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
84
|
+
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
85
85
|
|
|
86
86
|
|
|
87
87
|
:param builtins.str job_name: Job Name
|
|
@@ -118,9 +118,9 @@ def list_logic_app_workflows_connections(container_app_name: Optional[builtins.s
|
|
|
118
118
|
"""
|
|
119
119
|
Workflow properties definition.
|
|
120
120
|
|
|
121
|
-
Uses Azure REST API version
|
|
121
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
122
122
|
|
|
123
|
-
Other available API versions: 2024-02-02-preview, 2024-08-02-preview,
|
|
123
|
+
Other available API versions: 2024-02-02-preview, 2024-08-02-preview, 2024-10-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
124
124
|
|
|
125
125
|
|
|
126
126
|
:param builtins.str container_app_name: Name of the Container App.
|
|
@@ -148,9 +148,9 @@ def list_logic_app_workflows_connections_output(container_app_name: Optional[pul
|
|
|
148
148
|
"""
|
|
149
149
|
Workflow properties definition.
|
|
150
150
|
|
|
151
|
-
Uses Azure REST API version
|
|
151
|
+
Uses Azure REST API version 2025-02-02-preview.
|
|
152
152
|
|
|
153
|
-
Other available API versions: 2024-02-02-preview, 2024-08-02-preview,
|
|
153
|
+
Other available API versions: 2024-02-02-preview, 2024-08-02-preview, 2024-10-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
154
154
|
|
|
155
155
|
|
|
156
156
|
:param builtins.str container_app_name: Name of the Container App.
|
|
@@ -85,9 +85,9 @@ class LogicApp(pulumi.CustomResource):
|
|
|
85
85
|
"""
|
|
86
86
|
A logic app extension resource
|
|
87
87
|
|
|
88
|
-
Uses Azure REST API version
|
|
88
|
+
Uses Azure REST API version 2025-02-02-preview. In version 2.x of the Azure Native provider, it used API version 2024-02-02-preview.
|
|
89
89
|
|
|
90
|
-
Other available API versions: 2024-02-02-preview, 2024-08-02-preview,
|
|
90
|
+
Other available API versions: 2024-02-02-preview, 2024-08-02-preview, 2024-10-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
91
91
|
|
|
92
92
|
:param str resource_name: The name of the resource.
|
|
93
93
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -104,9 +104,9 @@ class LogicApp(pulumi.CustomResource):
|
|
|
104
104
|
"""
|
|
105
105
|
A logic app extension resource
|
|
106
106
|
|
|
107
|
-
Uses Azure REST API version
|
|
107
|
+
Uses Azure REST API version 2025-02-02-preview. In version 2.x of the Azure Native provider, it used API version 2024-02-02-preview.
|
|
108
108
|
|
|
109
|
-
Other available API versions: 2024-02-02-preview, 2024-08-02-preview,
|
|
109
|
+
Other available API versions: 2024-02-02-preview, 2024-08-02-preview, 2024-10-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
110
110
|
|
|
111
111
|
:param str resource_name: The name of the resource.
|
|
112
112
|
:param LogicAppArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -103,9 +103,9 @@ class MaintenanceConfiguration(pulumi.CustomResource):
|
|
|
103
103
|
"""
|
|
104
104
|
Information about the Maintenance Configuration resource.
|
|
105
105
|
|
|
106
|
-
Uses Azure REST API version
|
|
106
|
+
Uses Azure REST API version 2025-02-02-preview. In version 2.x of the Azure Native provider, it used API version 2024-10-02-preview.
|
|
107
107
|
|
|
108
|
-
Other available API versions:
|
|
108
|
+
Other available API versions: 2024-10-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
109
109
|
|
|
110
110
|
:param str resource_name: The name of the resource.
|
|
111
111
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -123,9 +123,9 @@ class MaintenanceConfiguration(pulumi.CustomResource):
|
|
|
123
123
|
"""
|
|
124
124
|
Information about the Maintenance Configuration resource.
|
|
125
125
|
|
|
126
|
-
Uses Azure REST API version
|
|
126
|
+
Uses Azure REST API version 2025-02-02-preview. In version 2.x of the Azure Native provider, it used API version 2024-10-02-preview.
|
|
127
127
|
|
|
128
|
-
Other available API versions:
|
|
128
|
+
Other available API versions: 2024-10-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
129
129
|
|
|
130
130
|
:param str resource_name: The name of the resource.
|
|
131
131
|
:param MaintenanceConfigurationArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -138,9 +138,9 @@ class ManagedCertificate(pulumi.CustomResource):
|
|
|
138
138
|
"""
|
|
139
139
|
Managed certificates used for Custom Domain bindings of Container Apps in a Managed Environment
|
|
140
140
|
|
|
141
|
-
Uses Azure REST API version 2025-
|
|
141
|
+
Uses Azure REST API version 2025-02-02-preview. In version 2.x of the Azure Native provider, it used API version 2023-04-01-preview.
|
|
142
142
|
|
|
143
|
-
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
143
|
+
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [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.
|
|
@@ -160,9 +160,9 @@ class ManagedCertificate(pulumi.CustomResource):
|
|
|
160
160
|
"""
|
|
161
161
|
Managed certificates used for Custom Domain bindings of Container Apps in a Managed Environment
|
|
162
162
|
|
|
163
|
-
Uses Azure REST API version 2025-
|
|
163
|
+
Uses Azure REST API version 2025-02-02-preview. In version 2.x of the Azure Native provider, it used API version 2023-04-01-preview.
|
|
164
164
|
|
|
165
|
-
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-
|
|
165
|
+
Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
166
166
|
|
|
167
167
|
:param str resource_name: The name of the resource.
|
|
168
168
|
:param ManagedCertificateArgs args: The arguments to use to populate this resource's properties.
|