pulumi-azure-native 3.7.0a1755038471__py3-none-any.whl → 3.8.0a1755120510__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.8.0a1755120510.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.7.0a1755038471.dist-info → pulumi_azure_native-3.8.0a1755120510.dist-info}/RECORD +68 -68
- {pulumi_azure_native-3.7.0a1755038471.dist-info → pulumi_azure_native-3.8.0a1755120510.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-3.7.0a1755038471.dist-info → pulumi_azure_native-3.8.0a1755120510.dist-info}/top_level.txt +0 -0
|
@@ -13,6 +13,7 @@ __all__ = [
|
|
|
13
13
|
'Affinity',
|
|
14
14
|
'AppProtocol',
|
|
15
15
|
'BindingType',
|
|
16
|
+
'CertificateType',
|
|
16
17
|
'ClientCredentialMethod',
|
|
17
18
|
'ContainerType',
|
|
18
19
|
'CookieExpirationConvention',
|
|
@@ -20,17 +21,24 @@ __all__ = [
|
|
|
20
21
|
'ExtendedLocationTypes',
|
|
21
22
|
'ForwardProxyConvention',
|
|
22
23
|
'IdentitySettingsLifeCycle',
|
|
24
|
+
'ImageType',
|
|
23
25
|
'IngressClientCertificateMode',
|
|
26
|
+
'IngressTargetPortHttpScheme',
|
|
24
27
|
'IngressTransportMethod',
|
|
25
28
|
'JavaComponentType',
|
|
29
|
+
'Kind',
|
|
30
|
+
'Level',
|
|
26
31
|
'LifecycleType',
|
|
27
32
|
'LogLevel',
|
|
28
33
|
'ManagedCertificateDomainControlValidation',
|
|
29
34
|
'ManagedServiceIdentityType',
|
|
35
|
+
'PatchingMode',
|
|
30
36
|
'PoolManagementType',
|
|
31
37
|
'PrivateEndpointServiceConnectionStatus',
|
|
38
|
+
'PublicNetworkAccess',
|
|
32
39
|
'Scheme',
|
|
33
40
|
'SessionNetworkStatus',
|
|
41
|
+
'SessionProbeType',
|
|
34
42
|
'StorageType',
|
|
35
43
|
'TriggerType',
|
|
36
44
|
'Type',
|
|
@@ -61,10 +69,11 @@ class Action(builtins.str, Enum):
|
|
|
61
69
|
class ActiveRevisionsMode(builtins.str, Enum):
|
|
62
70
|
"""
|
|
63
71
|
ActiveRevisionsMode controls how active revisions are handled for the Container app:
|
|
64
|
-
<list><item>
|
|
72
|
+
<list><item>Single: Only one revision can be active at a time. Traffic weights cannot be used. This is the default.</item><item>Multiple: Multiple revisions can be active, including optional traffic weights and labels.</item><item>Labels: Only revisions with labels are active. Traffic weights can be applied to labels.</item></list>
|
|
65
73
|
"""
|
|
66
74
|
MULTIPLE = "Multiple"
|
|
67
75
|
SINGLE = "Single"
|
|
76
|
+
LABELS = "Labels"
|
|
68
77
|
|
|
69
78
|
|
|
70
79
|
@pulumi.type_token("azure-native:app:Affinity")
|
|
@@ -95,6 +104,15 @@ class BindingType(builtins.str, Enum):
|
|
|
95
104
|
AUTO = "Auto"
|
|
96
105
|
|
|
97
106
|
|
|
107
|
+
@pulumi.type_token("azure-native:app:CertificateType")
|
|
108
|
+
class CertificateType(builtins.str, Enum):
|
|
109
|
+
"""
|
|
110
|
+
The type of the certificate. Allowed values are `ServerSSLCertificate` and `ImagePullTrustedCA`
|
|
111
|
+
"""
|
|
112
|
+
SERVER_SSL_CERTIFICATE = "ServerSSLCertificate"
|
|
113
|
+
IMAGE_PULL_TRUSTED_CA = "ImagePullTrustedCA"
|
|
114
|
+
|
|
115
|
+
|
|
98
116
|
@pulumi.type_token("azure-native:app:ClientCredentialMethod")
|
|
99
117
|
class ClientCredentialMethod(builtins.str, Enum):
|
|
100
118
|
"""
|
|
@@ -158,6 +176,15 @@ class IdentitySettingsLifeCycle(builtins.str, Enum):
|
|
|
158
176
|
ALL = "All"
|
|
159
177
|
|
|
160
178
|
|
|
179
|
+
@pulumi.type_token("azure-native:app:ImageType")
|
|
180
|
+
class ImageType(builtins.str, Enum):
|
|
181
|
+
"""
|
|
182
|
+
The type of the image. Set to CloudBuild to let the system manages the image, where user will not be able to update image through image field. Set to ContainerImage for user provided image.
|
|
183
|
+
"""
|
|
184
|
+
CLOUD_BUILD = "CloudBuild"
|
|
185
|
+
CONTAINER_IMAGE = "ContainerImage"
|
|
186
|
+
|
|
187
|
+
|
|
161
188
|
@pulumi.type_token("azure-native:app:IngressClientCertificateMode")
|
|
162
189
|
class IngressClientCertificateMode(builtins.str, Enum):
|
|
163
190
|
"""
|
|
@@ -168,6 +195,15 @@ class IngressClientCertificateMode(builtins.str, Enum):
|
|
|
168
195
|
REQUIRE = "require"
|
|
169
196
|
|
|
170
197
|
|
|
198
|
+
@pulumi.type_token("azure-native:app:IngressTargetPortHttpScheme")
|
|
199
|
+
class IngressTargetPortHttpScheme(builtins.str, Enum):
|
|
200
|
+
"""
|
|
201
|
+
Whether an http app listens on http or https
|
|
202
|
+
"""
|
|
203
|
+
HTTP = "http"
|
|
204
|
+
HTTPS = "https"
|
|
205
|
+
|
|
206
|
+
|
|
171
207
|
@pulumi.type_token("azure-native:app:IngressTransportMethod")
|
|
172
208
|
class IngressTransportMethod(builtins.str, Enum):
|
|
173
209
|
"""
|
|
@@ -187,6 +223,29 @@ class JavaComponentType(builtins.str, Enum):
|
|
|
187
223
|
SPRING_BOOT_ADMIN = "SpringBootAdmin"
|
|
188
224
|
SPRING_CLOUD_EUREKA = "SpringCloudEureka"
|
|
189
225
|
SPRING_CLOUD_CONFIG = "SpringCloudConfig"
|
|
226
|
+
SPRING_CLOUD_GATEWAY = "SpringCloudGateway"
|
|
227
|
+
NACOS = "Nacos"
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
@pulumi.type_token("azure-native:app:Kind")
|
|
231
|
+
class Kind(builtins.str, Enum):
|
|
232
|
+
"""
|
|
233
|
+
Metadata used to render different experiences for resources of the same type; e.g. WorkflowApp is a kind of Microsoft.App/ContainerApps type. If supported, the resource provider must validate and persist this value.
|
|
234
|
+
"""
|
|
235
|
+
WORKFLOWAPP = "workflowapp"
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
@pulumi.type_token("azure-native:app:Level")
|
|
239
|
+
class Level(builtins.str, Enum):
|
|
240
|
+
"""
|
|
241
|
+
The specified logger's log level.
|
|
242
|
+
"""
|
|
243
|
+
OFF = "off"
|
|
244
|
+
ERROR = "error"
|
|
245
|
+
INFO = "info"
|
|
246
|
+
DEBUG = "debug"
|
|
247
|
+
TRACE = "trace"
|
|
248
|
+
WARN = "warn"
|
|
190
249
|
|
|
191
250
|
|
|
192
251
|
@pulumi.type_token("azure-native:app:LifecycleType")
|
|
@@ -230,6 +289,16 @@ class ManagedServiceIdentityType(builtins.str, Enum):
|
|
|
230
289
|
SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned,UserAssigned"
|
|
231
290
|
|
|
232
291
|
|
|
292
|
+
@pulumi.type_token("azure-native:app:PatchingMode")
|
|
293
|
+
class PatchingMode(builtins.str, Enum):
|
|
294
|
+
"""
|
|
295
|
+
Patching mode for the container app. Null or default in this field will be interpreted as Automatic by RP. Automatic mode will automatically apply available patches. Manual mode will require the user to manually apply patches. Disabled mode will stop patch detection and auto patching.
|
|
296
|
+
"""
|
|
297
|
+
AUTOMATIC = "Automatic"
|
|
298
|
+
MANUAL = "Manual"
|
|
299
|
+
DISABLED = "Disabled"
|
|
300
|
+
|
|
301
|
+
|
|
233
302
|
@pulumi.type_token("azure-native:app:PoolManagementType")
|
|
234
303
|
class PoolManagementType(builtins.str, Enum):
|
|
235
304
|
"""
|
|
@@ -250,6 +319,15 @@ class PrivateEndpointServiceConnectionStatus(builtins.str, Enum):
|
|
|
250
319
|
DISCONNECTED = "Disconnected"
|
|
251
320
|
|
|
252
321
|
|
|
322
|
+
@pulumi.type_token("azure-native:app:PublicNetworkAccess")
|
|
323
|
+
class PublicNetworkAccess(builtins.str, Enum):
|
|
324
|
+
"""
|
|
325
|
+
Property to allow or block all public traffic. Allowed Values: 'Enabled', 'Disabled'.
|
|
326
|
+
"""
|
|
327
|
+
ENABLED = "Enabled"
|
|
328
|
+
DISABLED = "Disabled"
|
|
329
|
+
|
|
330
|
+
|
|
253
331
|
@pulumi.type_token("azure-native:app:Scheme")
|
|
254
332
|
class Scheme(builtins.str, Enum):
|
|
255
333
|
"""
|
|
@@ -268,6 +346,15 @@ class SessionNetworkStatus(builtins.str, Enum):
|
|
|
268
346
|
EGRESS_DISABLED = "EgressDisabled"
|
|
269
347
|
|
|
270
348
|
|
|
349
|
+
@pulumi.type_token("azure-native:app:SessionProbeType")
|
|
350
|
+
class SessionProbeType(builtins.str, Enum):
|
|
351
|
+
"""
|
|
352
|
+
Denotes the type of probe. Can be Liveness or Startup, Readiness probe is not supported in sessions. Type must be unique for each probe within the context of a list of probes (SessionProbes).
|
|
353
|
+
"""
|
|
354
|
+
LIVENESS = "Liveness"
|
|
355
|
+
STARTUP = "Startup"
|
|
356
|
+
|
|
357
|
+
|
|
271
358
|
@pulumi.type_token("azure-native:app:StorageType")
|
|
272
359
|
class StorageType(builtins.str, Enum):
|
|
273
360
|
"""
|
|
@@ -277,6 +364,7 @@ class StorageType(builtins.str, Enum):
|
|
|
277
364
|
EMPTY_DIR = "EmptyDir"
|
|
278
365
|
SECRET = "Secret"
|
|
279
366
|
NFS_AZURE_FILE = "NfsAzureFile"
|
|
367
|
+
SMB = "Smb"
|
|
280
368
|
|
|
281
369
|
|
|
282
370
|
@pulumi.type_token("azure-native:app:TriggerType")
|