pulumi-gcp 7.7.1__py3-none-any.whl → 7.8.0__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 (37) hide show
  1. pulumi_gcp/__init__.py +43 -0
  2. pulumi_gcp/alloydb/instance.py +1 -1
  3. pulumi_gcp/blockchainnodeengine/__init__.py +10 -0
  4. pulumi_gcp/blockchainnodeengine/_inputs.py +388 -0
  5. pulumi_gcp/blockchainnodeengine/blockchain_nodes.py +791 -0
  6. pulumi_gcp/blockchainnodeengine/outputs.py +441 -0
  7. pulumi_gcp/compute/__init__.py +2 -0
  8. pulumi_gcp/compute/disk.py +28 -0
  9. pulumi_gcp/compute/get_disk.py +11 -1
  10. pulumi_gcp/compute/get_instance_group_manager.py +11 -1
  11. pulumi_gcp/compute/get_machine_types.py +143 -0
  12. pulumi_gcp/compute/instance_group_manager.py +28 -0
  13. pulumi_gcp/compute/interconnect_attachment.py +75 -0
  14. pulumi_gcp/compute/outputs.py +219 -0
  15. pulumi_gcp/compute/region_instance_group_manager.py +28 -0
  16. pulumi_gcp/compute/region_network_endpoint.py +556 -0
  17. pulumi_gcp/compute/region_network_endpoint_group.py +128 -71
  18. pulumi_gcp/config/__init__.pyi +2 -2
  19. pulumi_gcp/config/vars.py +4 -4
  20. pulumi_gcp/discoveryengine/__init__.py +4 -0
  21. pulumi_gcp/discoveryengine/_inputs.py +237 -0
  22. pulumi_gcp/discoveryengine/chat_engine.py +822 -0
  23. pulumi_gcp/discoveryengine/outputs.py +304 -0
  24. pulumi_gcp/discoveryengine/search_engine.py +752 -0
  25. pulumi_gcp/filestore/_inputs.py +1 -3
  26. pulumi_gcp/filestore/outputs.py +1 -3
  27. pulumi_gcp/memcache/instance.py +61 -0
  28. pulumi_gcp/netapp/__init__.py +1 -0
  29. pulumi_gcp/netapp/storage_pool.py +34 -6
  30. pulumi_gcp/netapp/volume.py +65 -2
  31. pulumi_gcp/netapp/volume_snapshot.py +625 -0
  32. pulumi_gcp/provider.py +20 -0
  33. pulumi_gcp/vmwareengine/private_cloud.py +0 -7
  34. {pulumi_gcp-7.7.1.dist-info → pulumi_gcp-7.8.0.dist-info}/METADATA +1 -1
  35. {pulumi_gcp-7.7.1.dist-info → pulumi_gcp-7.8.0.dist-info}/RECORD +37 -26
  36. {pulumi_gcp-7.7.1.dist-info → pulumi_gcp-7.8.0.dist-info}/WHEEL +0 -0
  37. {pulumi_gcp-7.7.1.dist-info → pulumi_gcp-7.8.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,237 @@
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
+ 'ChatEngineChatEngineConfigArgs',
14
+ 'ChatEngineChatEngineConfigAgentCreationConfigArgs',
15
+ 'ChatEngineChatEngineMetadataArgs',
16
+ 'ChatEngineCommonConfigArgs',
17
+ 'SearchEngineCommonConfigArgs',
18
+ 'SearchEngineSearchEngineConfigArgs',
19
+ ]
20
+
21
+ @pulumi.input_type
22
+ class ChatEngineChatEngineConfigArgs:
23
+ def __init__(__self__, *,
24
+ agent_creation_config: pulumi.Input['ChatEngineChatEngineConfigAgentCreationConfigArgs']):
25
+ """
26
+ :param pulumi.Input['ChatEngineChatEngineConfigAgentCreationConfigArgs'] agent_creation_config: The configuration to generate the Dialogflow agent that is associated to this Engine.
27
+ Structure is documented below.
28
+ """
29
+ pulumi.set(__self__, "agent_creation_config", agent_creation_config)
30
+
31
+ @property
32
+ @pulumi.getter(name="agentCreationConfig")
33
+ def agent_creation_config(self) -> pulumi.Input['ChatEngineChatEngineConfigAgentCreationConfigArgs']:
34
+ """
35
+ The configuration to generate the Dialogflow agent that is associated to this Engine.
36
+ Structure is documented below.
37
+ """
38
+ return pulumi.get(self, "agent_creation_config")
39
+
40
+ @agent_creation_config.setter
41
+ def agent_creation_config(self, value: pulumi.Input['ChatEngineChatEngineConfigAgentCreationConfigArgs']):
42
+ pulumi.set(self, "agent_creation_config", value)
43
+
44
+
45
+ @pulumi.input_type
46
+ class ChatEngineChatEngineConfigAgentCreationConfigArgs:
47
+ def __init__(__self__, *,
48
+ default_language_code: pulumi.Input[str],
49
+ time_zone: pulumi.Input[str],
50
+ business: Optional[pulumi.Input[str]] = None,
51
+ location: Optional[pulumi.Input[str]] = None):
52
+ """
53
+ :param pulumi.Input[str] default_language_code: The default language of the agent as a language tag. See [Language Support](https://cloud.google.com/dialogflow/docs/reference/language) for a list of the currently supported language codes.
54
+ :param pulumi.Input[str] time_zone: The time zone of the agent from the [time zone database](https://www.iana.org/time-zones), e.g., America/New_York, Europe/Paris.
55
+ :param pulumi.Input[str] business: Name of the company, organization or other entity that the agent represents. Used for knowledge connector LLM prompt and for knowledge search.
56
+ :param pulumi.Input[str] location: Agent location for Agent creation, currently supported values: global/us/eu, it needs to be the same region as the Chat Engine.
57
+
58
+ - - -
59
+ """
60
+ pulumi.set(__self__, "default_language_code", default_language_code)
61
+ pulumi.set(__self__, "time_zone", time_zone)
62
+ if business is not None:
63
+ pulumi.set(__self__, "business", business)
64
+ if location is not None:
65
+ pulumi.set(__self__, "location", location)
66
+
67
+ @property
68
+ @pulumi.getter(name="defaultLanguageCode")
69
+ def default_language_code(self) -> pulumi.Input[str]:
70
+ """
71
+ The default language of the agent as a language tag. See [Language Support](https://cloud.google.com/dialogflow/docs/reference/language) for a list of the currently supported language codes.
72
+ """
73
+ return pulumi.get(self, "default_language_code")
74
+
75
+ @default_language_code.setter
76
+ def default_language_code(self, value: pulumi.Input[str]):
77
+ pulumi.set(self, "default_language_code", value)
78
+
79
+ @property
80
+ @pulumi.getter(name="timeZone")
81
+ def time_zone(self) -> pulumi.Input[str]:
82
+ """
83
+ The time zone of the agent from the [time zone database](https://www.iana.org/time-zones), e.g., America/New_York, Europe/Paris.
84
+ """
85
+ return pulumi.get(self, "time_zone")
86
+
87
+ @time_zone.setter
88
+ def time_zone(self, value: pulumi.Input[str]):
89
+ pulumi.set(self, "time_zone", value)
90
+
91
+ @property
92
+ @pulumi.getter
93
+ def business(self) -> Optional[pulumi.Input[str]]:
94
+ """
95
+ Name of the company, organization or other entity that the agent represents. Used for knowledge connector LLM prompt and for knowledge search.
96
+ """
97
+ return pulumi.get(self, "business")
98
+
99
+ @business.setter
100
+ def business(self, value: Optional[pulumi.Input[str]]):
101
+ pulumi.set(self, "business", value)
102
+
103
+ @property
104
+ @pulumi.getter
105
+ def location(self) -> Optional[pulumi.Input[str]]:
106
+ """
107
+ Agent location for Agent creation, currently supported values: global/us/eu, it needs to be the same region as the Chat Engine.
108
+
109
+ - - -
110
+ """
111
+ return pulumi.get(self, "location")
112
+
113
+ @location.setter
114
+ def location(self, value: Optional[pulumi.Input[str]]):
115
+ pulumi.set(self, "location", value)
116
+
117
+
118
+ @pulumi.input_type
119
+ class ChatEngineChatEngineMetadataArgs:
120
+ def __init__(__self__, *,
121
+ dialogflow_agent: Optional[pulumi.Input[str]] = None):
122
+ """
123
+ :param pulumi.Input[str] dialogflow_agent: (Output)
124
+ The resource name of a Dialogflow agent, that this Chat Engine refers to.
125
+ """
126
+ if dialogflow_agent is not None:
127
+ pulumi.set(__self__, "dialogflow_agent", dialogflow_agent)
128
+
129
+ @property
130
+ @pulumi.getter(name="dialogflowAgent")
131
+ def dialogflow_agent(self) -> Optional[pulumi.Input[str]]:
132
+ """
133
+ (Output)
134
+ The resource name of a Dialogflow agent, that this Chat Engine refers to.
135
+ """
136
+ return pulumi.get(self, "dialogflow_agent")
137
+
138
+ @dialogflow_agent.setter
139
+ def dialogflow_agent(self, value: Optional[pulumi.Input[str]]):
140
+ pulumi.set(self, "dialogflow_agent", value)
141
+
142
+
143
+ @pulumi.input_type
144
+ class ChatEngineCommonConfigArgs:
145
+ def __init__(__self__, *,
146
+ company_name: Optional[pulumi.Input[str]] = None):
147
+ """
148
+ :param pulumi.Input[str] company_name: The name of the company, business or entity that is associated with the engine. Setting this may help improve LLM related features.
149
+ """
150
+ if company_name is not None:
151
+ pulumi.set(__self__, "company_name", company_name)
152
+
153
+ @property
154
+ @pulumi.getter(name="companyName")
155
+ def company_name(self) -> Optional[pulumi.Input[str]]:
156
+ """
157
+ The name of the company, business or entity that is associated with the engine. Setting this may help improve LLM related features.
158
+ """
159
+ return pulumi.get(self, "company_name")
160
+
161
+ @company_name.setter
162
+ def company_name(self, value: Optional[pulumi.Input[str]]):
163
+ pulumi.set(self, "company_name", value)
164
+
165
+
166
+ @pulumi.input_type
167
+ class SearchEngineCommonConfigArgs:
168
+ def __init__(__self__, *,
169
+ company_name: Optional[pulumi.Input[str]] = None):
170
+ """
171
+ :param pulumi.Input[str] company_name: The name of the company, business or entity that is associated with the engine. Setting this may help improve LLM related features.cd
172
+ """
173
+ if company_name is not None:
174
+ pulumi.set(__self__, "company_name", company_name)
175
+
176
+ @property
177
+ @pulumi.getter(name="companyName")
178
+ def company_name(self) -> Optional[pulumi.Input[str]]:
179
+ """
180
+ The name of the company, business or entity that is associated with the engine. Setting this may help improve LLM related features.cd
181
+ """
182
+ return pulumi.get(self, "company_name")
183
+
184
+ @company_name.setter
185
+ def company_name(self, value: Optional[pulumi.Input[str]]):
186
+ pulumi.set(self, "company_name", value)
187
+
188
+
189
+ @pulumi.input_type
190
+ class SearchEngineSearchEngineConfigArgs:
191
+ def __init__(__self__, *,
192
+ search_add_ons: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
193
+ search_tier: Optional[pulumi.Input[str]] = None):
194
+ """
195
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] search_add_ons: The add-on that this search engine enables.
196
+ Each value may be one of: `SEARCH_ADD_ON_LLM`.
197
+
198
+ - - -
199
+ :param pulumi.Input[str] search_tier: The search feature tier of this engine. Defaults to SearchTier.SEARCH_TIER_STANDARD if not specified.
200
+ Default value is `SEARCH_TIER_STANDARD`.
201
+ Possible values are: `SEARCH_TIER_STANDARD`, `SEARCH_TIER_ENTERPRISE`.
202
+ """
203
+ if search_add_ons is not None:
204
+ pulumi.set(__self__, "search_add_ons", search_add_ons)
205
+ if search_tier is not None:
206
+ pulumi.set(__self__, "search_tier", search_tier)
207
+
208
+ @property
209
+ @pulumi.getter(name="searchAddOns")
210
+ def search_add_ons(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
211
+ """
212
+ The add-on that this search engine enables.
213
+ Each value may be one of: `SEARCH_ADD_ON_LLM`.
214
+
215
+ - - -
216
+ """
217
+ return pulumi.get(self, "search_add_ons")
218
+
219
+ @search_add_ons.setter
220
+ def search_add_ons(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
221
+ pulumi.set(self, "search_add_ons", value)
222
+
223
+ @property
224
+ @pulumi.getter(name="searchTier")
225
+ def search_tier(self) -> Optional[pulumi.Input[str]]:
226
+ """
227
+ The search feature tier of this engine. Defaults to SearchTier.SEARCH_TIER_STANDARD if not specified.
228
+ Default value is `SEARCH_TIER_STANDARD`.
229
+ Possible values are: `SEARCH_TIER_STANDARD`, `SEARCH_TIER_ENTERPRISE`.
230
+ """
231
+ return pulumi.get(self, "search_tier")
232
+
233
+ @search_tier.setter
234
+ def search_tier(self, value: Optional[pulumi.Input[str]]):
235
+ pulumi.set(self, "search_tier", value)
236
+
237
+