pulumi-gcp 7.12.0a1709561306__py3-none-any.whl → 7.13.0a1709814369__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. pulumi_gcp/__init__.py +24 -0
  2. pulumi_gcp/appengine/application_url_dispatch_rules.py +2 -2
  3. pulumi_gcp/appengine/engine_split_traffic.py +4 -4
  4. pulumi_gcp/appengine/service_network_settings.py +2 -2
  5. pulumi_gcp/appengine/standard_app_version.py +4 -4
  6. pulumi_gcp/bigquery/_inputs.py +88 -0
  7. pulumi_gcp/bigquery/outputs.py +91 -0
  8. pulumi_gcp/bigquery/routine.py +118 -12
  9. pulumi_gcp/certificatemanager/dns_authorization.py +63 -14
  10. pulumi_gcp/clouddeploy/__init__.py +4 -0
  11. pulumi_gcp/clouddeploy/_inputs.py +80 -0
  12. pulumi_gcp/clouddeploy/automation.py +16 -0
  13. pulumi_gcp/clouddeploy/get_target_iam_policy.py +162 -0
  14. pulumi_gcp/clouddeploy/outputs.py +56 -0
  15. pulumi_gcp/clouddeploy/target_iam_binding.py +324 -0
  16. pulumi_gcp/clouddeploy/target_iam_member.py +324 -0
  17. pulumi_gcp/clouddeploy/target_iam_policy.py +253 -0
  18. pulumi_gcp/cloudrunv2/_inputs.py +4 -2
  19. pulumi_gcp/cloudrunv2/outputs.py +8 -4
  20. pulumi_gcp/composer/_inputs.py +18 -2
  21. pulumi_gcp/composer/outputs.py +29 -4
  22. pulumi_gcp/compute/region_target_https_proxy.py +162 -37
  23. pulumi_gcp/gkehub/scope.py +85 -0
  24. pulumi_gcp/monitoring/get_app_engine_service.py +2 -2
  25. pulumi_gcp/spanner/_inputs.py +20 -0
  26. pulumi_gcp/spanner/database_iam_binding.py +134 -0
  27. pulumi_gcp/spanner/database_iam_member.py +134 -0
  28. pulumi_gcp/spanner/database_iam_policy.py +114 -0
  29. pulumi_gcp/spanner/outputs.py +20 -0
  30. {pulumi_gcp-7.12.0a1709561306.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/METADATA +1 -1
  31. {pulumi_gcp-7.12.0a1709561306.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/RECORD +33 -29
  32. {pulumi_gcp-7.12.0a1709561306.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/WHEEL +0 -0
  33. {pulumi_gcp-7.12.0a1709561306.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py CHANGED
@@ -1685,6 +1685,30 @@ _utilities.register(
1685
1685
  "gcp:clouddeploy/target:Target": "Target"
1686
1686
  }
1687
1687
  },
1688
+ {
1689
+ "pkg": "gcp",
1690
+ "mod": "clouddeploy/targetIamBinding",
1691
+ "fqn": "pulumi_gcp.clouddeploy",
1692
+ "classes": {
1693
+ "gcp:clouddeploy/targetIamBinding:TargetIamBinding": "TargetIamBinding"
1694
+ }
1695
+ },
1696
+ {
1697
+ "pkg": "gcp",
1698
+ "mod": "clouddeploy/targetIamMember",
1699
+ "fqn": "pulumi_gcp.clouddeploy",
1700
+ "classes": {
1701
+ "gcp:clouddeploy/targetIamMember:TargetIamMember": "TargetIamMember"
1702
+ }
1703
+ },
1704
+ {
1705
+ "pkg": "gcp",
1706
+ "mod": "clouddeploy/targetIamPolicy",
1707
+ "fqn": "pulumi_gcp.clouddeploy",
1708
+ "classes": {
1709
+ "gcp:clouddeploy/targetIamPolicy:TargetIamPolicy": "TargetIamPolicy"
1710
+ }
1711
+ },
1688
1712
  {
1689
1713
  "pkg": "gcp",
1690
1714
  "mod": "clouddomains/registration",
@@ -132,7 +132,7 @@ class ApplicationUrlDispatchRules(pulumi.CustomResource):
132
132
  admin_v3 = gcp.appengine.StandardAppVersion("admin_v3",
133
133
  version_id="v3",
134
134
  service="admin",
135
- runtime="nodejs10",
135
+ runtime="nodejs20",
136
136
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
137
137
  shell="node ./app.js",
138
138
  ),
@@ -208,7 +208,7 @@ class ApplicationUrlDispatchRules(pulumi.CustomResource):
208
208
  admin_v3 = gcp.appengine.StandardAppVersion("admin_v3",
209
209
  version_id="v3",
210
210
  service="admin",
211
- runtime="nodejs10",
211
+ runtime="nodejs20",
212
212
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
213
213
  shell="node ./app.js",
214
214
  ),
@@ -198,7 +198,7 @@ class EngineSplitTraffic(pulumi.CustomResource):
198
198
  version_id="v1",
199
199
  service="liveapp",
200
200
  delete_service_on_destroy=True,
201
- runtime="nodejs10",
201
+ runtime="nodejs20",
202
202
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
203
203
  shell="node ./app.js",
204
204
  ),
@@ -214,7 +214,7 @@ class EngineSplitTraffic(pulumi.CustomResource):
214
214
  version_id="v2",
215
215
  service="liveapp",
216
216
  noop_on_destroy=True,
217
- runtime="nodejs10",
217
+ runtime="nodejs20",
218
218
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
219
219
  shell="node ./app.js",
220
220
  ),
@@ -302,7 +302,7 @@ class EngineSplitTraffic(pulumi.CustomResource):
302
302
  version_id="v1",
303
303
  service="liveapp",
304
304
  delete_service_on_destroy=True,
305
- runtime="nodejs10",
305
+ runtime="nodejs20",
306
306
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
307
307
  shell="node ./app.js",
308
308
  ),
@@ -318,7 +318,7 @@ class EngineSplitTraffic(pulumi.CustomResource):
318
318
  version_id="v2",
319
319
  service="liveapp",
320
320
  noop_on_destroy=True,
321
- runtime="nodejs10",
321
+ runtime="nodejs20",
322
322
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
323
323
  shell="node ./app.js",
324
324
  ),
@@ -165,7 +165,7 @@ class ServiceNetworkSettings(pulumi.CustomResource):
165
165
  version_id="v1",
166
166
  service="internalapp",
167
167
  delete_service_on_destroy=True,
168
- runtime="nodejs10",
168
+ runtime="nodejs20",
169
169
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
170
170
  shell="node ./app.js",
171
171
  ),
@@ -247,7 +247,7 @@ class ServiceNetworkSettings(pulumi.CustomResource):
247
247
  version_id="v1",
248
248
  service="internalapp",
249
249
  delete_service_on_destroy=True,
250
- runtime="nodejs10",
250
+ runtime="nodejs20",
251
251
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
252
252
  shell="node ./app.js",
253
253
  ),
@@ -844,7 +844,7 @@ class StandardAppVersion(pulumi.CustomResource):
844
844
  myapp_v1 = gcp.appengine.StandardAppVersion("myapp_v1",
845
845
  version_id="v1",
846
846
  service="myapp",
847
- runtime="nodejs10",
847
+ runtime="nodejs20",
848
848
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
849
849
  shell="node ./app.js",
850
850
  ),
@@ -874,7 +874,7 @@ class StandardAppVersion(pulumi.CustomResource):
874
874
  myapp_v2 = gcp.appengine.StandardAppVersion("myapp_v2",
875
875
  version_id="v2",
876
876
  service="myapp",
877
- runtime="nodejs10",
877
+ runtime="nodejs20",
878
878
  app_engine_apis=True,
879
879
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
880
880
  shell="node ./app.js",
@@ -1004,7 +1004,7 @@ class StandardAppVersion(pulumi.CustomResource):
1004
1004
  myapp_v1 = gcp.appengine.StandardAppVersion("myapp_v1",
1005
1005
  version_id="v1",
1006
1006
  service="myapp",
1007
- runtime="nodejs10",
1007
+ runtime="nodejs20",
1008
1008
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
1009
1009
  shell="node ./app.js",
1010
1010
  ),
@@ -1034,7 +1034,7 @@ class StandardAppVersion(pulumi.CustomResource):
1034
1034
  myapp_v2 = gcp.appengine.StandardAppVersion("myapp_v2",
1035
1035
  version_id="v2",
1036
1036
  service="myapp",
1037
- runtime="nodejs10",
1037
+ runtime="nodejs20",
1038
1038
  app_engine_apis=True,
1039
1039
  entrypoint=gcp.appengine.StandardAppVersionEntrypointArgs(
1040
1040
  shell="node ./app.js",
@@ -64,6 +64,7 @@ __all__ = [
64
64
  'JobStatusErrorResultArgs',
65
65
  'ReservationAutoscaleArgs',
66
66
  'RoutineArgumentArgs',
67
+ 'RoutineRemoteFunctionOptionsArgs',
67
68
  'RoutineSparkOptionsArgs',
68
69
  'TableEncryptionConfigurationArgs',
69
70
  'TableExternalDataConfigurationArgs',
@@ -3779,6 +3780,93 @@ class RoutineArgumentArgs:
3779
3780
  pulumi.set(self, "name", value)
3780
3781
 
3781
3782
 
3783
+ @pulumi.input_type
3784
+ class RoutineRemoteFunctionOptionsArgs:
3785
+ def __init__(__self__, *,
3786
+ connection: Optional[pulumi.Input[str]] = None,
3787
+ endpoint: Optional[pulumi.Input[str]] = None,
3788
+ max_batching_rows: Optional[pulumi.Input[str]] = None,
3789
+ user_defined_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
3790
+ """
3791
+ :param pulumi.Input[str] connection: Fully qualified name of the user-provided connection object which holds
3792
+ the authentication information to send requests to the remote service.
3793
+ Format: "projects/{projectId}/locations/{locationId}/connections/{connectionId}"
3794
+ :param pulumi.Input[str] endpoint: Endpoint of the user-provided remote service, e.g.
3795
+ `https://us-east1-my_gcf_project.cloudfunctions.net/remote_add`
3796
+ :param pulumi.Input[str] max_batching_rows: Max number of rows in each batch sent to the remote service. If absent or if 0,
3797
+ BigQuery dynamically decides the number of rows in a batch.
3798
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] user_defined_context: User-defined context as a set of key/value pairs, which will be sent as function
3799
+ invocation context together with batched arguments in the requests to the remote
3800
+ service. The total number of bytes of keys and values must be less than 8KB.
3801
+ An object containing a list of "key": value pairs. Example:
3802
+ `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
3803
+ """
3804
+ if connection is not None:
3805
+ pulumi.set(__self__, "connection", connection)
3806
+ if endpoint is not None:
3807
+ pulumi.set(__self__, "endpoint", endpoint)
3808
+ if max_batching_rows is not None:
3809
+ pulumi.set(__self__, "max_batching_rows", max_batching_rows)
3810
+ if user_defined_context is not None:
3811
+ pulumi.set(__self__, "user_defined_context", user_defined_context)
3812
+
3813
+ @property
3814
+ @pulumi.getter
3815
+ def connection(self) -> Optional[pulumi.Input[str]]:
3816
+ """
3817
+ Fully qualified name of the user-provided connection object which holds
3818
+ the authentication information to send requests to the remote service.
3819
+ Format: "projects/{projectId}/locations/{locationId}/connections/{connectionId}"
3820
+ """
3821
+ return pulumi.get(self, "connection")
3822
+
3823
+ @connection.setter
3824
+ def connection(self, value: Optional[pulumi.Input[str]]):
3825
+ pulumi.set(self, "connection", value)
3826
+
3827
+ @property
3828
+ @pulumi.getter
3829
+ def endpoint(self) -> Optional[pulumi.Input[str]]:
3830
+ """
3831
+ Endpoint of the user-provided remote service, e.g.
3832
+ `https://us-east1-my_gcf_project.cloudfunctions.net/remote_add`
3833
+ """
3834
+ return pulumi.get(self, "endpoint")
3835
+
3836
+ @endpoint.setter
3837
+ def endpoint(self, value: Optional[pulumi.Input[str]]):
3838
+ pulumi.set(self, "endpoint", value)
3839
+
3840
+ @property
3841
+ @pulumi.getter(name="maxBatchingRows")
3842
+ def max_batching_rows(self) -> Optional[pulumi.Input[str]]:
3843
+ """
3844
+ Max number of rows in each batch sent to the remote service. If absent or if 0,
3845
+ BigQuery dynamically decides the number of rows in a batch.
3846
+ """
3847
+ return pulumi.get(self, "max_batching_rows")
3848
+
3849
+ @max_batching_rows.setter
3850
+ def max_batching_rows(self, value: Optional[pulumi.Input[str]]):
3851
+ pulumi.set(self, "max_batching_rows", value)
3852
+
3853
+ @property
3854
+ @pulumi.getter(name="userDefinedContext")
3855
+ def user_defined_context(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
3856
+ """
3857
+ User-defined context as a set of key/value pairs, which will be sent as function
3858
+ invocation context together with batched arguments in the requests to the remote
3859
+ service. The total number of bytes of keys and values must be less than 8KB.
3860
+ An object containing a list of "key": value pairs. Example:
3861
+ `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
3862
+ """
3863
+ return pulumi.get(self, "user_defined_context")
3864
+
3865
+ @user_defined_context.setter
3866
+ def user_defined_context(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
3867
+ pulumi.set(self, "user_defined_context", value)
3868
+
3869
+
3782
3870
  @pulumi.input_type
3783
3871
  class RoutineSparkOptionsArgs:
3784
3872
  def __init__(__self__, *,
@@ -65,6 +65,7 @@ __all__ = [
65
65
  'JobStatusErrorResult',
66
66
  'ReservationAutoscale',
67
67
  'RoutineArgument',
68
+ 'RoutineRemoteFunctionOptions',
68
69
  'RoutineSparkOptions',
69
70
  'TableEncryptionConfiguration',
70
71
  'TableExternalDataConfiguration',
@@ -3964,6 +3965,96 @@ class RoutineArgument(dict):
3964
3965
  return pulumi.get(self, "name")
3965
3966
 
3966
3967
 
3968
+ @pulumi.output_type
3969
+ class RoutineRemoteFunctionOptions(dict):
3970
+ @staticmethod
3971
+ def __key_warning(key: str):
3972
+ suggest = None
3973
+ if key == "maxBatchingRows":
3974
+ suggest = "max_batching_rows"
3975
+ elif key == "userDefinedContext":
3976
+ suggest = "user_defined_context"
3977
+
3978
+ if suggest:
3979
+ pulumi.log.warn(f"Key '{key}' not found in RoutineRemoteFunctionOptions. Access the value via the '{suggest}' property getter instead.")
3980
+
3981
+ def __getitem__(self, key: str) -> Any:
3982
+ RoutineRemoteFunctionOptions.__key_warning(key)
3983
+ return super().__getitem__(key)
3984
+
3985
+ def get(self, key: str, default = None) -> Any:
3986
+ RoutineRemoteFunctionOptions.__key_warning(key)
3987
+ return super().get(key, default)
3988
+
3989
+ def __init__(__self__, *,
3990
+ connection: Optional[str] = None,
3991
+ endpoint: Optional[str] = None,
3992
+ max_batching_rows: Optional[str] = None,
3993
+ user_defined_context: Optional[Mapping[str, str]] = None):
3994
+ """
3995
+ :param str connection: Fully qualified name of the user-provided connection object which holds
3996
+ the authentication information to send requests to the remote service.
3997
+ Format: "projects/{projectId}/locations/{locationId}/connections/{connectionId}"
3998
+ :param str endpoint: Endpoint of the user-provided remote service, e.g.
3999
+ `https://us-east1-my_gcf_project.cloudfunctions.net/remote_add`
4000
+ :param str max_batching_rows: Max number of rows in each batch sent to the remote service. If absent or if 0,
4001
+ BigQuery dynamically decides the number of rows in a batch.
4002
+ :param Mapping[str, str] user_defined_context: User-defined context as a set of key/value pairs, which will be sent as function
4003
+ invocation context together with batched arguments in the requests to the remote
4004
+ service. The total number of bytes of keys and values must be less than 8KB.
4005
+ An object containing a list of "key": value pairs. Example:
4006
+ `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
4007
+ """
4008
+ if connection is not None:
4009
+ pulumi.set(__self__, "connection", connection)
4010
+ if endpoint is not None:
4011
+ pulumi.set(__self__, "endpoint", endpoint)
4012
+ if max_batching_rows is not None:
4013
+ pulumi.set(__self__, "max_batching_rows", max_batching_rows)
4014
+ if user_defined_context is not None:
4015
+ pulumi.set(__self__, "user_defined_context", user_defined_context)
4016
+
4017
+ @property
4018
+ @pulumi.getter
4019
+ def connection(self) -> Optional[str]:
4020
+ """
4021
+ Fully qualified name of the user-provided connection object which holds
4022
+ the authentication information to send requests to the remote service.
4023
+ Format: "projects/{projectId}/locations/{locationId}/connections/{connectionId}"
4024
+ """
4025
+ return pulumi.get(self, "connection")
4026
+
4027
+ @property
4028
+ @pulumi.getter
4029
+ def endpoint(self) -> Optional[str]:
4030
+ """
4031
+ Endpoint of the user-provided remote service, e.g.
4032
+ `https://us-east1-my_gcf_project.cloudfunctions.net/remote_add`
4033
+ """
4034
+ return pulumi.get(self, "endpoint")
4035
+
4036
+ @property
4037
+ @pulumi.getter(name="maxBatchingRows")
4038
+ def max_batching_rows(self) -> Optional[str]:
4039
+ """
4040
+ Max number of rows in each batch sent to the remote service. If absent or if 0,
4041
+ BigQuery dynamically decides the number of rows in a batch.
4042
+ """
4043
+ return pulumi.get(self, "max_batching_rows")
4044
+
4045
+ @property
4046
+ @pulumi.getter(name="userDefinedContext")
4047
+ def user_defined_context(self) -> Optional[Mapping[str, str]]:
4048
+ """
4049
+ User-defined context as a set of key/value pairs, which will be sent as function
4050
+ invocation context together with batched arguments in the requests to the remote
4051
+ service. The total number of bytes of keys and values must be less than 8KB.
4052
+ An object containing a list of "key": value pairs. Example:
4053
+ `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
4054
+ """
4055
+ return pulumi.get(self, "user_defined_context")
4056
+
4057
+
3967
4058
  @pulumi.output_type
3968
4059
  class RoutineSparkOptions(dict):
3969
4060
  @staticmethod