pulumi-gcp 7.14.1__py3-none-any.whl → 7.15.0__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.
- pulumi_gcp/__init__.py +94 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +74 -58
- pulumi_gcp/accesscontextmanager/outputs.py +74 -58
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/apphub/__init__.py +15 -0
- pulumi_gcp/apphub/_inputs.py +1016 -0
- pulumi_gcp/apphub/application.py +775 -0
- pulumi_gcp/apphub/get_discovered_service.py +180 -0
- pulumi_gcp/apphub/get_discovered_workload.py +180 -0
- pulumi_gcp/apphub/outputs.py +1206 -0
- pulumi_gcp/apphub/service.py +1121 -0
- pulumi_gcp/apphub/service_project_attachment.py +516 -0
- pulumi_gcp/apphub/workload.py +1197 -0
- pulumi_gcp/cloudquota/__init__.py +9 -0
- pulumi_gcp/cloudquota/get_s_quota_info.py +322 -0
- pulumi_gcp/cloudquota/outputs.py +105 -0
- pulumi_gcp/cloudrunv2/_inputs.py +26 -2
- pulumi_gcp/cloudrunv2/get_service.py +11 -1
- pulumi_gcp/cloudrunv2/outputs.py +58 -2
- pulumi_gcp/cloudrunv2/service.py +54 -0
- pulumi_gcp/compute/_inputs.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -4
- pulumi_gcp/compute/region_network_endpoint_group.py +30 -0
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/app_check_device_check_config.py +572 -0
- pulumi_gcp/firestore/_inputs.py +69 -0
- pulumi_gcp/firestore/database.py +206 -0
- pulumi_gcp/firestore/outputs.py +80 -0
- pulumi_gcp/gkeonprem/_inputs.py +1 -3
- pulumi_gcp/gkeonprem/outputs.py +1 -3
- pulumi_gcp/gkeonprem/v_mware_cluster.py +2 -0
- pulumi_gcp/iap/__init__.py +5 -0
- pulumi_gcp/iap/_inputs.py +100 -0
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +172 -0
- pulumi_gcp/iap/outputs.py +76 -0
- pulumi_gcp/iap/tunnel_dest_group.py +524 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +858 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +858 -0
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +760 -0
- pulumi_gcp/kms/__init__.py +1 -0
- pulumi_gcp/kms/_inputs.py +246 -0
- pulumi_gcp/kms/ekm_connection.py +610 -0
- pulumi_gcp/kms/outputs.py +242 -0
- pulumi_gcp/networksecurity/__init__.py +1 -0
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +753 -0
- pulumi_gcp/notebooks/instance.py +8 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pubsub/subscription.py +4 -4
- pulumi_gcp/securityposture/posture.py +2 -2
- pulumi_gcp/securityposture/posture_deployment.py +2 -2
- pulumi_gcp/storage/_inputs.py +32 -15
- pulumi_gcp/storage/outputs.py +29 -14
- pulumi_gcp/workstations/_inputs.py +134 -4
- pulumi_gcp/workstations/outputs.py +152 -4
- pulumi_gcp/workstations/workstation_config.py +54 -0
- {pulumi_gcp-7.14.1.dist-info → pulumi_gcp-7.15.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.14.1.dist-info → pulumi_gcp-7.15.0.dist-info}/RECORD +62 -42
- {pulumi_gcp-7.14.1.dist-info → pulumi_gcp-7.15.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.14.1.dist-info → pulumi_gcp-7.15.0.dist-info}/top_level.txt +0 -0
@@ -1668,8 +1668,8 @@ class ServicePerimeterEgressPolicyEgressFrom(dict):
|
|
1668
1668
|
sources: Optional[Sequence['outputs.ServicePerimeterEgressPolicyEgressFromSource']] = None):
|
1669
1669
|
"""
|
1670
1670
|
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
1671
|
-
Should be in the format of email address. The email address should
|
1672
|
-
represent individual user
|
1671
|
+
Should be in the format of an email address. The email address should
|
1672
|
+
represent an individual user, service account, or Google group.
|
1673
1673
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
1674
1674
|
perimeter. If left unspecified, then members of `identities` field will
|
1675
1675
|
be allowed access.
|
@@ -1693,8 +1693,8 @@ class ServicePerimeterEgressPolicyEgressFrom(dict):
|
|
1693
1693
|
def identities(self) -> Optional[Sequence[str]]:
|
1694
1694
|
"""
|
1695
1695
|
A list of identities that are allowed access through this `EgressPolicy`.
|
1696
|
-
Should be in the format of email address. The email address should
|
1697
|
-
represent individual user
|
1696
|
+
Should be in the format of an email address. The email address should
|
1697
|
+
represent an individual user, service account, or Google group.
|
1698
1698
|
"""
|
1699
1699
|
return pulumi.get(self, "identities")
|
1700
1700
|
|
@@ -1963,9 +1963,9 @@ class ServicePerimeterIngressPolicyIngressFrom(dict):
|
|
1963
1963
|
identity_type: Optional[str] = None,
|
1964
1964
|
sources: Optional[Sequence['outputs.ServicePerimeterIngressPolicyIngressFromSource']] = None):
|
1965
1965
|
"""
|
1966
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this
|
1967
|
-
Should be in the format of email address. The email address should represent
|
1968
|
-
individual user
|
1966
|
+
:param Sequence[str] identities: A list of identities that are allowed access through this `IngressPolicy`.
|
1967
|
+
Should be in the format of an email address. The email address should represent
|
1968
|
+
an individual user, service account, or Google group.
|
1969
1969
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
1970
1970
|
perimeter. If left unspecified, then members of `identities` field will be
|
1971
1971
|
allowed access.
|
@@ -1984,9 +1984,9 @@ class ServicePerimeterIngressPolicyIngressFrom(dict):
|
|
1984
1984
|
@pulumi.getter
|
1985
1985
|
def identities(self) -> Optional[Sequence[str]]:
|
1986
1986
|
"""
|
1987
|
-
A list of identities that are allowed access through this
|
1988
|
-
Should be in the format of email address. The email address should represent
|
1989
|
-
individual user
|
1987
|
+
A list of identities that are allowed access through this `IngressPolicy`.
|
1988
|
+
Should be in the format of an email address. The email address should represent
|
1989
|
+
an individual user, service account, or Google group.
|
1990
1990
|
"""
|
1991
1991
|
return pulumi.get(self, "identities")
|
1992
1992
|
|
@@ -2466,9 +2466,10 @@ class ServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
2466
2466
|
source_restriction: Optional[str] = None,
|
2467
2467
|
sources: Optional[Sequence['outputs.ServicePerimeterSpecEgressPolicyEgressFromSource']] = None):
|
2468
2468
|
"""
|
2469
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
2470
|
-
|
2471
|
-
|
2469
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `EgressPolicy`.
|
2470
|
+
To specify an identity or identity group, use the IAM v1
|
2471
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
2472
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2472
2473
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
2473
2474
|
perimeter. If left unspecified, then members of `identities` field will
|
2474
2475
|
be allowed access.
|
@@ -2491,9 +2492,10 @@ class ServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
2491
2492
|
@pulumi.getter
|
2492
2493
|
def identities(self) -> Optional[Sequence[str]]:
|
2493
2494
|
"""
|
2494
|
-
A list of identities that are allowed access through this `EgressPolicy`.
|
2495
|
-
|
2496
|
-
|
2495
|
+
'A list of identities that are allowed access through this `EgressPolicy`.
|
2496
|
+
To specify an identity or identity group, use the IAM v1
|
2497
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
2498
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2497
2499
|
"""
|
2498
2500
|
return pulumi.get(self, "identities")
|
2499
2501
|
|
@@ -2820,9 +2822,10 @@ class ServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
2820
2822
|
identity_type: Optional[str] = None,
|
2821
2823
|
sources: Optional[Sequence['outputs.ServicePerimeterSpecIngressPolicyIngressFromSource']] = None):
|
2822
2824
|
"""
|
2823
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this
|
2824
|
-
|
2825
|
-
|
2825
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `IngressPolicy`.
|
2826
|
+
To specify an identity or identity group, use the IAM v1
|
2827
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
2828
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2826
2829
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
2827
2830
|
perimeter. If left unspecified, then members of `identities` field will be
|
2828
2831
|
allowed access.
|
@@ -2841,9 +2844,10 @@ class ServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
2841
2844
|
@pulumi.getter
|
2842
2845
|
def identities(self) -> Optional[Sequence[str]]:
|
2843
2846
|
"""
|
2844
|
-
A list of identities that are allowed access through this
|
2845
|
-
|
2846
|
-
|
2847
|
+
'A list of identities that are allowed access through this `IngressPolicy`.
|
2848
|
+
To specify an identity or identity group, use the IAM v1
|
2849
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
2850
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2847
2851
|
"""
|
2848
2852
|
return pulumi.get(self, "identities")
|
2849
2853
|
|
@@ -3363,9 +3367,10 @@ class ServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
3363
3367
|
source_restriction: Optional[str] = None,
|
3364
3368
|
sources: Optional[Sequence['outputs.ServicePerimeterStatusEgressPolicyEgressFromSource']] = None):
|
3365
3369
|
"""
|
3366
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
3367
|
-
|
3368
|
-
|
3370
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `EgressPolicy`.
|
3371
|
+
To specify an identity or identity group, use the IAM v1
|
3372
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
3373
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3369
3374
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
3370
3375
|
perimeter. If left unspecified, then members of `identities` field will
|
3371
3376
|
be allowed access.
|
@@ -3388,9 +3393,10 @@ class ServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
3388
3393
|
@pulumi.getter
|
3389
3394
|
def identities(self) -> Optional[Sequence[str]]:
|
3390
3395
|
"""
|
3391
|
-
A list of identities that are allowed access through this `EgressPolicy`.
|
3392
|
-
|
3393
|
-
|
3396
|
+
'A list of identities that are allowed access through this `EgressPolicy`.
|
3397
|
+
To specify an identity or identity group, use the IAM v1
|
3398
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
3399
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3394
3400
|
"""
|
3395
3401
|
return pulumi.get(self, "identities")
|
3396
3402
|
|
@@ -3717,9 +3723,10 @@ class ServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
3717
3723
|
identity_type: Optional[str] = None,
|
3718
3724
|
sources: Optional[Sequence['outputs.ServicePerimeterStatusIngressPolicyIngressFromSource']] = None):
|
3719
3725
|
"""
|
3720
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this
|
3721
|
-
|
3722
|
-
|
3726
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `IngressPolicy`.
|
3727
|
+
To specify an identity or identity group, use the IAM v1
|
3728
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
3729
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3723
3730
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
3724
3731
|
perimeter. If left unspecified, then members of `identities` field will be
|
3725
3732
|
allowed access.
|
@@ -3738,9 +3745,10 @@ class ServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
3738
3745
|
@pulumi.getter
|
3739
3746
|
def identities(self) -> Optional[Sequence[str]]:
|
3740
3747
|
"""
|
3741
|
-
A list of identities that are allowed access through this
|
3742
|
-
|
3743
|
-
|
3748
|
+
'A list of identities that are allowed access through this `IngressPolicy`.
|
3749
|
+
To specify an identity or identity group, use the IAM v1
|
3750
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
3751
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3744
3752
|
"""
|
3745
3753
|
return pulumi.get(self, "identities")
|
3746
3754
|
|
@@ -4466,9 +4474,10 @@ class ServicePerimetersServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
4466
4474
|
source_restriction: Optional[str] = None,
|
4467
4475
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterSpecEgressPolicyEgressFromSource']] = None):
|
4468
4476
|
"""
|
4469
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
4470
|
-
|
4471
|
-
|
4477
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `EgressPolicy`.
|
4478
|
+
To specify an identity or identity group, use the IAM v1 format
|
4479
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
4480
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4472
4481
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
4473
4482
|
perimeter. If left unspecified, then members of `identities` field will
|
4474
4483
|
be allowed access.
|
@@ -4491,9 +4500,10 @@ class ServicePerimetersServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
4491
4500
|
@pulumi.getter
|
4492
4501
|
def identities(self) -> Optional[Sequence[str]]:
|
4493
4502
|
"""
|
4494
|
-
A list of identities that are allowed access through this `EgressPolicy`.
|
4495
|
-
|
4496
|
-
|
4503
|
+
'A list of identities that are allowed access through this `EgressPolicy`.
|
4504
|
+
To specify an identity or identity group, use the IAM v1 format
|
4505
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
4506
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4497
4507
|
"""
|
4498
4508
|
return pulumi.get(self, "identities")
|
4499
4509
|
|
@@ -4820,9 +4830,10 @@ class ServicePerimetersServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
4820
4830
|
identity_type: Optional[str] = None,
|
4821
4831
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterSpecIngressPolicyIngressFromSource']] = None):
|
4822
4832
|
"""
|
4823
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this
|
4824
|
-
|
4825
|
-
|
4833
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `IngressPolicy`.
|
4834
|
+
To specify an identity or identity group, use the IAM v1 format
|
4835
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
4836
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4826
4837
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
4827
4838
|
perimeter. If left unspecified, then members of `identities` field will be
|
4828
4839
|
allowed access.
|
@@ -4841,9 +4852,10 @@ class ServicePerimetersServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
4841
4852
|
@pulumi.getter
|
4842
4853
|
def identities(self) -> Optional[Sequence[str]]:
|
4843
4854
|
"""
|
4844
|
-
A list of identities that are allowed access through this
|
4845
|
-
|
4846
|
-
|
4855
|
+
'A list of identities that are allowed access through this `IngressPolicy`.
|
4856
|
+
To specify an identity or identity group, use the IAM v1 format
|
4857
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
4858
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4847
4859
|
"""
|
4848
4860
|
return pulumi.get(self, "identities")
|
4849
4861
|
|
@@ -5363,9 +5375,10 @@ class ServicePerimetersServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
5363
5375
|
source_restriction: Optional[str] = None,
|
5364
5376
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterStatusEgressPolicyEgressFromSource']] = None):
|
5365
5377
|
"""
|
5366
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
5367
|
-
|
5368
|
-
|
5378
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `EgressPolicy`.
|
5379
|
+
To specify an identity or identity group, use the IAM v1 format
|
5380
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
5381
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5369
5382
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
5370
5383
|
perimeter. If left unspecified, then members of `identities` field will
|
5371
5384
|
be allowed access.
|
@@ -5388,9 +5401,10 @@ class ServicePerimetersServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
5388
5401
|
@pulumi.getter
|
5389
5402
|
def identities(self) -> Optional[Sequence[str]]:
|
5390
5403
|
"""
|
5391
|
-
A list of identities that are allowed access through this `EgressPolicy`.
|
5392
|
-
|
5393
|
-
|
5404
|
+
'A list of identities that are allowed access through this `EgressPolicy`.
|
5405
|
+
To specify an identity or identity group, use the IAM v1 format
|
5406
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
5407
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5394
5408
|
"""
|
5395
5409
|
return pulumi.get(self, "identities")
|
5396
5410
|
|
@@ -5717,9 +5731,10 @@ class ServicePerimetersServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
5717
5731
|
identity_type: Optional[str] = None,
|
5718
5732
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterStatusIngressPolicyIngressFromSource']] = None):
|
5719
5733
|
"""
|
5720
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this
|
5721
|
-
|
5722
|
-
|
5734
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `IngressPolicy`.
|
5735
|
+
To specify an identity or identity group, use the IAM v1 format
|
5736
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
5737
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5723
5738
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
5724
5739
|
perimeter. If left unspecified, then members of `identities` field will be
|
5725
5740
|
allowed access.
|
@@ -5738,9 +5753,10 @@ class ServicePerimetersServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
5738
5753
|
@pulumi.getter
|
5739
5754
|
def identities(self) -> Optional[Sequence[str]]:
|
5740
5755
|
"""
|
5741
|
-
A list of identities that are allowed access through this
|
5742
|
-
|
5743
|
-
|
5756
|
+
'A list of identities that are allowed access through this `IngressPolicy`.
|
5757
|
+
To specify an identity or identity group, use the IAM v1 format
|
5758
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
5759
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5744
5760
|
"""
|
5745
5761
|
return pulumi.get(self, "identities")
|
5746
5762
|
|
@@ -673,7 +673,6 @@ class ServicePerimeter(pulumi.CustomResource):
|
|
673
673
|
use_explicit_dry_run_spec=True)
|
674
674
|
```
|
675
675
|
<!--End PulumiCodeChooser -->
|
676
|
-
|
677
676
|
## Import
|
678
677
|
|
679
678
|
ServicePerimeter can be imported using any of these accepted formats:
|
@@ -936,7 +935,6 @@ class ServicePerimeter(pulumi.CustomResource):
|
|
936
935
|
use_explicit_dry_run_spec=True)
|
937
936
|
```
|
938
937
|
<!--End PulumiCodeChooser -->
|
939
|
-
|
940
938
|
## Import
|
941
939
|
|
942
940
|
ServicePerimeter can be imported using any of these accepted formats:
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .application import *
|
9
|
+
from .get_discovered_service import *
|
10
|
+
from .get_discovered_workload import *
|
11
|
+
from .service import *
|
12
|
+
from .service_project_attachment import *
|
13
|
+
from .workload import *
|
14
|
+
from ._inputs import *
|
15
|
+
from . import outputs
|