pulumi-gcp 7.25.0__py3-none-any.whl → 7.25.0a1717104660__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 +0 -88
- pulumi_gcp/appengine/_inputs.py +0 -18
- pulumi_gcp/appengine/domain_mapping.py +1 -1
- pulumi_gcp/appengine/outputs.py +0 -16
- pulumi_gcp/bigquery/_inputs.py +2 -286
- pulumi_gcp/bigquery/outputs.py +2 -289
- pulumi_gcp/bigquery/table.py +35 -77
- pulumi_gcp/cloudfunctionsv2/function.py +4 -0
- pulumi_gcp/cloudrun/_inputs.py +4 -80
- pulumi_gcp/cloudrun/outputs.py +4 -137
- pulumi_gcp/composer/user_workloads_secret.py +4 -4
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +176 -398
- pulumi_gcp/compute/instance_group_membership.py +2 -2
- pulumi_gcp/compute/interconnect_attachment.py +0 -82
- pulumi_gcp/compute/network_endpoint.py +2 -2
- pulumi_gcp/compute/network_endpoint_list.py +2 -2
- pulumi_gcp/compute/outputs.py +161 -609
- pulumi_gcp/compute/region_ssl_policy.py +40 -39
- pulumi_gcp/compute/security_policy_rule.py +1 -55
- pulumi_gcp/container/_inputs.py +0 -560
- pulumi_gcp/container/outputs.py +51 -1106
- pulumi_gcp/dataplex/__init__.py +0 -10
- pulumi_gcp/dataplex/_inputs.py +0 -160
- pulumi_gcp/dataplex/outputs.py +0 -112
- pulumi_gcp/datastream/connection_profile.py +0 -47
- pulumi_gcp/datastream/private_connection.py +0 -47
- pulumi_gcp/datastream/stream.py +0 -47
- pulumi_gcp/kms/__init__.py +0 -2
- pulumi_gcp/networkservices/__init__.py +0 -1
- pulumi_gcp/networkservices/_inputs.py +27 -245
- pulumi_gcp/networkservices/lb_traffic_extension.py +14 -28
- pulumi_gcp/networkservices/outputs.py +20 -251
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/_inputs.py +0 -16
- pulumi_gcp/pubsub/outputs.py +0 -25
- pulumi_gcp/pubsub/subscription.py +4 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/user.py +4 -4
- pulumi_gcp/tpu/_inputs.py +2 -2
- pulumi_gcp/tpu/outputs.py +2 -2
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/RECORD +45 -59
- pulumi_gcp/compute/get_subnetworks.py +0 -157
- pulumi_gcp/dataplex/aspect_type.py +0 -1077
- pulumi_gcp/dataplex/aspect_type_iam_binding.py +0 -765
- pulumi_gcp/dataplex/aspect_type_iam_member.py +0 -765
- pulumi_gcp/dataplex/aspect_type_iam_policy.py +0 -604
- pulumi_gcp/dataplex/entry_group.py +0 -722
- pulumi_gcp/dataplex/entry_group_iam_binding.py +0 -765
- pulumi_gcp/dataplex/entry_group_iam_member.py +0 -765
- pulumi_gcp/dataplex/entry_group_iam_policy.py +0 -604
- pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +0 -164
- pulumi_gcp/dataplex/get_entry_group_iam_policy.py +0 -164
- pulumi_gcp/kms/autokey_config.py +0 -366
- pulumi_gcp/kms/key_handle.py +0 -548
- pulumi_gcp/networkservices/lb_route_extension.py +0 -663
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/top_level.txt +0 -0
pulumi_gcp/cloudrun/_inputs.py
CHANGED
@@ -48,7 +48,6 @@ __all__ = [
|
|
48
48
|
'ServiceTemplateSpecVolumeArgs',
|
49
49
|
'ServiceTemplateSpecVolumeCsiArgs',
|
50
50
|
'ServiceTemplateSpecVolumeEmptyDirArgs',
|
51
|
-
'ServiceTemplateSpecVolumeNfsArgs',
|
52
51
|
'ServiceTemplateSpecVolumeSecretArgs',
|
53
52
|
'ServiceTemplateSpecVolumeSecretItemArgs',
|
54
53
|
'ServiceTrafficArgs',
|
@@ -2885,7 +2884,6 @@ class ServiceTemplateSpecVolumeArgs:
|
|
2885
2884
|
name: pulumi.Input[str],
|
2886
2885
|
csi: Optional[pulumi.Input['ServiceTemplateSpecVolumeCsiArgs']] = None,
|
2887
2886
|
empty_dir: Optional[pulumi.Input['ServiceTemplateSpecVolumeEmptyDirArgs']] = None,
|
2888
|
-
nfs: Optional[pulumi.Input['ServiceTemplateSpecVolumeNfsArgs']] = None,
|
2889
2887
|
secret: Optional[pulumi.Input['ServiceTemplateSpecVolumeSecretArgs']] = None):
|
2890
2888
|
"""
|
2891
2889
|
:param pulumi.Input[str] name: Volume's name.
|
@@ -2893,10 +2891,6 @@ class ServiceTemplateSpecVolumeArgs:
|
|
2893
2891
|
Structure is documented below.
|
2894
2892
|
:param pulumi.Input['ServiceTemplateSpecVolumeEmptyDirArgs'] empty_dir: Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs).
|
2895
2893
|
Structure is documented below.
|
2896
|
-
:param pulumi.Input['ServiceTemplateSpecVolumeNfsArgs'] nfs: A filesystem backed by a Network File System share. This filesystem requires the
|
2897
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2" and
|
2898
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
2899
|
-
Structure is documented below.
|
2900
2894
|
:param pulumi.Input['ServiceTemplateSpecVolumeSecretArgs'] secret: The secret's value will be presented as the content of a file whose
|
2901
2895
|
name is defined in the item path. If no items are defined, the name of
|
2902
2896
|
the file is the secret_name.
|
@@ -2907,8 +2901,6 @@ class ServiceTemplateSpecVolumeArgs:
|
|
2907
2901
|
pulumi.set(__self__, "csi", csi)
|
2908
2902
|
if empty_dir is not None:
|
2909
2903
|
pulumi.set(__self__, "empty_dir", empty_dir)
|
2910
|
-
if nfs is not None:
|
2911
|
-
pulumi.set(__self__, "nfs", nfs)
|
2912
2904
|
if secret is not None:
|
2913
2905
|
pulumi.set(__self__, "secret", secret)
|
2914
2906
|
|
@@ -2950,21 +2942,6 @@ class ServiceTemplateSpecVolumeArgs:
|
|
2950
2942
|
def empty_dir(self, value: Optional[pulumi.Input['ServiceTemplateSpecVolumeEmptyDirArgs']]):
|
2951
2943
|
pulumi.set(self, "empty_dir", value)
|
2952
2944
|
|
2953
|
-
@property
|
2954
|
-
@pulumi.getter
|
2955
|
-
def nfs(self) -> Optional[pulumi.Input['ServiceTemplateSpecVolumeNfsArgs']]:
|
2956
|
-
"""
|
2957
|
-
A filesystem backed by a Network File System share. This filesystem requires the
|
2958
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2" and
|
2959
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
2960
|
-
Structure is documented below.
|
2961
|
-
"""
|
2962
|
-
return pulumi.get(self, "nfs")
|
2963
|
-
|
2964
|
-
@nfs.setter
|
2965
|
-
def nfs(self, value: Optional[pulumi.Input['ServiceTemplateSpecVolumeNfsArgs']]):
|
2966
|
-
pulumi.set(self, "nfs", value)
|
2967
|
-
|
2968
2945
|
@property
|
2969
2946
|
@pulumi.getter
|
2970
2947
|
def secret(self) -> Optional[pulumi.Input['ServiceTemplateSpecVolumeSecretArgs']]:
|
@@ -2996,6 +2973,8 @@ class ServiceTemplateSpecVolumeCsiArgs:
|
|
2996
2973
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] volume_attributes: Driver-specific attributes. The following options are supported for available drivers:
|
2997
2974
|
* gcsfuse.run.googleapis.com
|
2998
2975
|
* bucketName: The name of the Cloud Storage Bucket that backs this volume. The Cloud Run Service identity must have access to this bucket.
|
2976
|
+
|
2977
|
+
- - -
|
2999
2978
|
"""
|
3000
2979
|
pulumi.set(__self__, "driver", driver)
|
3001
2980
|
if read_only is not None:
|
@@ -3037,6 +3016,8 @@ class ServiceTemplateSpecVolumeCsiArgs:
|
|
3037
3016
|
Driver-specific attributes. The following options are supported for available drivers:
|
3038
3017
|
* gcsfuse.run.googleapis.com
|
3039
3018
|
* bucketName: The name of the Cloud Storage Bucket that backs this volume. The Cloud Run Service identity must have access to this bucket.
|
3019
|
+
|
3020
|
+
- - -
|
3040
3021
|
"""
|
3041
3022
|
return pulumi.get(self, "volume_attributes")
|
3042
3023
|
|
@@ -3084,63 +3065,6 @@ class ServiceTemplateSpecVolumeEmptyDirArgs:
|
|
3084
3065
|
pulumi.set(self, "size_limit", value)
|
3085
3066
|
|
3086
3067
|
|
3087
|
-
@pulumi.input_type
|
3088
|
-
class ServiceTemplateSpecVolumeNfsArgs:
|
3089
|
-
def __init__(__self__, *,
|
3090
|
-
path: pulumi.Input[str],
|
3091
|
-
server: pulumi.Input[str],
|
3092
|
-
read_only: Optional[pulumi.Input[bool]] = None):
|
3093
|
-
"""
|
3094
|
-
:param pulumi.Input[str] path: Path exported by the NFS server
|
3095
|
-
:param pulumi.Input[str] server: IP address or hostname of the NFS server
|
3096
|
-
:param pulumi.Input[bool] read_only: If true, mount the NFS volume as read only in all mounts. Defaults to false.
|
3097
|
-
|
3098
|
-
- - -
|
3099
|
-
"""
|
3100
|
-
pulumi.set(__self__, "path", path)
|
3101
|
-
pulumi.set(__self__, "server", server)
|
3102
|
-
if read_only is not None:
|
3103
|
-
pulumi.set(__self__, "read_only", read_only)
|
3104
|
-
|
3105
|
-
@property
|
3106
|
-
@pulumi.getter
|
3107
|
-
def path(self) -> pulumi.Input[str]:
|
3108
|
-
"""
|
3109
|
-
Path exported by the NFS server
|
3110
|
-
"""
|
3111
|
-
return pulumi.get(self, "path")
|
3112
|
-
|
3113
|
-
@path.setter
|
3114
|
-
def path(self, value: pulumi.Input[str]):
|
3115
|
-
pulumi.set(self, "path", value)
|
3116
|
-
|
3117
|
-
@property
|
3118
|
-
@pulumi.getter
|
3119
|
-
def server(self) -> pulumi.Input[str]:
|
3120
|
-
"""
|
3121
|
-
IP address or hostname of the NFS server
|
3122
|
-
"""
|
3123
|
-
return pulumi.get(self, "server")
|
3124
|
-
|
3125
|
-
@server.setter
|
3126
|
-
def server(self, value: pulumi.Input[str]):
|
3127
|
-
pulumi.set(self, "server", value)
|
3128
|
-
|
3129
|
-
@property
|
3130
|
-
@pulumi.getter(name="readOnly")
|
3131
|
-
def read_only(self) -> Optional[pulumi.Input[bool]]:
|
3132
|
-
"""
|
3133
|
-
If true, mount the NFS volume as read only in all mounts. Defaults to false.
|
3134
|
-
|
3135
|
-
- - -
|
3136
|
-
"""
|
3137
|
-
return pulumi.get(self, "read_only")
|
3138
|
-
|
3139
|
-
@read_only.setter
|
3140
|
-
def read_only(self, value: Optional[pulumi.Input[bool]]):
|
3141
|
-
pulumi.set(self, "read_only", value)
|
3142
|
-
|
3143
|
-
|
3144
3068
|
@pulumi.input_type
|
3145
3069
|
class ServiceTemplateSpecVolumeSecretArgs:
|
3146
3070
|
def __init__(__self__, *,
|
pulumi_gcp/cloudrun/outputs.py
CHANGED
@@ -49,7 +49,6 @@ __all__ = [
|
|
49
49
|
'ServiceTemplateSpecVolume',
|
50
50
|
'ServiceTemplateSpecVolumeCsi',
|
51
51
|
'ServiceTemplateSpecVolumeEmptyDir',
|
52
|
-
'ServiceTemplateSpecVolumeNfs',
|
53
52
|
'ServiceTemplateSpecVolumeSecret',
|
54
53
|
'ServiceTemplateSpecVolumeSecretItem',
|
55
54
|
'ServiceTraffic',
|
@@ -84,7 +83,6 @@ __all__ = [
|
|
84
83
|
'GetServiceTemplateSpecVolumeResult',
|
85
84
|
'GetServiceTemplateSpecVolumeCsiResult',
|
86
85
|
'GetServiceTemplateSpecVolumeEmptyDirResult',
|
87
|
-
'GetServiceTemplateSpecVolumeNfResult',
|
88
86
|
'GetServiceTemplateSpecVolumeSecretResult',
|
89
87
|
'GetServiceTemplateSpecVolumeSecretItemResult',
|
90
88
|
'GetServiceTrafficResult',
|
@@ -2803,7 +2801,6 @@ class ServiceTemplateSpecVolume(dict):
|
|
2803
2801
|
name: str,
|
2804
2802
|
csi: Optional['outputs.ServiceTemplateSpecVolumeCsi'] = None,
|
2805
2803
|
empty_dir: Optional['outputs.ServiceTemplateSpecVolumeEmptyDir'] = None,
|
2806
|
-
nfs: Optional['outputs.ServiceTemplateSpecVolumeNfs'] = None,
|
2807
2804
|
secret: Optional['outputs.ServiceTemplateSpecVolumeSecret'] = None):
|
2808
2805
|
"""
|
2809
2806
|
:param str name: Volume's name.
|
@@ -2811,10 +2808,6 @@ class ServiceTemplateSpecVolume(dict):
|
|
2811
2808
|
Structure is documented below.
|
2812
2809
|
:param 'ServiceTemplateSpecVolumeEmptyDirArgs' empty_dir: Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs).
|
2813
2810
|
Structure is documented below.
|
2814
|
-
:param 'ServiceTemplateSpecVolumeNfsArgs' nfs: A filesystem backed by a Network File System share. This filesystem requires the
|
2815
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2" and
|
2816
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
2817
|
-
Structure is documented below.
|
2818
2811
|
:param 'ServiceTemplateSpecVolumeSecretArgs' secret: The secret's value will be presented as the content of a file whose
|
2819
2812
|
name is defined in the item path. If no items are defined, the name of
|
2820
2813
|
the file is the secret_name.
|
@@ -2825,8 +2818,6 @@ class ServiceTemplateSpecVolume(dict):
|
|
2825
2818
|
pulumi.set(__self__, "csi", csi)
|
2826
2819
|
if empty_dir is not None:
|
2827
2820
|
pulumi.set(__self__, "empty_dir", empty_dir)
|
2828
|
-
if nfs is not None:
|
2829
|
-
pulumi.set(__self__, "nfs", nfs)
|
2830
2821
|
if secret is not None:
|
2831
2822
|
pulumi.set(__self__, "secret", secret)
|
2832
2823
|
|
@@ -2856,17 +2847,6 @@ class ServiceTemplateSpecVolume(dict):
|
|
2856
2847
|
"""
|
2857
2848
|
return pulumi.get(self, "empty_dir")
|
2858
2849
|
|
2859
|
-
@property
|
2860
|
-
@pulumi.getter
|
2861
|
-
def nfs(self) -> Optional['outputs.ServiceTemplateSpecVolumeNfs']:
|
2862
|
-
"""
|
2863
|
-
A filesystem backed by a Network File System share. This filesystem requires the
|
2864
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2" and
|
2865
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
2866
|
-
Structure is documented below.
|
2867
|
-
"""
|
2868
|
-
return pulumi.get(self, "nfs")
|
2869
|
-
|
2870
2850
|
@property
|
2871
2851
|
@pulumi.getter
|
2872
2852
|
def secret(self) -> Optional['outputs.ServiceTemplateSpecVolumeSecret']:
|
@@ -2913,6 +2893,8 @@ class ServiceTemplateSpecVolumeCsi(dict):
|
|
2913
2893
|
:param Mapping[str, str] volume_attributes: Driver-specific attributes. The following options are supported for available drivers:
|
2914
2894
|
* gcsfuse.run.googleapis.com
|
2915
2895
|
* bucketName: The name of the Cloud Storage Bucket that backs this volume. The Cloud Run Service identity must have access to this bucket.
|
2896
|
+
|
2897
|
+
- - -
|
2916
2898
|
"""
|
2917
2899
|
pulumi.set(__self__, "driver", driver)
|
2918
2900
|
if read_only is not None:
|
@@ -2946,6 +2928,8 @@ class ServiceTemplateSpecVolumeCsi(dict):
|
|
2946
2928
|
Driver-specific attributes. The following options are supported for available drivers:
|
2947
2929
|
* gcsfuse.run.googleapis.com
|
2948
2930
|
* bucketName: The name of the Cloud Storage Bucket that backs this volume. The Cloud Run Service identity must have access to this bucket.
|
2931
|
+
|
2932
|
+
- - -
|
2949
2933
|
"""
|
2950
2934
|
return pulumi.get(self, "volume_attributes")
|
2951
2935
|
|
@@ -2998,68 +2982,6 @@ class ServiceTemplateSpecVolumeEmptyDir(dict):
|
|
2998
2982
|
return pulumi.get(self, "size_limit")
|
2999
2983
|
|
3000
2984
|
|
3001
|
-
@pulumi.output_type
|
3002
|
-
class ServiceTemplateSpecVolumeNfs(dict):
|
3003
|
-
@staticmethod
|
3004
|
-
def __key_warning(key: str):
|
3005
|
-
suggest = None
|
3006
|
-
if key == "readOnly":
|
3007
|
-
suggest = "read_only"
|
3008
|
-
|
3009
|
-
if suggest:
|
3010
|
-
pulumi.log.warn(f"Key '{key}' not found in ServiceTemplateSpecVolumeNfs. Access the value via the '{suggest}' property getter instead.")
|
3011
|
-
|
3012
|
-
def __getitem__(self, key: str) -> Any:
|
3013
|
-
ServiceTemplateSpecVolumeNfs.__key_warning(key)
|
3014
|
-
return super().__getitem__(key)
|
3015
|
-
|
3016
|
-
def get(self, key: str, default = None) -> Any:
|
3017
|
-
ServiceTemplateSpecVolumeNfs.__key_warning(key)
|
3018
|
-
return super().get(key, default)
|
3019
|
-
|
3020
|
-
def __init__(__self__, *,
|
3021
|
-
path: str,
|
3022
|
-
server: str,
|
3023
|
-
read_only: Optional[bool] = None):
|
3024
|
-
"""
|
3025
|
-
:param str path: Path exported by the NFS server
|
3026
|
-
:param str server: IP address or hostname of the NFS server
|
3027
|
-
:param bool read_only: If true, mount the NFS volume as read only in all mounts. Defaults to false.
|
3028
|
-
|
3029
|
-
- - -
|
3030
|
-
"""
|
3031
|
-
pulumi.set(__self__, "path", path)
|
3032
|
-
pulumi.set(__self__, "server", server)
|
3033
|
-
if read_only is not None:
|
3034
|
-
pulumi.set(__self__, "read_only", read_only)
|
3035
|
-
|
3036
|
-
@property
|
3037
|
-
@pulumi.getter
|
3038
|
-
def path(self) -> str:
|
3039
|
-
"""
|
3040
|
-
Path exported by the NFS server
|
3041
|
-
"""
|
3042
|
-
return pulumi.get(self, "path")
|
3043
|
-
|
3044
|
-
@property
|
3045
|
-
@pulumi.getter
|
3046
|
-
def server(self) -> str:
|
3047
|
-
"""
|
3048
|
-
IP address or hostname of the NFS server
|
3049
|
-
"""
|
3050
|
-
return pulumi.get(self, "server")
|
3051
|
-
|
3052
|
-
@property
|
3053
|
-
@pulumi.getter(name="readOnly")
|
3054
|
-
def read_only(self) -> Optional[bool]:
|
3055
|
-
"""
|
3056
|
-
If true, mount the NFS volume as read only in all mounts. Defaults to false.
|
3057
|
-
|
3058
|
-
- - -
|
3059
|
-
"""
|
3060
|
-
return pulumi.get(self, "read_only")
|
3061
|
-
|
3062
|
-
|
3063
2985
|
@pulumi.output_type
|
3064
2986
|
class ServiceTemplateSpecVolumeSecret(dict):
|
3065
2987
|
@staticmethod
|
@@ -4810,15 +4732,11 @@ class GetServiceTemplateSpecVolumeResult(dict):
|
|
4810
4732
|
csis: Sequence['outputs.GetServiceTemplateSpecVolumeCsiResult'],
|
4811
4733
|
empty_dirs: Sequence['outputs.GetServiceTemplateSpecVolumeEmptyDirResult'],
|
4812
4734
|
name: str,
|
4813
|
-
nfs: Sequence['outputs.GetServiceTemplateSpecVolumeNfResult'],
|
4814
4735
|
secrets: Sequence['outputs.GetServiceTemplateSpecVolumeSecretResult']):
|
4815
4736
|
"""
|
4816
4737
|
:param Sequence['GetServiceTemplateSpecVolumeCsiArgs'] csis: A filesystem specified by the Container Storage Interface (CSI).
|
4817
4738
|
:param Sequence['GetServiceTemplateSpecVolumeEmptyDirArgs'] empty_dirs: Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs).
|
4818
4739
|
:param str name: The name of the Cloud Run Service.
|
4819
|
-
:param Sequence['GetServiceTemplateSpecVolumeNfArgs'] nfs: A filesystem backed by a Network File System share. This filesystem requires the
|
4820
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2" and
|
4821
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
4822
4740
|
:param Sequence['GetServiceTemplateSpecVolumeSecretArgs'] secrets: The secret's value will be presented as the content of a file whose
|
4823
4741
|
name is defined in the item path. If no items are defined, the name of
|
4824
4742
|
the file is the secret_name.
|
@@ -4826,7 +4744,6 @@ class GetServiceTemplateSpecVolumeResult(dict):
|
|
4826
4744
|
pulumi.set(__self__, "csis", csis)
|
4827
4745
|
pulumi.set(__self__, "empty_dirs", empty_dirs)
|
4828
4746
|
pulumi.set(__self__, "name", name)
|
4829
|
-
pulumi.set(__self__, "nfs", nfs)
|
4830
4747
|
pulumi.set(__self__, "secrets", secrets)
|
4831
4748
|
|
4832
4749
|
@property
|
@@ -4853,16 +4770,6 @@ class GetServiceTemplateSpecVolumeResult(dict):
|
|
4853
4770
|
"""
|
4854
4771
|
return pulumi.get(self, "name")
|
4855
4772
|
|
4856
|
-
@property
|
4857
|
-
@pulumi.getter
|
4858
|
-
def nfs(self) -> Sequence['outputs.GetServiceTemplateSpecVolumeNfResult']:
|
4859
|
-
"""
|
4860
|
-
A filesystem backed by a Network File System share. This filesystem requires the
|
4861
|
-
run.googleapis.com/execution-environment annotation to be set to "gen2" and
|
4862
|
-
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
|
4863
|
-
"""
|
4864
|
-
return pulumi.get(self, "nfs")
|
4865
|
-
|
4866
4773
|
@property
|
4867
4774
|
@pulumi.getter
|
4868
4775
|
def secrets(self) -> Sequence['outputs.GetServiceTemplateSpecVolumeSecretResult']:
|
@@ -4953,46 +4860,6 @@ class GetServiceTemplateSpecVolumeEmptyDirResult(dict):
|
|
4953
4860
|
return pulumi.get(self, "size_limit")
|
4954
4861
|
|
4955
4862
|
|
4956
|
-
@pulumi.output_type
|
4957
|
-
class GetServiceTemplateSpecVolumeNfResult(dict):
|
4958
|
-
def __init__(__self__, *,
|
4959
|
-
path: str,
|
4960
|
-
read_only: bool,
|
4961
|
-
server: str):
|
4962
|
-
"""
|
4963
|
-
:param str path: Path exported by the NFS server
|
4964
|
-
:param bool read_only: If true, mount the NFS volume as read only in all mounts. Defaults to false.
|
4965
|
-
:param str server: IP address or hostname of the NFS server
|
4966
|
-
"""
|
4967
|
-
pulumi.set(__self__, "path", path)
|
4968
|
-
pulumi.set(__self__, "read_only", read_only)
|
4969
|
-
pulumi.set(__self__, "server", server)
|
4970
|
-
|
4971
|
-
@property
|
4972
|
-
@pulumi.getter
|
4973
|
-
def path(self) -> str:
|
4974
|
-
"""
|
4975
|
-
Path exported by the NFS server
|
4976
|
-
"""
|
4977
|
-
return pulumi.get(self, "path")
|
4978
|
-
|
4979
|
-
@property
|
4980
|
-
@pulumi.getter(name="readOnly")
|
4981
|
-
def read_only(self) -> bool:
|
4982
|
-
"""
|
4983
|
-
If true, mount the NFS volume as read only in all mounts. Defaults to false.
|
4984
|
-
"""
|
4985
|
-
return pulumi.get(self, "read_only")
|
4986
|
-
|
4987
|
-
@property
|
4988
|
-
@pulumi.getter
|
4989
|
-
def server(self) -> str:
|
4990
|
-
"""
|
4991
|
-
IP address or hostname of the NFS server
|
4992
|
-
"""
|
4993
|
-
return pulumi.get(self, "server")
|
4994
|
-
|
4995
|
-
|
4996
4863
|
@pulumi.output_type
|
4997
4864
|
class GetServiceTemplateSpecVolumeSecretResult(dict):
|
4998
4865
|
def __init__(__self__, *,
|
@@ -237,7 +237,7 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
237
237
|
|
238
238
|
* `{{project}}/{{region}}/{{environment}}/{{name}}`
|
239
239
|
|
240
|
-
* `{{
|
240
|
+
* `{{name}}`
|
241
241
|
|
242
242
|
When using the `pulumi import` command, Environment can be imported using one of the formats above. For example:
|
243
243
|
|
@@ -250,7 +250,7 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
250
250
|
```
|
251
251
|
|
252
252
|
```sh
|
253
|
-
$ pulumi import gcp:composer/userWorkloadsSecret:UserWorkloadsSecret example {{
|
253
|
+
$ pulumi import gcp:composer/userWorkloadsSecret:UserWorkloadsSecret example {{name}}
|
254
254
|
```
|
255
255
|
|
256
256
|
:param str resource_name: The name of the resource.
|
@@ -304,7 +304,7 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
304
304
|
|
305
305
|
* `{{project}}/{{region}}/{{environment}}/{{name}}`
|
306
306
|
|
307
|
-
* `{{
|
307
|
+
* `{{name}}`
|
308
308
|
|
309
309
|
When using the `pulumi import` command, Environment can be imported using one of the formats above. For example:
|
310
310
|
|
@@ -317,7 +317,7 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
317
317
|
```
|
318
318
|
|
319
319
|
```sh
|
320
|
-
$ pulumi import gcp:composer/userWorkloadsSecret:UserWorkloadsSecret example {{
|
320
|
+
$ pulumi import gcp:composer/userWorkloadsSecret:UserWorkloadsSecret example {{name}}
|
321
321
|
```
|
322
322
|
|
323
323
|
:param str resource_name: The name of the resource.
|
pulumi_gcp/compute/__init__.py
CHANGED
@@ -82,7 +82,6 @@ from .get_snapshot_iam_policy import *
|
|
82
82
|
from .get_ssl_policy import *
|
83
83
|
from .get_subnetwork import *
|
84
84
|
from .get_subnetwork_iam_policy import *
|
85
|
-
from .get_subnetworks import *
|
86
85
|
from .get_vpn_gateway import *
|
87
86
|
from .get_zones import *
|
88
87
|
from .global_address import *
|