pulumi-gcp 7.17.0a1712163201__py3-none-any.whl → 7.17.0a1712602552__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.
Files changed (91) hide show
  1. pulumi_gcp/__init__.py +27 -0
  2. pulumi_gcp/apphub/__init__.py +1 -0
  3. pulumi_gcp/apphub/get_application.py +220 -0
  4. pulumi_gcp/apphub/outputs.py +214 -0
  5. pulumi_gcp/applicationintegration/__init__.py +10 -0
  6. pulumi_gcp/applicationintegration/_inputs.py +119 -0
  7. pulumi_gcp/applicationintegration/client.py +566 -0
  8. pulumi_gcp/applicationintegration/outputs.py +122 -0
  9. pulumi_gcp/bigquery/_inputs.py +16 -0
  10. pulumi_gcp/bigquery/outputs.py +14 -0
  11. pulumi_gcp/bigquery/routine.py +98 -0
  12. pulumi_gcp/bigtable/_inputs.py +4 -4
  13. pulumi_gcp/bigtable/gc_policy.py +8 -0
  14. pulumi_gcp/bigtable/outputs.py +4 -4
  15. pulumi_gcp/billing/_inputs.py +4 -4
  16. pulumi_gcp/billing/outputs.py +4 -4
  17. pulumi_gcp/billing/project_info.py +4 -4
  18. pulumi_gcp/cloudfunctionsv2/_inputs.py +2 -2
  19. pulumi_gcp/cloudfunctionsv2/outputs.py +4 -4
  20. pulumi_gcp/cloudquota/__init__.py +2 -0
  21. pulumi_gcp/cloudquota/_inputs.py +131 -0
  22. pulumi_gcp/cloudquota/outputs.py +118 -0
  23. pulumi_gcp/cloudquota/s_quota_preference.py +777 -0
  24. pulumi_gcp/cloudrunv2/service.py +7 -7
  25. pulumi_gcp/composer/_inputs.py +14 -4
  26. pulumi_gcp/composer/outputs.py +22 -10
  27. pulumi_gcp/compute/_inputs.py +40 -44
  28. pulumi_gcp/compute/autoscaler.py +14 -14
  29. pulumi_gcp/compute/interconnect_attachment.py +64 -0
  30. pulumi_gcp/compute/network_endpoint.py +8 -0
  31. pulumi_gcp/compute/network_endpoint_list.py +8 -0
  32. pulumi_gcp/compute/outputs.py +62 -60
  33. pulumi_gcp/compute/region_autoscaler.py +14 -14
  34. pulumi_gcp/compute/region_backend_service.py +28 -0
  35. pulumi_gcp/compute/target_instance.py +4 -4
  36. pulumi_gcp/config/__init__.pyi +2 -0
  37. pulumi_gcp/config/vars.py +4 -0
  38. pulumi_gcp/container/_inputs.py +148 -16
  39. pulumi_gcp/container/outputs.py +148 -16
  40. pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
  41. pulumi_gcp/dataflow/flex_template_job.py +84 -112
  42. pulumi_gcp/dataloss/_inputs.py +6 -6
  43. pulumi_gcp/dataloss/outputs.py +6 -6
  44. pulumi_gcp/dataplex/task.py +16 -16
  45. pulumi_gcp/dataproc/_inputs.py +85 -10
  46. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  47. pulumi_gcp/dataproc/metastore_service.py +120 -0
  48. pulumi_gcp/dataproc/outputs.py +142 -10
  49. pulumi_gcp/firebase/app_check_service_config.py +2 -2
  50. pulumi_gcp/firestore/backup_schedule.py +14 -14
  51. pulumi_gcp/firestore/field.py +4 -4
  52. pulumi_gcp/gkehub/membership_binding.py +6 -6
  53. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  54. pulumi_gcp/gkehub/namespace.py +4 -4
  55. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  56. pulumi_gcp/iam/_inputs.py +76 -0
  57. pulumi_gcp/iam/outputs.py +76 -0
  58. pulumi_gcp/iam/workforce_pool_provider.py +35 -0
  59. pulumi_gcp/iam/workload_identity_pool_provider.py +140 -0
  60. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  61. pulumi_gcp/kms/_inputs.py +46 -0
  62. pulumi_gcp/kms/crypto_key.py +54 -0
  63. pulumi_gcp/kms/crypto_key_version.py +54 -0
  64. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  65. pulumi_gcp/kms/outputs.py +54 -0
  66. pulumi_gcp/logging/_inputs.py +8 -8
  67. pulumi_gcp/logging/metric.py +7 -7
  68. pulumi_gcp/logging/outputs.py +8 -8
  69. pulumi_gcp/monitoring/_inputs.py +2 -2
  70. pulumi_gcp/monitoring/outputs.py +2 -2
  71. pulumi_gcp/monitoring/slo.py +4 -4
  72. pulumi_gcp/networkservices/_inputs.py +6 -6
  73. pulumi_gcp/networkservices/outputs.py +6 -6
  74. pulumi_gcp/orgpolicy/policy.py +2 -2
  75. pulumi_gcp/provider.py +20 -0
  76. pulumi_gcp/pubsub/subscription.py +4 -4
  77. pulumi_gcp/serviceusage/consumer_quota_override.py +7 -7
  78. pulumi_gcp/sql/_inputs.py +20 -2
  79. pulumi_gcp/sql/database_instance.py +2 -2
  80. pulumi_gcp/sql/outputs.py +20 -2
  81. pulumi_gcp/storage/_inputs.py +2 -2
  82. pulumi_gcp/storage/outputs.py +2 -2
  83. pulumi_gcp/vertex/__init__.py +1 -0
  84. pulumi_gcp/vertex/_inputs.py +175 -8
  85. pulumi_gcp/vertex/ai_deployment_resource_pool.py +477 -0
  86. pulumi_gcp/vertex/outputs.py +202 -10
  87. pulumi_gcp/vpcaccess/connector.py +77 -28
  88. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/METADATA +1 -1
  89. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/RECORD +91 -83
  90. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/WHEEL +0 -0
  91. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,131 @@
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
+
12
+ __all__ = [
13
+ 'SQuotaPreferenceQuotaConfigArgs',
14
+ ]
15
+
16
+ @pulumi.input_type
17
+ class SQuotaPreferenceQuotaConfigArgs:
18
+ def __init__(__self__, *,
19
+ preferred_value: pulumi.Input[str],
20
+ annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
21
+ granted_value: Optional[pulumi.Input[str]] = None,
22
+ request_origin: Optional[pulumi.Input[str]] = None,
23
+ state_detail: Optional[pulumi.Input[str]] = None,
24
+ trace_id: Optional[pulumi.Input[str]] = None):
25
+ """
26
+ :param pulumi.Input[str] preferred_value: The preferred value. Must be greater than or equal to -1. If set to -1, it means the value is "unlimited".
27
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: The annotations map for clients to store small amounts of arbitrary data. Do not put PII or other sensitive information here. See https://google.aip.dev/128#annotations.
28
+ An object containing a list of "key: value" pairs. Example: `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
29
+ :param pulumi.Input[str] granted_value: (Output)
30
+ Granted quota value.
31
+ :param pulumi.Input[str] request_origin: (Output)
32
+ The origin of the quota preference request.
33
+
34
+ - - -
35
+ :param pulumi.Input[str] state_detail: (Output)
36
+ Optional details about the state of this quota preference.
37
+ :param pulumi.Input[str] trace_id: (Output)
38
+ The trace id that the Google Cloud uses to provision the requested quota. This trace id may be used by the client to contact Cloud support to track the state of a quota preference request. The trace id is only produced for increase requests and is unique for each request. The quota decrease requests do not have a trace id.
39
+ """
40
+ pulumi.set(__self__, "preferred_value", preferred_value)
41
+ if annotations is not None:
42
+ pulumi.set(__self__, "annotations", annotations)
43
+ if granted_value is not None:
44
+ pulumi.set(__self__, "granted_value", granted_value)
45
+ if request_origin is not None:
46
+ pulumi.set(__self__, "request_origin", request_origin)
47
+ if state_detail is not None:
48
+ pulumi.set(__self__, "state_detail", state_detail)
49
+ if trace_id is not None:
50
+ pulumi.set(__self__, "trace_id", trace_id)
51
+
52
+ @property
53
+ @pulumi.getter(name="preferredValue")
54
+ def preferred_value(self) -> pulumi.Input[str]:
55
+ """
56
+ The preferred value. Must be greater than or equal to -1. If set to -1, it means the value is "unlimited".
57
+ """
58
+ return pulumi.get(self, "preferred_value")
59
+
60
+ @preferred_value.setter
61
+ def preferred_value(self, value: pulumi.Input[str]):
62
+ pulumi.set(self, "preferred_value", value)
63
+
64
+ @property
65
+ @pulumi.getter
66
+ def annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
67
+ """
68
+ The annotations map for clients to store small amounts of arbitrary data. Do not put PII or other sensitive information here. See https://google.aip.dev/128#annotations.
69
+ An object containing a list of "key: value" pairs. Example: `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
70
+ """
71
+ return pulumi.get(self, "annotations")
72
+
73
+ @annotations.setter
74
+ def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
75
+ pulumi.set(self, "annotations", value)
76
+
77
+ @property
78
+ @pulumi.getter(name="grantedValue")
79
+ def granted_value(self) -> Optional[pulumi.Input[str]]:
80
+ """
81
+ (Output)
82
+ Granted quota value.
83
+ """
84
+ return pulumi.get(self, "granted_value")
85
+
86
+ @granted_value.setter
87
+ def granted_value(self, value: Optional[pulumi.Input[str]]):
88
+ pulumi.set(self, "granted_value", value)
89
+
90
+ @property
91
+ @pulumi.getter(name="requestOrigin")
92
+ def request_origin(self) -> Optional[pulumi.Input[str]]:
93
+ """
94
+ (Output)
95
+ The origin of the quota preference request.
96
+
97
+ - - -
98
+ """
99
+ return pulumi.get(self, "request_origin")
100
+
101
+ @request_origin.setter
102
+ def request_origin(self, value: Optional[pulumi.Input[str]]):
103
+ pulumi.set(self, "request_origin", value)
104
+
105
+ @property
106
+ @pulumi.getter(name="stateDetail")
107
+ def state_detail(self) -> Optional[pulumi.Input[str]]:
108
+ """
109
+ (Output)
110
+ Optional details about the state of this quota preference.
111
+ """
112
+ return pulumi.get(self, "state_detail")
113
+
114
+ @state_detail.setter
115
+ def state_detail(self, value: Optional[pulumi.Input[str]]):
116
+ pulumi.set(self, "state_detail", value)
117
+
118
+ @property
119
+ @pulumi.getter(name="traceId")
120
+ def trace_id(self) -> Optional[pulumi.Input[str]]:
121
+ """
122
+ (Output)
123
+ The trace id that the Google Cloud uses to provision the requested quota. This trace id may be used by the client to contact Cloud support to track the state of a quota preference request. The trace id is only produced for increase requests and is unique for each request. The quota decrease requests do not have a trace id.
124
+ """
125
+ return pulumi.get(self, "trace_id")
126
+
127
+ @trace_id.setter
128
+ def trace_id(self, value: Optional[pulumi.Input[str]]):
129
+ pulumi.set(self, "trace_id", value)
130
+
131
+
@@ -11,6 +11,7 @@ from .. import _utilities
11
11
  from . import outputs
12
12
 
13
13
  __all__ = [
14
+ 'SQuotaPreferenceQuotaConfig',
14
15
  'GetSQuotaInfoDimensionsInfoResult',
15
16
  'GetSQuotaInfoDimensionsInfoDetailResult',
16
17
  'GetSQuotaInfoQuotaIncreaseEligibilityResult',
@@ -20,6 +21,123 @@ __all__ = [
20
21
  'GetSQuotaInfosQuotaInfoQuotaIncreaseEligibilityResult',
21
22
  ]
22
23
 
24
+ @pulumi.output_type
25
+ class SQuotaPreferenceQuotaConfig(dict):
26
+ @staticmethod
27
+ def __key_warning(key: str):
28
+ suggest = None
29
+ if key == "preferredValue":
30
+ suggest = "preferred_value"
31
+ elif key == "grantedValue":
32
+ suggest = "granted_value"
33
+ elif key == "requestOrigin":
34
+ suggest = "request_origin"
35
+ elif key == "stateDetail":
36
+ suggest = "state_detail"
37
+ elif key == "traceId":
38
+ suggest = "trace_id"
39
+
40
+ if suggest:
41
+ pulumi.log.warn(f"Key '{key}' not found in SQuotaPreferenceQuotaConfig. Access the value via the '{suggest}' property getter instead.")
42
+
43
+ def __getitem__(self, key: str) -> Any:
44
+ SQuotaPreferenceQuotaConfig.__key_warning(key)
45
+ return super().__getitem__(key)
46
+
47
+ def get(self, key: str, default = None) -> Any:
48
+ SQuotaPreferenceQuotaConfig.__key_warning(key)
49
+ return super().get(key, default)
50
+
51
+ def __init__(__self__, *,
52
+ preferred_value: str,
53
+ annotations: Optional[Mapping[str, str]] = None,
54
+ granted_value: Optional[str] = None,
55
+ request_origin: Optional[str] = None,
56
+ state_detail: Optional[str] = None,
57
+ trace_id: Optional[str] = None):
58
+ """
59
+ :param str preferred_value: The preferred value. Must be greater than or equal to -1. If set to -1, it means the value is "unlimited".
60
+ :param Mapping[str, str] annotations: The annotations map for clients to store small amounts of arbitrary data. Do not put PII or other sensitive information here. See https://google.aip.dev/128#annotations.
61
+ An object containing a list of "key: value" pairs. Example: `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
62
+ :param str granted_value: (Output)
63
+ Granted quota value.
64
+ :param str request_origin: (Output)
65
+ The origin of the quota preference request.
66
+
67
+ - - -
68
+ :param str state_detail: (Output)
69
+ Optional details about the state of this quota preference.
70
+ :param str trace_id: (Output)
71
+ The trace id that the Google Cloud uses to provision the requested quota. This trace id may be used by the client to contact Cloud support to track the state of a quota preference request. The trace id is only produced for increase requests and is unique for each request. The quota decrease requests do not have a trace id.
72
+ """
73
+ pulumi.set(__self__, "preferred_value", preferred_value)
74
+ if annotations is not None:
75
+ pulumi.set(__self__, "annotations", annotations)
76
+ if granted_value is not None:
77
+ pulumi.set(__self__, "granted_value", granted_value)
78
+ if request_origin is not None:
79
+ pulumi.set(__self__, "request_origin", request_origin)
80
+ if state_detail is not None:
81
+ pulumi.set(__self__, "state_detail", state_detail)
82
+ if trace_id is not None:
83
+ pulumi.set(__self__, "trace_id", trace_id)
84
+
85
+ @property
86
+ @pulumi.getter(name="preferredValue")
87
+ def preferred_value(self) -> str:
88
+ """
89
+ The preferred value. Must be greater than or equal to -1. If set to -1, it means the value is "unlimited".
90
+ """
91
+ return pulumi.get(self, "preferred_value")
92
+
93
+ @property
94
+ @pulumi.getter
95
+ def annotations(self) -> Optional[Mapping[str, str]]:
96
+ """
97
+ The annotations map for clients to store small amounts of arbitrary data. Do not put PII or other sensitive information here. See https://google.aip.dev/128#annotations.
98
+ An object containing a list of "key: value" pairs. Example: `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
99
+ """
100
+ return pulumi.get(self, "annotations")
101
+
102
+ @property
103
+ @pulumi.getter(name="grantedValue")
104
+ def granted_value(self) -> Optional[str]:
105
+ """
106
+ (Output)
107
+ Granted quota value.
108
+ """
109
+ return pulumi.get(self, "granted_value")
110
+
111
+ @property
112
+ @pulumi.getter(name="requestOrigin")
113
+ def request_origin(self) -> Optional[str]:
114
+ """
115
+ (Output)
116
+ The origin of the quota preference request.
117
+
118
+ - - -
119
+ """
120
+ return pulumi.get(self, "request_origin")
121
+
122
+ @property
123
+ @pulumi.getter(name="stateDetail")
124
+ def state_detail(self) -> Optional[str]:
125
+ """
126
+ (Output)
127
+ Optional details about the state of this quota preference.
128
+ """
129
+ return pulumi.get(self, "state_detail")
130
+
131
+ @property
132
+ @pulumi.getter(name="traceId")
133
+ def trace_id(self) -> Optional[str]:
134
+ """
135
+ (Output)
136
+ The trace id that the Google Cloud uses to provision the requested quota. This trace id may be used by the client to contact Cloud support to track the state of a quota preference request. The trace id is only produced for increase requests and is unique for each request. The quota decrease requests do not have a trace id.
137
+ """
138
+ return pulumi.get(self, "trace_id")
139
+
140
+
23
141
  @pulumi.output_type
24
142
  class GetSQuotaInfoDimensionsInfoResult(dict):
25
143
  def __init__(__self__, *,