pulumi-gcp 8.19.0a1739290509__py3-none-any.whl → 8.19.1a1739444689__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 +80 -0
- pulumi_gcp/_utilities.py +8 -4
- pulumi_gcp/accesscontextmanager/_inputs.py +288 -78
- pulumi_gcp/accesscontextmanager/outputs.py +186 -54
- pulumi_gcp/appengine/_inputs.py +3 -0
- pulumi_gcp/appengine/outputs.py +2 -0
- pulumi_gcp/beyondcorp/__init__.py +5 -0
- pulumi_gcp/beyondcorp/_inputs.py +189 -0
- pulumi_gcp/beyondcorp/application.py +604 -0
- pulumi_gcp/beyondcorp/application_iam_binding.py +1049 -0
- pulumi_gcp/beyondcorp/application_iam_member.py +1049 -0
- pulumi_gcp/beyondcorp/application_iam_policy.py +868 -0
- pulumi_gcp/beyondcorp/get_application_iam_policy.py +174 -0
- pulumi_gcp/beyondcorp/outputs.py +111 -0
- pulumi_gcp/bigqueryanalyticshub/__init__.py +1 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +318 -0
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +808 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +263 -0
- pulumi_gcp/certificateauthority/_inputs.py +54 -0
- pulumi_gcp/certificateauthority/authority.py +149 -3
- pulumi_gcp/certificateauthority/get_authority.py +15 -4
- pulumi_gcp/certificateauthority/outputs.py +81 -0
- pulumi_gcp/cloudrunv2/_inputs.py +112 -0
- pulumi_gcp/cloudrunv2/outputs.py +144 -1
- pulumi_gcp/cloudrunv2/service.py +2 -0
- pulumi_gcp/colab/__init__.py +2 -0
- pulumi_gcp/colab/_inputs.py +655 -0
- pulumi_gcp/colab/notebook_execution.py +1259 -0
- pulumi_gcp/colab/outputs.py +512 -0
- pulumi_gcp/colab/runtime.py +266 -2
- pulumi_gcp/colab/runtime_template.py +79 -3
- pulumi_gcp/colab/schedule.py +1318 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +204 -0
- pulumi_gcp/compute/firewall_policy.py +54 -43
- pulumi_gcp/compute/forwarding_rule.py +103 -0
- pulumi_gcp/compute/get_forwarding_rule.py +12 -1
- pulumi_gcp/compute/interconnect_attachment.py +12 -0
- pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +1011 -0
- pulumi_gcp/compute/outputs.py +187 -0
- pulumi_gcp/compute/public_advertised_prefix.py +35 -7
- pulumi_gcp/compute/public_delegated_prefix.py +171 -7
- pulumi_gcp/compute/region_resize_request.py +21 -22
- pulumi_gcp/compute/resize_request.py +22 -23
- pulumi_gcp/compute/subnetwork.py +14 -7
- pulumi_gcp/container/_inputs.py +54 -1
- pulumi_gcp/container/outputs.py +79 -1
- pulumi_gcp/datastream/connection_profile.py +120 -46
- pulumi_gcp/discoveryengine/chat_engine.py +7 -7
- pulumi_gcp/filestore/_inputs.py +222 -0
- pulumi_gcp/filestore/get_instance.py +23 -1
- pulumi_gcp/filestore/instance.py +86 -0
- pulumi_gcp/filestore/outputs.py +282 -0
- pulumi_gcp/gemini/__init__.py +2 -0
- pulumi_gcp/gemini/logging_setting.py +671 -0
- pulumi_gcp/gemini/release_channel_setting.py +639 -0
- pulumi_gcp/memorystore/_inputs.py +296 -0
- pulumi_gcp/memorystore/instance.py +32 -28
- pulumi_gcp/memorystore/outputs.py +224 -0
- pulumi_gcp/monitoring/_inputs.py +12 -9
- pulumi_gcp/monitoring/outputs.py +8 -6
- pulumi_gcp/networkservices/_inputs.py +89 -0
- pulumi_gcp/networkservices/outputs.py +75 -0
- pulumi_gcp/parametermanager/__init__.py +2 -0
- pulumi_gcp/parametermanager/get_parameter_version_render.py +199 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +220 -0
- pulumi_gcp/privilegedaccessmanager/entitlement.py +14 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/branch_rule.py +4 -0
- pulumi_gcp/securesourcemanager/repository.py +4 -0
- pulumi_gcp/storage/bucket_object.py +8 -0
- pulumi_gcp/workbench/instance.py +70 -2
- {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/RECORD +76 -63
- {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1a1739444689.dist-info}/top_level.txt +0 -0
pulumi_gcp/workbench/instance.py
CHANGED
@@ -24,6 +24,7 @@ class InstanceArgs:
|
|
24
24
|
location: pulumi.Input[str],
|
25
25
|
desired_state: Optional[pulumi.Input[str]] = None,
|
26
26
|
disable_proxy_access: Optional[pulumi.Input[bool]] = None,
|
27
|
+
enable_third_party_identity: Optional[pulumi.Input[bool]] = None,
|
27
28
|
gce_setup: Optional[pulumi.Input['InstanceGceSetupArgs']] = None,
|
28
29
|
instance_id: Optional[pulumi.Input[str]] = None,
|
29
30
|
instance_owners: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -38,6 +39,8 @@ class InstanceArgs:
|
|
38
39
|
- - -
|
39
40
|
:param pulumi.Input[str] desired_state: Desired state of the Workbench Instance. Set this field to `ACTIVE` to start the Instance, and `STOPPED` to stop the Instance.
|
40
41
|
:param pulumi.Input[bool] disable_proxy_access: Optional. If true, the workbench instance will not register with the proxy.
|
42
|
+
:param pulumi.Input[bool] enable_third_party_identity: Flag that specifies that a notebook can be accessed with third party
|
43
|
+
identity provider.
|
41
44
|
:param pulumi.Input['InstanceGceSetupArgs'] gce_setup: The definition of how to configure a VM instance outside of Resources and Identity.
|
42
45
|
Structure is documented below.
|
43
46
|
:param pulumi.Input[str] instance_id: Required. User-defined unique ID of this instance.
|
@@ -60,6 +63,8 @@ class InstanceArgs:
|
|
60
63
|
pulumi.set(__self__, "desired_state", desired_state)
|
61
64
|
if disable_proxy_access is not None:
|
62
65
|
pulumi.set(__self__, "disable_proxy_access", disable_proxy_access)
|
66
|
+
if enable_third_party_identity is not None:
|
67
|
+
pulumi.set(__self__, "enable_third_party_identity", enable_third_party_identity)
|
63
68
|
if gce_setup is not None:
|
64
69
|
pulumi.set(__self__, "gce_setup", gce_setup)
|
65
70
|
if instance_id is not None:
|
@@ -112,6 +117,19 @@ class InstanceArgs:
|
|
112
117
|
def disable_proxy_access(self, value: Optional[pulumi.Input[bool]]):
|
113
118
|
pulumi.set(self, "disable_proxy_access", value)
|
114
119
|
|
120
|
+
@property
|
121
|
+
@pulumi.getter(name="enableThirdPartyIdentity")
|
122
|
+
def enable_third_party_identity(self) -> Optional[pulumi.Input[bool]]:
|
123
|
+
"""
|
124
|
+
Flag that specifies that a notebook can be accessed with third party
|
125
|
+
identity provider.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "enable_third_party_identity")
|
128
|
+
|
129
|
+
@enable_third_party_identity.setter
|
130
|
+
def enable_third_party_identity(self, value: Optional[pulumi.Input[bool]]):
|
131
|
+
pulumi.set(self, "enable_third_party_identity", value)
|
132
|
+
|
115
133
|
@property
|
116
134
|
@pulumi.getter(name="gceSetup")
|
117
135
|
def gce_setup(self) -> Optional[pulumi.Input['InstanceGceSetupArgs']]:
|
@@ -203,6 +221,7 @@ class _InstanceState:
|
|
203
221
|
desired_state: Optional[pulumi.Input[str]] = None,
|
204
222
|
disable_proxy_access: Optional[pulumi.Input[bool]] = None,
|
205
223
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
224
|
+
enable_third_party_identity: Optional[pulumi.Input[bool]] = None,
|
206
225
|
gce_setup: Optional[pulumi.Input['InstanceGceSetupArgs']] = None,
|
207
226
|
health_infos: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceHealthInfoArgs']]]] = None,
|
208
227
|
health_state: Optional[pulumi.Input[str]] = None,
|
@@ -225,6 +244,8 @@ class _InstanceState:
|
|
225
244
|
:param pulumi.Input[str] desired_state: Desired state of the Workbench Instance. Set this field to `ACTIVE` to start the Instance, and `STOPPED` to stop the Instance.
|
226
245
|
:param pulumi.Input[bool] disable_proxy_access: Optional. If true, the workbench instance will not register with the proxy.
|
227
246
|
: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.
|
247
|
+
:param pulumi.Input[bool] enable_third_party_identity: Flag that specifies that a notebook can be accessed with third party
|
248
|
+
identity provider.
|
228
249
|
:param pulumi.Input['InstanceGceSetupArgs'] gce_setup: The definition of how to configure a VM instance outside of Resources and Identity.
|
229
250
|
Structure is documented below.
|
230
251
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceHealthInfoArgs']]] health_infos: 'Output only. Additional information about instance health. Example:
|
@@ -269,6 +290,8 @@ class _InstanceState:
|
|
269
290
|
pulumi.set(__self__, "disable_proxy_access", disable_proxy_access)
|
270
291
|
if effective_labels is not None:
|
271
292
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
293
|
+
if enable_third_party_identity is not None:
|
294
|
+
pulumi.set(__self__, "enable_third_party_identity", enable_third_party_identity)
|
272
295
|
if gce_setup is not None:
|
273
296
|
pulumi.set(__self__, "gce_setup", gce_setup)
|
274
297
|
if health_infos is not None:
|
@@ -359,6 +382,19 @@ class _InstanceState:
|
|
359
382
|
def effective_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
360
383
|
pulumi.set(self, "effective_labels", value)
|
361
384
|
|
385
|
+
@property
|
386
|
+
@pulumi.getter(name="enableThirdPartyIdentity")
|
387
|
+
def enable_third_party_identity(self) -> Optional[pulumi.Input[bool]]:
|
388
|
+
"""
|
389
|
+
Flag that specifies that a notebook can be accessed with third party
|
390
|
+
identity provider.
|
391
|
+
"""
|
392
|
+
return pulumi.get(self, "enable_third_party_identity")
|
393
|
+
|
394
|
+
@enable_third_party_identity.setter
|
395
|
+
def enable_third_party_identity(self, value: Optional[pulumi.Input[bool]]):
|
396
|
+
pulumi.set(self, "enable_third_party_identity", value)
|
397
|
+
|
362
398
|
@property
|
363
399
|
@pulumi.getter(name="gceSetup")
|
364
400
|
def gce_setup(self) -> Optional[pulumi.Input['InstanceGceSetupArgs']]:
|
@@ -554,6 +590,7 @@ class Instance(pulumi.CustomResource):
|
|
554
590
|
opts: Optional[pulumi.ResourceOptions] = None,
|
555
591
|
desired_state: Optional[pulumi.Input[str]] = None,
|
556
592
|
disable_proxy_access: Optional[pulumi.Input[bool]] = None,
|
593
|
+
enable_third_party_identity: Optional[pulumi.Input[bool]] = None,
|
557
594
|
gce_setup: Optional[pulumi.Input[Union['InstanceGceSetupArgs', 'InstanceGceSetupArgsDict']]] = None,
|
558
595
|
instance_id: Optional[pulumi.Input[str]] = None,
|
559
596
|
instance_owners: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -565,6 +602,12 @@ class Instance(pulumi.CustomResource):
|
|
565
602
|
"""
|
566
603
|
A Workbench instance.
|
567
604
|
|
605
|
+
To get more information about Instance, see:
|
606
|
+
|
607
|
+
* [API documentation](https://cloud.google.com/vertex-ai/docs/workbench/reference/rest/v2/projects.locations.instances)
|
608
|
+
* How-to Guides
|
609
|
+
* [Official Documentation](https://cloud.google.com/vertex-ai/docs/workbench/instances/introduction)
|
610
|
+
|
568
611
|
## Example Usage
|
569
612
|
|
570
613
|
### Workbench Instance Basic
|
@@ -713,7 +756,8 @@ class Instance(pulumi.CustomResource):
|
|
713
756
|
labels={
|
714
757
|
"k": "val",
|
715
758
|
},
|
716
|
-
desired_state="ACTIVE"
|
759
|
+
desired_state="ACTIVE",
|
760
|
+
enable_third_party_identity=True)
|
717
761
|
```
|
718
762
|
|
719
763
|
## Import
|
@@ -744,6 +788,8 @@ class Instance(pulumi.CustomResource):
|
|
744
788
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
745
789
|
:param pulumi.Input[str] desired_state: Desired state of the Workbench Instance. Set this field to `ACTIVE` to start the Instance, and `STOPPED` to stop the Instance.
|
746
790
|
:param pulumi.Input[bool] disable_proxy_access: Optional. If true, the workbench instance will not register with the proxy.
|
791
|
+
:param pulumi.Input[bool] enable_third_party_identity: Flag that specifies that a notebook can be accessed with third party
|
792
|
+
identity provider.
|
747
793
|
:param pulumi.Input[Union['InstanceGceSetupArgs', 'InstanceGceSetupArgsDict']] gce_setup: The definition of how to configure a VM instance outside of Resources and Identity.
|
748
794
|
Structure is documented below.
|
749
795
|
:param pulumi.Input[str] instance_id: Required. User-defined unique ID of this instance.
|
@@ -774,6 +820,12 @@ class Instance(pulumi.CustomResource):
|
|
774
820
|
"""
|
775
821
|
A Workbench instance.
|
776
822
|
|
823
|
+
To get more information about Instance, see:
|
824
|
+
|
825
|
+
* [API documentation](https://cloud.google.com/vertex-ai/docs/workbench/reference/rest/v2/projects.locations.instances)
|
826
|
+
* How-to Guides
|
827
|
+
* [Official Documentation](https://cloud.google.com/vertex-ai/docs/workbench/instances/introduction)
|
828
|
+
|
777
829
|
## Example Usage
|
778
830
|
|
779
831
|
### Workbench Instance Basic
|
@@ -922,7 +974,8 @@ class Instance(pulumi.CustomResource):
|
|
922
974
|
labels={
|
923
975
|
"k": "val",
|
924
976
|
},
|
925
|
-
desired_state="ACTIVE"
|
977
|
+
desired_state="ACTIVE",
|
978
|
+
enable_third_party_identity=True)
|
926
979
|
```
|
927
980
|
|
928
981
|
## Import
|
@@ -966,6 +1019,7 @@ class Instance(pulumi.CustomResource):
|
|
966
1019
|
opts: Optional[pulumi.ResourceOptions] = None,
|
967
1020
|
desired_state: Optional[pulumi.Input[str]] = None,
|
968
1021
|
disable_proxy_access: Optional[pulumi.Input[bool]] = None,
|
1022
|
+
enable_third_party_identity: Optional[pulumi.Input[bool]] = None,
|
969
1023
|
gce_setup: Optional[pulumi.Input[Union['InstanceGceSetupArgs', 'InstanceGceSetupArgsDict']]] = None,
|
970
1024
|
instance_id: Optional[pulumi.Input[str]] = None,
|
971
1025
|
instance_owners: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -984,6 +1038,7 @@ class Instance(pulumi.CustomResource):
|
|
984
1038
|
|
985
1039
|
__props__.__dict__["desired_state"] = desired_state
|
986
1040
|
__props__.__dict__["disable_proxy_access"] = disable_proxy_access
|
1041
|
+
__props__.__dict__["enable_third_party_identity"] = enable_third_party_identity
|
987
1042
|
__props__.__dict__["gce_setup"] = gce_setup
|
988
1043
|
__props__.__dict__["instance_id"] = instance_id
|
989
1044
|
__props__.__dict__["instance_owners"] = instance_owners
|
@@ -1020,6 +1075,7 @@ class Instance(pulumi.CustomResource):
|
|
1020
1075
|
desired_state: Optional[pulumi.Input[str]] = None,
|
1021
1076
|
disable_proxy_access: Optional[pulumi.Input[bool]] = None,
|
1022
1077
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1078
|
+
enable_third_party_identity: Optional[pulumi.Input[bool]] = None,
|
1023
1079
|
gce_setup: Optional[pulumi.Input[Union['InstanceGceSetupArgs', 'InstanceGceSetupArgsDict']]] = None,
|
1024
1080
|
health_infos: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InstanceHealthInfoArgs', 'InstanceHealthInfoArgsDict']]]]] = None,
|
1025
1081
|
health_state: Optional[pulumi.Input[str]] = None,
|
@@ -1047,6 +1103,8 @@ class Instance(pulumi.CustomResource):
|
|
1047
1103
|
:param pulumi.Input[str] desired_state: Desired state of the Workbench Instance. Set this field to `ACTIVE` to start the Instance, and `STOPPED` to stop the Instance.
|
1048
1104
|
:param pulumi.Input[bool] disable_proxy_access: Optional. If true, the workbench instance will not register with the proxy.
|
1049
1105
|
: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.
|
1106
|
+
:param pulumi.Input[bool] enable_third_party_identity: Flag that specifies that a notebook can be accessed with third party
|
1107
|
+
identity provider.
|
1050
1108
|
:param pulumi.Input[Union['InstanceGceSetupArgs', 'InstanceGceSetupArgsDict']] gce_setup: The definition of how to configure a VM instance outside of Resources and Identity.
|
1051
1109
|
Structure is documented below.
|
1052
1110
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceHealthInfoArgs', 'InstanceHealthInfoArgsDict']]]] health_infos: 'Output only. Additional information about instance health. Example:
|
@@ -1090,6 +1148,7 @@ class Instance(pulumi.CustomResource):
|
|
1090
1148
|
__props__.__dict__["desired_state"] = desired_state
|
1091
1149
|
__props__.__dict__["disable_proxy_access"] = disable_proxy_access
|
1092
1150
|
__props__.__dict__["effective_labels"] = effective_labels
|
1151
|
+
__props__.__dict__["enable_third_party_identity"] = enable_third_party_identity
|
1093
1152
|
__props__.__dict__["gce_setup"] = gce_setup
|
1094
1153
|
__props__.__dict__["health_infos"] = health_infos
|
1095
1154
|
__props__.__dict__["health_state"] = health_state
|
@@ -1147,6 +1206,15 @@ class Instance(pulumi.CustomResource):
|
|
1147
1206
|
"""
|
1148
1207
|
return pulumi.get(self, "effective_labels")
|
1149
1208
|
|
1209
|
+
@property
|
1210
|
+
@pulumi.getter(name="enableThirdPartyIdentity")
|
1211
|
+
def enable_third_party_identity(self) -> pulumi.Output[Optional[bool]]:
|
1212
|
+
"""
|
1213
|
+
Flag that specifies that a notebook can be accessed with third party
|
1214
|
+
identity provider.
|
1215
|
+
"""
|
1216
|
+
return pulumi.get(self, "enable_third_party_identity")
|
1217
|
+
|
1150
1218
|
@property
|
1151
1219
|
@pulumi.getter(name="gceSetup")
|
1152
1220
|
def gce_setup(self) -> pulumi.Output['outputs.InstanceGceSetup']:
|