pulumi 3.214.1__py3-none-any.whl → 3.215.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.214.1"
17
+ _VERSION = "3.215.0"
18
18
 
19
19
  version = VersionInfo.parse(_VERSION)
20
20
  """Version is the Pulumi SDK's release version."""
@@ -1430,8 +1430,14 @@ class Stack:
1430
1430
  envs = {**envs, **self.workspace.env_vars}
1431
1431
 
1432
1432
  additional_args = self.workspace.serialize_args_for_op(self.name)
1433
- args.extend(additional_args)
1434
- args.extend(["--stack", self.name])
1433
+ stack_args = ["--stack", self.name]
1434
+
1435
+ if "--" in args:
1436
+ separator_index = args.index("--")
1437
+ args[separator_index:separator_index] = additional_args + stack_args
1438
+ else:
1439
+ args.extend(additional_args + stack_args)
1440
+
1435
1441
  result = self.workspace.pulumi_command.run(
1436
1442
  args, self.workspace.work_dir, envs, on_output, on_error
1437
1443
  )
@@ -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\"\x90\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\"\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\"\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')
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=537
49
- _PARAMETERIZEREQUEST._serialized_start=540
50
- _PARAMETERIZEREQUEST._serialized_end=800
51
- _PARAMETERIZEREQUEST_PARAMETERSARGS._serialized_start=691
52
- _PARAMETERIZEREQUEST_PARAMETERSARGS._serialized_end=721
53
- _PARAMETERIZEREQUEST_PARAMETERSVALUE._serialized_start=723
54
- _PARAMETERIZEREQUEST_PARAMETERSVALUE._serialized_end=786
55
- _PARAMETERIZERESPONSE._serialized_start=802
56
- _PARAMETERIZERESPONSE._serialized_end=855
57
- _GETSCHEMAREQUEST._serialized_start=857
58
- _GETSCHEMAREQUEST._serialized_end=945
59
- _GETSCHEMARESPONSE._serialized_start=947
60
- _GETSCHEMARESPONSE._serialized_end=982
61
- _CONFIGUREREQUEST._serialized_start=985
62
- _CONFIGUREREQUEST._serialized_end=1371
63
- _CONFIGUREREQUEST_VARIABLESENTRY._serialized_start=1290
64
- _CONFIGUREREQUEST_VARIABLESENTRY._serialized_end=1338
65
- _CONFIGURERESPONSE._serialized_start=1374
66
- _CONFIGURERESPONSE._serialized_end=1532
67
- _CONFIGUREERRORMISSINGKEYS._serialized_start=1535
68
- _CONFIGUREERRORMISSINGKEYS._serialized_end=1681
69
- _CONFIGUREERRORMISSINGKEYS_MISSINGKEY._serialized_start=1634
70
- _CONFIGUREERRORMISSINGKEYS_MISSINGKEY._serialized_end=1681
71
- _INVOKEREQUEST._serialized_start=1684
72
- _INVOKEREQUEST._serialized_end=1829
73
- _INVOKERESPONSE._serialized_start=1831
74
- _INVOKERESPONSE._serialized_end=1931
75
- _CALLREQUEST._serialized_start=1934
76
- _CALLREQUEST._serialized_end=2606
77
- _CALLREQUEST_ARGUMENTDEPENDENCIES._serialized_start=2321
78
- _CALLREQUEST_ARGUMENTDEPENDENCIES._serialized_end=2357
79
- _CALLREQUEST_ARGDEPENDENCIESENTRY._serialized_start=2359
80
- _CALLREQUEST_ARGDEPENDENCIESENTRY._serialized_end=2458
81
- _CALLREQUEST_CONFIGENTRY._serialized_start=2460
82
- _CALLREQUEST_CONFIGENTRY._serialized_end=2505
83
- _CALLRESPONSE._serialized_start=2609
84
- _CALLRESPONSE._serialized_end=2923
85
- _CALLRESPONSE_RETURNDEPENDENCIES._serialized_start=2786
86
- _CALLRESPONSE_RETURNDEPENDENCIES._serialized_end=2820
87
- _CALLRESPONSE_RETURNDEPENDENCIESENTRY._serialized_start=2822
88
- _CALLRESPONSE_RETURNDEPENDENCIESENTRY._serialized_end=2923
89
- _CHECKREQUEST._serialized_start=2926
90
- _CHECKREQUEST._serialized_end=3318
91
- _CHECKREQUEST_AUTONAMINGOPTIONS._serialized_start=3145
92
- _CHECKREQUEST_AUTONAMINGOPTIONS._serialized_end=3296
93
- _CHECKREQUEST_AUTONAMINGOPTIONS_MODE._serialized_start=3251
94
- _CHECKREQUEST_AUTONAMINGOPTIONS_MODE._serialized_end=3296
95
- _CHECKRESPONSE._serialized_start=3320
96
- _CHECKRESPONSE._serialized_end=3419
97
- _CHECKFAILURE._serialized_start=3421
98
- _CHECKFAILURE._serialized_end=3469
99
- _DIFFREQUEST._serialized_start=3472
100
- _DIFFREQUEST._serialized_end=3684
101
- _PROPERTYDIFF._serialized_start=3687
102
- _PROPERTYDIFF._serialized_end=3862
103
- _PROPERTYDIFF_KIND._serialized_start=3766
104
- _PROPERTYDIFF_KIND._serialized_end=3862
105
- _DIFFRESPONSE._serialized_start=3865
106
- _DIFFRESPONSE._serialized_end=4243
107
- _DIFFRESPONSE_DETAILEDDIFFENTRY._serialized_start=4104
108
- _DIFFRESPONSE_DETAILEDDIFFENTRY._serialized_end=4180
109
- _DIFFRESPONSE_DIFFCHANGES._serialized_start=4182
110
- _DIFFRESPONSE_DIFFCHANGES._serialized_end=4243
111
- _CREATEREQUEST._serialized_start=4246
112
- _CREATEREQUEST._serialized_end=4445
113
- _CREATERESPONSE._serialized_start=4447
114
- _CREATERESPONSE._serialized_end=4551
115
- _READREQUEST._serialized_start=4554
116
- _READREQUEST._serialized_end=4806
117
- _READRESPONSE._serialized_start=4809
118
- _READRESPONSE._serialized_end=4952
119
- _UPDATEREQUEST._serialized_start=4955
120
- _UPDATEREQUEST._serialized_end=5303
121
- _UPDATERESPONSE._serialized_start=5305
122
- _UPDATERESPONSE._serialized_end=5397
123
- _DELETEREQUEST._serialized_start=5400
124
- _DELETEREQUEST._serialized_end=5675
125
- _CONSTRUCTREQUEST._serialized_start=5678
126
- _CONSTRUCTREQUEST._serialized_end=7117
127
- _CONSTRUCTREQUEST_PROPERTYDEPENDENCIES._serialized_start=6576
128
- _CONSTRUCTREQUEST_PROPERTYDEPENDENCIES._serialized_end=6612
129
- _CONSTRUCTREQUEST_CUSTOMTIMEOUTS._serialized_start=6614
130
- _CONSTRUCTREQUEST_CUSTOMTIMEOUTS._serialized_end=6678
131
- _CONSTRUCTREQUEST_CONFIGENTRY._serialized_start=2460
132
- _CONSTRUCTREQUEST_CONFIGENTRY._serialized_end=2505
133
- _CONSTRUCTREQUEST_INPUTDEPENDENCIESENTRY._serialized_start=6727
134
- _CONSTRUCTREQUEST_INPUTDEPENDENCIESENTRY._serialized_end=6833
135
- _CONSTRUCTREQUEST_PROVIDERSENTRY._serialized_start=6835
136
- _CONSTRUCTREQUEST_PROVIDERSENTRY._serialized_end=6883
137
- _CONSTRUCTREQUEST_RESOURCEHOOKSBINDING._serialized_start=6886
138
- _CONSTRUCTREQUEST_RESOURCEHOOKSBINDING._serialized_end=7043
139
- _CONSTRUCTRESPONSE._serialized_start=7120
140
- _CONSTRUCTRESPONSE._serialized_end=7419
141
- _CONSTRUCTRESPONSE_PROPERTYDEPENDENCIES._serialized_start=6576
142
- _CONSTRUCTRESPONSE_PROPERTYDEPENDENCIES._serialized_end=6612
143
- _CONSTRUCTRESPONSE_STATEDEPENDENCIESENTRY._serialized_start=7312
144
- _CONSTRUCTRESPONSE_STATEDEPENDENCIESENTRY._serialized_end=7419
145
- _ERRORRESOURCEINITFAILED._serialized_start=7422
146
- _ERRORRESOURCEINITFAILED._serialized_end=7593
147
- _GETMAPPINGREQUEST._serialized_start=7595
148
- _GETMAPPINGREQUEST._serialized_end=7645
149
- _GETMAPPINGRESPONSE._serialized_start=7647
150
- _GETMAPPINGRESPONSE._serialized_end=7699
151
- _GETMAPPINGSREQUEST._serialized_start=7701
152
- _GETMAPPINGSREQUEST._serialized_end=7734
153
- _GETMAPPINGSRESPONSE._serialized_start=7736
154
- _GETMAPPINGSRESPONSE._serialized_end=7776
155
- _VIEW._serialized_start=7779
156
- _VIEW._serialized_end=7938
157
- _RESOURCEPROVIDER._serialized_start=7941
158
- _RESOURCEPROVIDER._serialized_end=9327
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
159
159
  # @@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-2025, 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.
@@ -101,6 +101,7 @@ 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
104
105
  accept_secrets: builtins.bool
105
106
  """True if and only if the provider supports secrets. If true, the caller should pass secrets as strongly typed
106
107
  values to the provider. *Must* match the value returned in response to [](pulumirpc.ResourceProvider.Configure).
@@ -119,6 +120,14 @@ class ProviderHandshakeResponse(google.protobuf.message.Message):
119
120
  """True if the provider accepts and respects autonaming configuration that the engine provides on behalf of the
120
121
  user. *Must* match the value returned in response to [](pulumirpc.ResourceProvider.Configure).
121
122
  """
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
+ """
122
131
  def __init__(
123
132
  self,
124
133
  *,
@@ -126,8 +135,11 @@ class ProviderHandshakeResponse(google.protobuf.message.Message):
126
135
  accept_resources: builtins.bool = ...,
127
136
  accept_outputs: builtins.bool = ...,
128
137
  supports_autonaming_configuration: builtins.bool = ...,
138
+ pulumi_version_range: builtins.str | None = ...,
129
139
  ) -> 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: ...
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: ...
131
143
 
132
144
  global___ProviderHandshakeResponse = ProviderHandshakeResponse
133
145
 
@@ -1,7 +1,7 @@
1
1
  """
2
2
  @generated by mypy-protobuf. Do not edit manually!
3
3
  isort:skip_file
4
- Copyright 2016-2025, 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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pulumi
3
- Version: 3.214.1
3
+ Version: 3.215.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=NykLh2xVU0gaS8gy0OkZmThk-6QknZwkpUsV6wYJ7c8,733
4
+ pulumi/_version.py,sha256=naP0pYBmB3g3e8QzxLcknCOMYrEQOEGYVtX44YErWis,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
@@ -29,7 +29,7 @@ pulumi/automation/_remote_stack.py,sha256=tpOq-CG0YiYYm3eLHB4RRyuQkRTNCc2jh_kdUM
29
29
  pulumi/automation/_remote_workspace.py,sha256=MZO7lLm6JmC8Y1aZm5yj8zTJlTC7XY8GVAHASxPMZy4,8503
30
30
  pulumi/automation/_representable.py,sha256=i3YOzLhchw6GYwXpD1UD2Xq2KoG6OpXXnzoaNYCjHig,904
31
31
  pulumi/automation/_server.py,sha256=kLMBcToo0F9G-V6W1z9_yJjMnK4CCi4e2Dzwl7zxPKk,5751
32
- pulumi/automation/_stack.py,sha256=Arbl1UZhM9HJwpkMwfBuBOh6Z7wHk_2p7Ytz10AY9Po,69292
32
+ pulumi/automation/_stack.py,sha256=SJF6wyncsW-jjZh7G4FIJjyRS7hn_8dxOnT6y_3qpPs,69478
33
33
  pulumi/automation/_stack_settings.py,sha256=lL6GwSzwY66SX_T8Q7DZ71Ro8xlwbGVdd6tGYOhHC2Q,2912
34
34
  pulumi/automation/_tag.py,sha256=sEMWGfHrwnNK8RiPj0XygUBZ4HW7zh6jcJy9ha7TvvA,741
35
35
  pulumi/automation/_workspace.py,sha256=uX_iQQyLSLMB-Drt_9CS7p9pS1Tt0leqkK5avELABQ8,16752
@@ -109,10 +109,10 @@ 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=Z5svQ0_TzEIl2zFzJq98B1Hu51ww1-6WPFyMtYBwPoc,23579
113
- pulumi/runtime/proto/provider_pb2.pyi,sha256=3OTA0eTVK1FwgSmDXSWyKPJyX-nNvxQBiNKZNuhOod4,104943
112
+ pulumi/runtime/proto/provider_pb2.py,sha256=st7uP_rPqGRbuDz7aTqJGEzSj96GURcDxvXF1iMfrnw,23682
113
+ pulumi/runtime/proto/provider_pb2.pyi,sha256=aUztA7nemgHQ_ULLgLuXwD4yVdWdDLm_niGEVXF1hg4,106104
114
114
  pulumi/runtime/proto/provider_pb2_grpc.py,sha256=dJ7YSmFuP94ae6sDM0dZP62M2TJXUKKjO4FKqShmv6I,48053
115
- pulumi/runtime/proto/provider_pb2_grpc.pyi,sha256=huRaOEhXquSxq6Aqi4p3IiTcC8Vc909NbqKZJguvF1o,59156
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
117
117
  pulumi/runtime/proto/resource_pb2.pyi,sha256=lzXfbTyqYWBQtdNzt-w4F3ddlSD3Vu1bv5kBHX7xstQ,63783
118
118
  pulumi/runtime/proto/resource_pb2_grpc.py,sha256=h4AUzLXpttQ8FiexUmRknVp5shcu0N1ESbdoadF5IzY,20171
@@ -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.214.1.dist-info/METADATA,sha256=D4Xerl2Tz8B76wBSeSuH3vba0D7kRDo5o27fBfj4XUk,3784
150
- pulumi-3.214.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
151
- pulumi-3.214.1.dist-info/licenses/LICENSE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
152
- pulumi-3.214.1.dist-info/RECORD,,
149
+ pulumi-3.215.0.dist-info/METADATA,sha256=P6r4WgZbtdk-b0p5_0ZeTvyxsg8_7gA_2gCVHTVjblE,3784
150
+ pulumi-3.215.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
151
+ pulumi-3.215.0.dist-info/licenses/LICENSE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
152
+ pulumi-3.215.0.dist-info/RECORD,,