pulumi-azure-native 2.76.0a1733495453__py3-none-any.whl → 2.77.0a1733758409__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/pulumi-plugin.json +1 -1
- pulumi_azure_native/web/static_site_linked_backend.py +18 -17
- {pulumi_azure_native-2.76.0a1733495453.dist-info → pulumi_azure_native-2.77.0a1733758409.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.76.0a1733495453.dist-info → pulumi_azure_native-2.77.0a1733758409.dist-info}/RECORD +6 -6
- {pulumi_azure_native-2.76.0a1733495453.dist-info → pulumi_azure_native-2.77.0a1733758409.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.76.0a1733495453.dist-info → pulumi_azure_native-2.77.0a1733758409.dist-info}/top_level.txt +0 -0
|
@@ -20,21 +20,22 @@ __all__ = ['StaticSiteLinkedBackendArgs', 'StaticSiteLinkedBackend']
|
|
|
20
20
|
class StaticSiteLinkedBackendArgs:
|
|
21
21
|
def __init__(__self__, *,
|
|
22
22
|
name: pulumi.Input[str],
|
|
23
|
+
region: pulumi.Input[str],
|
|
23
24
|
resource_group_name: pulumi.Input[str],
|
|
24
25
|
backend_resource_id: Optional[pulumi.Input[str]] = None,
|
|
25
26
|
kind: Optional[pulumi.Input[str]] = None,
|
|
26
|
-
linked_backend_name: Optional[pulumi.Input[str]] = None
|
|
27
|
-
region: Optional[pulumi.Input[str]] = None):
|
|
27
|
+
linked_backend_name: Optional[pulumi.Input[str]] = None):
|
|
28
28
|
"""
|
|
29
29
|
The set of arguments for constructing a StaticSiteLinkedBackend resource.
|
|
30
30
|
:param pulumi.Input[str] name: Name of the static site
|
|
31
|
+
:param pulumi.Input[str] region: The region of the backend linked to the static site
|
|
31
32
|
:param pulumi.Input[str] resource_group_name: Name of the resource group to which the resource belongs.
|
|
32
33
|
:param pulumi.Input[str] backend_resource_id: The resource id of the backend linked to the static site
|
|
33
34
|
:param pulumi.Input[str] kind: Kind of resource.
|
|
34
35
|
:param pulumi.Input[str] linked_backend_name: Name of the backend to link to the static site
|
|
35
|
-
:param pulumi.Input[str] region: The region of the backend linked to the static site
|
|
36
36
|
"""
|
|
37
37
|
pulumi.set(__self__, "name", name)
|
|
38
|
+
pulumi.set(__self__, "region", region)
|
|
38
39
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
39
40
|
if backend_resource_id is not None:
|
|
40
41
|
pulumi.set(__self__, "backend_resource_id", backend_resource_id)
|
|
@@ -42,8 +43,6 @@ class StaticSiteLinkedBackendArgs:
|
|
|
42
43
|
pulumi.set(__self__, "kind", kind)
|
|
43
44
|
if linked_backend_name is not None:
|
|
44
45
|
pulumi.set(__self__, "linked_backend_name", linked_backend_name)
|
|
45
|
-
if region is not None:
|
|
46
|
-
pulumi.set(__self__, "region", region)
|
|
47
46
|
|
|
48
47
|
@property
|
|
49
48
|
@pulumi.getter
|
|
@@ -57,6 +56,18 @@ class StaticSiteLinkedBackendArgs:
|
|
|
57
56
|
def name(self, value: pulumi.Input[str]):
|
|
58
57
|
pulumi.set(self, "name", value)
|
|
59
58
|
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter
|
|
61
|
+
def region(self) -> pulumi.Input[str]:
|
|
62
|
+
"""
|
|
63
|
+
The region of the backend linked to the static site
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "region")
|
|
66
|
+
|
|
67
|
+
@region.setter
|
|
68
|
+
def region(self, value: pulumi.Input[str]):
|
|
69
|
+
pulumi.set(self, "region", value)
|
|
70
|
+
|
|
60
71
|
@property
|
|
61
72
|
@pulumi.getter(name="resourceGroupName")
|
|
62
73
|
def resource_group_name(self) -> pulumi.Input[str]:
|
|
@@ -105,18 +116,6 @@ class StaticSiteLinkedBackendArgs:
|
|
|
105
116
|
def linked_backend_name(self, value: Optional[pulumi.Input[str]]):
|
|
106
117
|
pulumi.set(self, "linked_backend_name", value)
|
|
107
118
|
|
|
108
|
-
@property
|
|
109
|
-
@pulumi.getter
|
|
110
|
-
def region(self) -> Optional[pulumi.Input[str]]:
|
|
111
|
-
"""
|
|
112
|
-
The region of the backend linked to the static site
|
|
113
|
-
"""
|
|
114
|
-
return pulumi.get(self, "region")
|
|
115
|
-
|
|
116
|
-
@region.setter
|
|
117
|
-
def region(self, value: Optional[pulumi.Input[str]]):
|
|
118
|
-
pulumi.set(self, "region", value)
|
|
119
|
-
|
|
120
119
|
|
|
121
120
|
class StaticSiteLinkedBackend(pulumi.CustomResource):
|
|
122
121
|
@overload
|
|
@@ -193,6 +192,8 @@ class StaticSiteLinkedBackend(pulumi.CustomResource):
|
|
|
193
192
|
if name is None and not opts.urn:
|
|
194
193
|
raise TypeError("Missing required property 'name'")
|
|
195
194
|
__props__.__dict__["name"] = name
|
|
195
|
+
if region is None and not opts.urn:
|
|
196
|
+
raise TypeError("Missing required property 'region'")
|
|
196
197
|
__props__.__dict__["region"] = region
|
|
197
198
|
if resource_group_name is None and not opts.urn:
|
|
198
199
|
raise TypeError("Missing required property 'resource_group_name'")
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
pulumi_azure_native/__init__.py,sha256=lBdVO386b1ZZgVxRvbt0nRmkcimU183GMXBfXcRyB0s,1139477
|
|
2
2
|
pulumi_azure_native/_utilities.py,sha256=UL5vEmfNrBfiaeFQS69cz7xlHoBnPH8PY_UIVNwShcM,10486
|
|
3
3
|
pulumi_azure_native/provider.py,sha256=ijD50GjYD0xTGWJVAR_zi8DRpow_AcfiaEDdwOwh-D8,23052
|
|
4
|
-
pulumi_azure_native/pulumi-plugin.json,sha256=
|
|
4
|
+
pulumi_azure_native/pulumi-plugin.json,sha256=KSt82MdI5UF0JCSnOwH2Gr-Bg_7wP4T8F3s-9stO6Ps,89
|
|
5
5
|
pulumi_azure_native/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
pulumi_azure_native/aad/__init__.py,sha256=O2XPJyft-EiRyZdbKAbADw_hWhoH_Yn8KOwWpJprjs0,669
|
|
7
7
|
pulumi_azure_native/aad/_enums.py,sha256=nEE4b-gxeGR_DXhJA6WTIznl4AA5UmVTKpvu2PV66RE,3419
|
|
@@ -28783,7 +28783,7 @@ pulumi_azure_native/web/static_site.py,sha256=-W9aoiKLkvjoVu_HVbNqCNS0x-_eH6BXKA
|
|
|
28783
28783
|
pulumi_azure_native/web/static_site_build_database_connection.py,sha256=TgopbkZ3PhfcPJZhX7JRhOct9Wwm_rN5aWRGDLoCMTg,16556
|
|
28784
28784
|
pulumi_azure_native/web/static_site_custom_domain.py,sha256=z_69VxjdCilmKEyl9DbZkSjFnI8FDC_Ye9tnviPR9x8,11881
|
|
28785
28785
|
pulumi_azure_native/web/static_site_database_connection.py,sha256=vcqIEIXU2V_MpM4xb8MCw2D-6KQ-XQZQZBLuV0cRZUs,15462
|
|
28786
|
-
pulumi_azure_native/web/static_site_linked_backend.py,sha256=
|
|
28786
|
+
pulumi_azure_native/web/static_site_linked_backend.py,sha256=OMXKV4oZPS8oMUKWX04J3dCtsW-rO7XzDuepCaQnMj4,12246
|
|
28787
28787
|
pulumi_azure_native/web/static_site_linked_backend_for_build.py,sha256=r36D-fDbbjDEQ9tgwIXFgUyZD_ookqUEXLdnCwlffZU,13362
|
|
28788
28788
|
pulumi_azure_native/web/static_site_private_endpoint_connection.py,sha256=lC6NhowYcXvyQMYbwXxrEvnECG4bxI04MoPtVm15Wxk,14134
|
|
28789
28789
|
pulumi_azure_native/web/static_site_user_provided_function_app_for_static_site.py,sha256=V7Z34_KA7ot2rjzyXewMlEByEkrd-94JM-18RTLDnkI,14714
|
|
@@ -30235,7 +30235,7 @@ pulumi_azure_native/workloads/v20240901/sap_application_server_instance.py,sha25
|
|
|
30235
30235
|
pulumi_azure_native/workloads/v20240901/sap_central_server_instance.py,sha256=eorizuwGPlHaa-R7seqv1ZW7oqM3Ae68X_EUHHfHMzQ,16551
|
|
30236
30236
|
pulumi_azure_native/workloads/v20240901/sap_database_instance.py,sha256=glkxQJ8mHANMOyZ_m_GEUO9doepUAPxuPshRLYxwaMU,14157
|
|
30237
30237
|
pulumi_azure_native/workloads/v20240901/sap_virtual_instance.py,sha256=oMD5HXY2B5ywv0FQt-8INmP3fTt-huBJNeQzF5ZuOJk,24431
|
|
30238
|
-
pulumi_azure_native-2.
|
|
30239
|
-
pulumi_azure_native-2.
|
|
30240
|
-
pulumi_azure_native-2.
|
|
30241
|
-
pulumi_azure_native-2.
|
|
30238
|
+
pulumi_azure_native-2.77.0a1733758409.dist-info/METADATA,sha256=31ITQlf-tK5D9yjW1dTr_3VywnfzH_jyFkplsbI8_fM,4200
|
|
30239
|
+
pulumi_azure_native-2.77.0a1733758409.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
30240
|
+
pulumi_azure_native-2.77.0a1733758409.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
|
|
30241
|
+
pulumi_azure_native-2.77.0a1733758409.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|