pulumi 3.215.0a1767791720__py3-none-any.whl → 3.216.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.
pulumi/_version.py CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  from semver import VersionInfo
16
16
 
17
- _VERSION = "3.215.0"
17
+ _VERSION = "3.216.0"
18
18
 
19
19
  version = VersionInfo.parse(_VERSION)
20
20
  """Version is the Pulumi SDK's release version."""
@@ -219,9 +219,19 @@ class DynamicResourceProviderServicer(ResourceProviderServicer):
219
219
 
220
220
  loop = asyncio.new_event_loop()
221
221
  outs_proto = loop.run_until_complete(rpc.serialize_properties(outs, {}))
222
- loop.close()
223
222
 
224
223
  fields = {"id": result.id, "properties": outs_proto}
224
+
225
+ # If the provider returned explicit inputs, use them for subsequent diffs.
226
+ # This allows the provider to update inputs to match refreshed outputs.
227
+ if result.inputs is not None:
228
+ inputs = result.inputs.copy()
229
+ inputs[PROVIDER_KEY] = props[PROVIDER_KEY]
230
+ inputs_proto = loop.run_until_complete(rpc.serialize_properties(inputs, {}))
231
+ fields["inputs"] = inputs_proto
232
+
233
+ loop.close()
234
+
225
235
  return proto.ReadResponse(**fields)
226
236
 
227
237
  def __init__(self):
pulumi/dynamic/dynamic.py CHANGED
@@ -167,13 +167,22 @@ class ReadResult:
167
167
  The current property state read from the live environment.
168
168
  """
169
169
 
170
+ inputs: Optional[dict[str, Any]]
171
+ """
172
+ The input properties to use for subsequent diffs. If not provided, inputs will remain unchanged.
173
+ This is useful when a refresh operation detects drift and wants to update the inputs to match
174
+ the current outputs, ensuring subsequent diffs compare against the refreshed state.
175
+ """
176
+
170
177
  def __init__(
171
178
  self,
172
179
  id_: Optional[str] = None,
173
180
  outs: Optional[dict[str, Any]] = None,
181
+ inputs: Optional[dict[str, Any]] = None,
174
182
  ) -> None:
175
183
  self.id = id_
176
184
  self.outs = outs
185
+ self.inputs = inputs
177
186
 
178
187
 
179
188
  class UpdateResult:
@@ -15,7 +15,7 @@ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
15
15
  from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
16
16
 
17
17
 
18
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13pulumi/engine.proto\x12\tpulumirpc\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/protobuf/struct.proto\"y\n\nLogRequest\x12(\n\x08severity\x18\x01 \x01(\x0e\x32\x16.pulumirpc.LogSeverity\x12\x0f\n\x07message\x18\x02 \x01(\t\x12\x0b\n\x03urn\x18\x03 \x01(\t\x12\x10\n\x08streamId\x18\x04 \x01(\x05\x12\x11\n\tephemeral\x18\x05 \x01(\x08\"\x18\n\x16GetRootResourceRequest\"&\n\x17GetRootResourceResponse\x12\x0b\n\x03urn\x18\x01 \x01(\t\"%\n\x16SetRootResourceRequest\x12\x0b\n\x03urn\x18\x01 \x01(\t\"\x19\n\x17SetRootResourceResponse\"Q\n\x15StartDebuggingRequest\x12\'\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07message\x18\x02 \x01(\t*:\n\x0bLogSeverity\x12\t\n\x05\x44\x45\x42UG\x10\x00\x12\x08\n\x04INFO\x10\x01\x12\x0b\n\x07WARNING\x10\x02\x12\t\n\x05\x45RROR\x10\x03\x32\xc6\x02\n\x06\x45ngine\x12\x36\n\x03Log\x12\x15.pulumirpc.LogRequest\x1a\x16.google.protobuf.Empty\"\x00\x12Z\n\x0fGetRootResource\x12!.pulumirpc.GetRootResourceRequest\x1a\".pulumirpc.GetRootResourceResponse\"\x00\x12Z\n\x0fSetRootResource\x12!.pulumirpc.SetRootResourceRequest\x1a\".pulumirpc.SetRootResourceResponse\"\x00\x12L\n\x0eStartDebugging\x12 .pulumirpc.StartDebuggingRequest\x1a\x16.google.protobuf.Empty\"\x00\x42\x34Z2github.com/pulumi/pulumi/sdk/v3/proto/go;pulumirpcb\x06proto3')
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13pulumi/engine.proto\x12\tpulumirpc\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/protobuf/struct.proto\"y\n\nLogRequest\x12(\n\x08severity\x18\x01 \x01(\x0e\x32\x16.pulumirpc.LogSeverity\x12\x0f\n\x07message\x18\x02 \x01(\t\x12\x0b\n\x03urn\x18\x03 \x01(\t\x12\x10\n\x08streamId\x18\x04 \x01(\x05\x12\x11\n\tephemeral\x18\x05 \x01(\x08\"\x18\n\x16GetRootResourceRequest\"&\n\x17GetRootResourceResponse\x12\x0b\n\x03urn\x18\x01 \x01(\t\"%\n\x16SetRootResourceRequest\x12\x0b\n\x03urn\x18\x01 \x01(\t\"\x19\n\x17SetRootResourceResponse\"Q\n\x15StartDebuggingRequest\x12\'\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07message\x18\x02 \x01(\t\"9\n\x19\x43heckPulumiVersionRequest\x12\x1c\n\x14pulumi_version_range\x18\x01 \x01(\t\"\x1c\n\x1a\x43heckPulumiVersionResponse*:\n\x0bLogSeverity\x12\t\n\x05\x44\x45\x42UG\x10\x00\x12\x08\n\x04INFO\x10\x01\x12\x0b\n\x07WARNING\x10\x02\x12\t\n\x05\x45RROR\x10\x03\x32\xab\x03\n\x06\x45ngine\x12\x36\n\x03Log\x12\x15.pulumirpc.LogRequest\x1a\x16.google.protobuf.Empty\"\x00\x12Z\n\x0fGetRootResource\x12!.pulumirpc.GetRootResourceRequest\x1a\".pulumirpc.GetRootResourceResponse\"\x00\x12Z\n\x0fSetRootResource\x12!.pulumirpc.SetRootResourceRequest\x1a\".pulumirpc.SetRootResourceResponse\"\x00\x12L\n\x0eStartDebugging\x12 .pulumirpc.StartDebuggingRequest\x1a\x16.google.protobuf.Empty\"\x00\x12\x63\n\x12\x43heckPulumiVersion\x12$.pulumirpc.CheckPulumiVersionRequest\x1a%.pulumirpc.CheckPulumiVersionResponse\"\x00\x42\x34Z2github.com/pulumi/pulumi/sdk/v3/proto/go;pulumirpcb\x06proto3')
19
19
 
20
20
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
21
21
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'pulumi.engine_pb2', globals())
@@ -23,8 +23,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
23
23
 
24
24
  DESCRIPTOR._options = None
25
25
  DESCRIPTOR._serialized_options = b'Z2github.com/pulumi/pulumi/sdk/v3/proto/go;pulumirpc'
26
- _LOGSEVERITY._serialized_start=431
27
- _LOGSEVERITY._serialized_end=489
26
+ _LOGSEVERITY._serialized_start=520
27
+ _LOGSEVERITY._serialized_end=578
28
28
  _LOGREQUEST._serialized_start=93
29
29
  _LOGREQUEST._serialized_end=214
30
30
  _GETROOTRESOURCEREQUEST._serialized_start=216
@@ -37,6 +37,10 @@ if _descriptor._USE_C_DESCRIPTORS == False:
37
37
  _SETROOTRESOURCERESPONSE._serialized_end=346
38
38
  _STARTDEBUGGINGREQUEST._serialized_start=348
39
39
  _STARTDEBUGGINGREQUEST._serialized_end=429
40
- _ENGINE._serialized_start=492
41
- _ENGINE._serialized_end=818
40
+ _CHECKPULUMIVERSIONREQUEST._serialized_start=431
41
+ _CHECKPULUMIVERSIONREQUEST._serialized_end=488
42
+ _CHECKPULUMIVERSIONRESPONSE._serialized_start=490
43
+ _CHECKPULUMIVERSIONRESPONSE._serialized_end=518
44
+ _ENGINE._serialized_start=581
45
+ _ENGINE._serialized_end=1008
42
46
  # @@protoc_insertion_point(module_scope)
@@ -1,7 +1,7 @@
1
1
  """
2
2
  @generated by mypy-protobuf. Do not edit manually!
3
3
  isort:skip_file
4
- Copyright 2016-2018, Pulumi Corporation.
4
+ Copyright 2016-2026, Pulumi Corporation.
5
5
 
6
6
  Licensed under the Apache License, Version 2.0 (the "License");
7
7
  you may not use this file except in compliance with the License.
@@ -176,3 +176,36 @@ class StartDebuggingRequest(google.protobuf.message.Message):
176
176
  def ClearField(self, field_name: typing.Literal["config", b"config", "message", b"message"]) -> None: ...
177
177
 
178
178
  global___StartDebuggingRequest = StartDebuggingRequest
179
+
180
+ @typing.final
181
+ class CheckPulumiVersionRequest(google.protobuf.message.Message):
182
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
183
+
184
+ PULUMI_VERSION_RANGE_FIELD_NUMBER: builtins.int
185
+ pulumi_version_range: builtins.str
186
+ """A version range to check against the engine (CLI) version. If the version is not compatible with the specified
187
+ range, an error is returned. The supported syntax for ranges is that of
188
+ https://pkg.go.dev/github.com/blang/semver#ParseRange. For example ">=3.0.0", or "!3.1.2". Ranges can be AND-ed
189
+ together by concatenating with spaces ">=3.5.0 !3.7.7", meaning greater-or-equal to 3.5.0 and not exactly 3.7.7.
190
+ Ranges can be OR-ed with the `||` operator: "<3.4.0 || >3.8.0", meaning less-than 3.4.0 or greater-than 3.8.0.
191
+ """
192
+ def __init__(
193
+ self,
194
+ *,
195
+ pulumi_version_range: builtins.str = ...,
196
+ ) -> None: ...
197
+ def ClearField(self, field_name: typing.Literal["pulumi_version_range", b"pulumi_version_range"]) -> None: ...
198
+
199
+ global___CheckPulumiVersionRequest = CheckPulumiVersionRequest
200
+
201
+ @typing.final
202
+ class CheckPulumiVersionResponse(google.protobuf.message.Message):
203
+ """empty"""
204
+
205
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
206
+
207
+ def __init__(
208
+ self,
209
+ ) -> None: ...
210
+
211
+ global___CheckPulumiVersionResponse = CheckPulumiVersionResponse
@@ -38,6 +38,11 @@ class EngineStub(object):
38
38
  request_serializer=pulumi_dot_engine__pb2.StartDebuggingRequest.SerializeToString,
39
39
  response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
40
40
  )
41
+ self.CheckPulumiVersion = channel.unary_unary(
42
+ '/pulumirpc.Engine/CheckPulumiVersion',
43
+ request_serializer=pulumi_dot_engine__pb2.CheckPulumiVersionRequest.SerializeToString,
44
+ response_deserializer=pulumi_dot_engine__pb2.CheckPulumiVersionResponse.FromString,
45
+ )
41
46
 
42
47
 
43
48
  class EngineServicer(object):
@@ -76,6 +81,13 @@ class EngineServicer(object):
76
81
  context.set_details('Method not implemented!')
77
82
  raise NotImplementedError('Method not implemented!')
78
83
 
84
+ def CheckPulumiVersion(self, request, context):
85
+ """CheckPulumiVersion checks that the version of the engine satisfies the passed in range.
86
+ """
87
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
88
+ context.set_details('Method not implemented!')
89
+ raise NotImplementedError('Method not implemented!')
90
+
79
91
 
80
92
  def add_EngineServicer_to_server(servicer, server):
81
93
  rpc_method_handlers = {
@@ -99,6 +111,11 @@ def add_EngineServicer_to_server(servicer, server):
99
111
  request_deserializer=pulumi_dot_engine__pb2.StartDebuggingRequest.FromString,
100
112
  response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
101
113
  ),
114
+ 'CheckPulumiVersion': grpc.unary_unary_rpc_method_handler(
115
+ servicer.CheckPulumiVersion,
116
+ request_deserializer=pulumi_dot_engine__pb2.CheckPulumiVersionRequest.FromString,
117
+ response_serializer=pulumi_dot_engine__pb2.CheckPulumiVersionResponse.SerializeToString,
118
+ ),
102
119
  }
103
120
  generic_handler = grpc.method_handlers_generic_handler(
104
121
  'pulumirpc.Engine', rpc_method_handlers)
@@ -179,3 +196,20 @@ class Engine(object):
179
196
  google_dot_protobuf_dot_empty__pb2.Empty.FromString,
180
197
  options, channel_credentials,
181
198
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
199
+
200
+ @staticmethod
201
+ def CheckPulumiVersion(request,
202
+ target,
203
+ options=(),
204
+ channel_credentials=None,
205
+ call_credentials=None,
206
+ insecure=False,
207
+ compression=None,
208
+ wait_for_ready=None,
209
+ timeout=None,
210
+ metadata=None):
211
+ return grpc.experimental.unary_unary(request, target, '/pulumirpc.Engine/CheckPulumiVersion',
212
+ pulumi_dot_engine__pb2.CheckPulumiVersionRequest.SerializeToString,
213
+ pulumi_dot_engine__pb2.CheckPulumiVersionResponse.FromString,
214
+ options, channel_credentials,
215
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@@ -1,7 +1,7 @@
1
1
  """
2
2
  @generated by mypy-protobuf. Do not edit manually!
3
3
  isort:skip_file
4
- Copyright 2016-2018, Pulumi Corporation.
4
+ Copyright 2016-2026, Pulumi Corporation.
5
5
 
6
6
  Licensed under the Apache License, Version 2.0 (the "License");
7
7
  you may not use this file except in compliance with the License.
@@ -68,6 +68,12 @@ class EngineStub:
68
68
  should notify the user of how to connect to the debugger.
69
69
  """
70
70
 
71
+ CheckPulumiVersion: grpc.UnaryUnaryMultiCallable[
72
+ pulumi.engine_pb2.CheckPulumiVersionRequest,
73
+ pulumi.engine_pb2.CheckPulumiVersionResponse,
74
+ ]
75
+ """CheckPulumiVersion checks that the version of the engine satisfies the passed in range."""
76
+
71
77
  class EngineAsyncStub:
72
78
  """Engine is an auxiliary service offered to language and resource provider plugins. Its main purpose today is
73
79
  to serve as a common logging endpoint, but it also serves as a state storage mechanism for language hosts
@@ -102,6 +108,12 @@ class EngineAsyncStub:
102
108
  should notify the user of how to connect to the debugger.
103
109
  """
104
110
 
111
+ CheckPulumiVersion: grpc.aio.UnaryUnaryMultiCallable[
112
+ pulumi.engine_pb2.CheckPulumiVersionRequest,
113
+ pulumi.engine_pb2.CheckPulumiVersionResponse,
114
+ ]
115
+ """CheckPulumiVersion checks that the version of the engine satisfies the passed in range."""
116
+
105
117
  class EngineServicer(metaclass=abc.ABCMeta):
106
118
  """Engine is an auxiliary service offered to language and resource provider plugins. Its main purpose today is
107
119
  to serve as a common logging endpoint, but it also serves as a state storage mechanism for language hosts
@@ -144,4 +156,12 @@ class EngineServicer(metaclass=abc.ABCMeta):
144
156
  should notify the user of how to connect to the debugger.
145
157
  """
146
158
 
159
+
160
+ def CheckPulumiVersion(
161
+ self,
162
+ request: pulumi.engine_pb2.CheckPulumiVersionRequest,
163
+ context: _ServicerContext,
164
+ ) -> typing.Union[pulumi.engine_pb2.CheckPulumiVersionResponse, collections.abc.Awaitable[pulumi.engine_pb2.CheckPulumiVersionResponse]]:
165
+ """CheckPulumiVersion checks that the version of the engine satisfies the passed in range."""
166
+
147
167
  def add_EngineServicer_to_server(servicer: EngineServicer, server: typing.Union[grpc.Server, grpc.aio.Server]) -> None: ...
@@ -16,7 +16,7 @@ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
16
16
  from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
17
17
 
18
18
 
19
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x15pulumi/provider.proto\x12\tpulumirpc\x1a\x13pulumi/plugin.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x91\x02\n\x18ProviderHandshakeRequest\x12\x16\n\x0e\x65ngine_address\x18\x01 \x01(\t\x12\x1b\n\x0eroot_directory\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x1e\n\x11program_directory\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x1a\n\x12\x63onfigure_with_urn\x18\x04 \x01(\x08\x12\x16\n\x0esupports_views\x18\x05 \x01(\x08\x12&\n\x1esupports_refresh_before_update\x18\x06 \x01(\x08\x12\x1b\n\x13invoke_with_preview\x18\x07 \x01(\x08\x42\x11\n\x0f_root_directoryB\x14\n\x12_program_directory\"\xcc\x01\n\x19ProviderHandshakeResponse\x12\x16\n\x0e\x61\x63\x63\x65pt_secrets\x18\x01 \x01(\x08\x12\x18\n\x10\x61\x63\x63\x65pt_resources\x18\x02 \x01(\x08\x12\x16\n\x0e\x61\x63\x63\x65pt_outputs\x18\x03 \x01(\x08\x12)\n!supports_autonaming_configuration\x18\x04 \x01(\x08\x12!\n\x14pulumi_version_range\x18\x05 \x01(\tH\x00\x88\x01\x01\x42\x17\n\x15_pulumi_version_range\"\x84\x02\n\x13ParameterizeRequest\x12=\n\x04\x61rgs\x18\x01 \x01(\x0b\x32-.pulumirpc.ParameterizeRequest.ParametersArgsH\x00\x12?\n\x05value\x18\x02 \x01(\x0b\x32..pulumirpc.ParameterizeRequest.ParametersValueH\x00\x1a\x1e\n\x0eParametersArgs\x12\x0c\n\x04\x61rgs\x18\x01 \x03(\t\x1a?\n\x0fParametersValue\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\x12\r\n\x05value\x18\x03 \x01(\x0c\x42\x0c\n\nparameters\"5\n\x14ParameterizeResponse\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\"X\n\x10GetSchemaRequest\x12\x0f\n\x07version\x18\x01 \x01(\x05\x12\x17\n\x0fsubpackage_name\x18\x02 \x01(\t\x12\x1a\n\x12subpackage_version\x18\x03 \x01(\t\"#\n\x11GetSchemaResponse\x12\x0e\n\x06schema\x18\x01 \x01(\t\"\x82\x03\n\x10\x43onfigureRequest\x12=\n\tvariables\x18\x01 \x03(\x0b\x32*.pulumirpc.ConfigureRequest.VariablesEntry\x12%\n\x04\x61rgs\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x15\n\racceptSecrets\x18\x03 \x01(\x08\x12\x17\n\x0f\x61\x63\x63\x65ptResources\x18\x04 \x01(\x08\x12\x18\n\x10sends_old_inputs\x18\x05 \x01(\x08\x12\"\n\x1asends_old_inputs_to_delete\x18\x06 \x01(\x08\x12\x0f\n\x02id\x18\x07 \x01(\tH\x00\x88\x01\x01\x12\x10\n\x03urn\x18\x08 \x01(\tH\x01\x88\x01\x01\x12\x11\n\x04name\x18\t \x01(\tH\x02\x88\x01\x01\x12\x11\n\x04type\x18\n \x01(\tH\x03\x88\x01\x01\x1a\x30\n\x0eVariablesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x05\n\x03_idB\x06\n\x04_urnB\x07\n\x05_nameB\x07\n\x05_type\"\x9e\x01\n\x11\x43onfigureResponse\x12\x15\n\racceptSecrets\x18\x01 \x01(\x08\x12\x17\n\x0fsupportsPreview\x18\x02 \x01(\x08\x12\x17\n\x0f\x61\x63\x63\x65ptResources\x18\x03 \x01(\x08\x12\x15\n\racceptOutputs\x18\x04 \x01(\x08\x12)\n!supports_autonaming_configuration\x18\x05 \x01(\x08\"\x92\x01\n\x19\x43onfigureErrorMissingKeys\x12\x44\n\x0bmissingKeys\x18\x01 \x03(\x0b\x32/.pulumirpc.ConfigureErrorMissingKeys.MissingKey\x1a/\n\nMissingKey\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\"\x91\x01\n\rInvokeRequest\x12\x0b\n\x03tok\x18\x01 \x01(\t\x12%\n\x04\x61rgs\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07preview\x18\x07 \x01(\x08J\x04\x08\x03\x10\x07R\x08providerR\x07versionR\x0f\x61\x63\x63\x65ptResourcesR\x11pluginDownloadURL\"d\n\x0eInvokeResponse\x12\'\n\x06return\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12)\n\x08\x66\x61ilures\x18\x02 \x03(\x0b\x32\x17.pulumirpc.CheckFailure\"\xa0\x05\n\x0b\x43\x61llRequest\x12\x0b\n\x03tok\x18\x01 \x01(\t\x12%\n\x04\x61rgs\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x44\n\x0f\x61rgDependencies\x18\x03 \x03(\x0b\x32+.pulumirpc.CallRequest.ArgDependenciesEntry\x12\x0f\n\x07project\x18\x06 \x01(\t\x12\r\n\x05stack\x18\x07 \x01(\t\x12\x32\n\x06\x63onfig\x18\x08 \x03(\x0b\x32\".pulumirpc.CallRequest.ConfigEntry\x12\x18\n\x10\x63onfigSecretKeys\x18\t \x03(\t\x12\x0e\n\x06\x64ryRun\x18\n \x01(\x08\x12\x10\n\x08parallel\x18\x0b \x01(\x05\x12\x17\n\x0fmonitorEndpoint\x18\x0c \x01(\t\x12\x14\n\x0corganization\x18\x0e \x01(\t\x12\x1d\n\x15\x61\x63\x63\x65pts_output_values\x18\x11 \x01(\x08\x12\x1a\n\x12stack_trace_handle\x18\x12 \x01(\t\x1a$\n\x14\x41rgumentDependencies\x12\x0c\n\x04urns\x18\x01 \x03(\t\x1a\x63\n\x14\x41rgDependenciesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12:\n\x05value\x18\x02 \x01(\x0b\x32+.pulumirpc.CallRequest.ArgumentDependencies:\x02\x38\x01\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01J\x04\x08\x04\x10\x05J\x04\x08\x05\x10\x06J\x04\x08\r\x10\x0eJ\x04\x08\x10\x10\x11J\x04\x08\x0f\x10\x10R\x08providerR\x07versionR\x11pluginDownloadURLR\x0fpluginChecksumsR\x0esourcePosition\"\xba\x02\n\x0c\x43\x61llResponse\x12\'\n\x06return\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12)\n\x08\x66\x61ilures\x18\x03 \x03(\x0b\x32\x17.pulumirpc.CheckFailure\x12K\n\x12returnDependencies\x18\x02 \x03(\x0b\x32/.pulumirpc.CallResponse.ReturnDependenciesEntry\x1a\"\n\x12ReturnDependencies\x12\x0c\n\x04urns\x18\x01 \x03(\t\x1a\x65\n\x17ReturnDependenciesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32*.pulumirpc.CallResponse.ReturnDependencies:\x02\x38\x01\"\x88\x03\n\x0c\x43heckRequest\x12\x0b\n\x03urn\x18\x01 \x01(\t\x12%\n\x04olds\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12%\n\x04news\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x12\n\nrandomSeed\x18\x05 \x01(\x0c\x12\x0c\n\x04name\x18\x06 \x01(\t\x12\x0c\n\x04type\x18\x07 \x01(\t\x12=\n\nautonaming\x18\x08 \x01(\x0b\x32).pulumirpc.CheckRequest.AutonamingOptions\x1a\x97\x01\n\x11\x41utonamingOptions\x12\x15\n\rproposed_name\x18\x01 \x01(\t\x12<\n\x04mode\x18\x02 \x01(\x0e\x32..pulumirpc.CheckRequest.AutonamingOptions.Mode\"-\n\x04Mode\x12\x0b\n\x07PROPOSE\x10\x00\x12\x0b\n\x07\x45NFORCE\x10\x01\x12\x0b\n\x07\x44ISABLE\x10\x02J\x04\x08\x04\x10\x05R\x0esequenceNumber\"c\n\rCheckResponse\x12\'\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12)\n\x08\x66\x61ilures\x18\x02 \x03(\x0b\x32\x17.pulumirpc.CheckFailure\"0\n\x0c\x43heckFailure\x12\x10\n\x08property\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\"\xd4\x01\n\x0b\x44iffRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0b\n\x03urn\x18\x02 \x01(\t\x12%\n\x04olds\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12%\n\x04news\x18\x04 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x15\n\rignoreChanges\x18\x05 \x03(\t\x12+\n\nold_inputs\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0c\n\x04name\x18\x07 \x01(\t\x12\x0c\n\x04type\x18\x08 \x01(\t\"\xaf\x01\n\x0cPropertyDiff\x12*\n\x04kind\x18\x01 \x01(\x0e\x32\x1c.pulumirpc.PropertyDiff.Kind\x12\x11\n\tinputDiff\x18\x02 \x01(\x08\"`\n\x04Kind\x12\x07\n\x03\x41\x44\x44\x10\x00\x12\x0f\n\x0b\x41\x44\x44_REPLACE\x10\x01\x12\n\n\x06\x44\x45LETE\x10\x02\x12\x12\n\x0e\x44\x45LETE_REPLACE\x10\x03\x12\n\n\x06UPDATE\x10\x04\x12\x12\n\x0eUPDATE_REPLACE\x10\x05\"\xfa\x02\n\x0c\x44iffResponse\x12\x10\n\x08replaces\x18\x01 \x03(\t\x12\x0f\n\x07stables\x18\x02 \x03(\t\x12\x1b\n\x13\x64\x65leteBeforeReplace\x18\x03 \x01(\x08\x12\x34\n\x07\x63hanges\x18\x04 \x01(\x0e\x32#.pulumirpc.DiffResponse.DiffChanges\x12\r\n\x05\x64iffs\x18\x05 \x03(\t\x12?\n\x0c\x64\x65tailedDiff\x18\x06 \x03(\x0b\x32).pulumirpc.DiffResponse.DetailedDiffEntry\x12\x17\n\x0fhasDetailedDiff\x18\x07 \x01(\x08\x1aL\n\x11\x44\x65tailedDiffEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12&\n\x05value\x18\x02 \x01(\x0b\x32\x17.pulumirpc.PropertyDiff:\x02\x38\x01\"=\n\x0b\x44iffChanges\x12\x10\n\x0c\x44IFF_UNKNOWN\x10\x00\x12\r\n\tDIFF_NONE\x10\x01\x12\r\n\tDIFF_SOME\x10\x02\"\xc7\x01\n\rCreateRequest\x12\x0b\n\x03urn\x18\x01 \x01(\t\x12+\n\nproperties\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x0f\n\x07preview\x18\x04 \x01(\x08\x12\x0c\n\x04name\x18\x05 \x01(\t\x12\x0c\n\x04type\x18\x06 \x01(\t\x12\x1f\n\x17resource_status_address\x18\x07 \x01(\t\x12\x1d\n\x15resource_status_token\x18\x08 \x01(\t\"h\n\x0e\x43reateResponse\x12\n\n\x02id\x18\x01 \x01(\t\x12+\n\nproperties\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x1d\n\x15refresh_before_update\x18\x03 \x01(\x08\"\xfc\x01\n\x0bReadRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0b\n\x03urn\x18\x02 \x01(\t\x12+\n\nproperties\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\'\n\x06inputs\x18\x04 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0c\n\x04name\x18\x05 \x01(\t\x12\x0c\n\x04type\x18\x06 \x01(\t\x12\x1f\n\x17resource_status_address\x18\x07 \x01(\t\x12\x1d\n\x15resource_status_token\x18\x08 \x01(\t\x12\"\n\told_views\x18\t \x03(\x0b\x32\x0f.pulumirpc.View\"\x8f\x01\n\x0cReadResponse\x12\n\n\x02id\x18\x01 \x01(\t\x12+\n\nproperties\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\'\n\x06inputs\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x1d\n\x15refresh_before_update\x18\x04 \x01(\x08\"\xdc\x02\n\rUpdateRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0b\n\x03urn\x18\x02 \x01(\t\x12%\n\x04olds\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12%\n\x04news\x18\x04 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07timeout\x18\x05 \x01(\x01\x12\x15\n\rignoreChanges\x18\x06 \x03(\t\x12\x0f\n\x07preview\x18\x07 \x01(\x08\x12+\n\nold_inputs\x18\x08 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0c\n\x04name\x18\t \x01(\t\x12\x0c\n\x04type\x18\n \x01(\t\x12\x1f\n\x17resource_status_address\x18\x0b \x01(\t\x12\x1d\n\x15resource_status_token\x18\x0c \x01(\t\x12\"\n\told_views\x18\r \x03(\x0b\x32\x0f.pulumirpc.View\"\\\n\x0eUpdateResponse\x12+\n\nproperties\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x1d\n\x15refresh_before_update\x18\x02 \x01(\x08\"\x93\x02\n\rDeleteRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0b\n\x03urn\x18\x02 \x01(\t\x12+\n\nproperties\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12+\n\nold_inputs\x18\x05 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0c\n\x04name\x18\x06 \x01(\t\x12\x0c\n\x04type\x18\x07 \x01(\t\x12\x1f\n\x17resource_status_address\x18\x08 \x01(\t\x12\x1d\n\x15resource_status_token\x18\t \x01(\t\x12\"\n\told_views\x18\n \x03(\x0b\x32\x0f.pulumirpc.View\"\x9f\x0b\n\x10\x43onstructRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\r\n\x05stack\x18\x02 \x01(\t\x12\x37\n\x06\x63onfig\x18\x03 \x03(\x0b\x32\'.pulumirpc.ConstructRequest.ConfigEntry\x12\x0e\n\x06\x64ryRun\x18\x04 \x01(\x08\x12\x10\n\x08parallel\x18\x05 \x01(\x05\x12\x17\n\x0fmonitorEndpoint\x18\x06 \x01(\t\x12\x0c\n\x04type\x18\x07 \x01(\t\x12\x0c\n\x04name\x18\x08 \x01(\t\x12\x0e\n\x06parent\x18\t \x01(\t\x12\'\n\x06inputs\x18\n \x01(\x0b\x32\x17.google.protobuf.Struct\x12M\n\x11inputDependencies\x18\x0b \x03(\x0b\x32\x32.pulumirpc.ConstructRequest.InputDependenciesEntry\x12=\n\tproviders\x18\r \x03(\x0b\x32*.pulumirpc.ConstructRequest.ProvidersEntry\x12\x14\n\x0c\x64\x65pendencies\x18\x0f \x03(\t\x12\x18\n\x10\x63onfigSecretKeys\x18\x10 \x03(\t\x12\x14\n\x0corganization\x18\x11 \x01(\t\x12\x14\n\x07protect\x18\x0c \x01(\x08H\x00\x88\x01\x01\x12\x0f\n\x07\x61liases\x18\x0e \x03(\t\x12\x1f\n\x17\x61\x64\x64itionalSecretOutputs\x18\x12 \x03(\t\x12\x42\n\x0e\x63ustomTimeouts\x18\x13 \x01(\x0b\x32*.pulumirpc.ConstructRequest.CustomTimeouts\x12\x13\n\x0b\x64\x65letedWith\x18\x14 \x01(\t\x12 \n\x13\x64\x65leteBeforeReplace\x18\x15 \x01(\x08H\x01\x88\x01\x01\x12\x15\n\rignoreChanges\x18\x16 \x03(\t\x12\x18\n\x10replaceOnChanges\x18\x17 \x03(\t\x12\x1b\n\x0eretainOnDelete\x18\x18 \x01(\x08H\x02\x88\x01\x01\x12\x1d\n\x15\x61\x63\x63\x65pts_output_values\x18\x19 \x01(\x08\x12M\n\x0eresource_hooks\x18\x1a \x01(\x0b\x32\x30.pulumirpc.ConstructRequest.ResourceHooksBindingH\x03\x88\x01\x01\x12\x1a\n\x12stack_trace_handle\x18\x1b \x01(\t\x12\x14\n\x0creplace_with\x18\x1c \x03(\t\x1a$\n\x14PropertyDependencies\x12\x0c\n\x04urns\x18\x01 \x03(\t\x1a@\n\x0e\x43ustomTimeouts\x12\x0e\n\x06\x63reate\x18\x01 \x01(\t\x12\x0e\n\x06update\x18\x02 \x01(\t\x12\x0e\n\x06\x64\x65lete\x18\x03 \x01(\t\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1aj\n\x16InputDependenciesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12?\n\x05value\x18\x02 \x01(\x0b\x32\x30.pulumirpc.ConstructRequest.PropertyDependencies:\x02\x38\x01\x1a\x30\n\x0eProvidersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x9d\x01\n\x14ResourceHooksBinding\x12\x15\n\rbefore_create\x18\x01 \x03(\t\x12\x14\n\x0c\x61\x66ter_create\x18\x02 \x03(\t\x12\x15\n\rbefore_update\x18\x03 \x03(\t\x12\x14\n\x0c\x61\x66ter_update\x18\x04 \x03(\t\x12\x15\n\rbefore_delete\x18\x05 \x03(\t\x12\x14\n\x0c\x61\x66ter_delete\x18\x06 \x03(\tB\n\n\x08_protectB\x16\n\x14_deleteBeforeReplaceB\x11\n\x0f_retainOnDeleteB\x11\n\x0f_resource_hooks\"\xab\x02\n\x11\x43onstructResponse\x12\x0b\n\x03urn\x18\x01 \x01(\t\x12&\n\x05state\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12N\n\x11stateDependencies\x18\x03 \x03(\x0b\x32\x33.pulumirpc.ConstructResponse.StateDependenciesEntry\x1a$\n\x14PropertyDependencies\x12\x0c\n\x04urns\x18\x01 \x03(\t\x1ak\n\x16StateDependenciesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12@\n\x05value\x18\x02 \x01(\x0b\x32\x31.pulumirpc.ConstructResponse.PropertyDependencies:\x02\x38\x01\"\xab\x01\n\x17\x45rrorResourceInitFailed\x12\n\n\x02id\x18\x01 \x01(\t\x12+\n\nproperties\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07reasons\x18\x03 \x03(\t\x12\'\n\x06inputs\x18\x04 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x1d\n\x15refresh_before_update\x18\x05 \x01(\x08\"2\n\x11GetMappingRequest\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x10\n\x08provider\x18\x02 \x01(\t\"4\n\x12GetMappingResponse\x12\x10\n\x08provider\x18\x01 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x02 \x01(\x0c\"!\n\x12GetMappingsRequest\x12\x0b\n\x03key\x18\x01 \x01(\t\"(\n\x13GetMappingsResponse\x12\x11\n\tproviders\x18\x01 \x03(\t\"\x9f\x01\n\x04View\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0bparent_type\x18\x03 \x01(\t\x12\x13\n\x0bparent_name\x18\x04 \x01(\t\x12\'\n\x06inputs\x18\x05 \x01(\x0b\x32\x17.google.protobuf.Struct\x12(\n\x07outputs\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct2\xea\n\n\x10ResourceProvider\x12X\n\tHandshake\x12#.pulumirpc.ProviderHandshakeRequest\x1a$.pulumirpc.ProviderHandshakeResponse\"\x00\x12Q\n\x0cParameterize\x12\x1e.pulumirpc.ParameterizeRequest\x1a\x1f.pulumirpc.ParameterizeResponse\"\x00\x12H\n\tGetSchema\x12\x1b.pulumirpc.GetSchemaRequest\x1a\x1c.pulumirpc.GetSchemaResponse\"\x00\x12\x42\n\x0b\x43heckConfig\x12\x17.pulumirpc.CheckRequest\x1a\x18.pulumirpc.CheckResponse\"\x00\x12?\n\nDiffConfig\x12\x16.pulumirpc.DiffRequest\x1a\x17.pulumirpc.DiffResponse\"\x00\x12H\n\tConfigure\x12\x1b.pulumirpc.ConfigureRequest\x1a\x1c.pulumirpc.ConfigureResponse\"\x00\x12?\n\x06Invoke\x12\x18.pulumirpc.InvokeRequest\x1a\x19.pulumirpc.InvokeResponse\"\x00\x12\x39\n\x04\x43\x61ll\x12\x16.pulumirpc.CallRequest\x1a\x17.pulumirpc.CallResponse\"\x00\x12<\n\x05\x43heck\x12\x17.pulumirpc.CheckRequest\x1a\x18.pulumirpc.CheckResponse\"\x00\x12\x39\n\x04\x44iff\x12\x16.pulumirpc.DiffRequest\x1a\x17.pulumirpc.DiffResponse\"\x00\x12?\n\x06\x43reate\x12\x18.pulumirpc.CreateRequest\x1a\x19.pulumirpc.CreateResponse\"\x00\x12\x39\n\x04Read\x12\x16.pulumirpc.ReadRequest\x1a\x17.pulumirpc.ReadResponse\"\x00\x12?\n\x06Update\x12\x18.pulumirpc.UpdateRequest\x1a\x19.pulumirpc.UpdateResponse\"\x00\x12<\n\x06\x44\x65lete\x12\x18.pulumirpc.DeleteRequest\x1a\x16.google.protobuf.Empty\"\x00\x12H\n\tConstruct\x12\x1b.pulumirpc.ConstructRequest\x1a\x1c.pulumirpc.ConstructResponse\"\x00\x12:\n\x06\x43\x61ncel\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\"\x00\x12@\n\rGetPluginInfo\x12\x16.google.protobuf.Empty\x1a\x15.pulumirpc.PluginInfo\"\x00\x12;\n\x06\x41ttach\x12\x17.pulumirpc.PluginAttach\x1a\x16.google.protobuf.Empty\"\x00\x12K\n\nGetMapping\x12\x1c.pulumirpc.GetMappingRequest\x1a\x1d.pulumirpc.GetMappingResponse\"\x00\x12N\n\x0bGetMappings\x12\x1d.pulumirpc.GetMappingsRequest\x1a\x1e.pulumirpc.GetMappingsResponse\"\x00\x42\x34Z2github.com/pulumi/pulumi/sdk/v3/proto/go;pulumirpcb\x06proto3')
19
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x15pulumi/provider.proto\x12\tpulumirpc\x1a\x13pulumi/plugin.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x91\x02\n\x18ProviderHandshakeRequest\x12\x16\n\x0e\x65ngine_address\x18\x01 \x01(\t\x12\x1b\n\x0eroot_directory\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x1e\n\x11program_directory\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x1a\n\x12\x63onfigure_with_urn\x18\x04 \x01(\x08\x12\x16\n\x0esupports_views\x18\x05 \x01(\x08\x12&\n\x1esupports_refresh_before_update\x18\x06 \x01(\x08\x12\x1b\n\x13invoke_with_preview\x18\x07 \x01(\x08\x42\x11\n\x0f_root_directoryB\x14\n\x12_program_directory\"\xac\x01\n\x19ProviderHandshakeResponse\x12\x16\n\x0e\x61\x63\x63\x65pt_secrets\x18\x01 \x01(\x08\x12\x18\n\x10\x61\x63\x63\x65pt_resources\x18\x02 \x01(\x08\x12\x16\n\x0e\x61\x63\x63\x65pt_outputs\x18\x03 \x01(\x08\x12)\n!supports_autonaming_configuration\x18\x04 \x01(\x08J\x04\x08\x05\x10\x06R\x14pulumi_version_range\"\x84\x02\n\x13ParameterizeRequest\x12=\n\x04\x61rgs\x18\x01 \x01(\x0b\x32-.pulumirpc.ParameterizeRequest.ParametersArgsH\x00\x12?\n\x05value\x18\x02 \x01(\x0b\x32..pulumirpc.ParameterizeRequest.ParametersValueH\x00\x1a\x1e\n\x0eParametersArgs\x12\x0c\n\x04\x61rgs\x18\x01 \x03(\t\x1a?\n\x0fParametersValue\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\x12\r\n\x05value\x18\x03 \x01(\x0c\x42\x0c\n\nparameters\"5\n\x14ParameterizeResponse\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\"X\n\x10GetSchemaRequest\x12\x0f\n\x07version\x18\x01 \x01(\x05\x12\x17\n\x0fsubpackage_name\x18\x02 \x01(\t\x12\x1a\n\x12subpackage_version\x18\x03 \x01(\t\"#\n\x11GetSchemaResponse\x12\x0e\n\x06schema\x18\x01 \x01(\t\"\x82\x03\n\x10\x43onfigureRequest\x12=\n\tvariables\x18\x01 \x03(\x0b\x32*.pulumirpc.ConfigureRequest.VariablesEntry\x12%\n\x04\x61rgs\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x15\n\racceptSecrets\x18\x03 \x01(\x08\x12\x17\n\x0f\x61\x63\x63\x65ptResources\x18\x04 \x01(\x08\x12\x18\n\x10sends_old_inputs\x18\x05 \x01(\x08\x12\"\n\x1asends_old_inputs_to_delete\x18\x06 \x01(\x08\x12\x0f\n\x02id\x18\x07 \x01(\tH\x00\x88\x01\x01\x12\x10\n\x03urn\x18\x08 \x01(\tH\x01\x88\x01\x01\x12\x11\n\x04name\x18\t \x01(\tH\x02\x88\x01\x01\x12\x11\n\x04type\x18\n \x01(\tH\x03\x88\x01\x01\x1a\x30\n\x0eVariablesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x05\n\x03_idB\x06\n\x04_urnB\x07\n\x05_nameB\x07\n\x05_type\"\x9e\x01\n\x11\x43onfigureResponse\x12\x15\n\racceptSecrets\x18\x01 \x01(\x08\x12\x17\n\x0fsupportsPreview\x18\x02 \x01(\x08\x12\x17\n\x0f\x61\x63\x63\x65ptResources\x18\x03 \x01(\x08\x12\x15\n\racceptOutputs\x18\x04 \x01(\x08\x12)\n!supports_autonaming_configuration\x18\x05 \x01(\x08\"\x92\x01\n\x19\x43onfigureErrorMissingKeys\x12\x44\n\x0bmissingKeys\x18\x01 \x03(\x0b\x32/.pulumirpc.ConfigureErrorMissingKeys.MissingKey\x1a/\n\nMissingKey\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\"\x91\x01\n\rInvokeRequest\x12\x0b\n\x03tok\x18\x01 \x01(\t\x12%\n\x04\x61rgs\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07preview\x18\x07 \x01(\x08J\x04\x08\x03\x10\x07R\x08providerR\x07versionR\x0f\x61\x63\x63\x65ptResourcesR\x11pluginDownloadURL\"d\n\x0eInvokeResponse\x12\'\n\x06return\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12)\n\x08\x66\x61ilures\x18\x02 \x03(\x0b\x32\x17.pulumirpc.CheckFailure\"\xa0\x05\n\x0b\x43\x61llRequest\x12\x0b\n\x03tok\x18\x01 \x01(\t\x12%\n\x04\x61rgs\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x44\n\x0f\x61rgDependencies\x18\x03 \x03(\x0b\x32+.pulumirpc.CallRequest.ArgDependenciesEntry\x12\x0f\n\x07project\x18\x06 \x01(\t\x12\r\n\x05stack\x18\x07 \x01(\t\x12\x32\n\x06\x63onfig\x18\x08 \x03(\x0b\x32\".pulumirpc.CallRequest.ConfigEntry\x12\x18\n\x10\x63onfigSecretKeys\x18\t \x03(\t\x12\x0e\n\x06\x64ryRun\x18\n \x01(\x08\x12\x10\n\x08parallel\x18\x0b \x01(\x05\x12\x17\n\x0fmonitorEndpoint\x18\x0c \x01(\t\x12\x14\n\x0corganization\x18\x0e \x01(\t\x12\x1d\n\x15\x61\x63\x63\x65pts_output_values\x18\x11 \x01(\x08\x12\x1a\n\x12stack_trace_handle\x18\x12 \x01(\t\x1a$\n\x14\x41rgumentDependencies\x12\x0c\n\x04urns\x18\x01 \x03(\t\x1a\x63\n\x14\x41rgDependenciesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12:\n\x05value\x18\x02 \x01(\x0b\x32+.pulumirpc.CallRequest.ArgumentDependencies:\x02\x38\x01\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01J\x04\x08\x04\x10\x05J\x04\x08\x05\x10\x06J\x04\x08\r\x10\x0eJ\x04\x08\x10\x10\x11J\x04\x08\x0f\x10\x10R\x08providerR\x07versionR\x11pluginDownloadURLR\x0fpluginChecksumsR\x0esourcePosition\"\xba\x02\n\x0c\x43\x61llResponse\x12\'\n\x06return\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12)\n\x08\x66\x61ilures\x18\x03 \x03(\x0b\x32\x17.pulumirpc.CheckFailure\x12K\n\x12returnDependencies\x18\x02 \x03(\x0b\x32/.pulumirpc.CallResponse.ReturnDependenciesEntry\x1a\"\n\x12ReturnDependencies\x12\x0c\n\x04urns\x18\x01 \x03(\t\x1a\x65\n\x17ReturnDependenciesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32*.pulumirpc.CallResponse.ReturnDependencies:\x02\x38\x01\"\x88\x03\n\x0c\x43heckRequest\x12\x0b\n\x03urn\x18\x01 \x01(\t\x12%\n\x04olds\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12%\n\x04news\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x12\n\nrandomSeed\x18\x05 \x01(\x0c\x12\x0c\n\x04name\x18\x06 \x01(\t\x12\x0c\n\x04type\x18\x07 \x01(\t\x12=\n\nautonaming\x18\x08 \x01(\x0b\x32).pulumirpc.CheckRequest.AutonamingOptions\x1a\x97\x01\n\x11\x41utonamingOptions\x12\x15\n\rproposed_name\x18\x01 \x01(\t\x12<\n\x04mode\x18\x02 \x01(\x0e\x32..pulumirpc.CheckRequest.AutonamingOptions.Mode\"-\n\x04Mode\x12\x0b\n\x07PROPOSE\x10\x00\x12\x0b\n\x07\x45NFORCE\x10\x01\x12\x0b\n\x07\x44ISABLE\x10\x02J\x04\x08\x04\x10\x05R\x0esequenceNumber\"c\n\rCheckResponse\x12\'\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12)\n\x08\x66\x61ilures\x18\x02 \x03(\x0b\x32\x17.pulumirpc.CheckFailure\"0\n\x0c\x43heckFailure\x12\x10\n\x08property\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\"\xd4\x01\n\x0b\x44iffRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0b\n\x03urn\x18\x02 \x01(\t\x12%\n\x04olds\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12%\n\x04news\x18\x04 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x15\n\rignoreChanges\x18\x05 \x03(\t\x12+\n\nold_inputs\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0c\n\x04name\x18\x07 \x01(\t\x12\x0c\n\x04type\x18\x08 \x01(\t\"\xaf\x01\n\x0cPropertyDiff\x12*\n\x04kind\x18\x01 \x01(\x0e\x32\x1c.pulumirpc.PropertyDiff.Kind\x12\x11\n\tinputDiff\x18\x02 \x01(\x08\"`\n\x04Kind\x12\x07\n\x03\x41\x44\x44\x10\x00\x12\x0f\n\x0b\x41\x44\x44_REPLACE\x10\x01\x12\n\n\x06\x44\x45LETE\x10\x02\x12\x12\n\x0e\x44\x45LETE_REPLACE\x10\x03\x12\n\n\x06UPDATE\x10\x04\x12\x12\n\x0eUPDATE_REPLACE\x10\x05\"\xfa\x02\n\x0c\x44iffResponse\x12\x10\n\x08replaces\x18\x01 \x03(\t\x12\x0f\n\x07stables\x18\x02 \x03(\t\x12\x1b\n\x13\x64\x65leteBeforeReplace\x18\x03 \x01(\x08\x12\x34\n\x07\x63hanges\x18\x04 \x01(\x0e\x32#.pulumirpc.DiffResponse.DiffChanges\x12\r\n\x05\x64iffs\x18\x05 \x03(\t\x12?\n\x0c\x64\x65tailedDiff\x18\x06 \x03(\x0b\x32).pulumirpc.DiffResponse.DetailedDiffEntry\x12\x17\n\x0fhasDetailedDiff\x18\x07 \x01(\x08\x1aL\n\x11\x44\x65tailedDiffEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12&\n\x05value\x18\x02 \x01(\x0b\x32\x17.pulumirpc.PropertyDiff:\x02\x38\x01\"=\n\x0b\x44iffChanges\x12\x10\n\x0c\x44IFF_UNKNOWN\x10\x00\x12\r\n\tDIFF_NONE\x10\x01\x12\r\n\tDIFF_SOME\x10\x02\"\xc7\x01\n\rCreateRequest\x12\x0b\n\x03urn\x18\x01 \x01(\t\x12+\n\nproperties\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x0f\n\x07preview\x18\x04 \x01(\x08\x12\x0c\n\x04name\x18\x05 \x01(\t\x12\x0c\n\x04type\x18\x06 \x01(\t\x12\x1f\n\x17resource_status_address\x18\x07 \x01(\t\x12\x1d\n\x15resource_status_token\x18\x08 \x01(\t\"h\n\x0e\x43reateResponse\x12\n\n\x02id\x18\x01 \x01(\t\x12+\n\nproperties\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x1d\n\x15refresh_before_update\x18\x03 \x01(\x08\"\xfc\x01\n\x0bReadRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0b\n\x03urn\x18\x02 \x01(\t\x12+\n\nproperties\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\'\n\x06inputs\x18\x04 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0c\n\x04name\x18\x05 \x01(\t\x12\x0c\n\x04type\x18\x06 \x01(\t\x12\x1f\n\x17resource_status_address\x18\x07 \x01(\t\x12\x1d\n\x15resource_status_token\x18\x08 \x01(\t\x12\"\n\told_views\x18\t \x03(\x0b\x32\x0f.pulumirpc.View\"\x8f\x01\n\x0cReadResponse\x12\n\n\x02id\x18\x01 \x01(\t\x12+\n\nproperties\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\'\n\x06inputs\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x1d\n\x15refresh_before_update\x18\x04 \x01(\x08\"\xdc\x02\n\rUpdateRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0b\n\x03urn\x18\x02 \x01(\t\x12%\n\x04olds\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12%\n\x04news\x18\x04 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07timeout\x18\x05 \x01(\x01\x12\x15\n\rignoreChanges\x18\x06 \x03(\t\x12\x0f\n\x07preview\x18\x07 \x01(\x08\x12+\n\nold_inputs\x18\x08 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0c\n\x04name\x18\t \x01(\t\x12\x0c\n\x04type\x18\n \x01(\t\x12\x1f\n\x17resource_status_address\x18\x0b \x01(\t\x12\x1d\n\x15resource_status_token\x18\x0c \x01(\t\x12\"\n\told_views\x18\r \x03(\x0b\x32\x0f.pulumirpc.View\"\\\n\x0eUpdateResponse\x12+\n\nproperties\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x1d\n\x15refresh_before_update\x18\x02 \x01(\x08\"\x93\x02\n\rDeleteRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0b\n\x03urn\x18\x02 \x01(\t\x12+\n\nproperties\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12+\n\nold_inputs\x18\x05 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0c\n\x04name\x18\x06 \x01(\t\x12\x0c\n\x04type\x18\x07 \x01(\t\x12\x1f\n\x17resource_status_address\x18\x08 \x01(\t\x12\x1d\n\x15resource_status_token\x18\t \x01(\t\x12\"\n\told_views\x18\n \x03(\x0b\x32\x0f.pulumirpc.View\"\x9f\x0b\n\x10\x43onstructRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\r\n\x05stack\x18\x02 \x01(\t\x12\x37\n\x06\x63onfig\x18\x03 \x03(\x0b\x32\'.pulumirpc.ConstructRequest.ConfigEntry\x12\x0e\n\x06\x64ryRun\x18\x04 \x01(\x08\x12\x10\n\x08parallel\x18\x05 \x01(\x05\x12\x17\n\x0fmonitorEndpoint\x18\x06 \x01(\t\x12\x0c\n\x04type\x18\x07 \x01(\t\x12\x0c\n\x04name\x18\x08 \x01(\t\x12\x0e\n\x06parent\x18\t \x01(\t\x12\'\n\x06inputs\x18\n \x01(\x0b\x32\x17.google.protobuf.Struct\x12M\n\x11inputDependencies\x18\x0b \x03(\x0b\x32\x32.pulumirpc.ConstructRequest.InputDependenciesEntry\x12=\n\tproviders\x18\r \x03(\x0b\x32*.pulumirpc.ConstructRequest.ProvidersEntry\x12\x14\n\x0c\x64\x65pendencies\x18\x0f \x03(\t\x12\x18\n\x10\x63onfigSecretKeys\x18\x10 \x03(\t\x12\x14\n\x0corganization\x18\x11 \x01(\t\x12\x14\n\x07protect\x18\x0c \x01(\x08H\x00\x88\x01\x01\x12\x0f\n\x07\x61liases\x18\x0e \x03(\t\x12\x1f\n\x17\x61\x64\x64itionalSecretOutputs\x18\x12 \x03(\t\x12\x42\n\x0e\x63ustomTimeouts\x18\x13 \x01(\x0b\x32*.pulumirpc.ConstructRequest.CustomTimeouts\x12\x13\n\x0b\x64\x65letedWith\x18\x14 \x01(\t\x12 \n\x13\x64\x65leteBeforeReplace\x18\x15 \x01(\x08H\x01\x88\x01\x01\x12\x15\n\rignoreChanges\x18\x16 \x03(\t\x12\x18\n\x10replaceOnChanges\x18\x17 \x03(\t\x12\x1b\n\x0eretainOnDelete\x18\x18 \x01(\x08H\x02\x88\x01\x01\x12\x1d\n\x15\x61\x63\x63\x65pts_output_values\x18\x19 \x01(\x08\x12M\n\x0eresource_hooks\x18\x1a \x01(\x0b\x32\x30.pulumirpc.ConstructRequest.ResourceHooksBindingH\x03\x88\x01\x01\x12\x1a\n\x12stack_trace_handle\x18\x1b \x01(\t\x12\x14\n\x0creplace_with\x18\x1c \x03(\t\x1a$\n\x14PropertyDependencies\x12\x0c\n\x04urns\x18\x01 \x03(\t\x1a@\n\x0e\x43ustomTimeouts\x12\x0e\n\x06\x63reate\x18\x01 \x01(\t\x12\x0e\n\x06update\x18\x02 \x01(\t\x12\x0e\n\x06\x64\x65lete\x18\x03 \x01(\t\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1aj\n\x16InputDependenciesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12?\n\x05value\x18\x02 \x01(\x0b\x32\x30.pulumirpc.ConstructRequest.PropertyDependencies:\x02\x38\x01\x1a\x30\n\x0eProvidersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x9d\x01\n\x14ResourceHooksBinding\x12\x15\n\rbefore_create\x18\x01 \x03(\t\x12\x14\n\x0c\x61\x66ter_create\x18\x02 \x03(\t\x12\x15\n\rbefore_update\x18\x03 \x03(\t\x12\x14\n\x0c\x61\x66ter_update\x18\x04 \x03(\t\x12\x15\n\rbefore_delete\x18\x05 \x03(\t\x12\x14\n\x0c\x61\x66ter_delete\x18\x06 \x03(\tB\n\n\x08_protectB\x16\n\x14_deleteBeforeReplaceB\x11\n\x0f_retainOnDeleteB\x11\n\x0f_resource_hooks\"\xab\x02\n\x11\x43onstructResponse\x12\x0b\n\x03urn\x18\x01 \x01(\t\x12&\n\x05state\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12N\n\x11stateDependencies\x18\x03 \x03(\x0b\x32\x33.pulumirpc.ConstructResponse.StateDependenciesEntry\x1a$\n\x14PropertyDependencies\x12\x0c\n\x04urns\x18\x01 \x03(\t\x1ak\n\x16StateDependenciesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12@\n\x05value\x18\x02 \x01(\x0b\x32\x31.pulumirpc.ConstructResponse.PropertyDependencies:\x02\x38\x01\"\xab\x01\n\x17\x45rrorResourceInitFailed\x12\n\n\x02id\x18\x01 \x01(\t\x12+\n\nproperties\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0f\n\x07reasons\x18\x03 \x03(\t\x12\'\n\x06inputs\x18\x04 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x1d\n\x15refresh_before_update\x18\x05 \x01(\x08\"2\n\x11GetMappingRequest\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x10\n\x08provider\x18\x02 \x01(\t\"4\n\x12GetMappingResponse\x12\x10\n\x08provider\x18\x01 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x02 \x01(\x0c\"!\n\x12GetMappingsRequest\x12\x0b\n\x03key\x18\x01 \x01(\t\"(\n\x13GetMappingsResponse\x12\x11\n\tproviders\x18\x01 \x03(\t\"\x9f\x01\n\x04View\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0bparent_type\x18\x03 \x01(\t\x12\x13\n\x0bparent_name\x18\x04 \x01(\t\x12\'\n\x06inputs\x18\x05 \x01(\x0b\x32\x17.google.protobuf.Struct\x12(\n\x07outputs\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct2\xea\n\n\x10ResourceProvider\x12X\n\tHandshake\x12#.pulumirpc.ProviderHandshakeRequest\x1a$.pulumirpc.ProviderHandshakeResponse\"\x00\x12Q\n\x0cParameterize\x12\x1e.pulumirpc.ParameterizeRequest\x1a\x1f.pulumirpc.ParameterizeResponse\"\x00\x12H\n\tGetSchema\x12\x1b.pulumirpc.GetSchemaRequest\x1a\x1c.pulumirpc.GetSchemaResponse\"\x00\x12\x42\n\x0b\x43heckConfig\x12\x17.pulumirpc.CheckRequest\x1a\x18.pulumirpc.CheckResponse\"\x00\x12?\n\nDiffConfig\x12\x16.pulumirpc.DiffRequest\x1a\x17.pulumirpc.DiffResponse\"\x00\x12H\n\tConfigure\x12\x1b.pulumirpc.ConfigureRequest\x1a\x1c.pulumirpc.ConfigureResponse\"\x00\x12?\n\x06Invoke\x12\x18.pulumirpc.InvokeRequest\x1a\x19.pulumirpc.InvokeResponse\"\x00\x12\x39\n\x04\x43\x61ll\x12\x16.pulumirpc.CallRequest\x1a\x17.pulumirpc.CallResponse\"\x00\x12<\n\x05\x43heck\x12\x17.pulumirpc.CheckRequest\x1a\x18.pulumirpc.CheckResponse\"\x00\x12\x39\n\x04\x44iff\x12\x16.pulumirpc.DiffRequest\x1a\x17.pulumirpc.DiffResponse\"\x00\x12?\n\x06\x43reate\x12\x18.pulumirpc.CreateRequest\x1a\x19.pulumirpc.CreateResponse\"\x00\x12\x39\n\x04Read\x12\x16.pulumirpc.ReadRequest\x1a\x17.pulumirpc.ReadResponse\"\x00\x12?\n\x06Update\x12\x18.pulumirpc.UpdateRequest\x1a\x19.pulumirpc.UpdateResponse\"\x00\x12<\n\x06\x44\x65lete\x12\x18.pulumirpc.DeleteRequest\x1a\x16.google.protobuf.Empty\"\x00\x12H\n\tConstruct\x12\x1b.pulumirpc.ConstructRequest\x1a\x1c.pulumirpc.ConstructResponse\"\x00\x12:\n\x06\x43\x61ncel\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\"\x00\x12@\n\rGetPluginInfo\x12\x16.google.protobuf.Empty\x1a\x15.pulumirpc.PluginInfo\"\x00\x12;\n\x06\x41ttach\x12\x17.pulumirpc.PluginAttach\x1a\x16.google.protobuf.Empty\"\x00\x12K\n\nGetMapping\x12\x1c.pulumirpc.GetMappingRequest\x1a\x1d.pulumirpc.GetMappingResponse\"\x00\x12N\n\x0bGetMappings\x12\x1d.pulumirpc.GetMappingsRequest\x1a\x1e.pulumirpc.GetMappingsResponse\"\x00\x42\x34Z2github.com/pulumi/pulumi/sdk/v3/proto/go;pulumirpcb\x06proto3')
20
20
 
21
21
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
22
22
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'pulumi.provider_pb2', globals())
@@ -45,115 +45,115 @@ if _descriptor._USE_C_DESCRIPTORS == False:
45
45
  _PROVIDERHANDSHAKEREQUEST._serialized_start=117
46
46
  _PROVIDERHANDSHAKEREQUEST._serialized_end=390
47
47
  _PROVIDERHANDSHAKERESPONSE._serialized_start=393
48
- _PROVIDERHANDSHAKERESPONSE._serialized_end=597
49
- _PARAMETERIZEREQUEST._serialized_start=600
50
- _PARAMETERIZEREQUEST._serialized_end=860
51
- _PARAMETERIZEREQUEST_PARAMETERSARGS._serialized_start=751
52
- _PARAMETERIZEREQUEST_PARAMETERSARGS._serialized_end=781
53
- _PARAMETERIZEREQUEST_PARAMETERSVALUE._serialized_start=783
54
- _PARAMETERIZEREQUEST_PARAMETERSVALUE._serialized_end=846
55
- _PARAMETERIZERESPONSE._serialized_start=862
56
- _PARAMETERIZERESPONSE._serialized_end=915
57
- _GETSCHEMAREQUEST._serialized_start=917
58
- _GETSCHEMAREQUEST._serialized_end=1005
59
- _GETSCHEMARESPONSE._serialized_start=1007
60
- _GETSCHEMARESPONSE._serialized_end=1042
61
- _CONFIGUREREQUEST._serialized_start=1045
62
- _CONFIGUREREQUEST._serialized_end=1431
63
- _CONFIGUREREQUEST_VARIABLESENTRY._serialized_start=1350
64
- _CONFIGUREREQUEST_VARIABLESENTRY._serialized_end=1398
65
- _CONFIGURERESPONSE._serialized_start=1434
66
- _CONFIGURERESPONSE._serialized_end=1592
67
- _CONFIGUREERRORMISSINGKEYS._serialized_start=1595
68
- _CONFIGUREERRORMISSINGKEYS._serialized_end=1741
69
- _CONFIGUREERRORMISSINGKEYS_MISSINGKEY._serialized_start=1694
70
- _CONFIGUREERRORMISSINGKEYS_MISSINGKEY._serialized_end=1741
71
- _INVOKEREQUEST._serialized_start=1744
72
- _INVOKEREQUEST._serialized_end=1889
73
- _INVOKERESPONSE._serialized_start=1891
74
- _INVOKERESPONSE._serialized_end=1991
75
- _CALLREQUEST._serialized_start=1994
76
- _CALLREQUEST._serialized_end=2666
77
- _CALLREQUEST_ARGUMENTDEPENDENCIES._serialized_start=2381
78
- _CALLREQUEST_ARGUMENTDEPENDENCIES._serialized_end=2417
79
- _CALLREQUEST_ARGDEPENDENCIESENTRY._serialized_start=2419
80
- _CALLREQUEST_ARGDEPENDENCIESENTRY._serialized_end=2518
81
- _CALLREQUEST_CONFIGENTRY._serialized_start=2520
82
- _CALLREQUEST_CONFIGENTRY._serialized_end=2565
83
- _CALLRESPONSE._serialized_start=2669
84
- _CALLRESPONSE._serialized_end=2983
85
- _CALLRESPONSE_RETURNDEPENDENCIES._serialized_start=2846
86
- _CALLRESPONSE_RETURNDEPENDENCIES._serialized_end=2880
87
- _CALLRESPONSE_RETURNDEPENDENCIESENTRY._serialized_start=2882
88
- _CALLRESPONSE_RETURNDEPENDENCIESENTRY._serialized_end=2983
89
- _CHECKREQUEST._serialized_start=2986
90
- _CHECKREQUEST._serialized_end=3378
91
- _CHECKREQUEST_AUTONAMINGOPTIONS._serialized_start=3205
92
- _CHECKREQUEST_AUTONAMINGOPTIONS._serialized_end=3356
93
- _CHECKREQUEST_AUTONAMINGOPTIONS_MODE._serialized_start=3311
94
- _CHECKREQUEST_AUTONAMINGOPTIONS_MODE._serialized_end=3356
95
- _CHECKRESPONSE._serialized_start=3380
96
- _CHECKRESPONSE._serialized_end=3479
97
- _CHECKFAILURE._serialized_start=3481
98
- _CHECKFAILURE._serialized_end=3529
99
- _DIFFREQUEST._serialized_start=3532
100
- _DIFFREQUEST._serialized_end=3744
101
- _PROPERTYDIFF._serialized_start=3747
102
- _PROPERTYDIFF._serialized_end=3922
103
- _PROPERTYDIFF_KIND._serialized_start=3826
104
- _PROPERTYDIFF_KIND._serialized_end=3922
105
- _DIFFRESPONSE._serialized_start=3925
106
- _DIFFRESPONSE._serialized_end=4303
107
- _DIFFRESPONSE_DETAILEDDIFFENTRY._serialized_start=4164
108
- _DIFFRESPONSE_DETAILEDDIFFENTRY._serialized_end=4240
109
- _DIFFRESPONSE_DIFFCHANGES._serialized_start=4242
110
- _DIFFRESPONSE_DIFFCHANGES._serialized_end=4303
111
- _CREATEREQUEST._serialized_start=4306
112
- _CREATEREQUEST._serialized_end=4505
113
- _CREATERESPONSE._serialized_start=4507
114
- _CREATERESPONSE._serialized_end=4611
115
- _READREQUEST._serialized_start=4614
116
- _READREQUEST._serialized_end=4866
117
- _READRESPONSE._serialized_start=4869
118
- _READRESPONSE._serialized_end=5012
119
- _UPDATEREQUEST._serialized_start=5015
120
- _UPDATEREQUEST._serialized_end=5363
121
- _UPDATERESPONSE._serialized_start=5365
122
- _UPDATERESPONSE._serialized_end=5457
123
- _DELETEREQUEST._serialized_start=5460
124
- _DELETEREQUEST._serialized_end=5735
125
- _CONSTRUCTREQUEST._serialized_start=5738
126
- _CONSTRUCTREQUEST._serialized_end=7177
127
- _CONSTRUCTREQUEST_PROPERTYDEPENDENCIES._serialized_start=6636
128
- _CONSTRUCTREQUEST_PROPERTYDEPENDENCIES._serialized_end=6672
129
- _CONSTRUCTREQUEST_CUSTOMTIMEOUTS._serialized_start=6674
130
- _CONSTRUCTREQUEST_CUSTOMTIMEOUTS._serialized_end=6738
131
- _CONSTRUCTREQUEST_CONFIGENTRY._serialized_start=2520
132
- _CONSTRUCTREQUEST_CONFIGENTRY._serialized_end=2565
133
- _CONSTRUCTREQUEST_INPUTDEPENDENCIESENTRY._serialized_start=6787
134
- _CONSTRUCTREQUEST_INPUTDEPENDENCIESENTRY._serialized_end=6893
135
- _CONSTRUCTREQUEST_PROVIDERSENTRY._serialized_start=6895
136
- _CONSTRUCTREQUEST_PROVIDERSENTRY._serialized_end=6943
137
- _CONSTRUCTREQUEST_RESOURCEHOOKSBINDING._serialized_start=6946
138
- _CONSTRUCTREQUEST_RESOURCEHOOKSBINDING._serialized_end=7103
139
- _CONSTRUCTRESPONSE._serialized_start=7180
140
- _CONSTRUCTRESPONSE._serialized_end=7479
141
- _CONSTRUCTRESPONSE_PROPERTYDEPENDENCIES._serialized_start=6636
142
- _CONSTRUCTRESPONSE_PROPERTYDEPENDENCIES._serialized_end=6672
143
- _CONSTRUCTRESPONSE_STATEDEPENDENCIESENTRY._serialized_start=7372
144
- _CONSTRUCTRESPONSE_STATEDEPENDENCIESENTRY._serialized_end=7479
145
- _ERRORRESOURCEINITFAILED._serialized_start=7482
146
- _ERRORRESOURCEINITFAILED._serialized_end=7653
147
- _GETMAPPINGREQUEST._serialized_start=7655
148
- _GETMAPPINGREQUEST._serialized_end=7705
149
- _GETMAPPINGRESPONSE._serialized_start=7707
150
- _GETMAPPINGRESPONSE._serialized_end=7759
151
- _GETMAPPINGSREQUEST._serialized_start=7761
152
- _GETMAPPINGSREQUEST._serialized_end=7794
153
- _GETMAPPINGSRESPONSE._serialized_start=7796
154
- _GETMAPPINGSRESPONSE._serialized_end=7836
155
- _VIEW._serialized_start=7839
156
- _VIEW._serialized_end=7998
157
- _RESOURCEPROVIDER._serialized_start=8001
158
- _RESOURCEPROVIDER._serialized_end=9387
48
+ _PROVIDERHANDSHAKERESPONSE._serialized_end=565
49
+ _PARAMETERIZEREQUEST._serialized_start=568
50
+ _PARAMETERIZEREQUEST._serialized_end=828
51
+ _PARAMETERIZEREQUEST_PARAMETERSARGS._serialized_start=719
52
+ _PARAMETERIZEREQUEST_PARAMETERSARGS._serialized_end=749
53
+ _PARAMETERIZEREQUEST_PARAMETERSVALUE._serialized_start=751
54
+ _PARAMETERIZEREQUEST_PARAMETERSVALUE._serialized_end=814
55
+ _PARAMETERIZERESPONSE._serialized_start=830
56
+ _PARAMETERIZERESPONSE._serialized_end=883
57
+ _GETSCHEMAREQUEST._serialized_start=885
58
+ _GETSCHEMAREQUEST._serialized_end=973
59
+ _GETSCHEMARESPONSE._serialized_start=975
60
+ _GETSCHEMARESPONSE._serialized_end=1010
61
+ _CONFIGUREREQUEST._serialized_start=1013
62
+ _CONFIGUREREQUEST._serialized_end=1399
63
+ _CONFIGUREREQUEST_VARIABLESENTRY._serialized_start=1318
64
+ _CONFIGUREREQUEST_VARIABLESENTRY._serialized_end=1366
65
+ _CONFIGURERESPONSE._serialized_start=1402
66
+ _CONFIGURERESPONSE._serialized_end=1560
67
+ _CONFIGUREERRORMISSINGKEYS._serialized_start=1563
68
+ _CONFIGUREERRORMISSINGKEYS._serialized_end=1709
69
+ _CONFIGUREERRORMISSINGKEYS_MISSINGKEY._serialized_start=1662
70
+ _CONFIGUREERRORMISSINGKEYS_MISSINGKEY._serialized_end=1709
71
+ _INVOKEREQUEST._serialized_start=1712
72
+ _INVOKEREQUEST._serialized_end=1857
73
+ _INVOKERESPONSE._serialized_start=1859
74
+ _INVOKERESPONSE._serialized_end=1959
75
+ _CALLREQUEST._serialized_start=1962
76
+ _CALLREQUEST._serialized_end=2634
77
+ _CALLREQUEST_ARGUMENTDEPENDENCIES._serialized_start=2349
78
+ _CALLREQUEST_ARGUMENTDEPENDENCIES._serialized_end=2385
79
+ _CALLREQUEST_ARGDEPENDENCIESENTRY._serialized_start=2387
80
+ _CALLREQUEST_ARGDEPENDENCIESENTRY._serialized_end=2486
81
+ _CALLREQUEST_CONFIGENTRY._serialized_start=2488
82
+ _CALLREQUEST_CONFIGENTRY._serialized_end=2533
83
+ _CALLRESPONSE._serialized_start=2637
84
+ _CALLRESPONSE._serialized_end=2951
85
+ _CALLRESPONSE_RETURNDEPENDENCIES._serialized_start=2814
86
+ _CALLRESPONSE_RETURNDEPENDENCIES._serialized_end=2848
87
+ _CALLRESPONSE_RETURNDEPENDENCIESENTRY._serialized_start=2850
88
+ _CALLRESPONSE_RETURNDEPENDENCIESENTRY._serialized_end=2951
89
+ _CHECKREQUEST._serialized_start=2954
90
+ _CHECKREQUEST._serialized_end=3346
91
+ _CHECKREQUEST_AUTONAMINGOPTIONS._serialized_start=3173
92
+ _CHECKREQUEST_AUTONAMINGOPTIONS._serialized_end=3324
93
+ _CHECKREQUEST_AUTONAMINGOPTIONS_MODE._serialized_start=3279
94
+ _CHECKREQUEST_AUTONAMINGOPTIONS_MODE._serialized_end=3324
95
+ _CHECKRESPONSE._serialized_start=3348
96
+ _CHECKRESPONSE._serialized_end=3447
97
+ _CHECKFAILURE._serialized_start=3449
98
+ _CHECKFAILURE._serialized_end=3497
99
+ _DIFFREQUEST._serialized_start=3500
100
+ _DIFFREQUEST._serialized_end=3712
101
+ _PROPERTYDIFF._serialized_start=3715
102
+ _PROPERTYDIFF._serialized_end=3890
103
+ _PROPERTYDIFF_KIND._serialized_start=3794
104
+ _PROPERTYDIFF_KIND._serialized_end=3890
105
+ _DIFFRESPONSE._serialized_start=3893
106
+ _DIFFRESPONSE._serialized_end=4271
107
+ _DIFFRESPONSE_DETAILEDDIFFENTRY._serialized_start=4132
108
+ _DIFFRESPONSE_DETAILEDDIFFENTRY._serialized_end=4208
109
+ _DIFFRESPONSE_DIFFCHANGES._serialized_start=4210
110
+ _DIFFRESPONSE_DIFFCHANGES._serialized_end=4271
111
+ _CREATEREQUEST._serialized_start=4274
112
+ _CREATEREQUEST._serialized_end=4473
113
+ _CREATERESPONSE._serialized_start=4475
114
+ _CREATERESPONSE._serialized_end=4579
115
+ _READREQUEST._serialized_start=4582
116
+ _READREQUEST._serialized_end=4834
117
+ _READRESPONSE._serialized_start=4837
118
+ _READRESPONSE._serialized_end=4980
119
+ _UPDATEREQUEST._serialized_start=4983
120
+ _UPDATEREQUEST._serialized_end=5331
121
+ _UPDATERESPONSE._serialized_start=5333
122
+ _UPDATERESPONSE._serialized_end=5425
123
+ _DELETEREQUEST._serialized_start=5428
124
+ _DELETEREQUEST._serialized_end=5703
125
+ _CONSTRUCTREQUEST._serialized_start=5706
126
+ _CONSTRUCTREQUEST._serialized_end=7145
127
+ _CONSTRUCTREQUEST_PROPERTYDEPENDENCIES._serialized_start=6604
128
+ _CONSTRUCTREQUEST_PROPERTYDEPENDENCIES._serialized_end=6640
129
+ _CONSTRUCTREQUEST_CUSTOMTIMEOUTS._serialized_start=6642
130
+ _CONSTRUCTREQUEST_CUSTOMTIMEOUTS._serialized_end=6706
131
+ _CONSTRUCTREQUEST_CONFIGENTRY._serialized_start=2488
132
+ _CONSTRUCTREQUEST_CONFIGENTRY._serialized_end=2533
133
+ _CONSTRUCTREQUEST_INPUTDEPENDENCIESENTRY._serialized_start=6755
134
+ _CONSTRUCTREQUEST_INPUTDEPENDENCIESENTRY._serialized_end=6861
135
+ _CONSTRUCTREQUEST_PROVIDERSENTRY._serialized_start=6863
136
+ _CONSTRUCTREQUEST_PROVIDERSENTRY._serialized_end=6911
137
+ _CONSTRUCTREQUEST_RESOURCEHOOKSBINDING._serialized_start=6914
138
+ _CONSTRUCTREQUEST_RESOURCEHOOKSBINDING._serialized_end=7071
139
+ _CONSTRUCTRESPONSE._serialized_start=7148
140
+ _CONSTRUCTRESPONSE._serialized_end=7447
141
+ _CONSTRUCTRESPONSE_PROPERTYDEPENDENCIES._serialized_start=6604
142
+ _CONSTRUCTRESPONSE_PROPERTYDEPENDENCIES._serialized_end=6640
143
+ _CONSTRUCTRESPONSE_STATEDEPENDENCIESENTRY._serialized_start=7340
144
+ _CONSTRUCTRESPONSE_STATEDEPENDENCIESENTRY._serialized_end=7447
145
+ _ERRORRESOURCEINITFAILED._serialized_start=7450
146
+ _ERRORRESOURCEINITFAILED._serialized_end=7621
147
+ _GETMAPPINGREQUEST._serialized_start=7623
148
+ _GETMAPPINGREQUEST._serialized_end=7673
149
+ _GETMAPPINGRESPONSE._serialized_start=7675
150
+ _GETMAPPINGRESPONSE._serialized_end=7727
151
+ _GETMAPPINGSREQUEST._serialized_start=7729
152
+ _GETMAPPINGSREQUEST._serialized_end=7762
153
+ _GETMAPPINGSRESPONSE._serialized_start=7764
154
+ _GETMAPPINGSRESPONSE._serialized_end=7804
155
+ _VIEW._serialized_start=7807
156
+ _VIEW._serialized_end=7966
157
+ _RESOURCEPROVIDER._serialized_start=7969
158
+ _RESOURCEPROVIDER._serialized_end=9355
159
159
  # @@protoc_insertion_point(module_scope)
@@ -101,7 +101,6 @@ class ProviderHandshakeResponse(google.protobuf.message.Message):
101
101
  ACCEPT_RESOURCES_FIELD_NUMBER: builtins.int
102
102
  ACCEPT_OUTPUTS_FIELD_NUMBER: builtins.int
103
103
  SUPPORTS_AUTONAMING_CONFIGURATION_FIELD_NUMBER: builtins.int
104
- PULUMI_VERSION_RANGE_FIELD_NUMBER: builtins.int
105
104
  accept_secrets: builtins.bool
106
105
  """True if and only if the provider supports secrets. If true, the caller should pass secrets as strongly typed
107
106
  values to the provider. *Must* match the value returned in response to [](pulumirpc.ResourceProvider.Configure).
@@ -120,14 +119,6 @@ class ProviderHandshakeResponse(google.protobuf.message.Message):
120
119
  """True if the provider accepts and respects autonaming configuration that the engine provides on behalf of the
121
120
  user. *Must* match the value returned in response to [](pulumirpc.ResourceProvider.Configure).
122
121
  """
123
- pulumi_version_range: builtins.str
124
- """The CLI version range required for this provider to work correctly. If no version range is specified, the
125
- provider will be considered compatible with any CLI version.
126
- The supported syntax for ranges is that of https://pkg.go.dev/github.com/blang/semver#ParseRange. For example
127
- ">=3.0.0", or "!3.1.2". Ranges can be AND-ed together by concatenating with spaces ">=3.5.0 !3.7.7", meaning
128
- greater-or-equal to 3.5.0 and not exactly 3.7.7. Ranges can be OR-ed with the `||` operator: "<3.4.0 || >3.8.0",
129
- meaning less-than 3.4.0 or greater-than 3.8.0.
130
- """
131
122
  def __init__(
132
123
  self,
133
124
  *,
@@ -135,11 +126,8 @@ class ProviderHandshakeResponse(google.protobuf.message.Message):
135
126
  accept_resources: builtins.bool = ...,
136
127
  accept_outputs: builtins.bool = ...,
137
128
  supports_autonaming_configuration: builtins.bool = ...,
138
- pulumi_version_range: builtins.str | None = ...,
139
129
  ) -> None: ...
140
- def HasField(self, field_name: typing.Literal["_pulumi_version_range", b"_pulumi_version_range", "pulumi_version_range", b"pulumi_version_range"]) -> builtins.bool: ...
141
- def ClearField(self, field_name: typing.Literal["_pulumi_version_range", b"_pulumi_version_range", "accept_outputs", b"accept_outputs", "accept_resources", b"accept_resources", "accept_secrets", b"accept_secrets", "pulumi_version_range", b"pulumi_version_range", "supports_autonaming_configuration", b"supports_autonaming_configuration"]) -> None: ...
142
- def WhichOneof(self, oneof_group: typing.Literal["_pulumi_version_range", b"_pulumi_version_range"]) -> typing.Literal["pulumi_version_range"] | None: ...
130
+ def ClearField(self, field_name: typing.Literal["accept_outputs", b"accept_outputs", "accept_resources", b"accept_resources", "accept_secrets", b"accept_secrets", "supports_autonaming_configuration", b"supports_autonaming_configuration"]) -> None: ...
143
131
 
144
132
  global___ProviderHandshakeResponse = ProviderHandshakeResponse
145
133
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pulumi
3
- Version: 3.215.0a1767791720
3
+ Version: 3.216.0
4
4
  Summary: Pulumi's Python SDK
5
5
  Project-URL: Documentation, https://www.pulumi.com
6
6
  Project-URL: Changelog, https://github.com/pulumi/pulumi/blob/master/CHANGELOG.md
@@ -1,7 +1,7 @@
1
1
  pulumi/__init__.py,sha256=rKxEGRZqwv_VbgAbIDE_W1QvSb7UJ68NLDnAtVwe5dA,4391
2
2
  pulumi/_types.py,sha256=C_gCpJIlb7V39x-iSNgMqYdLkTSqmZ8RHQb2BIIzGtU,39333
3
3
  pulumi/_utils.py,sha256=cIeLt2NXeHVhODfh4JEpoyV1wMesDGOzJN5u5NyyEs8,11263
4
- pulumi/_version.py,sha256=naP0pYBmB3g3e8QzxLcknCOMYrEQOEGYVtX44YErWis,733
4
+ pulumi/_version.py,sha256=fMzEaEcT06vWq36ASHSv3Zo_J1GCTPqlm-_mPLw4yCc,733
5
5
  pulumi/asset.py,sha256=jOZBKiC8GYHpGYL5pOi-hfL30efiK8FLdc4fad7YwII,3952
6
6
  pulumi/config.py,sha256=pWMfMNLTZe63QmvyT-3XMG3VWTUTHkk6SMQg5lJZapE,25047
7
7
  pulumi/deprecated.py,sha256=aO0kXzGtYg14UDqK-MLxaAaqIfMMg4-oUvAO6FIVBV0,1738
@@ -36,9 +36,9 @@ pulumi/automation/_workspace.py,sha256=uX_iQQyLSLMB-Drt_9CS7p9pS1Tt0leqkK5avELAB
36
36
  pulumi/automation/errors.py,sha256=VGctmTW34HY3bZgHyLd6NJYtlW7OGkRqGiyaUPiHzn8,3406
37
37
  pulumi/automation/events.py,sha256=229awNpKDtZKzV1d_4_CidsJ7K8_rsQAaFxFIsHYkOw,21316
38
38
  pulumi/dynamic/__init__.py,sha256=uZFY_4BlGZq5Bgwp37Dm9Hqy3Uf8iDd_TVvMaK2Yz8U,1139
39
- pulumi/dynamic/__main__.py,sha256=RvqauDmHjayywL6mZL6dicsGEwm8RZc4NFiiv1yXijU,9509
39
+ pulumi/dynamic/__main__.py,sha256=QehWmvtoPkqClqYn7PeOzAtSVkJwQlpFVrHoUD_6hs4,9943
40
40
  pulumi/dynamic/config.py,sha256=50XzNBN6u_0TkCqQOVBK1zcWHWCEVV1a_JpyB7ZNWnE,1272
41
- pulumi/dynamic/dynamic.py,sha256=9TSfQItR1hMM-6dGwHbmou0stArsMRqnOKv4PBboW4A,11182
41
+ pulumi/dynamic/dynamic.py,sha256=e74-iTE_ZwOTLsWeVq25RXDMhS5_77E6Zw7DucD-LOg,11601
42
42
  pulumi/policy/__init__.py,sha256=MNs4_1_aoIZHwvoPuYSYwhvpF1RNhFeVuw2zzu4F5so,667
43
43
  pulumi/policy/__main__.py,sha256=siArVFRKjv7Jx_ufWFwVw4f2cMBc2qKqnQCp-FYAKM8,2556
44
44
  pulumi/provider/__init__.py,sha256=lvzJnqpo1pXMHsl7A8ZHhcBqaYvzQeiUxc_8JV8XhPE,800
@@ -89,10 +89,10 @@ pulumi/runtime/proto/converter_pb2.py,sha256=1LsUDGAHmUQzLUEi-opZ33xtWDgqMBYkJWt
89
89
  pulumi/runtime/proto/converter_pb2.pyi,sha256=qkj_R4C1SIIt23ToHZakD8urak6iza8lFzuMltIghcI,7469
90
90
  pulumi/runtime/proto/converter_pb2_grpc.py,sha256=QghNtwacNHDb4hQp4gyFDTSvYNeZ1vieY5uzlCuoBwY,4535
91
91
  pulumi/runtime/proto/converter_pb2_grpc.pyi,sha256=6HLummDmHQ3ZTaUZCgAh58drZveeavNSrnB9KQY_HZU,3644
92
- pulumi/runtime/proto/engine_pb2.py,sha256=q9Kj4x_kyU7cFDm6GYBHx57lsy0OhXxsV9p_vP1RN8U,3027
93
- pulumi/runtime/proto/engine_pb2.pyi,sha256=fF6-wTFc6pxSf4NxHJVL12P9leWasFu1LoUt5vH4l44,6572
94
- pulumi/runtime/proto/engine_pb2_grpc.py,sha256=2051azbpviWY9toYqmUIDzYU0dYbM5kKTQyRWdu1GqI,8248
95
- pulumi/runtime/proto/engine_pb2_grpc.pyi,sha256=q9yD2nGWdeLeOTLmeabGWl7eXC0bK7gCXlVFEq6yvRc,5869
92
+ pulumi/runtime/proto/engine_pb2.py,sha256=lhPhonDPZdhDBcuLYmUaf6FYYNgaxbSYCb3sikRZHos,3482
93
+ pulumi/runtime/proto/engine_pb2.pyi,sha256=sTjfzcCraEqFViOhl8VgJCtidpMDY7iwKoyEfSrEYks,7911
94
+ pulumi/runtime/proto/engine_pb2_grpc.py,sha256=RhNvx4yw_lYp76HGRxB_HUhwKqaZ_tdwu9KsjeJpgUk,9965
95
+ pulumi/runtime/proto/engine_pb2_grpc.pyi,sha256=mpUR23OxkYNi2Fgx1gwxIvnQ9uhM-z5M8y1qcJo1VrQ,6794
96
96
  pulumi/runtime/proto/errors_pb2.py,sha256=doVDZJqbRqTTTyY8GkmH63N5AdAvgBv5YvkFtVKHMas,1583
97
97
  pulumi/runtime/proto/errors_pb2.pyi,sha256=PZm8F6TepwJecxbQWCIWBaKd2c1hFrEmc-r_VGDUOj4,2966
98
98
  pulumi/runtime/proto/errors_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
@@ -109,8 +109,8 @@ pulumi/runtime/proto/plugin_pb2.py,sha256=Txj877DqnH1K1aVyJNwjXNlZ6tHif61_oKK1ag
109
109
  pulumi/runtime/proto/plugin_pb2.pyi,sha256=9wnWB2RfbpqhVIbJTeKgbc5UvLUsNlrLlwczWKy7_iA,7704
110
110
  pulumi/runtime/proto/plugin_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
111
111
  pulumi/runtime/proto/plugin_pb2_grpc.pyi,sha256=c58-zAPzebs9DBpctWrOfKUwNyZ_L-r4uj37mQ88duo,1009
112
- pulumi/runtime/proto/provider_pb2.py,sha256=st7uP_rPqGRbuDz7aTqJGEzSj96GURcDxvXF1iMfrnw,23682
113
- pulumi/runtime/proto/provider_pb2.pyi,sha256=aUztA7nemgHQ_ULLgLuXwD4yVdWdDLm_niGEVXF1hg4,106104
112
+ pulumi/runtime/proto/provider_pb2.py,sha256=6EDPw1GhR6RtudfJKT1G3VL293dQ5ICASK4X8xrFRCc,23627
113
+ pulumi/runtime/proto/provider_pb2.pyi,sha256=HzlQzXrx4i_b5E83VwrqDRRJal6VqKZkwM7Yr-6lLGE,104943
114
114
  pulumi/runtime/proto/provider_pb2_grpc.py,sha256=dJ7YSmFuP94ae6sDM0dZP62M2TJXUKKjO4FKqShmv6I,48053
115
115
  pulumi/runtime/proto/provider_pb2_grpc.pyi,sha256=27bmfQZnEXGD7SEf7dHQXWqsuZOQTDPuhVWRU-pJnA4,59156
116
116
  pulumi/runtime/proto/resource_pb2.py,sha256=y-7sDlE_s4IQ3Dzcgl0GAQV42jN08plOQI0aLLlqe5g,20574
@@ -146,7 +146,7 @@ pulumi/runtime/proto/testing/language_pb2.py,sha256=gllx-3VVuRToAlIpt0IvEfVPsxnQ
146
146
  pulumi/runtime/proto/testing/language_pb2.pyi,sha256=1KyoBEhlUsf6cApa4Hh0W59S3jdFoUwdrv3zhuRbbUw,10383
147
147
  pulumi/runtime/proto/testing/language_pb2_grpc.py,sha256=Lna44LwQpf8CSA03H8c49E-o9JgnRztohjJM3YDNkSI,6800
148
148
  pulumi/runtime/proto/testing/language_pb2_grpc.pyi,sha256=U1DOZIPP_vJx-qocDQbx5asRqsmb66JdUuXTLYRgULc,5008
149
- pulumi-3.215.0a1767791720.dist-info/METADATA,sha256=4cFjDJMLBEix0WN7MpiftYUZWFPgZIavbF27g28Jb_I,3795
150
- pulumi-3.215.0a1767791720.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
151
- pulumi-3.215.0a1767791720.dist-info/licenses/LICENSE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
152
- pulumi-3.215.0a1767791720.dist-info/RECORD,,
149
+ pulumi-3.216.0.dist-info/METADATA,sha256=50E81dzsQQiOoNW8WU8rbxpl8-kkHshbCcOvdm-djoE,3784
150
+ pulumi-3.216.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
151
+ pulumi-3.216.0.dist-info/licenses/LICENSE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
152
+ pulumi-3.216.0.dist-info/RECORD,,