pulumi-gcp 7.37.0a1723638212__py3-none-any.whl → 7.38.0a1723822337__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/appengine/application_url_dispatch_rules.py +10 -2
- pulumi_gcp/appengine/engine_split_traffic.py +32 -8
- pulumi_gcp/appengine/flexible_app_version.py +10 -2
- pulumi_gcp/appengine/service_network_settings.py +10 -2
- pulumi_gcp/appengine/standard_app_version.py +20 -4
- pulumi_gcp/assuredworkloads/workload.py +14 -14
- pulumi_gcp/biglake/database.py +10 -2
- pulumi_gcp/biglake/table.py +20 -4
- pulumi_gcp/bigquery/job.py +20 -4
- pulumi_gcp/cloudbuild/worker_pool.py +5 -5
- pulumi_gcp/clouddeploy/delivery_pipeline.py +19 -19
- pulumi_gcp/clouddeploy/target.py +19 -19
- pulumi_gcp/cloudfunctions/function.py +42 -42
- pulumi_gcp/cloudfunctions/get_function.py +3 -3
- pulumi_gcp/cloudquota/outputs.py +6 -6
- pulumi_gcp/composer/get_user_workloads_secret.py +1 -1
- pulumi_gcp/composer/user_workloads_secret.py +14 -14
- pulumi_gcp/compute/_inputs.py +55 -55
- pulumi_gcp/compute/get_instance_serial_port.py +12 -4
- pulumi_gcp/compute/get_instance_template.py +1 -1
- pulumi_gcp/compute/get_region_instance_template.py +1 -1
- pulumi_gcp/compute/instance_template.py +14 -14
- pulumi_gcp/compute/outputs.py +45 -45
- pulumi_gcp/compute/region_instance_template.py +14 -14
- pulumi_gcp/compute/region_network_endpoint_group.py +10 -2
- pulumi_gcp/container/_inputs.py +20 -20
- pulumi_gcp/container/aws_cluster.py +5 -5
- pulumi_gcp/container/aws_node_pool.py +5 -5
- pulumi_gcp/container/azure_cluster.py +5 -5
- pulumi_gcp/container/azure_node_pool.py +5 -5
- pulumi_gcp/container/outputs.py +21 -21
- pulumi_gcp/databasemigrationservice/_inputs.py +5 -5
- pulumi_gcp/databasemigrationservice/outputs.py +3 -3
- pulumi_gcp/dataflow/flex_template_job.py +42 -42
- pulumi_gcp/dataflow/job.py +42 -42
- pulumi_gcp/datafusion/instance.py +10 -2
- pulumi_gcp/dataloss/_inputs.py +5 -5
- pulumi_gcp/dataloss/outputs.py +3 -3
- pulumi_gcp/dataloss/prevention_stored_info_type.py +10 -2
- pulumi_gcp/dataplex/asset.py +14 -14
- pulumi_gcp/dataplex/lake.py +14 -14
- pulumi_gcp/dataplex/zone.py +14 -14
- pulumi_gcp/dataproc/_inputs.py +10 -10
- pulumi_gcp/dataproc/outputs.py +6 -6
- pulumi_gcp/dataproc/workflow_template.py +12 -12
- pulumi_gcp/eventarc/trigger.py +14 -14
- pulumi_gcp/firebase/_inputs.py +5 -5
- pulumi_gcp/firebase/outputs.py +3 -3
- pulumi_gcp/healthcare/dicom_store.py +12 -2
- pulumi_gcp/healthcare/fhir_store.py +10 -2
- pulumi_gcp/iam/access_boundary_policy.py +10 -2
- pulumi_gcp/monitoring/get_app_engine_service.py +10 -2
- pulumi_gcp/networkconnectivity/_inputs.py +5 -5
- pulumi_gcp/networkconnectivity/outputs.py +3 -3
- pulumi_gcp/projects/default_service_accounts.py +7 -7
- pulumi_gcp/pubsub/subscription.py +36 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/recaptcha/enterprise_key.py +14 -14
- pulumi_gcp/securitycenter/instance_iam_binding.py +10 -2
- pulumi_gcp/securitycenter/instance_iam_member.py +10 -2
- pulumi_gcp/securitycenter/instance_iam_policy.py +10 -2
- pulumi_gcp/serviceaccount/key.py +14 -14
- pulumi_gcp/vertex/ai_feature_group.py +12 -2
- pulumi_gcp/vertex/ai_feature_group_feature.py +12 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +48 -8
- pulumi_gcp/workstations/_inputs.py +10 -10
- pulumi_gcp/workstations/outputs.py +6 -6
- pulumi_gcp/workstations/workstation_config.py +14 -6
- {pulumi_gcp-7.37.0a1723638212.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.37.0a1723638212.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/RECORD +72 -72
- {pulumi_gcp-7.37.0a1723638212.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.37.0a1723638212.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/top_level.txt +0 -0
@@ -23,20 +23,20 @@ class FunctionArgs:
|
|
23
23
|
def __init__(__self__, *,
|
24
24
|
runtime: pulumi.Input[str],
|
25
25
|
available_memory_mb: Optional[pulumi.Input[int]] = None,
|
26
|
-
build_environment_variables: Optional[pulumi.Input[Mapping[str,
|
26
|
+
build_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
27
27
|
build_service_account: Optional[pulumi.Input[str]] = None,
|
28
28
|
build_worker_pool: Optional[pulumi.Input[str]] = None,
|
29
29
|
description: Optional[pulumi.Input[str]] = None,
|
30
30
|
docker_registry: Optional[pulumi.Input[str]] = None,
|
31
31
|
docker_repository: Optional[pulumi.Input[str]] = None,
|
32
32
|
entry_point: Optional[pulumi.Input[str]] = None,
|
33
|
-
environment_variables: Optional[pulumi.Input[Mapping[str,
|
33
|
+
environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
34
34
|
event_trigger: Optional[pulumi.Input['FunctionEventTriggerArgs']] = None,
|
35
35
|
https_trigger_security_level: Optional[pulumi.Input[str]] = None,
|
36
36
|
https_trigger_url: Optional[pulumi.Input[str]] = None,
|
37
37
|
ingress_settings: Optional[pulumi.Input[str]] = None,
|
38
38
|
kms_key_name: Optional[pulumi.Input[str]] = None,
|
39
|
-
labels: Optional[pulumi.Input[Mapping[str,
|
39
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
40
40
|
max_instances: Optional[pulumi.Input[int]] = None,
|
41
41
|
min_instances: Optional[pulumi.Input[int]] = None,
|
42
42
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -59,14 +59,14 @@ class FunctionArgs:
|
|
59
59
|
|
60
60
|
- - -
|
61
61
|
:param pulumi.Input[int] available_memory_mb: Memory (in MB), available to the function. Default value is `256`. Possible values include `128`, `256`, `512`, `1024`, etc.
|
62
|
-
:param pulumi.Input[Mapping[str,
|
62
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] build_environment_variables: A set of key/value environment variable pairs available during build time.
|
63
63
|
:param pulumi.Input[str] build_service_account: If provided, the self-provided service account to use to build the function. The format of this field is `projects/{project}/serviceAccounts/{serviceAccountEmail}`
|
64
64
|
:param pulumi.Input[str] build_worker_pool: Name of the Cloud Build Custom Worker Pool that should be used to build the function.
|
65
65
|
:param pulumi.Input[str] description: Description of the function.
|
66
66
|
:param pulumi.Input[str] docker_registry: Docker Registry to use for storing the function's Docker images. Allowed values are ARTIFACT_REGISTRY (default) and CONTAINER_REGISTRY.
|
67
67
|
:param pulumi.Input[str] docker_repository: User-managed repository created in Artifact Registry to which the function's Docker image will be pushed after it is built by Cloud Build. May optionally be encrypted with a customer-managed encryption key (CMEK). If unspecified and `docker_registry` is not explicitly set to `CONTAINER_REGISTRY`, GCF will create and use a default Artifact Registry repository named 'gcf-artifacts' in the region.
|
68
68
|
:param pulumi.Input[str] entry_point: Name of the function that will be executed when the Google Cloud Function is triggered.
|
69
|
-
:param pulumi.Input[Mapping[str,
|
69
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] environment_variables: A set of key/value environment variable pairs to assign to the function.
|
70
70
|
:param pulumi.Input['FunctionEventTriggerArgs'] event_trigger: A source that fires events in response to a condition in another service. Structure is documented below. Cannot be used with `trigger_http`.
|
71
71
|
:param pulumi.Input[str] https_trigger_security_level: The security level for the function. The following options are available:
|
72
72
|
|
@@ -76,7 +76,7 @@ class FunctionArgs:
|
|
76
76
|
:param pulumi.Input[str] ingress_settings: String value that controls what traffic can reach the function. Allowed values are `ALLOW_ALL`, `ALLOW_INTERNAL_AND_GCLB` and `ALLOW_INTERNAL_ONLY`. Check [ingress documentation](https://cloud.google.com/functions/docs/networking/network-settings#ingress_settings) to see the impact of each settings value. Changes to this field will recreate the cloud function.
|
77
77
|
:param pulumi.Input[str] kms_key_name: Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources. It must match the pattern `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
78
78
|
If specified, you must also provide an artifact registry repository using the `docker_repository` field that was created with the same KMS crypto key. Before deploying, please complete all pre-requisites described in https://cloud.google.com/functions/docs/securing/cmek#granting_service_accounts_access_to_the_key
|
79
|
-
:param pulumi.Input[Mapping[str,
|
79
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to the function. Label keys must follow the requirements at https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements.
|
80
80
|
|
81
81
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
82
82
|
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
@@ -188,14 +188,14 @@ class FunctionArgs:
|
|
188
188
|
|
189
189
|
@property
|
190
190
|
@pulumi.getter(name="buildEnvironmentVariables")
|
191
|
-
def build_environment_variables(self) -> Optional[pulumi.Input[Mapping[str,
|
191
|
+
def build_environment_variables(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
192
192
|
"""
|
193
193
|
A set of key/value environment variable pairs available during build time.
|
194
194
|
"""
|
195
195
|
return pulumi.get(self, "build_environment_variables")
|
196
196
|
|
197
197
|
@build_environment_variables.setter
|
198
|
-
def build_environment_variables(self, value: Optional[pulumi.Input[Mapping[str,
|
198
|
+
def build_environment_variables(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
199
199
|
pulumi.set(self, "build_environment_variables", value)
|
200
200
|
|
201
201
|
@property
|
@@ -272,14 +272,14 @@ class FunctionArgs:
|
|
272
272
|
|
273
273
|
@property
|
274
274
|
@pulumi.getter(name="environmentVariables")
|
275
|
-
def environment_variables(self) -> Optional[pulumi.Input[Mapping[str,
|
275
|
+
def environment_variables(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
276
276
|
"""
|
277
277
|
A set of key/value environment variable pairs to assign to the function.
|
278
278
|
"""
|
279
279
|
return pulumi.get(self, "environment_variables")
|
280
280
|
|
281
281
|
@environment_variables.setter
|
282
|
-
def environment_variables(self, value: Optional[pulumi.Input[Mapping[str,
|
282
|
+
def environment_variables(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
283
283
|
pulumi.set(self, "environment_variables", value)
|
284
284
|
|
285
285
|
@property
|
@@ -348,7 +348,7 @@ class FunctionArgs:
|
|
348
348
|
|
349
349
|
@property
|
350
350
|
@pulumi.getter
|
351
|
-
def labels(self) -> Optional[pulumi.Input[Mapping[str,
|
351
|
+
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
352
352
|
"""
|
353
353
|
A set of key/value label pairs to assign to the function. Label keys must follow the requirements at https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements.
|
354
354
|
|
@@ -358,7 +358,7 @@ class FunctionArgs:
|
|
358
358
|
return pulumi.get(self, "labels")
|
359
359
|
|
360
360
|
@labels.setter
|
361
|
-
def labels(self, value: Optional[pulumi.Input[Mapping[str,
|
361
|
+
def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
362
362
|
pulumi.set(self, "labels", value)
|
363
363
|
|
364
364
|
@property
|
@@ -547,7 +547,7 @@ class FunctionArgs:
|
|
547
547
|
class _FunctionState:
|
548
548
|
def __init__(__self__, *,
|
549
549
|
available_memory_mb: Optional[pulumi.Input[int]] = None,
|
550
|
-
build_environment_variables: Optional[pulumi.Input[Mapping[str,
|
550
|
+
build_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
551
551
|
build_service_account: Optional[pulumi.Input[str]] = None,
|
552
552
|
build_worker_pool: Optional[pulumi.Input[str]] = None,
|
553
553
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -555,13 +555,13 @@ class _FunctionState:
|
|
555
555
|
docker_repository: Optional[pulumi.Input[str]] = None,
|
556
556
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
557
557
|
entry_point: Optional[pulumi.Input[str]] = None,
|
558
|
-
environment_variables: Optional[pulumi.Input[Mapping[str,
|
558
|
+
environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
559
559
|
event_trigger: Optional[pulumi.Input['FunctionEventTriggerArgs']] = None,
|
560
560
|
https_trigger_security_level: Optional[pulumi.Input[str]] = None,
|
561
561
|
https_trigger_url: Optional[pulumi.Input[str]] = None,
|
562
562
|
ingress_settings: Optional[pulumi.Input[str]] = None,
|
563
563
|
kms_key_name: Optional[pulumi.Input[str]] = None,
|
564
|
-
labels: Optional[pulumi.Input[Mapping[str,
|
564
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
565
565
|
max_instances: Optional[pulumi.Input[int]] = None,
|
566
566
|
min_instances: Optional[pulumi.Input[int]] = None,
|
567
567
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -584,7 +584,7 @@ class _FunctionState:
|
|
584
584
|
"""
|
585
585
|
Input properties used for looking up and filtering Function resources.
|
586
586
|
:param pulumi.Input[int] available_memory_mb: Memory (in MB), available to the function. Default value is `256`. Possible values include `128`, `256`, `512`, `1024`, etc.
|
587
|
-
:param pulumi.Input[Mapping[str,
|
587
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] build_environment_variables: A set of key/value environment variable pairs available during build time.
|
588
588
|
:param pulumi.Input[str] build_service_account: If provided, the self-provided service account to use to build the function. The format of this field is `projects/{project}/serviceAccounts/{serviceAccountEmail}`
|
589
589
|
:param pulumi.Input[str] build_worker_pool: Name of the Cloud Build Custom Worker Pool that should be used to build the function.
|
590
590
|
:param pulumi.Input[str] description: Description of the function.
|
@@ -592,7 +592,7 @@ class _FunctionState:
|
|
592
592
|
:param pulumi.Input[str] docker_repository: User-managed repository created in Artifact Registry to which the function's Docker image will be pushed after it is built by Cloud Build. May optionally be encrypted with a customer-managed encryption key (CMEK). If unspecified and `docker_registry` is not explicitly set to `CONTAINER_REGISTRY`, GCF will create and use a default Artifact Registry repository named 'gcf-artifacts' in the region.
|
593
593
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
594
594
|
:param pulumi.Input[str] entry_point: Name of the function that will be executed when the Google Cloud Function is triggered.
|
595
|
-
:param pulumi.Input[Mapping[str,
|
595
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] environment_variables: A set of key/value environment variable pairs to assign to the function.
|
596
596
|
:param pulumi.Input['FunctionEventTriggerArgs'] event_trigger: A source that fires events in response to a condition in another service. Structure is documented below. Cannot be used with `trigger_http`.
|
597
597
|
:param pulumi.Input[str] https_trigger_security_level: The security level for the function. The following options are available:
|
598
598
|
|
@@ -602,7 +602,7 @@ class _FunctionState:
|
|
602
602
|
:param pulumi.Input[str] ingress_settings: String value that controls what traffic can reach the function. Allowed values are `ALLOW_ALL`, `ALLOW_INTERNAL_AND_GCLB` and `ALLOW_INTERNAL_ONLY`. Check [ingress documentation](https://cloud.google.com/functions/docs/networking/network-settings#ingress_settings) to see the impact of each settings value. Changes to this field will recreate the cloud function.
|
603
603
|
:param pulumi.Input[str] kms_key_name: Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources. It must match the pattern `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
604
604
|
If specified, you must also provide an artifact registry repository using the `docker_repository` field that was created with the same KMS crypto key. Before deploying, please complete all pre-requisites described in https://cloud.google.com/functions/docs/securing/cmek#granting_service_accounts_access_to_the_key
|
605
|
-
:param pulumi.Input[Mapping[str,
|
605
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to the function. Label keys must follow the requirements at https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements.
|
606
606
|
|
607
607
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
608
608
|
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
@@ -716,14 +716,14 @@ class _FunctionState:
|
|
716
716
|
|
717
717
|
@property
|
718
718
|
@pulumi.getter(name="buildEnvironmentVariables")
|
719
|
-
def build_environment_variables(self) -> Optional[pulumi.Input[Mapping[str,
|
719
|
+
def build_environment_variables(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
720
720
|
"""
|
721
721
|
A set of key/value environment variable pairs available during build time.
|
722
722
|
"""
|
723
723
|
return pulumi.get(self, "build_environment_variables")
|
724
724
|
|
725
725
|
@build_environment_variables.setter
|
726
|
-
def build_environment_variables(self, value: Optional[pulumi.Input[Mapping[str,
|
726
|
+
def build_environment_variables(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
727
727
|
pulumi.set(self, "build_environment_variables", value)
|
728
728
|
|
729
729
|
@property
|
@@ -812,14 +812,14 @@ class _FunctionState:
|
|
812
812
|
|
813
813
|
@property
|
814
814
|
@pulumi.getter(name="environmentVariables")
|
815
|
-
def environment_variables(self) -> Optional[pulumi.Input[Mapping[str,
|
815
|
+
def environment_variables(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
816
816
|
"""
|
817
817
|
A set of key/value environment variable pairs to assign to the function.
|
818
818
|
"""
|
819
819
|
return pulumi.get(self, "environment_variables")
|
820
820
|
|
821
821
|
@environment_variables.setter
|
822
|
-
def environment_variables(self, value: Optional[pulumi.Input[Mapping[str,
|
822
|
+
def environment_variables(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
823
823
|
pulumi.set(self, "environment_variables", value)
|
824
824
|
|
825
825
|
@property
|
@@ -888,7 +888,7 @@ class _FunctionState:
|
|
888
888
|
|
889
889
|
@property
|
890
890
|
@pulumi.getter
|
891
|
-
def labels(self) -> Optional[pulumi.Input[Mapping[str,
|
891
|
+
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
892
892
|
"""
|
893
893
|
A set of key/value label pairs to assign to the function. Label keys must follow the requirements at https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements.
|
894
894
|
|
@@ -898,7 +898,7 @@ class _FunctionState:
|
|
898
898
|
return pulumi.get(self, "labels")
|
899
899
|
|
900
900
|
@labels.setter
|
901
|
-
def labels(self, value: Optional[pulumi.Input[Mapping[str,
|
901
|
+
def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
902
902
|
pulumi.set(self, "labels", value)
|
903
903
|
|
904
904
|
@property
|
@@ -1141,20 +1141,20 @@ class Function(pulumi.CustomResource):
|
|
1141
1141
|
resource_name: str,
|
1142
1142
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1143
1143
|
available_memory_mb: Optional[pulumi.Input[int]] = None,
|
1144
|
-
build_environment_variables: Optional[pulumi.Input[Mapping[str,
|
1144
|
+
build_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1145
1145
|
build_service_account: Optional[pulumi.Input[str]] = None,
|
1146
1146
|
build_worker_pool: Optional[pulumi.Input[str]] = None,
|
1147
1147
|
description: Optional[pulumi.Input[str]] = None,
|
1148
1148
|
docker_registry: Optional[pulumi.Input[str]] = None,
|
1149
1149
|
docker_repository: Optional[pulumi.Input[str]] = None,
|
1150
1150
|
entry_point: Optional[pulumi.Input[str]] = None,
|
1151
|
-
environment_variables: Optional[pulumi.Input[Mapping[str,
|
1151
|
+
environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1152
1152
|
event_trigger: Optional[pulumi.Input[Union['FunctionEventTriggerArgs', 'FunctionEventTriggerArgsDict']]] = None,
|
1153
1153
|
https_trigger_security_level: Optional[pulumi.Input[str]] = None,
|
1154
1154
|
https_trigger_url: Optional[pulumi.Input[str]] = None,
|
1155
1155
|
ingress_settings: Optional[pulumi.Input[str]] = None,
|
1156
1156
|
kms_key_name: Optional[pulumi.Input[str]] = None,
|
1157
|
-
labels: Optional[pulumi.Input[Mapping[str,
|
1157
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1158
1158
|
max_instances: Optional[pulumi.Input[int]] = None,
|
1159
1159
|
min_instances: Optional[pulumi.Input[int]] = None,
|
1160
1160
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -1278,14 +1278,14 @@ class Function(pulumi.CustomResource):
|
|
1278
1278
|
:param str resource_name: The name of the resource.
|
1279
1279
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1280
1280
|
:param pulumi.Input[int] available_memory_mb: Memory (in MB), available to the function. Default value is `256`. Possible values include `128`, `256`, `512`, `1024`, etc.
|
1281
|
-
:param pulumi.Input[Mapping[str,
|
1281
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] build_environment_variables: A set of key/value environment variable pairs available during build time.
|
1282
1282
|
:param pulumi.Input[str] build_service_account: If provided, the self-provided service account to use to build the function. The format of this field is `projects/{project}/serviceAccounts/{serviceAccountEmail}`
|
1283
1283
|
:param pulumi.Input[str] build_worker_pool: Name of the Cloud Build Custom Worker Pool that should be used to build the function.
|
1284
1284
|
:param pulumi.Input[str] description: Description of the function.
|
1285
1285
|
:param pulumi.Input[str] docker_registry: Docker Registry to use for storing the function's Docker images. Allowed values are ARTIFACT_REGISTRY (default) and CONTAINER_REGISTRY.
|
1286
1286
|
:param pulumi.Input[str] docker_repository: User-managed repository created in Artifact Registry to which the function's Docker image will be pushed after it is built by Cloud Build. May optionally be encrypted with a customer-managed encryption key (CMEK). If unspecified and `docker_registry` is not explicitly set to `CONTAINER_REGISTRY`, GCF will create and use a default Artifact Registry repository named 'gcf-artifacts' in the region.
|
1287
1287
|
:param pulumi.Input[str] entry_point: Name of the function that will be executed when the Google Cloud Function is triggered.
|
1288
|
-
:param pulumi.Input[Mapping[str,
|
1288
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] environment_variables: A set of key/value environment variable pairs to assign to the function.
|
1289
1289
|
:param pulumi.Input[Union['FunctionEventTriggerArgs', 'FunctionEventTriggerArgsDict']] event_trigger: A source that fires events in response to a condition in another service. Structure is documented below. Cannot be used with `trigger_http`.
|
1290
1290
|
:param pulumi.Input[str] https_trigger_security_level: The security level for the function. The following options are available:
|
1291
1291
|
|
@@ -1295,7 +1295,7 @@ class Function(pulumi.CustomResource):
|
|
1295
1295
|
:param pulumi.Input[str] ingress_settings: String value that controls what traffic can reach the function. Allowed values are `ALLOW_ALL`, `ALLOW_INTERNAL_AND_GCLB` and `ALLOW_INTERNAL_ONLY`. Check [ingress documentation](https://cloud.google.com/functions/docs/networking/network-settings#ingress_settings) to see the impact of each settings value. Changes to this field will recreate the cloud function.
|
1296
1296
|
:param pulumi.Input[str] kms_key_name: Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources. It must match the pattern `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
1297
1297
|
If specified, you must also provide an artifact registry repository using the `docker_repository` field that was created with the same KMS crypto key. Before deploying, please complete all pre-requisites described in https://cloud.google.com/functions/docs/securing/cmek#granting_service_accounts_access_to_the_key
|
1298
|
-
:param pulumi.Input[Mapping[str,
|
1298
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to the function. Label keys must follow the requirements at https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements.
|
1299
1299
|
|
1300
1300
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
1301
1301
|
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
@@ -1445,20 +1445,20 @@ class Function(pulumi.CustomResource):
|
|
1445
1445
|
resource_name: str,
|
1446
1446
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1447
1447
|
available_memory_mb: Optional[pulumi.Input[int]] = None,
|
1448
|
-
build_environment_variables: Optional[pulumi.Input[Mapping[str,
|
1448
|
+
build_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1449
1449
|
build_service_account: Optional[pulumi.Input[str]] = None,
|
1450
1450
|
build_worker_pool: Optional[pulumi.Input[str]] = None,
|
1451
1451
|
description: Optional[pulumi.Input[str]] = None,
|
1452
1452
|
docker_registry: Optional[pulumi.Input[str]] = None,
|
1453
1453
|
docker_repository: Optional[pulumi.Input[str]] = None,
|
1454
1454
|
entry_point: Optional[pulumi.Input[str]] = None,
|
1455
|
-
environment_variables: Optional[pulumi.Input[Mapping[str,
|
1455
|
+
environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1456
1456
|
event_trigger: Optional[pulumi.Input[Union['FunctionEventTriggerArgs', 'FunctionEventTriggerArgsDict']]] = None,
|
1457
1457
|
https_trigger_security_level: Optional[pulumi.Input[str]] = None,
|
1458
1458
|
https_trigger_url: Optional[pulumi.Input[str]] = None,
|
1459
1459
|
ingress_settings: Optional[pulumi.Input[str]] = None,
|
1460
1460
|
kms_key_name: Optional[pulumi.Input[str]] = None,
|
1461
|
-
labels: Optional[pulumi.Input[Mapping[str,
|
1461
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1462
1462
|
max_instances: Optional[pulumi.Input[int]] = None,
|
1463
1463
|
min_instances: Optional[pulumi.Input[int]] = None,
|
1464
1464
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -1534,7 +1534,7 @@ class Function(pulumi.CustomResource):
|
|
1534
1534
|
id: pulumi.Input[str],
|
1535
1535
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1536
1536
|
available_memory_mb: Optional[pulumi.Input[int]] = None,
|
1537
|
-
build_environment_variables: Optional[pulumi.Input[Mapping[str,
|
1537
|
+
build_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1538
1538
|
build_service_account: Optional[pulumi.Input[str]] = None,
|
1539
1539
|
build_worker_pool: Optional[pulumi.Input[str]] = None,
|
1540
1540
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -1542,13 +1542,13 @@ class Function(pulumi.CustomResource):
|
|
1542
1542
|
docker_repository: Optional[pulumi.Input[str]] = None,
|
1543
1543
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1544
1544
|
entry_point: Optional[pulumi.Input[str]] = None,
|
1545
|
-
environment_variables: Optional[pulumi.Input[Mapping[str,
|
1545
|
+
environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1546
1546
|
event_trigger: Optional[pulumi.Input[Union['FunctionEventTriggerArgs', 'FunctionEventTriggerArgsDict']]] = None,
|
1547
1547
|
https_trigger_security_level: Optional[pulumi.Input[str]] = None,
|
1548
1548
|
https_trigger_url: Optional[pulumi.Input[str]] = None,
|
1549
1549
|
ingress_settings: Optional[pulumi.Input[str]] = None,
|
1550
1550
|
kms_key_name: Optional[pulumi.Input[str]] = None,
|
1551
|
-
labels: Optional[pulumi.Input[Mapping[str,
|
1551
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1552
1552
|
max_instances: Optional[pulumi.Input[int]] = None,
|
1553
1553
|
min_instances: Optional[pulumi.Input[int]] = None,
|
1554
1554
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -1576,7 +1576,7 @@ class Function(pulumi.CustomResource):
|
|
1576
1576
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1577
1577
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1578
1578
|
:param pulumi.Input[int] available_memory_mb: Memory (in MB), available to the function. Default value is `256`. Possible values include `128`, `256`, `512`, `1024`, etc.
|
1579
|
-
:param pulumi.Input[Mapping[str,
|
1579
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] build_environment_variables: A set of key/value environment variable pairs available during build time.
|
1580
1580
|
:param pulumi.Input[str] build_service_account: If provided, the self-provided service account to use to build the function. The format of this field is `projects/{project}/serviceAccounts/{serviceAccountEmail}`
|
1581
1581
|
:param pulumi.Input[str] build_worker_pool: Name of the Cloud Build Custom Worker Pool that should be used to build the function.
|
1582
1582
|
:param pulumi.Input[str] description: Description of the function.
|
@@ -1584,7 +1584,7 @@ class Function(pulumi.CustomResource):
|
|
1584
1584
|
:param pulumi.Input[str] docker_repository: User-managed repository created in Artifact Registry to which the function's Docker image will be pushed after it is built by Cloud Build. May optionally be encrypted with a customer-managed encryption key (CMEK). If unspecified and `docker_registry` is not explicitly set to `CONTAINER_REGISTRY`, GCF will create and use a default Artifact Registry repository named 'gcf-artifacts' in the region.
|
1585
1585
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
1586
1586
|
:param pulumi.Input[str] entry_point: Name of the function that will be executed when the Google Cloud Function is triggered.
|
1587
|
-
:param pulumi.Input[Mapping[str,
|
1587
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] environment_variables: A set of key/value environment variable pairs to assign to the function.
|
1588
1588
|
:param pulumi.Input[Union['FunctionEventTriggerArgs', 'FunctionEventTriggerArgsDict']] event_trigger: A source that fires events in response to a condition in another service. Structure is documented below. Cannot be used with `trigger_http`.
|
1589
1589
|
:param pulumi.Input[str] https_trigger_security_level: The security level for the function. The following options are available:
|
1590
1590
|
|
@@ -1594,7 +1594,7 @@ class Function(pulumi.CustomResource):
|
|
1594
1594
|
:param pulumi.Input[str] ingress_settings: String value that controls what traffic can reach the function. Allowed values are `ALLOW_ALL`, `ALLOW_INTERNAL_AND_GCLB` and `ALLOW_INTERNAL_ONLY`. Check [ingress documentation](https://cloud.google.com/functions/docs/networking/network-settings#ingress_settings) to see the impact of each settings value. Changes to this field will recreate the cloud function.
|
1595
1595
|
:param pulumi.Input[str] kms_key_name: Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources. It must match the pattern `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
1596
1596
|
If specified, you must also provide an artifact registry repository using the `docker_repository` field that was created with the same KMS crypto key. Before deploying, please complete all pre-requisites described in https://cloud.google.com/functions/docs/securing/cmek#granting_service_accounts_access_to_the_key
|
1597
|
-
:param pulumi.Input[Mapping[str,
|
1597
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to the function. Label keys must follow the requirements at https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements.
|
1598
1598
|
|
1599
1599
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
1600
1600
|
Please refer to the field 'effective_labels' for all of the labels present on the resource.
|
@@ -1674,7 +1674,7 @@ class Function(pulumi.CustomResource):
|
|
1674
1674
|
|
1675
1675
|
@property
|
1676
1676
|
@pulumi.getter(name="buildEnvironmentVariables")
|
1677
|
-
def build_environment_variables(self) -> pulumi.Output[Optional[Mapping[str,
|
1677
|
+
def build_environment_variables(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1678
1678
|
"""
|
1679
1679
|
A set of key/value environment variable pairs available during build time.
|
1680
1680
|
"""
|
@@ -1738,7 +1738,7 @@ class Function(pulumi.CustomResource):
|
|
1738
1738
|
|
1739
1739
|
@property
|
1740
1740
|
@pulumi.getter(name="environmentVariables")
|
1741
|
-
def environment_variables(self) -> pulumi.Output[Optional[Mapping[str,
|
1741
|
+
def environment_variables(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1742
1742
|
"""
|
1743
1743
|
A set of key/value environment variable pairs to assign to the function.
|
1744
1744
|
"""
|
@@ -1790,7 +1790,7 @@ class Function(pulumi.CustomResource):
|
|
1790
1790
|
|
1791
1791
|
@property
|
1792
1792
|
@pulumi.getter
|
1793
|
-
def labels(self) -> pulumi.Output[Optional[Mapping[str,
|
1793
|
+
def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1794
1794
|
"""
|
1795
1795
|
A set of key/value label pairs to assign to the function. Label keys must follow the requirements at https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements.
|
1796
1796
|
|
@@ -147,7 +147,7 @@ class GetFunctionResult:
|
|
147
147
|
|
148
148
|
@property
|
149
149
|
@pulumi.getter(name="buildEnvironmentVariables")
|
150
|
-
def build_environment_variables(self) -> Mapping[str,
|
150
|
+
def build_environment_variables(self) -> Mapping[str, str]:
|
151
151
|
return pulumi.get(self, "build_environment_variables")
|
152
152
|
|
153
153
|
@property
|
@@ -193,7 +193,7 @@ class GetFunctionResult:
|
|
193
193
|
|
194
194
|
@property
|
195
195
|
@pulumi.getter(name="environmentVariables")
|
196
|
-
def environment_variables(self) -> Mapping[str,
|
196
|
+
def environment_variables(self) -> Mapping[str, str]:
|
197
197
|
return pulumi.get(self, "environment_variables")
|
198
198
|
|
199
199
|
@property
|
@@ -240,7 +240,7 @@ class GetFunctionResult:
|
|
240
240
|
|
241
241
|
@property
|
242
242
|
@pulumi.getter
|
243
|
-
def labels(self) -> Mapping[str,
|
243
|
+
def labels(self) -> Mapping[str, str]:
|
244
244
|
"""
|
245
245
|
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
246
246
|
"""
|
pulumi_gcp/cloudquota/outputs.py
CHANGED
@@ -148,11 +148,11 @@ class GetSQuotaInfoDimensionsInfoResult(dict):
|
|
148
148
|
def __init__(__self__, *,
|
149
149
|
applicable_locations: Sequence[str],
|
150
150
|
details: Sequence['outputs.GetSQuotaInfoDimensionsInfoDetailResult'],
|
151
|
-
dimensions: Mapping[str,
|
151
|
+
dimensions: Mapping[str, str]):
|
152
152
|
"""
|
153
153
|
:param Sequence[str] applicable_locations: The applicable regions or zones of this dimensions info. The field will be set to `['global']` for quotas that are not per region or per zone. Otherwise, it will be set to the list of locations this dimension info is applicable to.
|
154
154
|
:param Sequence['GetSQuotaInfoDimensionsInfoDetailArgs'] details: The quota details for a map of dimensions.
|
155
|
-
:param Mapping[str,
|
155
|
+
:param Mapping[str, str] dimensions: The map of dimensions for this dimensions info. The key of a map entry is "region", "zone" or the name of a service specific dimension, and the value of a map entry is the value of the dimension. If a dimension does not appear in the map of dimensions, the dimensions info applies to all the dimension values except for those that have another DimenisonInfo instance configured for the specific value. Example: {"provider" : "Foo Inc"} where "provider" is a service specific dimension of a quota.
|
156
156
|
"""
|
157
157
|
pulumi.set(__self__, "applicable_locations", applicable_locations)
|
158
158
|
pulumi.set(__self__, "details", details)
|
@@ -176,7 +176,7 @@ class GetSQuotaInfoDimensionsInfoResult(dict):
|
|
176
176
|
|
177
177
|
@property
|
178
178
|
@pulumi.getter
|
179
|
-
def dimensions(self) -> Mapping[str,
|
179
|
+
def dimensions(self) -> Mapping[str, str]:
|
180
180
|
"""
|
181
181
|
The map of dimensions for this dimensions info. The key of a map entry is "region", "zone" or the name of a service specific dimension, and the value of a map entry is the value of the dimension. If a dimension does not appear in the map of dimensions, the dimensions info applies to all the dimension values except for those that have another DimenisonInfo instance configured for the specific value. Example: {"provider" : "Foo Inc"} where "provider" is a service specific dimension of a quota.
|
182
182
|
"""
|
@@ -414,11 +414,11 @@ class GetSQuotaInfosQuotaInfoDimensionsInfoResult(dict):
|
|
414
414
|
def __init__(__self__, *,
|
415
415
|
applicable_locations: Sequence[str],
|
416
416
|
details: Sequence['outputs.GetSQuotaInfosQuotaInfoDimensionsInfoDetailResult'],
|
417
|
-
dimensions: Mapping[str,
|
417
|
+
dimensions: Mapping[str, str]):
|
418
418
|
"""
|
419
419
|
:param Sequence[str] applicable_locations: The applicable regions or zones of this dimensions info. The field will be set to `['global']` for quotas that are not per region or per zone. Otherwise, it will be set to the list of locations this dimension info is applicable to.
|
420
420
|
:param Sequence['GetSQuotaInfosQuotaInfoDimensionsInfoDetailArgs'] details: The quota details for a map of dimensions.
|
421
|
-
:param Mapping[str,
|
421
|
+
:param Mapping[str, str] dimensions: The map of dimensions for this dimensions info. The key of a map entry is "region", "zone" or the name of a service specific dimension, and the value of a map entry is the value of the dimension. If a dimension does not appear in the map of dimensions, the dimensions info applies to all the dimension values except for those that have another DimenisonInfo instance configured for the specific value. Example: {"provider" : "Foo Inc"} where "provider" is a service specific dimension of a quota.
|
422
422
|
"""
|
423
423
|
pulumi.set(__self__, "applicable_locations", applicable_locations)
|
424
424
|
pulumi.set(__self__, "details", details)
|
@@ -442,7 +442,7 @@ class GetSQuotaInfosQuotaInfoDimensionsInfoResult(dict):
|
|
442
442
|
|
443
443
|
@property
|
444
444
|
@pulumi.getter
|
445
|
-
def dimensions(self) -> Mapping[str,
|
445
|
+
def dimensions(self) -> Mapping[str, str]:
|
446
446
|
"""
|
447
447
|
The map of dimensions for this dimensions info. The key of a map entry is "region", "zone" or the name of a service specific dimension, and the value of a map entry is the value of the dimension. If a dimension does not appear in the map of dimensions, the dimensions info applies to all the dimension values except for those that have another DimenisonInfo instance configured for the specific value. Example: {"provider" : "Foo Inc"} where "provider" is a service specific dimension of a quota.
|
448
448
|
"""
|
@@ -20,14 +20,14 @@ __all__ = ['UserWorkloadsSecretArgs', 'UserWorkloadsSecret']
|
|
20
20
|
class UserWorkloadsSecretArgs:
|
21
21
|
def __init__(__self__, *,
|
22
22
|
environment: pulumi.Input[str],
|
23
|
-
data: Optional[pulumi.Input[Mapping[str,
|
23
|
+
data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
24
24
|
name: Optional[pulumi.Input[str]] = None,
|
25
25
|
project: Optional[pulumi.Input[str]] = None,
|
26
26
|
region: Optional[pulumi.Input[str]] = None):
|
27
27
|
"""
|
28
28
|
The set of arguments for constructing a UserWorkloadsSecret resource.
|
29
29
|
:param pulumi.Input[str] environment: Environment where the Kubernetes Secret will be stored and used.
|
30
|
-
:param pulumi.Input[Mapping[str,
|
30
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] data: A map of the secret data.
|
31
31
|
:param pulumi.Input[str] name: Name of the Kubernetes Secret.
|
32
32
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
33
33
|
If it is not provided, the provider project is used.
|
@@ -57,14 +57,14 @@ class UserWorkloadsSecretArgs:
|
|
57
57
|
|
58
58
|
@property
|
59
59
|
@pulumi.getter
|
60
|
-
def data(self) -> Optional[pulumi.Input[Mapping[str,
|
60
|
+
def data(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
61
61
|
"""
|
62
62
|
A map of the secret data.
|
63
63
|
"""
|
64
64
|
return pulumi.get(self, "data")
|
65
65
|
|
66
66
|
@data.setter
|
67
|
-
def data(self, value: Optional[pulumi.Input[Mapping[str,
|
67
|
+
def data(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
68
68
|
pulumi.set(self, "data", value)
|
69
69
|
|
70
70
|
@property
|
@@ -108,14 +108,14 @@ class UserWorkloadsSecretArgs:
|
|
108
108
|
@pulumi.input_type
|
109
109
|
class _UserWorkloadsSecretState:
|
110
110
|
def __init__(__self__, *,
|
111
|
-
data: Optional[pulumi.Input[Mapping[str,
|
111
|
+
data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
112
112
|
environment: Optional[pulumi.Input[str]] = None,
|
113
113
|
name: Optional[pulumi.Input[str]] = None,
|
114
114
|
project: Optional[pulumi.Input[str]] = None,
|
115
115
|
region: Optional[pulumi.Input[str]] = None):
|
116
116
|
"""
|
117
117
|
Input properties used for looking up and filtering UserWorkloadsSecret resources.
|
118
|
-
:param pulumi.Input[Mapping[str,
|
118
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] data: A map of the secret data.
|
119
119
|
:param pulumi.Input[str] environment: Environment where the Kubernetes Secret will be stored and used.
|
120
120
|
:param pulumi.Input[str] name: Name of the Kubernetes Secret.
|
121
121
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -135,14 +135,14 @@ class _UserWorkloadsSecretState:
|
|
135
135
|
|
136
136
|
@property
|
137
137
|
@pulumi.getter
|
138
|
-
def data(self) -> Optional[pulumi.Input[Mapping[str,
|
138
|
+
def data(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
139
139
|
"""
|
140
140
|
A map of the secret data.
|
141
141
|
"""
|
142
142
|
return pulumi.get(self, "data")
|
143
143
|
|
144
144
|
@data.setter
|
145
|
-
def data(self, value: Optional[pulumi.Input[Mapping[str,
|
145
|
+
def data(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
146
146
|
pulumi.set(self, "data", value)
|
147
147
|
|
148
148
|
@property
|
@@ -200,7 +200,7 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
200
200
|
def __init__(__self__,
|
201
201
|
resource_name: str,
|
202
202
|
opts: Optional[pulumi.ResourceOptions] = None,
|
203
|
-
data: Optional[pulumi.Input[Mapping[str,
|
203
|
+
data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
204
204
|
environment: Optional[pulumi.Input[str]] = None,
|
205
205
|
name: Optional[pulumi.Input[str]] = None,
|
206
206
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -260,7 +260,7 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
260
260
|
|
261
261
|
:param str resource_name: The name of the resource.
|
262
262
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
263
|
-
:param pulumi.Input[Mapping[str,
|
263
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] data: A map of the secret data.
|
264
264
|
:param pulumi.Input[str] environment: Environment where the Kubernetes Secret will be stored and used.
|
265
265
|
:param pulumi.Input[str] name: Name of the Kubernetes Secret.
|
266
266
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -340,7 +340,7 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
340
340
|
def _internal_init(__self__,
|
341
341
|
resource_name: str,
|
342
342
|
opts: Optional[pulumi.ResourceOptions] = None,
|
343
|
-
data: Optional[pulumi.Input[Mapping[str,
|
343
|
+
data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
344
344
|
environment: Optional[pulumi.Input[str]] = None,
|
345
345
|
name: Optional[pulumi.Input[str]] = None,
|
346
346
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -373,7 +373,7 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
373
373
|
def get(resource_name: str,
|
374
374
|
id: pulumi.Input[str],
|
375
375
|
opts: Optional[pulumi.ResourceOptions] = None,
|
376
|
-
data: Optional[pulumi.Input[Mapping[str,
|
376
|
+
data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
377
377
|
environment: Optional[pulumi.Input[str]] = None,
|
378
378
|
name: Optional[pulumi.Input[str]] = None,
|
379
379
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -385,7 +385,7 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
385
385
|
:param str resource_name: The unique name of the resulting resource.
|
386
386
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
387
387
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
388
|
-
:param pulumi.Input[Mapping[str,
|
388
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] data: A map of the secret data.
|
389
389
|
:param pulumi.Input[str] environment: Environment where the Kubernetes Secret will be stored and used.
|
390
390
|
:param pulumi.Input[str] name: Name of the Kubernetes Secret.
|
391
391
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -405,7 +405,7 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
405
405
|
|
406
406
|
@property
|
407
407
|
@pulumi.getter
|
408
|
-
def data(self) -> pulumi.Output[Optional[Mapping[str,
|
408
|
+
def data(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
409
409
|
"""
|
410
410
|
A map of the secret data.
|
411
411
|
"""
|