pulumi-gcp 7.12.0a1709365001__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 (73) hide show
  1. pulumi_gcp/__init__.py +72 -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/dataset_iam_binding.py +35 -28
  8. pulumi_gcp/bigquery/dataset_iam_member.py +35 -28
  9. pulumi_gcp/bigquery/dataset_iam_policy.py +35 -28
  10. pulumi_gcp/bigquery/outputs.py +91 -0
  11. pulumi_gcp/bigquery/routine.py +118 -12
  12. pulumi_gcp/certificatemanager/dns_authorization.py +63 -14
  13. pulumi_gcp/clouddeploy/__init__.py +4 -0
  14. pulumi_gcp/clouddeploy/_inputs.py +80 -0
  15. pulumi_gcp/clouddeploy/automation.py +16 -0
  16. pulumi_gcp/clouddeploy/get_target_iam_policy.py +162 -0
  17. pulumi_gcp/clouddeploy/outputs.py +56 -0
  18. pulumi_gcp/clouddeploy/target_iam_binding.py +324 -0
  19. pulumi_gcp/clouddeploy/target_iam_member.py +324 -0
  20. pulumi_gcp/clouddeploy/target_iam_policy.py +253 -0
  21. pulumi_gcp/cloudfunctionsv2/function.py +0 -2
  22. pulumi_gcp/cloudrunv2/_inputs.py +4 -2
  23. pulumi_gcp/cloudrunv2/outputs.py +8 -4
  24. pulumi_gcp/composer/_inputs.py +18 -2
  25. pulumi_gcp/composer/outputs.py +29 -4
  26. pulumi_gcp/compute/__init__.py +1 -0
  27. pulumi_gcp/compute/get_forwarding_rules.py +142 -0
  28. pulumi_gcp/compute/instance_group_membership.py +4 -4
  29. pulumi_gcp/compute/outputs.py +816 -0
  30. pulumi_gcp/compute/region_network_endpoint.py +2 -2
  31. pulumi_gcp/compute/region_target_https_proxy.py +162 -37
  32. pulumi_gcp/compute/router_nat.py +8 -8
  33. pulumi_gcp/container/_inputs.py +80 -0
  34. pulumi_gcp/container/cluster.py +20 -16
  35. pulumi_gcp/container/outputs.py +115 -1
  36. pulumi_gcp/firebase/__init__.py +4 -0
  37. pulumi_gcp/firebase/app_check_app_attest_config.py +461 -0
  38. pulumi_gcp/firebase/app_check_play_integrity_config.py +465 -0
  39. pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +474 -0
  40. pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +511 -0
  41. pulumi_gcp/gkehub/scope.py +85 -0
  42. pulumi_gcp/integrationconnectors/connection.py +4 -4
  43. pulumi_gcp/looker/_inputs.py +42 -0
  44. pulumi_gcp/looker/instance.py +90 -0
  45. pulumi_gcp/looker/outputs.py +34 -0
  46. pulumi_gcp/migrationcenter/__init__.py +3 -0
  47. pulumi_gcp/migrationcenter/_inputs.py +500 -0
  48. pulumi_gcp/migrationcenter/outputs.py +562 -0
  49. pulumi_gcp/migrationcenter/preference_set.py +687 -0
  50. pulumi_gcp/monitoring/custom_service.py +4 -2
  51. pulumi_gcp/monitoring/generic_service.py +4 -2
  52. pulumi_gcp/monitoring/get_app_engine_service.py +2 -2
  53. pulumi_gcp/netapp/__init__.py +1 -0
  54. pulumi_gcp/netapp/_inputs.py +275 -0
  55. pulumi_gcp/netapp/outputs.py +290 -0
  56. pulumi_gcp/netapp/volume.py +140 -2
  57. pulumi_gcp/netapp/volume_replication.py +1292 -0
  58. pulumi_gcp/notebooks/instance.py +1 -1
  59. pulumi_gcp/securityposture/_inputs.py +22 -19
  60. pulumi_gcp/securityposture/outputs.py +18 -15
  61. pulumi_gcp/securityposture/posture.py +28 -48
  62. pulumi_gcp/spanner/_inputs.py +20 -0
  63. pulumi_gcp/spanner/database_iam_binding.py +134 -0
  64. pulumi_gcp/spanner/database_iam_member.py +134 -0
  65. pulumi_gcp/spanner/database_iam_policy.py +114 -0
  66. pulumi_gcp/spanner/outputs.py +20 -0
  67. pulumi_gcp/workbench/_inputs.py +157 -2
  68. pulumi_gcp/workbench/instance.py +52 -0
  69. pulumi_gcp/workbench/outputs.py +154 -2
  70. {pulumi_gcp-7.12.0a1709365001.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/METADATA +1 -1
  71. {pulumi_gcp-7.12.0a1709365001.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/RECORD +73 -60
  72. {pulumi_gcp-7.12.0a1709365001.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/WHEEL +0 -0
  73. {pulumi_gcp-7.12.0a1709365001.dist-info → pulumi_gcp-7.13.0a1709814369.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,142 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetForwardingRulesResult',
15
+ 'AwaitableGetForwardingRulesResult',
16
+ 'get_forwarding_rules',
17
+ 'get_forwarding_rules_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetForwardingRulesResult:
22
+ """
23
+ A collection of values returned by getForwardingRules.
24
+ """
25
+ def __init__(__self__, id=None, project=None, region=None, rules=None):
26
+ if id and not isinstance(id, str):
27
+ raise TypeError("Expected argument 'id' to be a str")
28
+ pulumi.set(__self__, "id", id)
29
+ if project and not isinstance(project, str):
30
+ raise TypeError("Expected argument 'project' to be a str")
31
+ pulumi.set(__self__, "project", project)
32
+ if region and not isinstance(region, str):
33
+ raise TypeError("Expected argument 'region' to be a str")
34
+ pulumi.set(__self__, "region", region)
35
+ if rules and not isinstance(rules, list):
36
+ raise TypeError("Expected argument 'rules' to be a list")
37
+ pulumi.set(__self__, "rules", rules)
38
+
39
+ @property
40
+ @pulumi.getter
41
+ def id(self) -> str:
42
+ """
43
+ The provider-assigned unique ID for this managed resource.
44
+ """
45
+ return pulumi.get(self, "id")
46
+
47
+ @property
48
+ @pulumi.getter
49
+ def project(self) -> Optional[str]:
50
+ """
51
+ The project name being queried.
52
+ """
53
+ return pulumi.get(self, "project")
54
+
55
+ @property
56
+ @pulumi.getter
57
+ def region(self) -> Optional[str]:
58
+ """
59
+ The region being queried.
60
+ """
61
+ return pulumi.get(self, "region")
62
+
63
+ @property
64
+ @pulumi.getter
65
+ def rules(self) -> Sequence['outputs.GetForwardingRulesRuleResult']:
66
+ """
67
+ This is a list of the forwarding rules in the project. Each forwarding rule will list the backend, description, ip address. name, network, self link, service label, service name, and subnet.
68
+ """
69
+ return pulumi.get(self, "rules")
70
+
71
+
72
+ class AwaitableGetForwardingRulesResult(GetForwardingRulesResult):
73
+ # pylint: disable=using-constant-test
74
+ def __await__(self):
75
+ if False:
76
+ yield self
77
+ return GetForwardingRulesResult(
78
+ id=self.id,
79
+ project=self.project,
80
+ region=self.region,
81
+ rules=self.rules)
82
+
83
+
84
+ def get_forwarding_rules(project: Optional[str] = None,
85
+ region: Optional[str] = None,
86
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetForwardingRulesResult:
87
+ """
88
+ List all networks in a specified Google Cloud project.
89
+
90
+ ## Example Usage
91
+
92
+ ```python
93
+ import pulumi
94
+ import pulumi_gcp as gcp
95
+
96
+ my_forwarding_rules = gcp.compute.get_forwarding_rules(project="my-cloud-project",
97
+ region="us-central1")
98
+ ```
99
+
100
+
101
+ :param str project: The name of the project.
102
+ :param str region: The region you want to get the forwarding rules from.
103
+
104
+ These arguments must be set in either the provider or the resouce in order for the information to be queried.
105
+ """
106
+ __args__ = dict()
107
+ __args__['project'] = project
108
+ __args__['region'] = region
109
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
110
+ __ret__ = pulumi.runtime.invoke('gcp:compute/getForwardingRules:getForwardingRules', __args__, opts=opts, typ=GetForwardingRulesResult).value
111
+
112
+ return AwaitableGetForwardingRulesResult(
113
+ id=pulumi.get(__ret__, 'id'),
114
+ project=pulumi.get(__ret__, 'project'),
115
+ region=pulumi.get(__ret__, 'region'),
116
+ rules=pulumi.get(__ret__, 'rules'))
117
+
118
+
119
+ @_utilities.lift_output_func(get_forwarding_rules)
120
+ def get_forwarding_rules_output(project: Optional[pulumi.Input[Optional[str]]] = None,
121
+ region: Optional[pulumi.Input[Optional[str]]] = None,
122
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetForwardingRulesResult]:
123
+ """
124
+ List all networks in a specified Google Cloud project.
125
+
126
+ ## Example Usage
127
+
128
+ ```python
129
+ import pulumi
130
+ import pulumi_gcp as gcp
131
+
132
+ my_forwarding_rules = gcp.compute.get_forwarding_rules(project="my-cloud-project",
133
+ region="us-central1")
134
+ ```
135
+
136
+
137
+ :param str project: The name of the project.
138
+ :param str region: The region you want to get the forwarding rules from.
139
+
140
+ These arguments must be set in either the provider or the resouce in order for the information to be queried.
141
+ """
142
+ ...
@@ -182,11 +182,11 @@ class InstanceGroupMembership(pulumi.CustomResource):
182
182
  """
183
183
  Represents the Instance membership to the Instance Group.
184
184
 
185
- **NOTE** You can use this resource instead of the `instances` field in the
185
+ > **NOTE** You can use this resource instead of the `instances` field in the
186
186
  `compute.InstanceGroup`, however it's not recommended to use it alongside this field.
187
187
  It might cause inconsistencies, as they can end up competing over control.
188
188
 
189
- **NOTE** This resource has been added to avoid a situation, where after
189
+ > **NOTE** This resource has been added to avoid a situation, where after
190
190
  Instance is recreated, it's removed from Instance Group and it's needed to
191
191
  perform `apply` twice. To avoid situations like this, please use this resource
192
192
  with the lifecycle `update_triggered_by` method, with the passed Instance's ID.
@@ -274,11 +274,11 @@ class InstanceGroupMembership(pulumi.CustomResource):
274
274
  """
275
275
  Represents the Instance membership to the Instance Group.
276
276
 
277
- **NOTE** You can use this resource instead of the `instances` field in the
277
+ > **NOTE** You can use this resource instead of the `instances` field in the
278
278
  `compute.InstanceGroup`, however it's not recommended to use it alongside this field.
279
279
  It might cause inconsistencies, as they can end up competing over control.
280
280
 
281
- **NOTE** This resource has been added to avoid a situation, where after
281
+ > **NOTE** This resource has been added to avoid a situation, where after
282
282
  Instance is recreated, it's removed from Instance Group and it's needed to
283
283
  perform `apply` twice. To avoid situations like this, please use this resource
284
284
  with the lifecycle `update_triggered_by` method, with the passed Instance's ID.