From 2e3b33ccad83c2a1db20a4c07bb253ad24e686a3 Mon Sep 17 00:00:00 2001 From: Pravin Pushkar Date: Mon, 5 Jun 2023 17:19:57 +0530 Subject: [PATCH] Updating to dapr runtime v1.11.0-rc.7 Signed-off-by: Pravin Pushkar --- dapr/proto/common/v1/common.proto | 4 +- dapr/proto/runtime/v1/dapr.proto | 399 +- src/dapr/proto/common/v1/common.pb.cc | 22 +- src/dapr/proto/common/v1/common.pb.h | 16 +- src/dapr/proto/runtime/v1/dapr.grpc.pb.cc | 536 +- src/dapr/proto/runtime/v1/dapr.grpc.pb.h | 2138 ++- src/dapr/proto/runtime/v1/dapr.pb.cc | 12128 ++++++++++++-- src/dapr/proto/runtime/v1/dapr.pb.h | 17564 ++++++++++++++------ 8 files changed, 25982 insertions(+), 6825 deletions(-) diff --git a/dapr/proto/common/v1/common.proto b/dapr/proto/common/v1/common.proto index e3cb334..1e63b88 100644 --- a/dapr/proto/common/v1/common.proto +++ b/dapr/proto/common/v1/common.proto @@ -77,7 +77,7 @@ message InvokeRequest { HTTPExtension http_extension = 4; } -// InvokeResponse is the response message inclduing data and its content type +// InvokeResponse is the response message including data and its content type // from app callback. // This message is used in InvokeService of Dapr gRPC Service and OnInvoke // of AppCallback gRPC service. @@ -99,7 +99,7 @@ message StreamPayload { bytes data = 1; // Sequence number. This is a counter that starts from 0 and increments by 1 on each chunk sent. - uint32 seq = 2; + uint64 seq = 2; } // StateItem represents state key, value, and additional options to save state. diff --git a/dapr/proto/runtime/v1/dapr.proto b/dapr/proto/runtime/v1/dapr.proto index fcbd8df..c6ca405 100644 --- a/dapr/proto/runtime/v1/dapr.proto +++ b/dapr/proto/runtime/v1/dapr.proto @@ -17,6 +17,7 @@ package dapr.proto.runtime.v1; import "google/protobuf/any.proto"; import "google/protobuf/empty.proto"; +import "google/protobuf/timestamp.proto"; import "dapr/proto/common/v1/common.proto"; option csharp_namespace = "Dapr.Client.Autogen.Grpc.v1"; @@ -93,32 +94,80 @@ service Dapr { // GetConfiguration gets configuration from configuration store. rpc GetConfigurationAlpha1(GetConfigurationRequest) returns (GetConfigurationResponse) {} + // GetConfiguration gets configuration from configuration store. + rpc GetConfiguration(GetConfigurationRequest) returns (GetConfigurationResponse) {} + // SubscribeConfiguration gets configuration from configuration store and subscribe the updates event by grpc stream rpc SubscribeConfigurationAlpha1(SubscribeConfigurationRequest) returns (stream SubscribeConfigurationResponse) {} + // SubscribeConfiguration gets configuration from configuration store and subscribe the updates event by grpc stream + rpc SubscribeConfiguration(SubscribeConfigurationRequest) returns (stream SubscribeConfigurationResponse) {} + // UnSubscribeConfiguration unsubscribe the subscription of configuration rpc UnsubscribeConfigurationAlpha1(UnsubscribeConfigurationRequest) returns (UnsubscribeConfigurationResponse) {} + // UnSubscribeConfiguration unsubscribe the subscription of configuration + rpc UnsubscribeConfiguration(UnsubscribeConfigurationRequest) returns (UnsubscribeConfigurationResponse) {} + // TryLockAlpha1 tries to get a lock with an expiry. rpc TryLockAlpha1(TryLockRequest)returns (TryLockResponse) {} // UnlockAlpha1 unlocks a lock. rpc UnlockAlpha1(UnlockRequest)returns (UnlockResponse) {} + // EncryptAlpha1 encrypts a message using the Dapr encryption scheme and a key stored in the vault. + rpc EncryptAlpha1(stream EncryptRequest) returns (stream EncryptResponse); + + // DecryptAlpha1 decrypts a message using the Dapr encryption scheme and a key stored in the vault. + rpc DecryptAlpha1(stream DecryptRequest) returns (stream DecryptResponse); + // Gets metadata of the sidecar rpc GetMetadata (google.protobuf.Empty) returns (GetMetadataResponse) {} // Sets value in extended metadata of the sidecar rpc SetMetadata (SetMetadataRequest) returns (google.protobuf.Empty) {} - // Start Workflow - rpc StartWorkflowAlpha1 (StartWorkflowRequest) returns (WorkflowReference) {} + // SubtleGetKeyAlpha1 returns the public part of an asymmetric key stored in the vault. + rpc SubtleGetKeyAlpha1(SubtleGetKeyRequest) returns (SubtleGetKeyResponse); + + // SubtleEncryptAlpha1 encrypts a small message using a key stored in the vault. + rpc SubtleEncryptAlpha1(SubtleEncryptRequest) returns (SubtleEncryptResponse); + + // SubtleDecryptAlpha1 decrypts a small message using a key stored in the vault. + rpc SubtleDecryptAlpha1(SubtleDecryptRequest) returns (SubtleDecryptResponse); - // Get Workflow details + // SubtleWrapKeyAlpha1 wraps a key using a key stored in the vault. + rpc SubtleWrapKeyAlpha1(SubtleWrapKeyRequest) returns (SubtleWrapKeyResponse); + + // SubtleUnwrapKeyAlpha1 unwraps a key using a key stored in the vault. + rpc SubtleUnwrapKeyAlpha1(SubtleUnwrapKeyRequest) returns (SubtleUnwrapKeyResponse); + + // SubtleSignAlpha1 signs a message using a key stored in the vault. + rpc SubtleSignAlpha1(SubtleSignRequest) returns (SubtleSignResponse); + + // SubtleVerifyAlpha1 verifies the signature of a message using a key stored in the vault. + rpc SubtleVerifyAlpha1(SubtleVerifyRequest) returns (SubtleVerifyResponse); + + // Starts a new instance of a workflow + rpc StartWorkflowAlpha1 (StartWorkflowRequest) returns (StartWorkflowResponse) {} + + // Gets details about a started workflow instance rpc GetWorkflowAlpha1 (GetWorkflowRequest) returns (GetWorkflowResponse) {} - // Terminate Workflow - rpc TerminateWorkflowAlpha1 (TerminateWorkflowRequest) returns (TerminateWorkflowResponse) {} + // Purge Workflow + rpc PurgeWorkflowAlpha1 (PurgeWorkflowRequest) returns (google.protobuf.Empty) {} + + // Terminates a running workflow instance + rpc TerminateWorkflowAlpha1 (TerminateWorkflowRequest) returns (google.protobuf.Empty) {} + + // Pauses a running workflow instance + rpc PauseWorkflowAlpha1 (PauseWorkflowRequest) returns (google.protobuf.Empty) {} + + // Resumes a paused workflow instance + rpc ResumeWorkflowAlpha1 (ResumeWorkflowRequest) returns (google.protobuf.Empty) {} + + // Raise an event to a running workflow instance + rpc RaiseEventWorkflowAlpha1 (RaiseEventWorkflowRequest) returns (google.protobuf.Empty) {} // Shutdown the sidecar rpc Shutdown (google.protobuf.Empty) returns (google.protobuf.Empty) {} @@ -243,7 +292,7 @@ message SaveStateRequest { // QueryStateRequest is the message to query state store. message QueryStateRequest { // The name of state store. - string store_name = 1; + string store_name = 1 [json_name = "storeName"]; // The query in JSON format. string query = 2; @@ -380,7 +429,7 @@ message InvokeBindingResponse { // GetSecretRequest is the message to get secret from secret store. message GetSecretRequest { // The name of secret store. - string store_name = 1; + string store_name = 1 [json_name = "storeName"]; // The name of secret key. string key = 2; @@ -399,7 +448,7 @@ message GetSecretResponse { // GetBulkSecretRequest is the message to get the secrets from secret store. message GetBulkSecretRequest { // The name of secret store. - string store_name = 1; + string store_name = 1 [json_name = "storeName"]; // The metadata which will be sent to secret store components. map metadata = 2; @@ -507,6 +556,11 @@ message TransactionalActorStateOperation { string operationType = 1; string key = 2; google.protobuf.Any value = 3; + // The metadata used for transactional operations. + // + // Common metadata property: + // - ttlInSeconds : the time to live in seconds for the stored value. + map metadata = 4; } // InvokeActorRequest is the message to call an actor. @@ -624,11 +678,11 @@ message UnsubscribeConfigurationResponse { message TryLockRequest { // Required. The lock store name,e.g. `redis`. - string store_name = 1; + string store_name = 1 [json_name = "storeName"]; // Required. resource_id is the lock key. e.g. `order_id_111` // It stands for "which resource I want to protect" - string resource_id = 2; + string resource_id = 2 [json_name = "resourceId"]; // Required. lock_owner indicate the identifier of lock owner. // You can generate a uuid as lock_owner.For example,in golang: @@ -645,24 +699,21 @@ message TryLockRequest { // we find that in some lock services users can't get the current lock owner.Actually users don't need it at all. // 3. When reentrant lock is needed,the existing lock_owner is required to identify client and check "whether this client can reenter this lock". // So this field in the request shouldn't be removed. - string lock_owner = 3; + string lock_owner = 3 [json_name = "lockOwner"]; // Required. The time before expiry.The time unit is second. - int32 expiryInSeconds = 4; + int32 expiry_in_seconds = 4 [json_name = "expiryInSeconds"]; } - message TryLockResponse { - bool success = 1; } message UnlockRequest { - string store_name = 1; + string store_name = 1 [json_name = "storeName"]; // resource_id is the lock key. - string resource_id = 2; - - string lock_owner = 3; + string resource_id = 2 [json_name = "resourceId"]; + string lock_owner = 3 [json_name = "lockOwner"]; } message UnlockResponse { @@ -676,34 +727,318 @@ message UnlockResponse { Status status = 1; } -message WorkflowReference { - string instance_id = 1; +// SubtleGetKeyRequest is the request object for SubtleGetKeyAlpha1. +message SubtleGetKeyRequest { + enum KeyFormat { + // PEM (PKIX) (default) + PEM = 0; + // JSON (JSON Web Key) as string + JSON = 1; + } + + // Name of the component + string component_name = 1 [json_name="componentName"]; + // Name (or name/version) of the key to use in the key vault + string name = 2; + // Response format + KeyFormat format = 3; +} + +// SubtleGetKeyResponse is the response for SubtleGetKeyAlpha1. +message SubtleGetKeyResponse { + // Name (or name/version) of the key. + // This is returned as response too in case there is a version. + string name = 1; + // Public key, encoded in the requested format + string public_key = 2 [json_name="publicKey"]; +} + +// SubtleEncryptRequest is the request for SubtleEncryptAlpha1. +message SubtleEncryptRequest { + // Name of the component + string component_name = 1 [json_name="componentName"]; + // Message to encrypt. + bytes plaintext = 2; + // Algorithm to use, as in the JWA standard. + string algorithm = 3; + // Name (or name/version) of the key. + string key_name = 4 [json_name="keyName"]; + // Nonce / initialization vector. + // Ignored with asymmetric ciphers. + bytes nonce = 5; + // Associated Data when using AEAD ciphers (optional). + bytes associated_data = 6 [json_name="associatedData"]; } +// SubtleEncryptResponse is the response for SubtleEncryptAlpha1. +message SubtleEncryptResponse { + // Encrypted ciphertext. + bytes ciphertext = 1; + // Authentication tag. + // This is nil when not using an authenticated cipher. + bytes tag = 2; +} + +// SubtleDecryptRequest is the request for SubtleDecryptAlpha1. +message SubtleDecryptRequest { + // Name of the component + string component_name = 1 [json_name="componentName"]; + // Message to decrypt. + bytes ciphertext = 2; + // Algorithm to use, as in the JWA standard. + string algorithm = 3; + // Name (or name/version) of the key. + string key_name = 4 [json_name="keyName"]; + // Nonce / initialization vector. + // Ignored with asymmetric ciphers. + bytes nonce = 5; + // Authentication tag. + // This is nil when not using an authenticated cipher. + bytes tag = 6; + // Associated Data when using AEAD ciphers (optional). + bytes associated_data = 7 [json_name="associatedData"]; +} + +// SubtleDecryptResponse is the response for SubtleDecryptAlpha1. +message SubtleDecryptResponse { + // Decrypted plaintext. + bytes plaintext = 1; +} + +// SubtleWrapKeyRequest is the request for SubtleWrapKeyAlpha1. +message SubtleWrapKeyRequest { + // Name of the component + string component_name = 1 [json_name="componentName"]; + // Key to wrap + bytes plaintext_key = 2 [json_name="plaintextKey"]; + // Algorithm to use, as in the JWA standard. + string algorithm = 3; + // Name (or name/version) of the key. + string key_name = 4 [json_name="keyName"]; + // Nonce / initialization vector. + // Ignored with asymmetric ciphers. + bytes nonce = 5; + // Associated Data when using AEAD ciphers (optional). + bytes associated_data = 6 [json_name="associatedData"]; +} + +// SubtleWrapKeyResponse is the response for SubtleWrapKeyAlpha1. +message SubtleWrapKeyResponse { + // Wrapped key. + bytes wrapped_key = 1 [json_name="wrappedKey"]; + // Authentication tag. + // This is nil when not using an authenticated cipher. + bytes tag = 2; +} + +// SubtleUnwrapKeyRequest is the request for SubtleUnwrapKeyAlpha1. +message SubtleUnwrapKeyRequest { + // Name of the component + string component_name = 1 [json_name="componentName"]; + // Wrapped key. + bytes wrapped_key = 2 [json_name="wrappedKey"]; + // Algorithm to use, as in the JWA standard. + string algorithm = 3; + // Name (or name/version) of the key. + string key_name = 4 [json_name="keyName"]; + // Nonce / initialization vector. + // Ignored with asymmetric ciphers. + bytes nonce = 5; + // Authentication tag. + // This is nil when not using an authenticated cipher. + bytes tag = 6; + // Associated Data when using AEAD ciphers (optional). + bytes associated_data = 7 [json_name="associatedData"]; +} + +// SubtleUnwrapKeyResponse is the response for SubtleUnwrapKeyAlpha1. +message SubtleUnwrapKeyResponse { + // Key in plaintext + bytes plaintext_key = 1 [json_name="plaintextKey"]; +} + +// SubtleSignRequest is the request for SubtleSignAlpha1. +message SubtleSignRequest { + // Name of the component + string component_name = 1 [json_name="componentName"]; + // Digest to sign. + bytes digest = 2; + // Algorithm to use, as in the JWA standard. + string algorithm = 3; + // Name (or name/version) of the key. + string key_name = 4 [json_name="keyName"]; +} + +// SubtleSignResponse is the response for SubtleSignAlpha1. +message SubtleSignResponse { + // The signature that was computed + bytes signature = 1; +} + +// SubtleVerifyRequest is the request for SubtleVerifyAlpha1. +message SubtleVerifyRequest { + // Name of the component + string component_name = 1 [json_name="componentName"]; + // Digest of the message. + bytes digest = 2; + // Algorithm to use, as in the JWA standard. + string algorithm = 3; + // Name (or name/version) of the key. + string key_name = 4 [json_name="keyName"]; + // Signature to verify. + bytes signature = 5; +} + +// SubtleVerifyResponse is the response for SubtleVerifyAlpha1. +message SubtleVerifyResponse { + // True if the signature is valid. + bool valid = 1; +} + +// EncryptRequest is the request for EncryptAlpha1. +message EncryptRequest { + // Request details. Must be present in the first message only. + EncryptRequestOptions options = 1; + // Chunk of data of arbitrary size. + common.v1.StreamPayload payload = 2; +} + +// EncryptRequestOptions contains options for the first message in the EncryptAlpha1 request. +message EncryptRequestOptions { + // Name of the component. Required. + string component_name = 1 [json_name="componentName"]; + // Name (or name/version) of the key. Required. + string key_name = 2 [json_name="keyName"]; + // Key wrapping algorithm to use. Required. + // Supported options include: A256KW (alias: AES), A128CBC, A192CBC, A256CBC, RSA-OAEP-256 (alias: RSA). + string key_wrap_algorithm = 3; + // Cipher used to encrypt data (optional): "aes-gcm" (default) or "chacha20-poly1305" + string data_encryption_cipher = 10; + // If true, the encrypted document does not contain a key reference. + // In that case, calls to the Decrypt method must provide a key reference (name or name/version). + // Defaults to false. + bool omit_decryption_key_name = 11 [json_name="omitDecryptionKeyName"]; + // Key reference to embed in the encrypted document (name or name/version). + // This is helpful if the reference of the key used to decrypt the document is different from the one used to encrypt it. + // If unset, uses the reference of the key used to encrypt the document (this is the default behavior). + // This option is ignored if omit_decryption_key_name is true. + string decryption_key_name = 12 [json_name="decryptionKeyName"]; +} + +// EncryptResponse is the response for EncryptAlpha1. +message EncryptResponse { + // Chunk of data. + common.v1.StreamPayload payload = 1; +} + +// DecryptRequest is the request for DecryptAlpha1. +message DecryptRequest { + // Request details. Must be present in the first message only. + DecryptRequestOptions options = 1; + // Chunk of data of arbitrary size. + common.v1.StreamPayload payload = 2; +} + +// DecryptRequestOptions contains options for the first message in the DecryptAlpha1 request. +message DecryptRequestOptions { + // Name of the component + string component_name = 1 [json_name="componentName"]; + // Name (or name/version) of the key to decrypt the message. + // Overrides any key reference included in the message if present. + // This is required if the message doesn't include a key reference (i.e. was created with omit_decryption_key_name set to true). + string key_name = 12 [json_name="keyName"]; +} + +// DecryptResponse is the response for DecryptAlpha1. +message DecryptResponse { + // Chunk of data. + common.v1.StreamPayload payload = 1; +} + +// GetWorkflowRequest is the request for GetWorkflowAlpha1. message GetWorkflowRequest { - string instance_id = 1; - string workflow_type = 2; - string workflow_component = 3; + // ID of the workflow instance to query. + string instance_id = 1 [json_name = "instanceID"]; + // Name of the workflow component. + string workflow_component = 2 [json_name = "workflowComponent"]; } +// GetWorkflowResponse is the response for GetWorkflowAlpha1. message GetWorkflowResponse { - string instance_id = 1; - int64 start_time = 2; - map metadata = 3; + // ID of the workflow instance. + string instance_id = 1 [json_name = "instanceID"]; + // Name of the workflow. + string workflow_name = 2 [json_name = "workflowName"]; + // The time at which the workflow instance was created. + google.protobuf.Timestamp created_at = 3 [json_name = "createdAt"]; + // The last time at which the workflow instance had its state changed. + google.protobuf.Timestamp last_updated_at = 4 [json_name = "lastUpdatedAt"]; + // The current status of the workflow instance, for example, "PENDING", "RUNNING", "SUSPENDED", "COMPLETED", "FAILED", and "TERMINATED". + string runtime_status = 5 [json_name = "runtimeStatus"]; + // Additional component-specific properties of the workflow instance. + map properties = 6; } +// StartWorkflowRequest is the request for StartWorkflowAlpha1. message StartWorkflowRequest { - string instance_id = 1; - string workflow_component = 2; - string workflow_name = 3; + // The ID to assign to the started workflow instance. If empty, a random ID is generated. + string instance_id = 1 [json_name = "instanceID"]; + // Name of the workflow component. + string workflow_component = 2 [json_name = "workflowComponent"]; + // Name of the workflow. + string workflow_name = 3 [json_name = "workflowName"]; + // Additional component-specific options for starting the workflow instance. map options = 4; + // Input data for the workflow instance. bytes input = 5; } +// StartWorkflowResponse is the response for StartWorkflowAlpha1. +message StartWorkflowResponse { + // ID of the started workflow instance. + string instance_id = 1 [json_name = "instanceID"]; +} + +// TerminateWorkflowRequest is the request for TerminateWorkflowAlpha1. message TerminateWorkflowRequest { - string instance_id = 1; - string workflow_component = 2; + // ID of the workflow instance to terminate. + string instance_id = 1 [json_name = "instanceID"]; + // Name of the workflow component. + string workflow_component = 2 [json_name = "workflowComponent"]; } -message TerminateWorkflowResponse { +// PauseWorkflowRequest is the request for PauseWorkflowAlpha1. +message PauseWorkflowRequest { + // ID of the workflow instance to pause. + string instance_id = 1 [json_name = "instanceID"]; + // Name of the workflow component. + string workflow_component = 2 [json_name = "workflowComponent"]; } + +// ResumeWorkflowRequest is the request for ResumeWorkflowAlpha1. +message ResumeWorkflowRequest { + // ID of the workflow instance to resume. + string instance_id = 1 [json_name = "instanceID"]; + // Name of the workflow component. + string workflow_component = 2 [json_name = "workflowComponent"]; +} + +// RaiseEventWorkflowRequest is the request for RaiseEventWorkflowAlpha1. +message RaiseEventWorkflowRequest { + // ID of the workflow instance to raise an event for. + string instance_id = 1 [json_name = "instanceID"]; + // Name of the workflow component. + string workflow_component = 2 [json_name = "workflowComponent"]; + // Name of the event. + string event_name = 3 [json_name = "eventName"]; + // Data associated with the event. + bytes event_data = 4; +} + +// PurgeWorkflowRequest is the request for PurgeWorkflowAlpha1. +message PurgeWorkflowRequest { + // ID of the workflow instance to purge. + string instance_id = 1 [json_name = "instanceID"]; + // Name of the workflow component. + string workflow_component = 2 [json_name = "workflowComponent"]; +} \ No newline at end of file diff --git a/src/dapr/proto/common/v1/common.pb.cc b/src/dapr/proto/common/v1/common.pb.cc index 01d3ce0..85ff3da 100644 --- a/src/dapr/proto/common/v1/common.pb.cc +++ b/src/dapr/proto/common/v1/common.pb.cc @@ -391,7 +391,7 @@ void AddDescriptorsImpl() { "xtension\"J\n\016InvokeResponse\022\"\n\004data\030\001 \001(\013" "2\024.google.protobuf.Any\022\024\n\014content_type\030\002" " \001(\t\"*\n\rStreamPayload\022\014\n\004data\030\001 \001(\014\022\013\n\003s" - "eq\030\002 \001(\r\"\370\001\n\tStateItem\022\013\n\003key\030\001 \001(\t\022\r\n\005v" + "eq\030\002 \001(\004\"\370\001\n\tStateItem\022\013\n\003key\030\001 \001(\t\022\r\n\005v" "alue\030\002 \001(\014\022(\n\004etag\030\003 \001(\0132\032.dapr.proto.co" "mmon.v1.Etag\022\?\n\010metadata\030\004 \003(\0132-.dapr.pr" "oto.common.v1.StateItem.MetadataEntry\0223\n" @@ -1540,7 +1540,7 @@ StreamPayload::StreamPayload(const StreamPayload& from) void StreamPayload::SharedCtor() { data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - seq_ = 0u; + seq_ = GOOGLE_ULONGLONG(0); } StreamPayload::~StreamPayload() { @@ -1573,7 +1573,7 @@ void StreamPayload::Clear() { (void) cached_has_bits; data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - seq_ = 0u; + seq_ = GOOGLE_ULONGLONG(0); _internal_metadata_.Clear(); } @@ -1599,13 +1599,13 @@ bool StreamPayload::MergePartialFromCodedStream( break; } - // uint32 seq = 2; + // uint64 seq = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(16u /* 16 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< - ::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_UINT32>( + ::google::protobuf::uint64, ::google::protobuf::internal::WireFormatLite::TYPE_UINT64>( input, &seq_))); } else { goto handle_unusual; @@ -1645,9 +1645,9 @@ void StreamPayload::SerializeWithCachedSizes( 1, this->data(), output); } - // uint32 seq = 2; + // uint64 seq = 2; if (this->seq() != 0) { - ::google::protobuf::internal::WireFormatLite::WriteUInt32(2, this->seq(), output); + ::google::protobuf::internal::WireFormatLite::WriteUInt64(2, this->seq(), output); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { @@ -1671,9 +1671,9 @@ ::google::protobuf::uint8* StreamPayload::InternalSerializeWithCachedSizesToArra 1, this->data(), target); } - // uint32 seq = 2; + // uint64 seq = 2; if (this->seq() != 0) { - target = ::google::protobuf::internal::WireFormatLite::WriteUInt32ToArray(2, this->seq(), target); + target = ::google::protobuf::internal::WireFormatLite::WriteUInt64ToArray(2, this->seq(), target); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { @@ -1700,10 +1700,10 @@ size_t StreamPayload::ByteSizeLong() const { this->data()); } - // uint32 seq = 2; + // uint64 seq = 2; if (this->seq() != 0) { total_size += 1 + - ::google::protobuf::internal::WireFormatLite::UInt32Size( + ::google::protobuf::internal::WireFormatLite::UInt64Size( this->seq()); } diff --git a/src/dapr/proto/common/v1/common.pb.h b/src/dapr/proto/common/v1/common.pb.h index d9654c5..50d42dd 100644 --- a/src/dapr/proto/common/v1/common.pb.h +++ b/src/dapr/proto/common/v1/common.pb.h @@ -719,18 +719,18 @@ class StreamPayload : public ::google::protobuf::Message /* @@protoc_insertion_p ::std::string* release_data(); void set_allocated_data(::std::string* data); - // uint32 seq = 2; + // uint64 seq = 2; void clear_seq(); static const int kSeqFieldNumber = 2; - ::google::protobuf::uint32 seq() const; - void set_seq(::google::protobuf::uint32 value); + ::google::protobuf::uint64 seq() const; + void set_seq(::google::protobuf::uint64 value); // @@protoc_insertion_point(class_scope:dapr.proto.common.v1.StreamPayload) private: ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::ArenaStringPtr data_; - ::google::protobuf::uint32 seq_; + ::google::protobuf::uint64 seq_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto::TableStruct; }; @@ -1815,15 +1815,15 @@ inline void StreamPayload::set_allocated_data(::std::string* data) { // @@protoc_insertion_point(field_set_allocated:dapr.proto.common.v1.StreamPayload.data) } -// uint32 seq = 2; +// uint64 seq = 2; inline void StreamPayload::clear_seq() { - seq_ = 0u; + seq_ = GOOGLE_ULONGLONG(0); } -inline ::google::protobuf::uint32 StreamPayload::seq() const { +inline ::google::protobuf::uint64 StreamPayload::seq() const { // @@protoc_insertion_point(field_get:dapr.proto.common.v1.StreamPayload.seq) return seq_; } -inline void StreamPayload::set_seq(::google::protobuf::uint32 value) { +inline void StreamPayload::set_seq(::google::protobuf::uint64 value) { seq_ = value; // @@protoc_insertion_point(field_set:dapr.proto.common.v1.StreamPayload.seq) diff --git a/src/dapr/proto/runtime/v1/dapr.grpc.pb.cc b/src/dapr/proto/runtime/v1/dapr.grpc.pb.cc index 26afc38..e532ddc 100644 --- a/src/dapr/proto/runtime/v1/dapr.grpc.pb.cc +++ b/src/dapr/proto/runtime/v1/dapr.grpc.pb.cc @@ -43,15 +43,31 @@ static const char* Dapr_method_names[] = { "/dapr.proto.runtime.v1.Dapr/ExecuteActorStateTransaction", "/dapr.proto.runtime.v1.Dapr/InvokeActor", "/dapr.proto.runtime.v1.Dapr/GetConfigurationAlpha1", + "/dapr.proto.runtime.v1.Dapr/GetConfiguration", "/dapr.proto.runtime.v1.Dapr/SubscribeConfigurationAlpha1", + "/dapr.proto.runtime.v1.Dapr/SubscribeConfiguration", "/dapr.proto.runtime.v1.Dapr/UnsubscribeConfigurationAlpha1", + "/dapr.proto.runtime.v1.Dapr/UnsubscribeConfiguration", "/dapr.proto.runtime.v1.Dapr/TryLockAlpha1", "/dapr.proto.runtime.v1.Dapr/UnlockAlpha1", + "/dapr.proto.runtime.v1.Dapr/EncryptAlpha1", + "/dapr.proto.runtime.v1.Dapr/DecryptAlpha1", "/dapr.proto.runtime.v1.Dapr/GetMetadata", "/dapr.proto.runtime.v1.Dapr/SetMetadata", + "/dapr.proto.runtime.v1.Dapr/SubtleGetKeyAlpha1", + "/dapr.proto.runtime.v1.Dapr/SubtleEncryptAlpha1", + "/dapr.proto.runtime.v1.Dapr/SubtleDecryptAlpha1", + "/dapr.proto.runtime.v1.Dapr/SubtleWrapKeyAlpha1", + "/dapr.proto.runtime.v1.Dapr/SubtleUnwrapKeyAlpha1", + "/dapr.proto.runtime.v1.Dapr/SubtleSignAlpha1", + "/dapr.proto.runtime.v1.Dapr/SubtleVerifyAlpha1", "/dapr.proto.runtime.v1.Dapr/StartWorkflowAlpha1", "/dapr.proto.runtime.v1.Dapr/GetWorkflowAlpha1", + "/dapr.proto.runtime.v1.Dapr/PurgeWorkflowAlpha1", "/dapr.proto.runtime.v1.Dapr/TerminateWorkflowAlpha1", + "/dapr.proto.runtime.v1.Dapr/PauseWorkflowAlpha1", + "/dapr.proto.runtime.v1.Dapr/ResumeWorkflowAlpha1", + "/dapr.proto.runtime.v1.Dapr/RaiseEventWorkflowAlpha1", "/dapr.proto.runtime.v1.Dapr/Shutdown", }; @@ -84,16 +100,32 @@ Dapr::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel) , rpcmethod_ExecuteActorStateTransaction_(Dapr_method_names[19], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) , rpcmethod_InvokeActor_(Dapr_method_names[20], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) , rpcmethod_GetConfigurationAlpha1_(Dapr_method_names[21], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_SubscribeConfigurationAlpha1_(Dapr_method_names[22], ::grpc::internal::RpcMethod::SERVER_STREAMING, channel) - , rpcmethod_UnsubscribeConfigurationAlpha1_(Dapr_method_names[23], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_TryLockAlpha1_(Dapr_method_names[24], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_UnlockAlpha1_(Dapr_method_names[25], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetMetadata_(Dapr_method_names[26], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_SetMetadata_(Dapr_method_names[27], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_StartWorkflowAlpha1_(Dapr_method_names[28], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_GetWorkflowAlpha1_(Dapr_method_names[29], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_TerminateWorkflowAlpha1_(Dapr_method_names[30], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_Shutdown_(Dapr_method_names[31], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetConfiguration_(Dapr_method_names[22], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_SubscribeConfigurationAlpha1_(Dapr_method_names[23], ::grpc::internal::RpcMethod::SERVER_STREAMING, channel) + , rpcmethod_SubscribeConfiguration_(Dapr_method_names[24], ::grpc::internal::RpcMethod::SERVER_STREAMING, channel) + , rpcmethod_UnsubscribeConfigurationAlpha1_(Dapr_method_names[25], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_UnsubscribeConfiguration_(Dapr_method_names[26], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_TryLockAlpha1_(Dapr_method_names[27], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_UnlockAlpha1_(Dapr_method_names[28], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_EncryptAlpha1_(Dapr_method_names[29], ::grpc::internal::RpcMethod::BIDI_STREAMING, channel) + , rpcmethod_DecryptAlpha1_(Dapr_method_names[30], ::grpc::internal::RpcMethod::BIDI_STREAMING, channel) + , rpcmethod_GetMetadata_(Dapr_method_names[31], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_SetMetadata_(Dapr_method_names[32], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_SubtleGetKeyAlpha1_(Dapr_method_names[33], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_SubtleEncryptAlpha1_(Dapr_method_names[34], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_SubtleDecryptAlpha1_(Dapr_method_names[35], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_SubtleWrapKeyAlpha1_(Dapr_method_names[36], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_SubtleUnwrapKeyAlpha1_(Dapr_method_names[37], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_SubtleSignAlpha1_(Dapr_method_names[38], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_SubtleVerifyAlpha1_(Dapr_method_names[39], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_StartWorkflowAlpha1_(Dapr_method_names[40], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_GetWorkflowAlpha1_(Dapr_method_names[41], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_PurgeWorkflowAlpha1_(Dapr_method_names[42], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_TerminateWorkflowAlpha1_(Dapr_method_names[43], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_PauseWorkflowAlpha1_(Dapr_method_names[44], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_ResumeWorkflowAlpha1_(Dapr_method_names[45], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_RaiseEventWorkflowAlpha1_(Dapr_method_names[46], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_Shutdown_(Dapr_method_names[47], ::grpc::internal::RpcMethod::NORMAL_RPC, channel) {} ::grpc::Status Dapr::Stub::InvokeService(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::InvokeServiceRequest& request, ::dapr::proto::common::v1::InvokeResponse* response) { @@ -448,6 +480,22 @@ ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationR return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::GetConfigurationResponse>::Create(channel_.get(), cq, rpcmethod_GetConfigurationAlpha1_, context, request, false); } +::grpc::Status Dapr::Stub::GetConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_GetConfiguration_, context, request, response); +} + +void Dapr::Stub::experimental_async::GetConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_GetConfiguration_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>* Dapr::Stub::AsyncGetConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::GetConfigurationResponse>::Create(channel_.get(), cq, rpcmethod_GetConfiguration_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>* Dapr::Stub::PrepareAsyncGetConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::GetConfigurationResponse>::Create(channel_.get(), cq, rpcmethod_GetConfiguration_, context, request, false); +} + ::grpc::ClientReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* Dapr::Stub::SubscribeConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request) { return ::grpc::internal::ClientReaderFactory< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>::Create(channel_.get(), rpcmethod_SubscribeConfigurationAlpha1_, context, request); } @@ -460,6 +508,18 @@ ::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationRes return ::grpc::internal::ClientAsyncReaderFactory< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>::Create(channel_.get(), cq, rpcmethod_SubscribeConfigurationAlpha1_, context, request, false, nullptr); } +::grpc::ClientReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* Dapr::Stub::SubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request) { + return ::grpc::internal::ClientReaderFactory< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>::Create(channel_.get(), rpcmethod_SubscribeConfiguration_, context, request); +} + +::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* Dapr::Stub::AsyncSubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq, void* tag) { + return ::grpc::internal::ClientAsyncReaderFactory< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>::Create(channel_.get(), cq, rpcmethod_SubscribeConfiguration_, context, request, true, tag); +} + +::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* Dapr::Stub::PrepareAsyncSubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncReaderFactory< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>::Create(channel_.get(), cq, rpcmethod_SubscribeConfiguration_, context, request, false, nullptr); +} + ::grpc::Status Dapr::Stub::UnsubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) { return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_UnsubscribeConfigurationAlpha1_, context, request, response); } @@ -476,6 +536,22 @@ ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfig return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>::Create(channel_.get(), cq, rpcmethod_UnsubscribeConfigurationAlpha1_, context, request, false); } +::grpc::Status Dapr::Stub::UnsubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_UnsubscribeConfiguration_, context, request, response); +} + +void Dapr::Stub::experimental_async::UnsubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_UnsubscribeConfiguration_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* Dapr::Stub::AsyncUnsubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>::Create(channel_.get(), cq, rpcmethod_UnsubscribeConfiguration_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* Dapr::Stub::PrepareAsyncUnsubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>::Create(channel_.get(), cq, rpcmethod_UnsubscribeConfiguration_, context, request, false); +} + ::grpc::Status Dapr::Stub::TryLockAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TryLockRequest& request, ::dapr::proto::runtime::v1::TryLockResponse* response) { return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_TryLockAlpha1_, context, request, response); } @@ -508,6 +584,30 @@ ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnlockResponse>* return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::UnlockResponse>::Create(channel_.get(), cq, rpcmethod_UnlockAlpha1_, context, request, false); } +::grpc::ClientReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>* Dapr::Stub::EncryptAlpha1Raw(::grpc::ClientContext* context) { + return ::grpc::internal::ClientReaderWriterFactory< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>::Create(channel_.get(), rpcmethod_EncryptAlpha1_, context); +} + +::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>* Dapr::Stub::AsyncEncryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { + return ::grpc::internal::ClientAsyncReaderWriterFactory< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>::Create(channel_.get(), cq, rpcmethod_EncryptAlpha1_, context, true, tag); +} + +::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>* Dapr::Stub::PrepareAsyncEncryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncReaderWriterFactory< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>::Create(channel_.get(), cq, rpcmethod_EncryptAlpha1_, context, false, nullptr); +} + +::grpc::ClientReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>* Dapr::Stub::DecryptAlpha1Raw(::grpc::ClientContext* context) { + return ::grpc::internal::ClientReaderWriterFactory< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>::Create(channel_.get(), rpcmethod_DecryptAlpha1_, context); +} + +::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>* Dapr::Stub::AsyncDecryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { + return ::grpc::internal::ClientAsyncReaderWriterFactory< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>::Create(channel_.get(), cq, rpcmethod_DecryptAlpha1_, context, true, tag); +} + +::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>* Dapr::Stub::PrepareAsyncDecryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncReaderWriterFactory< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>::Create(channel_.get(), cq, rpcmethod_DecryptAlpha1_, context, false, nullptr); +} + ::grpc::Status Dapr::Stub::GetMetadata(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::dapr::proto::runtime::v1::GetMetadataResponse* response) { return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_GetMetadata_, context, request, response); } @@ -540,20 +640,132 @@ ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* Dapr::Stub::Prepa return ::grpc::internal::ClientAsyncResponseReaderFactory< ::google::protobuf::Empty>::Create(channel_.get(), cq, rpcmethod_SetMetadata_, context, request, false); } -::grpc::Status Dapr::Stub::StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::dapr::proto::runtime::v1::WorkflowReference* response) { +::grpc::Status Dapr::Stub::SubtleGetKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_SubtleGetKeyAlpha1_, context, request, response); +} + +void Dapr::Stub::experimental_async::SubtleGetKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest* request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_SubtleGetKeyAlpha1_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>* Dapr::Stub::AsyncSubtleGetKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>::Create(channel_.get(), cq, rpcmethod_SubtleGetKeyAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>* Dapr::Stub::PrepareAsyncSubtleGetKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>::Create(channel_.get(), cq, rpcmethod_SubtleGetKeyAlpha1_, context, request, false); +} + +::grpc::Status Dapr::Stub::SubtleEncryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_SubtleEncryptAlpha1_, context, request, response); +} + +void Dapr::Stub::experimental_async::SubtleEncryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest* request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_SubtleEncryptAlpha1_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleEncryptResponse>* Dapr::Stub::AsyncSubtleEncryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleEncryptResponse>::Create(channel_.get(), cq, rpcmethod_SubtleEncryptAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleEncryptResponse>* Dapr::Stub::PrepareAsyncSubtleEncryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleEncryptResponse>::Create(channel_.get(), cq, rpcmethod_SubtleEncryptAlpha1_, context, request, false); +} + +::grpc::Status Dapr::Stub::SubtleDecryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_SubtleDecryptAlpha1_, context, request, response); +} + +void Dapr::Stub::experimental_async::SubtleDecryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest* request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_SubtleDecryptAlpha1_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleDecryptResponse>* Dapr::Stub::AsyncSubtleDecryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleDecryptResponse>::Create(channel_.get(), cq, rpcmethod_SubtleDecryptAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleDecryptResponse>* Dapr::Stub::PrepareAsyncSubtleDecryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleDecryptResponse>::Create(channel_.get(), cq, rpcmethod_SubtleDecryptAlpha1_, context, request, false); +} + +::grpc::Status Dapr::Stub::SubtleWrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_SubtleWrapKeyAlpha1_, context, request, response); +} + +void Dapr::Stub::experimental_async::SubtleWrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_SubtleWrapKeyAlpha1_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>* Dapr::Stub::AsyncSubtleWrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>::Create(channel_.get(), cq, rpcmethod_SubtleWrapKeyAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>* Dapr::Stub::PrepareAsyncSubtleWrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>::Create(channel_.get(), cq, rpcmethod_SubtleWrapKeyAlpha1_, context, request, false); +} + +::grpc::Status Dapr::Stub::SubtleUnwrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_SubtleUnwrapKeyAlpha1_, context, request, response); +} + +void Dapr::Stub::experimental_async::SubtleUnwrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_SubtleUnwrapKeyAlpha1_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>* Dapr::Stub::AsyncSubtleUnwrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>::Create(channel_.get(), cq, rpcmethod_SubtleUnwrapKeyAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>* Dapr::Stub::PrepareAsyncSubtleUnwrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>::Create(channel_.get(), cq, rpcmethod_SubtleUnwrapKeyAlpha1_, context, request, false); +} + +::grpc::Status Dapr::Stub::SubtleSignAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::dapr::proto::runtime::v1::SubtleSignResponse* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_SubtleSignAlpha1_, context, request, response); +} + +void Dapr::Stub::experimental_async::SubtleSignAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest* request, ::dapr::proto::runtime::v1::SubtleSignResponse* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_SubtleSignAlpha1_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleSignResponse>* Dapr::Stub::AsyncSubtleSignAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleSignResponse>::Create(channel_.get(), cq, rpcmethod_SubtleSignAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleSignResponse>* Dapr::Stub::PrepareAsyncSubtleSignAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleSignResponse>::Create(channel_.get(), cq, rpcmethod_SubtleSignAlpha1_, context, request, false); +} + +::grpc::Status Dapr::Stub::SubtleVerifyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_SubtleVerifyAlpha1_, context, request, response); +} + +void Dapr::Stub::experimental_async::SubtleVerifyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest* request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_SubtleVerifyAlpha1_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleVerifyResponse>* Dapr::Stub::AsyncSubtleVerifyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleVerifyResponse>::Create(channel_.get(), cq, rpcmethod_SubtleVerifyAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleVerifyResponse>* Dapr::Stub::PrepareAsyncSubtleVerifyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::SubtleVerifyResponse>::Create(channel_.get(), cq, rpcmethod_SubtleVerifyAlpha1_, context, request, false); +} + +::grpc::Status Dapr::Stub::StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response) { return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_StartWorkflowAlpha1_, context, request, response); } -void Dapr::Stub::experimental_async::StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::WorkflowReference* response, std::function f) { +void Dapr::Stub::experimental_async::StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response, std::function f) { return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_StartWorkflowAlpha1_, context, request, response, std::move(f)); } -::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::WorkflowReference>* Dapr::Stub::AsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::WorkflowReference>::Create(channel_.get(), cq, rpcmethod_StartWorkflowAlpha1_, context, request, true); +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::StartWorkflowResponse>* Dapr::Stub::AsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::StartWorkflowResponse>::Create(channel_.get(), cq, rpcmethod_StartWorkflowAlpha1_, context, request, true); } -::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::WorkflowReference>* Dapr::Stub::PrepareAsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::WorkflowReference>::Create(channel_.get(), cq, rpcmethod_StartWorkflowAlpha1_, context, request, false); +::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::StartWorkflowResponse>* Dapr::Stub::PrepareAsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::StartWorkflowResponse>::Create(channel_.get(), cq, rpcmethod_StartWorkflowAlpha1_, context, request, false); } ::grpc::Status Dapr::Stub::GetWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest& request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response) { @@ -572,20 +784,84 @@ ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetWorkflowRespon return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::GetWorkflowResponse>::Create(channel_.get(), cq, rpcmethod_GetWorkflowAlpha1_, context, request, false); } -::grpc::Status Dapr::Stub::TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response) { +::grpc::Status Dapr::Stub::PurgeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::google::protobuf::Empty* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_PurgeWorkflowAlpha1_, context, request, response); +} + +void Dapr::Stub::experimental_async::PurgeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest* request, ::google::protobuf::Empty* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_PurgeWorkflowAlpha1_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* Dapr::Stub::AsyncPurgeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::google::protobuf::Empty>::Create(channel_.get(), cq, rpcmethod_PurgeWorkflowAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* Dapr::Stub::PrepareAsyncPurgeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::google::protobuf::Empty>::Create(channel_.get(), cq, rpcmethod_PurgeWorkflowAlpha1_, context, request, false); +} + +::grpc::Status Dapr::Stub::TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::google::protobuf::Empty* response) { return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_TerminateWorkflowAlpha1_, context, request, response); } -void Dapr::Stub::experimental_async::TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response, std::function f) { +void Dapr::Stub::experimental_async::TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::google::protobuf::Empty* response, std::function f) { return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_TerminateWorkflowAlpha1_, context, request, response, std::move(f)); } -::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>* Dapr::Stub::AsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>::Create(channel_.get(), cq, rpcmethod_TerminateWorkflowAlpha1_, context, request, true); +::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* Dapr::Stub::AsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::google::protobuf::Empty>::Create(channel_.get(), cq, rpcmethod_TerminateWorkflowAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* Dapr::Stub::PrepareAsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::google::protobuf::Empty>::Create(channel_.get(), cq, rpcmethod_TerminateWorkflowAlpha1_, context, request, false); } -::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>* Dapr::Stub::PrepareAsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return ::grpc::internal::ClientAsyncResponseReaderFactory< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>::Create(channel_.get(), cq, rpcmethod_TerminateWorkflowAlpha1_, context, request, false); +::grpc::Status Dapr::Stub::PauseWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::google::protobuf::Empty* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_PauseWorkflowAlpha1_, context, request, response); +} + +void Dapr::Stub::experimental_async::PauseWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest* request, ::google::protobuf::Empty* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_PauseWorkflowAlpha1_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* Dapr::Stub::AsyncPauseWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::google::protobuf::Empty>::Create(channel_.get(), cq, rpcmethod_PauseWorkflowAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* Dapr::Stub::PrepareAsyncPauseWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::google::protobuf::Empty>::Create(channel_.get(), cq, rpcmethod_PauseWorkflowAlpha1_, context, request, false); +} + +::grpc::Status Dapr::Stub::ResumeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::google::protobuf::Empty* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_ResumeWorkflowAlpha1_, context, request, response); +} + +void Dapr::Stub::experimental_async::ResumeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest* request, ::google::protobuf::Empty* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_ResumeWorkflowAlpha1_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* Dapr::Stub::AsyncResumeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::google::protobuf::Empty>::Create(channel_.get(), cq, rpcmethod_ResumeWorkflowAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* Dapr::Stub::PrepareAsyncResumeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::google::protobuf::Empty>::Create(channel_.get(), cq, rpcmethod_ResumeWorkflowAlpha1_, context, request, false); +} + +::grpc::Status Dapr::Stub::RaiseEventWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::google::protobuf::Empty* response) { + return ::grpc::internal::BlockingUnaryCall(channel_.get(), rpcmethod_RaiseEventWorkflowAlpha1_, context, request, response); +} + +void Dapr::Stub::experimental_async::RaiseEventWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* request, ::google::protobuf::Empty* response, std::function f) { + return ::grpc::internal::CallbackUnaryCall(stub_->channel_.get(), stub_->rpcmethod_RaiseEventWorkflowAlpha1_, context, request, response, std::move(f)); +} + +::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* Dapr::Stub::AsyncRaiseEventWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::google::protobuf::Empty>::Create(channel_.get(), cq, rpcmethod_RaiseEventWorkflowAlpha1_, context, request, true); +} + +::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* Dapr::Stub::PrepareAsyncRaiseEventWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderFactory< ::google::protobuf::Empty>::Create(channel_.get(), cq, rpcmethod_RaiseEventWorkflowAlpha1_, context, request, false); } ::grpc::Status Dapr::Stub::Shutdown(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::google::protobuf::Empty* response) { @@ -717,51 +993,131 @@ Dapr::Service::Service() { std::mem_fn(&Dapr::Service::GetConfigurationAlpha1), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( Dapr_method_names[22], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::GetConfigurationRequest, ::dapr::proto::runtime::v1::GetConfigurationResponse>( + std::mem_fn(&Dapr::Service::GetConfiguration), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[23], ::grpc::internal::RpcMethod::SERVER_STREAMING, new ::grpc::internal::ServerStreamingHandler< Dapr::Service, ::dapr::proto::runtime::v1::SubscribeConfigurationRequest, ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>( std::mem_fn(&Dapr::Service::SubscribeConfigurationAlpha1), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - Dapr_method_names[23], + Dapr_method_names[24], + ::grpc::internal::RpcMethod::SERVER_STREAMING, + new ::grpc::internal::ServerStreamingHandler< Dapr::Service, ::dapr::proto::runtime::v1::SubscribeConfigurationRequest, ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>( + std::mem_fn(&Dapr::Service::SubscribeConfiguration), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[25], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>( std::mem_fn(&Dapr::Service::UnsubscribeConfigurationAlpha1), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - Dapr_method_names[24], + Dapr_method_names[26], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>( + std::mem_fn(&Dapr::Service::UnsubscribeConfiguration), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[27], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::TryLockRequest, ::dapr::proto::runtime::v1::TryLockResponse>( std::mem_fn(&Dapr::Service::TryLockAlpha1), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - Dapr_method_names[25], + Dapr_method_names[28], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::UnlockRequest, ::dapr::proto::runtime::v1::UnlockResponse>( std::mem_fn(&Dapr::Service::UnlockAlpha1), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - Dapr_method_names[26], + Dapr_method_names[29], + ::grpc::internal::RpcMethod::BIDI_STREAMING, + new ::grpc::internal::BidiStreamingHandler< Dapr::Service, ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>( + std::mem_fn(&Dapr::Service::EncryptAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[30], + ::grpc::internal::RpcMethod::BIDI_STREAMING, + new ::grpc::internal::BidiStreamingHandler< Dapr::Service, ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>( + std::mem_fn(&Dapr::Service::DecryptAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[31], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::google::protobuf::Empty, ::dapr::proto::runtime::v1::GetMetadataResponse>( std::mem_fn(&Dapr::Service::GetMetadata), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - Dapr_method_names[27], + Dapr_method_names[32], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::SetMetadataRequest, ::google::protobuf::Empty>( std::mem_fn(&Dapr::Service::SetMetadata), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - Dapr_method_names[28], + Dapr_method_names[33], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::SubtleGetKeyRequest, ::dapr::proto::runtime::v1::SubtleGetKeyResponse>( + std::mem_fn(&Dapr::Service::SubtleGetKeyAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[34], ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::StartWorkflowRequest, ::dapr::proto::runtime::v1::WorkflowReference>( + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::SubtleEncryptRequest, ::dapr::proto::runtime::v1::SubtleEncryptResponse>( + std::mem_fn(&Dapr::Service::SubtleEncryptAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[35], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::SubtleDecryptRequest, ::dapr::proto::runtime::v1::SubtleDecryptResponse>( + std::mem_fn(&Dapr::Service::SubtleDecryptAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[36], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::SubtleWrapKeyRequest, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>( + std::mem_fn(&Dapr::Service::SubtleWrapKeyAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[37], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>( + std::mem_fn(&Dapr::Service::SubtleUnwrapKeyAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[38], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::SubtleSignRequest, ::dapr::proto::runtime::v1::SubtleSignResponse>( + std::mem_fn(&Dapr::Service::SubtleSignAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[39], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::SubtleVerifyRequest, ::dapr::proto::runtime::v1::SubtleVerifyResponse>( + std::mem_fn(&Dapr::Service::SubtleVerifyAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[40], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::StartWorkflowRequest, ::dapr::proto::runtime::v1::StartWorkflowResponse>( std::mem_fn(&Dapr::Service::StartWorkflowAlpha1), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - Dapr_method_names[29], + Dapr_method_names[41], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::GetWorkflowRequest, ::dapr::proto::runtime::v1::GetWorkflowResponse>( std::mem_fn(&Dapr::Service::GetWorkflowAlpha1), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - Dapr_method_names[30], + Dapr_method_names[42], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::PurgeWorkflowRequest, ::google::protobuf::Empty>( + std::mem_fn(&Dapr::Service::PurgeWorkflowAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[43], ::grpc::internal::RpcMethod::NORMAL_RPC, - new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::TerminateWorkflowRequest, ::dapr::proto::runtime::v1::TerminateWorkflowResponse>( + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::TerminateWorkflowRequest, ::google::protobuf::Empty>( std::mem_fn(&Dapr::Service::TerminateWorkflowAlpha1), this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - Dapr_method_names[31], + Dapr_method_names[44], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::PauseWorkflowRequest, ::google::protobuf::Empty>( + std::mem_fn(&Dapr::Service::PauseWorkflowAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[45], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::ResumeWorkflowRequest, ::google::protobuf::Empty>( + std::mem_fn(&Dapr::Service::ResumeWorkflowAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[46], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest, ::google::protobuf::Empty>( + std::mem_fn(&Dapr::Service::RaiseEventWorkflowAlpha1), this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + Dapr_method_names[47], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< Dapr::Service, ::google::protobuf::Empty, ::google::protobuf::Empty>( std::mem_fn(&Dapr::Service::Shutdown), this))); @@ -924,6 +1280,13 @@ ::grpc::Status Dapr::Service::GetConfigurationAlpha1(::grpc::ServerContext* cont return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } +::grpc::Status Dapr::Service::GetConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + ::grpc::Status Dapr::Service::SubscribeConfigurationAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer) { (void) context; (void) request; @@ -931,6 +1294,13 @@ ::grpc::Status Dapr::Service::SubscribeConfigurationAlpha1(::grpc::ServerContext return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } +::grpc::Status Dapr::Service::SubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer) { + (void) context; + (void) request; + (void) writer; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + ::grpc::Status Dapr::Service::UnsubscribeConfigurationAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) { (void) context; (void) request; @@ -938,6 +1308,13 @@ ::grpc::Status Dapr::Service::UnsubscribeConfigurationAlpha1(::grpc::ServerConte return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } +::grpc::Status Dapr::Service::UnsubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + ::grpc::Status Dapr::Service::TryLockAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TryLockRequest* request, ::dapr::proto::runtime::v1::TryLockResponse* response) { (void) context; (void) request; @@ -952,6 +1329,18 @@ ::grpc::Status Dapr::Service::UnlockAlpha1(::grpc::ServerContext* context, const return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } +::grpc::Status Dapr::Service::EncryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::dapr::proto::runtime::v1::EncryptResponse, ::dapr::proto::runtime::v1::EncryptRequest>* stream) { + (void) context; + (void) stream; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::DecryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::dapr::proto::runtime::v1::DecryptResponse, ::dapr::proto::runtime::v1::DecryptRequest>* stream) { + (void) context; + (void) stream; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + ::grpc::Status Dapr::Service::GetMetadata(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, ::dapr::proto::runtime::v1::GetMetadataResponse* response) { (void) context; (void) request; @@ -966,7 +1355,56 @@ ::grpc::Status Dapr::Service::SetMetadata(::grpc::ServerContext* context, const return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } -::grpc::Status Dapr::Service::StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::WorkflowReference* response) { +::grpc::Status Dapr::Service::SubtleGetKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest* request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::SubtleEncryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest* request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::SubtleDecryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest* request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::SubtleWrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::SubtleUnwrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::SubtleSignAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest* request, ::dapr::proto::runtime::v1::SubtleSignResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::SubtleVerifyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest* request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response) { (void) context; (void) request; (void) response; @@ -980,7 +1418,35 @@ ::grpc::Status Dapr::Service::GetWorkflowAlpha1(::grpc::ServerContext* context, return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } -::grpc::Status Dapr::Service::TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response) { +::grpc::Status Dapr::Service::PurgeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest* request, ::google::protobuf::Empty* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::google::protobuf::Empty* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::PauseWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest* request, ::google::protobuf::Empty* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::ResumeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest* request, ::google::protobuf::Empty* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status Dapr::Service::RaiseEventWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* request, ::google::protobuf::Empty* response) { (void) context; (void) request; (void) response; diff --git a/src/dapr/proto/runtime/v1/dapr.grpc.pb.h b/src/dapr/proto/runtime/v1/dapr.grpc.pb.h index 8a0695d..ade5dfc 100644 --- a/src/dapr/proto/runtime/v1/dapr.grpc.pb.h +++ b/src/dapr/proto/runtime/v1/dapr.grpc.pb.h @@ -229,6 +229,14 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetConfigurationResponse>> PrepareAsyncGetConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetConfigurationResponse>>(PrepareAsyncGetConfigurationAlpha1Raw(context, request, cq)); } + // GetConfiguration gets configuration from configuration store. + virtual ::grpc::Status GetConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetConfigurationResponse>> AsyncGetConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetConfigurationResponse>>(AsyncGetConfigurationRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetConfigurationResponse>> PrepareAsyncGetConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetConfigurationResponse>>(PrepareAsyncGetConfigurationRaw(context, request, cq)); + } // SubscribeConfiguration gets configuration from configuration store and subscribe the updates event by grpc stream std::unique_ptr< ::grpc::ClientReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>> SubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request) { return std::unique_ptr< ::grpc::ClientReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>>(SubscribeConfigurationAlpha1Raw(context, request)); @@ -239,6 +247,16 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>> PrepareAsyncSubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>>(PrepareAsyncSubscribeConfigurationAlpha1Raw(context, request, cq)); } + // SubscribeConfiguration gets configuration from configuration store and subscribe the updates event by grpc stream + std::unique_ptr< ::grpc::ClientReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>> SubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request) { + return std::unique_ptr< ::grpc::ClientReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>>(SubscribeConfigurationRaw(context, request)); + } + std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>> AsyncSubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq, void* tag) { + return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>>(AsyncSubscribeConfigurationRaw(context, request, cq, tag)); + } + std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>> PrepareAsyncSubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>>(PrepareAsyncSubscribeConfigurationRaw(context, request, cq)); + } // UnSubscribeConfiguration unsubscribe the subscription of configuration virtual ::grpc::Status UnsubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) = 0; std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>> AsyncUnsubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { @@ -247,6 +265,14 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>> PrepareAsyncUnsubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>>(PrepareAsyncUnsubscribeConfigurationAlpha1Raw(context, request, cq)); } + // UnSubscribeConfiguration unsubscribe the subscription of configuration + virtual ::grpc::Status UnsubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>> AsyncUnsubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>>(AsyncUnsubscribeConfigurationRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>> PrepareAsyncUnsubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>>(PrepareAsyncUnsubscribeConfigurationRaw(context, request, cq)); + } // TryLockAlpha1 tries to get a lock with an expiry. virtual ::grpc::Status TryLockAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TryLockRequest& request, ::dapr::proto::runtime::v1::TryLockResponse* response) = 0; std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::TryLockResponse>> AsyncTryLockAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TryLockRequest& request, ::grpc::CompletionQueue* cq) { @@ -263,6 +289,26 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnlockResponse>> PrepareAsyncUnlockAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnlockRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnlockResponse>>(PrepareAsyncUnlockAlpha1Raw(context, request, cq)); } + // EncryptAlpha1 encrypts a message using the Dapr encryption scheme and a key stored in the vault. + std::unique_ptr< ::grpc::ClientReaderWriterInterface< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>> EncryptAlpha1(::grpc::ClientContext* context) { + return std::unique_ptr< ::grpc::ClientReaderWriterInterface< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>>(EncryptAlpha1Raw(context)); + } + std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>> AsyncEncryptAlpha1(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { + return std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>>(AsyncEncryptAlpha1Raw(context, cq, tag)); + } + std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>> PrepareAsyncEncryptAlpha1(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>>(PrepareAsyncEncryptAlpha1Raw(context, cq)); + } + // DecryptAlpha1 decrypts a message using the Dapr encryption scheme and a key stored in the vault. + std::unique_ptr< ::grpc::ClientReaderWriterInterface< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>> DecryptAlpha1(::grpc::ClientContext* context) { + return std::unique_ptr< ::grpc::ClientReaderWriterInterface< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>>(DecryptAlpha1Raw(context)); + } + std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>> AsyncDecryptAlpha1(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { + return std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>>(AsyncDecryptAlpha1Raw(context, cq, tag)); + } + std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>> PrepareAsyncDecryptAlpha1(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>>(PrepareAsyncDecryptAlpha1Raw(context, cq)); + } // Gets metadata of the sidecar virtual ::grpc::Status GetMetadata(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::dapr::proto::runtime::v1::GetMetadataResponse* response) = 0; std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetMetadataResponse>> AsyncGetMetadata(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::grpc::CompletionQueue* cq) { @@ -279,15 +325,71 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>> PrepareAsyncSetMetadata(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>>(PrepareAsyncSetMetadataRaw(context, request, cq)); } - // Start Workflow - virtual ::grpc::Status StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::dapr::proto::runtime::v1::WorkflowReference* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::WorkflowReference>> AsyncStartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::WorkflowReference>>(AsyncStartWorkflowAlpha1Raw(context, request, cq)); + // SubtleGetKeyAlpha1 returns the public part of an asymmetric key stored in the vault. + virtual ::grpc::Status SubtleGetKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>> AsyncSubtleGetKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>>(AsyncSubtleGetKeyAlpha1Raw(context, request, cq)); } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::WorkflowReference>> PrepareAsyncStartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::WorkflowReference>>(PrepareAsyncStartWorkflowAlpha1Raw(context, request, cq)); + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>> PrepareAsyncSubtleGetKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>>(PrepareAsyncSubtleGetKeyAlpha1Raw(context, request, cq)); } - // Get Workflow details + // SubtleEncryptAlpha1 encrypts a small message using a key stored in the vault. + virtual ::grpc::Status SubtleEncryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleEncryptResponse>> AsyncSubtleEncryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleEncryptResponse>>(AsyncSubtleEncryptAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleEncryptResponse>> PrepareAsyncSubtleEncryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleEncryptResponse>>(PrepareAsyncSubtleEncryptAlpha1Raw(context, request, cq)); + } + // SubtleDecryptAlpha1 decrypts a small message using a key stored in the vault. + virtual ::grpc::Status SubtleDecryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleDecryptResponse>> AsyncSubtleDecryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleDecryptResponse>>(AsyncSubtleDecryptAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleDecryptResponse>> PrepareAsyncSubtleDecryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleDecryptResponse>>(PrepareAsyncSubtleDecryptAlpha1Raw(context, request, cq)); + } + // SubtleWrapKeyAlpha1 wraps a key using a key stored in the vault. + virtual ::grpc::Status SubtleWrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>> AsyncSubtleWrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>>(AsyncSubtleWrapKeyAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>> PrepareAsyncSubtleWrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>>(PrepareAsyncSubtleWrapKeyAlpha1Raw(context, request, cq)); + } + // SubtleUnwrapKeyAlpha1 unwraps a key using a key stored in the vault. + virtual ::grpc::Status SubtleUnwrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>> AsyncSubtleUnwrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>>(AsyncSubtleUnwrapKeyAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>> PrepareAsyncSubtleUnwrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>>(PrepareAsyncSubtleUnwrapKeyAlpha1Raw(context, request, cq)); + } + // SubtleSignAlpha1 signs a message using a key stored in the vault. + virtual ::grpc::Status SubtleSignAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::dapr::proto::runtime::v1::SubtleSignResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleSignResponse>> AsyncSubtleSignAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleSignResponse>>(AsyncSubtleSignAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleSignResponse>> PrepareAsyncSubtleSignAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleSignResponse>>(PrepareAsyncSubtleSignAlpha1Raw(context, request, cq)); + } + // SubtleVerifyAlpha1 verifies the signature of a message using a key stored in the vault. + virtual ::grpc::Status SubtleVerifyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleVerifyResponse>> AsyncSubtleVerifyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleVerifyResponse>>(AsyncSubtleVerifyAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleVerifyResponse>> PrepareAsyncSubtleVerifyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleVerifyResponse>>(PrepareAsyncSubtleVerifyAlpha1Raw(context, request, cq)); + } + // Starts a new instance of a workflow + virtual ::grpc::Status StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::StartWorkflowResponse>> AsyncStartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::StartWorkflowResponse>>(AsyncStartWorkflowAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::StartWorkflowResponse>> PrepareAsyncStartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::StartWorkflowResponse>>(PrepareAsyncStartWorkflowAlpha1Raw(context, request, cq)); + } + // Gets details about a started workflow instance virtual ::grpc::Status GetWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest& request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response) = 0; std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetWorkflowResponse>> AsyncGetWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetWorkflowResponse>>(AsyncGetWorkflowAlpha1Raw(context, request, cq)); @@ -295,13 +397,45 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetWorkflowResponse>> PrepareAsyncGetWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetWorkflowResponse>>(PrepareAsyncGetWorkflowAlpha1Raw(context, request, cq)); } - // Terminate Workflow - virtual ::grpc::Status TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response) = 0; - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>> AsyncTerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>>(AsyncTerminateWorkflowAlpha1Raw(context, request, cq)); + // Purge Workflow + virtual ::grpc::Status PurgeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::google::protobuf::Empty* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>> AsyncPurgeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>>(AsyncPurgeWorkflowAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>> PrepareAsyncPurgeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>>(PrepareAsyncPurgeWorkflowAlpha1Raw(context, request, cq)); + } + // Terminates a running workflow instance + virtual ::grpc::Status TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::google::protobuf::Empty* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>> AsyncTerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>>(AsyncTerminateWorkflowAlpha1Raw(context, request, cq)); } - std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>> PrepareAsyncTerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>>(PrepareAsyncTerminateWorkflowAlpha1Raw(context, request, cq)); + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>> PrepareAsyncTerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>>(PrepareAsyncTerminateWorkflowAlpha1Raw(context, request, cq)); + } + // Pauses a running workflow instance + virtual ::grpc::Status PauseWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::google::protobuf::Empty* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>> AsyncPauseWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>>(AsyncPauseWorkflowAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>> PrepareAsyncPauseWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>>(PrepareAsyncPauseWorkflowAlpha1Raw(context, request, cq)); + } + // Resumes a paused workflow instance + virtual ::grpc::Status ResumeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::google::protobuf::Empty* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>> AsyncResumeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>>(AsyncResumeWorkflowAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>> PrepareAsyncResumeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>>(PrepareAsyncResumeWorkflowAlpha1Raw(context, request, cq)); + } + // Raise an event to a running workflow instance + virtual ::grpc::Status RaiseEventWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::google::protobuf::Empty* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>> AsyncRaiseEventWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>>(AsyncRaiseEventWorkflowAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>> PrepareAsyncRaiseEventWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>>(PrepareAsyncRaiseEventWorkflowAlpha1Raw(context, request, cq)); } // Shutdown the sidecar virtual ::grpc::Status Shutdown(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::google::protobuf::Empty* response) = 0; @@ -359,23 +493,52 @@ class Dapr final { virtual void InvokeActor(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::InvokeActorRequest* request, ::dapr::proto::runtime::v1::InvokeActorResponse* response, std::function) = 0; // GetConfiguration gets configuration from configuration store. virtual void GetConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response, std::function) = 0; + // GetConfiguration gets configuration from configuration store. + virtual void GetConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response, std::function) = 0; + // SubscribeConfiguration gets configuration from configuration store and subscribe the updates event by grpc stream // SubscribeConfiguration gets configuration from configuration store and subscribe the updates event by grpc stream // UnSubscribeConfiguration unsubscribe the subscription of configuration virtual void UnsubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response, std::function) = 0; + // UnSubscribeConfiguration unsubscribe the subscription of configuration + virtual void UnsubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response, std::function) = 0; // TryLockAlpha1 tries to get a lock with an expiry. virtual void TryLockAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TryLockRequest* request, ::dapr::proto::runtime::v1::TryLockResponse* response, std::function) = 0; // UnlockAlpha1 unlocks a lock. virtual void UnlockAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnlockRequest* request, ::dapr::proto::runtime::v1::UnlockResponse* response, std::function) = 0; + // EncryptAlpha1 encrypts a message using the Dapr encryption scheme and a key stored in the vault. + // DecryptAlpha1 decrypts a message using the Dapr encryption scheme and a key stored in the vault. // Gets metadata of the sidecar virtual void GetMetadata(::grpc::ClientContext* context, const ::google::protobuf::Empty* request, ::dapr::proto::runtime::v1::GetMetadataResponse* response, std::function) = 0; // Sets value in extended metadata of the sidecar virtual void SetMetadata(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest* request, ::google::protobuf::Empty* response, std::function) = 0; - // Start Workflow - virtual void StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::WorkflowReference* response, std::function) = 0; - // Get Workflow details + // SubtleGetKeyAlpha1 returns the public part of an asymmetric key stored in the vault. + virtual void SubtleGetKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest* request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response, std::function) = 0; + // SubtleEncryptAlpha1 encrypts a small message using a key stored in the vault. + virtual void SubtleEncryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest* request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response, std::function) = 0; + // SubtleDecryptAlpha1 decrypts a small message using a key stored in the vault. + virtual void SubtleDecryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest* request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response, std::function) = 0; + // SubtleWrapKeyAlpha1 wraps a key using a key stored in the vault. + virtual void SubtleWrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response, std::function) = 0; + // SubtleUnwrapKeyAlpha1 unwraps a key using a key stored in the vault. + virtual void SubtleUnwrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response, std::function) = 0; + // SubtleSignAlpha1 signs a message using a key stored in the vault. + virtual void SubtleSignAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest* request, ::dapr::proto::runtime::v1::SubtleSignResponse* response, std::function) = 0; + // SubtleVerifyAlpha1 verifies the signature of a message using a key stored in the vault. + virtual void SubtleVerifyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest* request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response, std::function) = 0; + // Starts a new instance of a workflow + virtual void StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response, std::function) = 0; + // Gets details about a started workflow instance virtual void GetWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest* request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response, std::function) = 0; - // Terminate Workflow - virtual void TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response, std::function) = 0; + // Purge Workflow + virtual void PurgeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest* request, ::google::protobuf::Empty* response, std::function) = 0; + // Terminates a running workflow instance + virtual void TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::google::protobuf::Empty* response, std::function) = 0; + // Pauses a running workflow instance + virtual void PauseWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest* request, ::google::protobuf::Empty* response, std::function) = 0; + // Resumes a paused workflow instance + virtual void ResumeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest* request, ::google::protobuf::Empty* response, std::function) = 0; + // Raise an event to a running workflow instance + virtual void RaiseEventWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* request, ::google::protobuf::Empty* response, std::function) = 0; // Shutdown the sidecar virtual void Shutdown(::grpc::ClientContext* context, const ::google::protobuf::Empty* request, ::google::protobuf::Empty* response, std::function) = 0; }; @@ -425,25 +588,60 @@ class Dapr final { virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::InvokeActorResponse>* PrepareAsyncInvokeActorRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::InvokeActorRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetConfigurationResponse>* AsyncGetConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetConfigurationResponse>* PrepareAsyncGetConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetConfigurationResponse>* AsyncGetConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetConfigurationResponse>* PrepareAsyncGetConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* SubscribeConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request) = 0; virtual ::grpc::ClientAsyncReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* AsyncSubscribeConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq, void* tag) = 0; virtual ::grpc::ClientAsyncReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* PrepareAsyncSubscribeConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* SubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request) = 0; + virtual ::grpc::ClientAsyncReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* AsyncSubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq, void* tag) = 0; + virtual ::grpc::ClientAsyncReaderInterface< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* PrepareAsyncSubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* AsyncUnsubscribeConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* PrepareAsyncUnsubscribeConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* AsyncUnsubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* PrepareAsyncUnsubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::TryLockResponse>* AsyncTryLockAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TryLockRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::TryLockResponse>* PrepareAsyncTryLockAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TryLockRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnlockResponse>* AsyncUnlockAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnlockRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::UnlockResponse>* PrepareAsyncUnlockAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnlockRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientReaderWriterInterface< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>* EncryptAlpha1Raw(::grpc::ClientContext* context) = 0; + virtual ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>* AsyncEncryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) = 0; + virtual ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>* PrepareAsyncEncryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientReaderWriterInterface< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>* DecryptAlpha1Raw(::grpc::ClientContext* context) = 0; + virtual ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>* AsyncDecryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) = 0; + virtual ::grpc::ClientAsyncReaderWriterInterface< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>* PrepareAsyncDecryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetMetadataResponse>* AsyncGetMetadataRaw(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetMetadataResponse>* PrepareAsyncGetMetadataRaw(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* AsyncSetMetadataRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* PrepareAsyncSetMetadataRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::WorkflowReference>* AsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::WorkflowReference>* PrepareAsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>* AsyncSubtleGetKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>* PrepareAsyncSubtleGetKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleEncryptResponse>* AsyncSubtleEncryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleEncryptResponse>* PrepareAsyncSubtleEncryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleDecryptResponse>* AsyncSubtleDecryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleDecryptResponse>* PrepareAsyncSubtleDecryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>* AsyncSubtleWrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>* PrepareAsyncSubtleWrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>* AsyncSubtleUnwrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>* PrepareAsyncSubtleUnwrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleSignResponse>* AsyncSubtleSignAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleSignResponse>* PrepareAsyncSubtleSignAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleVerifyResponse>* AsyncSubtleVerifyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::SubtleVerifyResponse>* PrepareAsyncSubtleVerifyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::StartWorkflowResponse>* AsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::StartWorkflowResponse>* PrepareAsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetWorkflowResponse>* AsyncGetWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::GetWorkflowResponse>* PrepareAsyncGetWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>* AsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; - virtual ::grpc::ClientAsyncResponseReaderInterface< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>* PrepareAsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* AsyncPurgeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* PrepareAsyncPurgeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* AsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* PrepareAsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* AsyncPauseWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* PrepareAsyncPauseWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* AsyncResumeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* PrepareAsyncResumeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* AsyncRaiseEventWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* PrepareAsyncRaiseEventWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* AsyncShutdownRaw(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::google::protobuf::Empty>* PrepareAsyncShutdownRaw(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::grpc::CompletionQueue* cq) = 0; }; @@ -604,6 +802,13 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>> PrepareAsyncGetConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>>(PrepareAsyncGetConfigurationAlpha1Raw(context, request, cq)); } + ::grpc::Status GetConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>> AsyncGetConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>>(AsyncGetConfigurationRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>> PrepareAsyncGetConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>>(PrepareAsyncGetConfigurationRaw(context, request, cq)); + } std::unique_ptr< ::grpc::ClientReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>> SubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request) { return std::unique_ptr< ::grpc::ClientReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>>(SubscribeConfigurationAlpha1Raw(context, request)); } @@ -613,6 +818,15 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>> PrepareAsyncSubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>>(PrepareAsyncSubscribeConfigurationAlpha1Raw(context, request, cq)); } + std::unique_ptr< ::grpc::ClientReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>> SubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request) { + return std::unique_ptr< ::grpc::ClientReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>>(SubscribeConfigurationRaw(context, request)); + } + std::unique_ptr< ::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>> AsyncSubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq, void* tag) { + return std::unique_ptr< ::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>>(AsyncSubscribeConfigurationRaw(context, request, cq, tag)); + } + std::unique_ptr< ::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>> PrepareAsyncSubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>>(PrepareAsyncSubscribeConfigurationRaw(context, request, cq)); + } ::grpc::Status UnsubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) override; std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>> AsyncUnsubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>>(AsyncUnsubscribeConfigurationAlpha1Raw(context, request, cq)); @@ -620,6 +834,13 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>> PrepareAsyncUnsubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>>(PrepareAsyncUnsubscribeConfigurationAlpha1Raw(context, request, cq)); } + ::grpc::Status UnsubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>> AsyncUnsubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>>(AsyncUnsubscribeConfigurationRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>> PrepareAsyncUnsubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>>(PrepareAsyncUnsubscribeConfigurationRaw(context, request, cq)); + } ::grpc::Status TryLockAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TryLockRequest& request, ::dapr::proto::runtime::v1::TryLockResponse* response) override; std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TryLockResponse>> AsyncTryLockAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TryLockRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TryLockResponse>>(AsyncTryLockAlpha1Raw(context, request, cq)); @@ -634,6 +855,24 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnlockResponse>> PrepareAsyncUnlockAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnlockRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnlockResponse>>(PrepareAsyncUnlockAlpha1Raw(context, request, cq)); } + std::unique_ptr< ::grpc::ClientReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>> EncryptAlpha1(::grpc::ClientContext* context) { + return std::unique_ptr< ::grpc::ClientReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>>(EncryptAlpha1Raw(context)); + } + std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>> AsyncEncryptAlpha1(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { + return std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>>(AsyncEncryptAlpha1Raw(context, cq, tag)); + } + std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>> PrepareAsyncEncryptAlpha1(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>>(PrepareAsyncEncryptAlpha1Raw(context, cq)); + } + std::unique_ptr< ::grpc::ClientReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>> DecryptAlpha1(::grpc::ClientContext* context) { + return std::unique_ptr< ::grpc::ClientReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>>(DecryptAlpha1Raw(context)); + } + std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>> AsyncDecryptAlpha1(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) { + return std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>>(AsyncDecryptAlpha1Raw(context, cq, tag)); + } + std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>> PrepareAsyncDecryptAlpha1(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>>(PrepareAsyncDecryptAlpha1Raw(context, cq)); + } ::grpc::Status GetMetadata(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::dapr::proto::runtime::v1::GetMetadataResponse* response) override; std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetMetadataResponse>> AsyncGetMetadata(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetMetadataResponse>>(AsyncGetMetadataRaw(context, request, cq)); @@ -648,12 +887,61 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> PrepareAsyncSetMetadata(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>>(PrepareAsyncSetMetadataRaw(context, request, cq)); } - ::grpc::Status StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::dapr::proto::runtime::v1::WorkflowReference* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::WorkflowReference>> AsyncStartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::WorkflowReference>>(AsyncStartWorkflowAlpha1Raw(context, request, cq)); + ::grpc::Status SubtleGetKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>> AsyncSubtleGetKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>>(AsyncSubtleGetKeyAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>> PrepareAsyncSubtleGetKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>>(PrepareAsyncSubtleGetKeyAlpha1Raw(context, request, cq)); + } + ::grpc::Status SubtleEncryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleEncryptResponse>> AsyncSubtleEncryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleEncryptResponse>>(AsyncSubtleEncryptAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleEncryptResponse>> PrepareAsyncSubtleEncryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleEncryptResponse>>(PrepareAsyncSubtleEncryptAlpha1Raw(context, request, cq)); + } + ::grpc::Status SubtleDecryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleDecryptResponse>> AsyncSubtleDecryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleDecryptResponse>>(AsyncSubtleDecryptAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleDecryptResponse>> PrepareAsyncSubtleDecryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleDecryptResponse>>(PrepareAsyncSubtleDecryptAlpha1Raw(context, request, cq)); + } + ::grpc::Status SubtleWrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>> AsyncSubtleWrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>>(AsyncSubtleWrapKeyAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>> PrepareAsyncSubtleWrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>>(PrepareAsyncSubtleWrapKeyAlpha1Raw(context, request, cq)); + } + ::grpc::Status SubtleUnwrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>> AsyncSubtleUnwrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>>(AsyncSubtleUnwrapKeyAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>> PrepareAsyncSubtleUnwrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>>(PrepareAsyncSubtleUnwrapKeyAlpha1Raw(context, request, cq)); + } + ::grpc::Status SubtleSignAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::dapr::proto::runtime::v1::SubtleSignResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleSignResponse>> AsyncSubtleSignAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleSignResponse>>(AsyncSubtleSignAlpha1Raw(context, request, cq)); } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::WorkflowReference>> PrepareAsyncStartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::WorkflowReference>>(PrepareAsyncStartWorkflowAlpha1Raw(context, request, cq)); + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleSignResponse>> PrepareAsyncSubtleSignAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleSignResponse>>(PrepareAsyncSubtleSignAlpha1Raw(context, request, cq)); + } + ::grpc::Status SubtleVerifyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleVerifyResponse>> AsyncSubtleVerifyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleVerifyResponse>>(AsyncSubtleVerifyAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleVerifyResponse>> PrepareAsyncSubtleVerifyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleVerifyResponse>>(PrepareAsyncSubtleVerifyAlpha1Raw(context, request, cq)); + } + ::grpc::Status StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::StartWorkflowResponse>> AsyncStartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::StartWorkflowResponse>>(AsyncStartWorkflowAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::StartWorkflowResponse>> PrepareAsyncStartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::StartWorkflowResponse>>(PrepareAsyncStartWorkflowAlpha1Raw(context, request, cq)); } ::grpc::Status GetWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest& request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response) override; std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetWorkflowResponse>> AsyncGetWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest& request, ::grpc::CompletionQueue* cq) { @@ -662,12 +950,40 @@ class Dapr final { std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetWorkflowResponse>> PrepareAsyncGetWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetWorkflowResponse>>(PrepareAsyncGetWorkflowAlpha1Raw(context, request, cq)); } - ::grpc::Status TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response) override; - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>> AsyncTerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>>(AsyncTerminateWorkflowAlpha1Raw(context, request, cq)); + ::grpc::Status PurgeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::google::protobuf::Empty* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> AsyncPurgeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>>(AsyncPurgeWorkflowAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> PrepareAsyncPurgeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>>(PrepareAsyncPurgeWorkflowAlpha1Raw(context, request, cq)); + } + ::grpc::Status TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::google::protobuf::Empty* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> AsyncTerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>>(AsyncTerminateWorkflowAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> PrepareAsyncTerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>>(PrepareAsyncTerminateWorkflowAlpha1Raw(context, request, cq)); + } + ::grpc::Status PauseWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::google::protobuf::Empty* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> AsyncPauseWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>>(AsyncPauseWorkflowAlpha1Raw(context, request, cq)); } - std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>> PrepareAsyncTerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) { - return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>>(PrepareAsyncTerminateWorkflowAlpha1Raw(context, request, cq)); + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> PrepareAsyncPauseWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>>(PrepareAsyncPauseWorkflowAlpha1Raw(context, request, cq)); + } + ::grpc::Status ResumeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::google::protobuf::Empty* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> AsyncResumeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>>(AsyncResumeWorkflowAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> PrepareAsyncResumeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>>(PrepareAsyncResumeWorkflowAlpha1Raw(context, request, cq)); + } + ::grpc::Status RaiseEventWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::google::protobuf::Empty* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> AsyncRaiseEventWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>>(AsyncRaiseEventWorkflowAlpha1Raw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> PrepareAsyncRaiseEventWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>>(PrepareAsyncRaiseEventWorkflowAlpha1Raw(context, request, cq)); } ::grpc::Status Shutdown(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::google::protobuf::Empty* response) override; std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>> AsyncShutdown(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::grpc::CompletionQueue* cq) { @@ -701,14 +1017,27 @@ class Dapr final { void ExecuteActorStateTransaction(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ExecuteActorStateTransactionRequest* request, ::google::protobuf::Empty* response, std::function) override; void InvokeActor(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::InvokeActorRequest* request, ::dapr::proto::runtime::v1::InvokeActorResponse* response, std::function) override; void GetConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response, std::function) override; + void GetConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response, std::function) override; void UnsubscribeConfigurationAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response, std::function) override; + void UnsubscribeConfiguration(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response, std::function) override; void TryLockAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TryLockRequest* request, ::dapr::proto::runtime::v1::TryLockResponse* response, std::function) override; void UnlockAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnlockRequest* request, ::dapr::proto::runtime::v1::UnlockResponse* response, std::function) override; void GetMetadata(::grpc::ClientContext* context, const ::google::protobuf::Empty* request, ::dapr::proto::runtime::v1::GetMetadataResponse* response, std::function) override; void SetMetadata(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest* request, ::google::protobuf::Empty* response, std::function) override; - void StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::WorkflowReference* response, std::function) override; + void SubtleGetKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest* request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response, std::function) override; + void SubtleEncryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest* request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response, std::function) override; + void SubtleDecryptAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest* request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response, std::function) override; + void SubtleWrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response, std::function) override; + void SubtleUnwrapKeyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response, std::function) override; + void SubtleSignAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest* request, ::dapr::proto::runtime::v1::SubtleSignResponse* response, std::function) override; + void SubtleVerifyAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest* request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response, std::function) override; + void StartWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response, std::function) override; void GetWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest* request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response, std::function) override; - void TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response, std::function) override; + void PurgeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest* request, ::google::protobuf::Empty* response, std::function) override; + void TerminateWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::google::protobuf::Empty* response, std::function) override; + void PauseWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest* request, ::google::protobuf::Empty* response, std::function) override; + void ResumeWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest* request, ::google::protobuf::Empty* response, std::function) override; + void RaiseEventWorkflowAlpha1(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* request, ::google::protobuf::Empty* response, std::function) override; void Shutdown(::grpc::ClientContext* context, const ::google::protobuf::Empty* request, ::google::protobuf::Empty* response, std::function) override; private: friend class Stub; @@ -765,25 +1094,60 @@ class Dapr final { ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::InvokeActorResponse>* PrepareAsyncInvokeActorRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::InvokeActorRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>* AsyncGetConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>* PrepareAsyncGetConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>* AsyncGetConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetConfigurationResponse>* PrepareAsyncGetConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* SubscribeConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request) override; ::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* AsyncSubscribeConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq, void* tag) override; ::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* PrepareAsyncSubscribeConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* SubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request) override; + ::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* AsyncSubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq, void* tag) override; + ::grpc::ClientAsyncReader< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* PrepareAsyncSubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* AsyncUnsubscribeConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* PrepareAsyncUnsubscribeConfigurationAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* AsyncUnsubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* PrepareAsyncUnsubscribeConfigurationRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TryLockResponse>* AsyncTryLockAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TryLockRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TryLockResponse>* PrepareAsyncTryLockAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TryLockRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnlockResponse>* AsyncUnlockAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnlockRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::UnlockResponse>* PrepareAsyncUnlockAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::UnlockRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>* EncryptAlpha1Raw(::grpc::ClientContext* context) override; + ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>* AsyncEncryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) override; + ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::EncryptRequest, ::dapr::proto::runtime::v1::EncryptResponse>* PrepareAsyncEncryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>* DecryptAlpha1Raw(::grpc::ClientContext* context) override; + ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>* AsyncDecryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq, void* tag) override; + ::grpc::ClientAsyncReaderWriter< ::dapr::proto::runtime::v1::DecryptRequest, ::dapr::proto::runtime::v1::DecryptResponse>* PrepareAsyncDecryptAlpha1Raw(::grpc::ClientContext* context, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetMetadataResponse>* AsyncGetMetadataRaw(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetMetadataResponse>* PrepareAsyncGetMetadataRaw(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* AsyncSetMetadataRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* PrepareAsyncSetMetadataRaw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::WorkflowReference>* AsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::WorkflowReference>* PrepareAsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>* AsyncSubtleGetKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>* PrepareAsyncSubtleGetKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleEncryptResponse>* AsyncSubtleEncryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleEncryptResponse>* PrepareAsyncSubtleEncryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleDecryptResponse>* AsyncSubtleDecryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleDecryptResponse>* PrepareAsyncSubtleDecryptAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>* AsyncSubtleWrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>* PrepareAsyncSubtleWrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>* AsyncSubtleUnwrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>* PrepareAsyncSubtleUnwrapKeyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleSignResponse>* AsyncSubtleSignAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleSignResponse>* PrepareAsyncSubtleSignAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleVerifyResponse>* AsyncSubtleVerifyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::SubtleVerifyResponse>* PrepareAsyncSubtleVerifyAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::StartWorkflowResponse>* AsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::StartWorkflowResponse>* PrepareAsyncStartWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetWorkflowResponse>* AsyncGetWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::GetWorkflowResponse>* PrepareAsyncGetWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>* AsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; - ::grpc::ClientAsyncResponseReader< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>* PrepareAsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* AsyncPurgeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* PrepareAsyncPurgeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* AsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* PrepareAsyncTerminateWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* AsyncPauseWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* PrepareAsyncPauseWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* AsyncResumeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* PrepareAsyncResumeWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* AsyncRaiseEventWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* PrepareAsyncRaiseEventWorkflowAlpha1Raw(::grpc::ClientContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* AsyncShutdownRaw(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::google::protobuf::Empty>* PrepareAsyncShutdownRaw(::grpc::ClientContext* context, const ::google::protobuf::Empty& request, ::grpc::CompletionQueue* cq) override; const ::grpc::internal::RpcMethod rpcmethod_InvokeService_; @@ -808,15 +1172,31 @@ class Dapr final { const ::grpc::internal::RpcMethod rpcmethod_ExecuteActorStateTransaction_; const ::grpc::internal::RpcMethod rpcmethod_InvokeActor_; const ::grpc::internal::RpcMethod rpcmethod_GetConfigurationAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_GetConfiguration_; const ::grpc::internal::RpcMethod rpcmethod_SubscribeConfigurationAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_SubscribeConfiguration_; const ::grpc::internal::RpcMethod rpcmethod_UnsubscribeConfigurationAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_UnsubscribeConfiguration_; const ::grpc::internal::RpcMethod rpcmethod_TryLockAlpha1_; const ::grpc::internal::RpcMethod rpcmethod_UnlockAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_EncryptAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_DecryptAlpha1_; const ::grpc::internal::RpcMethod rpcmethod_GetMetadata_; const ::grpc::internal::RpcMethod rpcmethod_SetMetadata_; + const ::grpc::internal::RpcMethod rpcmethod_SubtleGetKeyAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_SubtleEncryptAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_SubtleDecryptAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_SubtleWrapKeyAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_SubtleUnwrapKeyAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_SubtleSignAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_SubtleVerifyAlpha1_; const ::grpc::internal::RpcMethod rpcmethod_StartWorkflowAlpha1_; const ::grpc::internal::RpcMethod rpcmethod_GetWorkflowAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_PurgeWorkflowAlpha1_; const ::grpc::internal::RpcMethod rpcmethod_TerminateWorkflowAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_PauseWorkflowAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_ResumeWorkflowAlpha1_; + const ::grpc::internal::RpcMethod rpcmethod_RaiseEventWorkflowAlpha1_; const ::grpc::internal::RpcMethod rpcmethod_Shutdown_; }; static std::unique_ptr NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options = ::grpc::StubOptions()); @@ -870,24 +1250,56 @@ class Dapr final { virtual ::grpc::Status InvokeActor(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::InvokeActorRequest* request, ::dapr::proto::runtime::v1::InvokeActorResponse* response); // GetConfiguration gets configuration from configuration store. virtual ::grpc::Status GetConfigurationAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response); + // GetConfiguration gets configuration from configuration store. + virtual ::grpc::Status GetConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response); // SubscribeConfiguration gets configuration from configuration store and subscribe the updates event by grpc stream virtual ::grpc::Status SubscribeConfigurationAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer); + // SubscribeConfiguration gets configuration from configuration store and subscribe the updates event by grpc stream + virtual ::grpc::Status SubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer); // UnSubscribeConfiguration unsubscribe the subscription of configuration virtual ::grpc::Status UnsubscribeConfigurationAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response); + // UnSubscribeConfiguration unsubscribe the subscription of configuration + virtual ::grpc::Status UnsubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response); // TryLockAlpha1 tries to get a lock with an expiry. virtual ::grpc::Status TryLockAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TryLockRequest* request, ::dapr::proto::runtime::v1::TryLockResponse* response); // UnlockAlpha1 unlocks a lock. virtual ::grpc::Status UnlockAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnlockRequest* request, ::dapr::proto::runtime::v1::UnlockResponse* response); + // EncryptAlpha1 encrypts a message using the Dapr encryption scheme and a key stored in the vault. + virtual ::grpc::Status EncryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::dapr::proto::runtime::v1::EncryptResponse, ::dapr::proto::runtime::v1::EncryptRequest>* stream); + // DecryptAlpha1 decrypts a message using the Dapr encryption scheme and a key stored in the vault. + virtual ::grpc::Status DecryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::dapr::proto::runtime::v1::DecryptResponse, ::dapr::proto::runtime::v1::DecryptRequest>* stream); // Gets metadata of the sidecar virtual ::grpc::Status GetMetadata(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, ::dapr::proto::runtime::v1::GetMetadataResponse* response); // Sets value in extended metadata of the sidecar virtual ::grpc::Status SetMetadata(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest* request, ::google::protobuf::Empty* response); - // Start Workflow - virtual ::grpc::Status StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::WorkflowReference* response); - // Get Workflow details + // SubtleGetKeyAlpha1 returns the public part of an asymmetric key stored in the vault. + virtual ::grpc::Status SubtleGetKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest* request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response); + // SubtleEncryptAlpha1 encrypts a small message using a key stored in the vault. + virtual ::grpc::Status SubtleEncryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest* request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response); + // SubtleDecryptAlpha1 decrypts a small message using a key stored in the vault. + virtual ::grpc::Status SubtleDecryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest* request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response); + // SubtleWrapKeyAlpha1 wraps a key using a key stored in the vault. + virtual ::grpc::Status SubtleWrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response); + // SubtleUnwrapKeyAlpha1 unwraps a key using a key stored in the vault. + virtual ::grpc::Status SubtleUnwrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response); + // SubtleSignAlpha1 signs a message using a key stored in the vault. + virtual ::grpc::Status SubtleSignAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest* request, ::dapr::proto::runtime::v1::SubtleSignResponse* response); + // SubtleVerifyAlpha1 verifies the signature of a message using a key stored in the vault. + virtual ::grpc::Status SubtleVerifyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest* request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response); + // Starts a new instance of a workflow + virtual ::grpc::Status StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response); + // Gets details about a started workflow instance virtual ::grpc::Status GetWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest* request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response); - // Terminate Workflow - virtual ::grpc::Status TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response); + // Purge Workflow + virtual ::grpc::Status PurgeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest* request, ::google::protobuf::Empty* response); + // Terminates a running workflow instance + virtual ::grpc::Status TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::google::protobuf::Empty* response); + // Pauses a running workflow instance + virtual ::grpc::Status PauseWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest* request, ::google::protobuf::Empty* response); + // Resumes a paused workflow instance + virtual ::grpc::Status ResumeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest* request, ::google::protobuf::Empty* response); + // Raise an event to a running workflow instance + virtual ::grpc::Status RaiseEventWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* request, ::google::protobuf::Empty* response); // Shutdown the sidecar virtual ::grpc::Status Shutdown(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, ::google::protobuf::Empty* response); }; @@ -1332,457 +1744,777 @@ class Dapr final { } }; template - class WithAsyncMethod_SubscribeConfigurationAlpha1 : public BaseClass { + class WithAsyncMethod_GetConfiguration : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithAsyncMethod_SubscribeConfigurationAlpha1() { + WithAsyncMethod_GetConfiguration() { ::grpc::Service::MarkMethodAsync(22); } - ~WithAsyncMethod_SubscribeConfigurationAlpha1() override { + ~WithAsyncMethod_GetConfiguration() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status SubscribeConfigurationAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer) override { + ::grpc::Status GetConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestSubscribeConfigurationAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerAsyncWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(22, context, request, writer, new_call_cq, notification_cq, tag); + void RequestGetConfiguration(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::GetConfigurationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(22, context, request, response, new_call_cq, notification_cq, tag); } }; template - class WithAsyncMethod_UnsubscribeConfigurationAlpha1 : public BaseClass { + class WithAsyncMethod_SubscribeConfigurationAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithAsyncMethod_UnsubscribeConfigurationAlpha1() { + WithAsyncMethod_SubscribeConfigurationAlpha1() { ::grpc::Service::MarkMethodAsync(23); } - ~WithAsyncMethod_UnsubscribeConfigurationAlpha1() override { + ~WithAsyncMethod_SubscribeConfigurationAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status UnsubscribeConfigurationAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) override { + ::grpc::Status SubscribeConfigurationAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestUnsubscribeConfigurationAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(23, context, request, response, new_call_cq, notification_cq, tag); + void RequestSubscribeConfigurationAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerAsyncWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncServerStreaming(23, context, request, writer, new_call_cq, notification_cq, tag); } }; template - class WithAsyncMethod_TryLockAlpha1 : public BaseClass { + class WithAsyncMethod_SubscribeConfiguration : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithAsyncMethod_TryLockAlpha1() { + WithAsyncMethod_SubscribeConfiguration() { ::grpc::Service::MarkMethodAsync(24); } - ~WithAsyncMethod_TryLockAlpha1() override { + ~WithAsyncMethod_SubscribeConfiguration() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status TryLockAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TryLockRequest* request, ::dapr::proto::runtime::v1::TryLockResponse* response) override { + ::grpc::Status SubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestTryLockAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::TryLockRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::TryLockResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(24, context, request, response, new_call_cq, notification_cq, tag); + void RequestSubscribeConfiguration(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerAsyncWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncServerStreaming(24, context, request, writer, new_call_cq, notification_cq, tag); } }; template - class WithAsyncMethod_UnlockAlpha1 : public BaseClass { + class WithAsyncMethod_UnsubscribeConfigurationAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithAsyncMethod_UnlockAlpha1() { + WithAsyncMethod_UnsubscribeConfigurationAlpha1() { ::grpc::Service::MarkMethodAsync(25); } - ~WithAsyncMethod_UnlockAlpha1() override { + ~WithAsyncMethod_UnsubscribeConfigurationAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status UnlockAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnlockRequest* request, ::dapr::proto::runtime::v1::UnlockResponse* response) override { + ::grpc::Status UnsubscribeConfigurationAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestUnlockAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::UnlockRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::UnlockResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + void RequestUnsubscribeConfigurationAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { ::grpc::Service::RequestAsyncUnary(25, context, request, response, new_call_cq, notification_cq, tag); } }; template - class WithAsyncMethod_GetMetadata : public BaseClass { + class WithAsyncMethod_UnsubscribeConfiguration : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithAsyncMethod_GetMetadata() { + WithAsyncMethod_UnsubscribeConfiguration() { ::grpc::Service::MarkMethodAsync(26); } - ~WithAsyncMethod_GetMetadata() override { + ~WithAsyncMethod_UnsubscribeConfiguration() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status GetMetadata(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, ::dapr::proto::runtime::v1::GetMetadataResponse* response) override { + ::grpc::Status UnsubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestGetMetadata(::grpc::ServerContext* context, ::google::protobuf::Empty* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::GetMetadataResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + void RequestUnsubscribeConfiguration(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { ::grpc::Service::RequestAsyncUnary(26, context, request, response, new_call_cq, notification_cq, tag); } }; template - class WithAsyncMethod_SetMetadata : public BaseClass { + class WithAsyncMethod_TryLockAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithAsyncMethod_SetMetadata() { + WithAsyncMethod_TryLockAlpha1() { ::grpc::Service::MarkMethodAsync(27); } - ~WithAsyncMethod_SetMetadata() override { + ~WithAsyncMethod_TryLockAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status SetMetadata(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest* request, ::google::protobuf::Empty* response) override { + ::grpc::Status TryLockAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TryLockRequest* request, ::dapr::proto::runtime::v1::TryLockResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestSetMetadata(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SetMetadataRequest* request, ::grpc::ServerAsyncResponseWriter< ::google::protobuf::Empty>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + void RequestTryLockAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::TryLockRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::TryLockResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { ::grpc::Service::RequestAsyncUnary(27, context, request, response, new_call_cq, notification_cq, tag); } }; template - class WithAsyncMethod_StartWorkflowAlpha1 : public BaseClass { + class WithAsyncMethod_UnlockAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithAsyncMethod_StartWorkflowAlpha1() { + WithAsyncMethod_UnlockAlpha1() { ::grpc::Service::MarkMethodAsync(28); } - ~WithAsyncMethod_StartWorkflowAlpha1() override { + ~WithAsyncMethod_UnlockAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::WorkflowReference* response) override { + ::grpc::Status UnlockAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnlockRequest* request, ::dapr::proto::runtime::v1::UnlockResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestStartWorkflowAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::WorkflowReference>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + void RequestUnlockAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::UnlockRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::UnlockResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { ::grpc::Service::RequestAsyncUnary(28, context, request, response, new_call_cq, notification_cq, tag); } }; template - class WithAsyncMethod_GetWorkflowAlpha1 : public BaseClass { + class WithAsyncMethod_EncryptAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithAsyncMethod_GetWorkflowAlpha1() { + WithAsyncMethod_EncryptAlpha1() { ::grpc::Service::MarkMethodAsync(29); } - ~WithAsyncMethod_GetWorkflowAlpha1() override { + ~WithAsyncMethod_EncryptAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status GetWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest* request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response) override { + ::grpc::Status EncryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::dapr::proto::runtime::v1::EncryptResponse, ::dapr::proto::runtime::v1::EncryptRequest>* stream) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestGetWorkflowAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::GetWorkflowRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::GetWorkflowResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(29, context, request, response, new_call_cq, notification_cq, tag); + void RequestEncryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerAsyncReaderWriter< ::dapr::proto::runtime::v1::EncryptResponse, ::dapr::proto::runtime::v1::EncryptRequest>* stream, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncBidiStreaming(29, context, stream, new_call_cq, notification_cq, tag); } }; template - class WithAsyncMethod_TerminateWorkflowAlpha1 : public BaseClass { + class WithAsyncMethod_DecryptAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithAsyncMethod_TerminateWorkflowAlpha1() { + WithAsyncMethod_DecryptAlpha1() { ::grpc::Service::MarkMethodAsync(30); } - ~WithAsyncMethod_TerminateWorkflowAlpha1() override { + ~WithAsyncMethod_DecryptAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response) override { + ::grpc::Status DecryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::dapr::proto::runtime::v1::DecryptResponse, ::dapr::proto::runtime::v1::DecryptRequest>* stream) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestTerminateWorkflowAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::TerminateWorkflowResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(30, context, request, response, new_call_cq, notification_cq, tag); + void RequestDecryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerAsyncReaderWriter< ::dapr::proto::runtime::v1::DecryptResponse, ::dapr::proto::runtime::v1::DecryptRequest>* stream, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncBidiStreaming(30, context, stream, new_call_cq, notification_cq, tag); } }; template - class WithAsyncMethod_Shutdown : public BaseClass { + class WithAsyncMethod_GetMetadata : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithAsyncMethod_Shutdown() { + WithAsyncMethod_GetMetadata() { ::grpc::Service::MarkMethodAsync(31); } - ~WithAsyncMethod_Shutdown() override { + ~WithAsyncMethod_GetMetadata() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status Shutdown(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, ::google::protobuf::Empty* response) override { + ::grpc::Status GetMetadata(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, ::dapr::proto::runtime::v1::GetMetadataResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestShutdown(::grpc::ServerContext* context, ::google::protobuf::Empty* request, ::grpc::ServerAsyncResponseWriter< ::google::protobuf::Empty>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + void RequestGetMetadata(::grpc::ServerContext* context, ::google::protobuf::Empty* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::GetMetadataResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { ::grpc::Service::RequestAsyncUnary(31, context, request, response, new_call_cq, notification_cq, tag); } }; - typedef WithAsyncMethod_InvokeService > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > AsyncService; template - class WithGenericMethod_InvokeService : public BaseClass { + class WithAsyncMethod_SetMetadata : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_InvokeService() { - ::grpc::Service::MarkMethodGeneric(0); + WithAsyncMethod_SetMetadata() { + ::grpc::Service::MarkMethodAsync(32); } - ~WithGenericMethod_InvokeService() override { + ~WithAsyncMethod_SetMetadata() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status InvokeService(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::InvokeServiceRequest* request, ::dapr::proto::common::v1::InvokeResponse* response) override { + ::grpc::Status SetMetadata(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestSetMetadata(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SetMetadataRequest* request, ::grpc::ServerAsyncResponseWriter< ::google::protobuf::Empty>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(32, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_GetState : public BaseClass { + class WithAsyncMethod_SubtleGetKeyAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_GetState() { - ::grpc::Service::MarkMethodGeneric(1); + WithAsyncMethod_SubtleGetKeyAlpha1() { + ::grpc::Service::MarkMethodAsync(33); } - ~WithGenericMethod_GetState() override { + ~WithAsyncMethod_SubtleGetKeyAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status GetState(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetStateRequest* request, ::dapr::proto::runtime::v1::GetStateResponse* response) override { + ::grpc::Status SubtleGetKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest* request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestSubtleGetKeyAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SubtleGetKeyRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::SubtleGetKeyResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(33, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_GetBulkState : public BaseClass { + class WithAsyncMethod_SubtleEncryptAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_GetBulkState() { - ::grpc::Service::MarkMethodGeneric(2); + WithAsyncMethod_SubtleEncryptAlpha1() { + ::grpc::Service::MarkMethodAsync(34); } - ~WithGenericMethod_GetBulkState() override { + ~WithAsyncMethod_SubtleEncryptAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status GetBulkState(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetBulkStateRequest* request, ::dapr::proto::runtime::v1::GetBulkStateResponse* response) override { + ::grpc::Status SubtleEncryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest* request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestSubtleEncryptAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SubtleEncryptRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::SubtleEncryptResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(34, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_SaveState : public BaseClass { + class WithAsyncMethod_SubtleDecryptAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_SaveState() { - ::grpc::Service::MarkMethodGeneric(3); + WithAsyncMethod_SubtleDecryptAlpha1() { + ::grpc::Service::MarkMethodAsync(35); } - ~WithGenericMethod_SaveState() override { + ~WithAsyncMethod_SubtleDecryptAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status SaveState(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SaveStateRequest* request, ::google::protobuf::Empty* response) override { + ::grpc::Status SubtleDecryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest* request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestSubtleDecryptAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SubtleDecryptRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::SubtleDecryptResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(35, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_QueryStateAlpha1 : public BaseClass { + class WithAsyncMethod_SubtleWrapKeyAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_QueryStateAlpha1() { - ::grpc::Service::MarkMethodGeneric(4); + WithAsyncMethod_SubtleWrapKeyAlpha1() { + ::grpc::Service::MarkMethodAsync(36); } - ~WithGenericMethod_QueryStateAlpha1() override { + ~WithAsyncMethod_SubtleWrapKeyAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status QueryStateAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::QueryStateRequest* request, ::dapr::proto::runtime::v1::QueryStateResponse* response) override { + ::grpc::Status SubtleWrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestSubtleWrapKeyAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(36, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_DeleteState : public BaseClass { + class WithAsyncMethod_SubtleUnwrapKeyAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_DeleteState() { - ::grpc::Service::MarkMethodGeneric(5); + WithAsyncMethod_SubtleUnwrapKeyAlpha1() { + ::grpc::Service::MarkMethodAsync(37); } - ~WithGenericMethod_DeleteState() override { + ~WithAsyncMethod_SubtleUnwrapKeyAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status DeleteState(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::DeleteStateRequest* request, ::google::protobuf::Empty* response) override { + ::grpc::Status SubtleUnwrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestSubtleUnwrapKeyAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(37, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_DeleteBulkState : public BaseClass { + class WithAsyncMethod_SubtleSignAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_DeleteBulkState() { - ::grpc::Service::MarkMethodGeneric(6); + WithAsyncMethod_SubtleSignAlpha1() { + ::grpc::Service::MarkMethodAsync(38); } - ~WithGenericMethod_DeleteBulkState() override { + ~WithAsyncMethod_SubtleSignAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status DeleteBulkState(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::DeleteBulkStateRequest* request, ::google::protobuf::Empty* response) override { + ::grpc::Status SubtleSignAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest* request, ::dapr::proto::runtime::v1::SubtleSignResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestSubtleSignAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SubtleSignRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::SubtleSignResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(38, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_ExecuteStateTransaction : public BaseClass { + class WithAsyncMethod_SubtleVerifyAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_ExecuteStateTransaction() { - ::grpc::Service::MarkMethodGeneric(7); + WithAsyncMethod_SubtleVerifyAlpha1() { + ::grpc::Service::MarkMethodAsync(39); } - ~WithGenericMethod_ExecuteStateTransaction() override { + ~WithAsyncMethod_SubtleVerifyAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status ExecuteStateTransaction(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::ExecuteStateTransactionRequest* request, ::google::protobuf::Empty* response) override { + ::grpc::Status SubtleVerifyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest* request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestSubtleVerifyAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::SubtleVerifyRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::SubtleVerifyResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(39, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_PublishEvent : public BaseClass { + class WithAsyncMethod_StartWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_PublishEvent() { - ::grpc::Service::MarkMethodGeneric(8); + WithAsyncMethod_StartWorkflowAlpha1() { + ::grpc::Service::MarkMethodAsync(40); } - ~WithGenericMethod_PublishEvent() override { + ~WithAsyncMethod_StartWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status PublishEvent(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PublishEventRequest* request, ::google::protobuf::Empty* response) override { + ::grpc::Status StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestStartWorkflowAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::StartWorkflowResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(40, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_BulkPublishEventAlpha1 : public BaseClass { + class WithAsyncMethod_GetWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_BulkPublishEventAlpha1() { - ::grpc::Service::MarkMethodGeneric(9); + WithAsyncMethod_GetWorkflowAlpha1() { + ::grpc::Service::MarkMethodAsync(41); } - ~WithGenericMethod_BulkPublishEventAlpha1() override { + ~WithAsyncMethod_GetWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status BulkPublishEventAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::BulkPublishRequest* request, ::dapr::proto::runtime::v1::BulkPublishResponse* response) override { + ::grpc::Status GetWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest* request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestGetWorkflowAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::GetWorkflowRequest* request, ::grpc::ServerAsyncResponseWriter< ::dapr::proto::runtime::v1::GetWorkflowResponse>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(41, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_InvokeBinding : public BaseClass { + class WithAsyncMethod_PurgeWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_InvokeBinding() { - ::grpc::Service::MarkMethodGeneric(10); + WithAsyncMethod_PurgeWorkflowAlpha1() { + ::grpc::Service::MarkMethodAsync(42); } - ~WithGenericMethod_InvokeBinding() override { + ~WithAsyncMethod_PurgeWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status InvokeBinding(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::InvokeBindingRequest* request, ::dapr::proto::runtime::v1::InvokeBindingResponse* response) override { + ::grpc::Status PurgeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestPurgeWorkflowAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::PurgeWorkflowRequest* request, ::grpc::ServerAsyncResponseWriter< ::google::protobuf::Empty>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(42, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_GetSecret : public BaseClass { + class WithAsyncMethod_TerminateWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_GetSecret() { - ::grpc::Service::MarkMethodGeneric(11); + WithAsyncMethod_TerminateWorkflowAlpha1() { + ::grpc::Service::MarkMethodAsync(43); } - ~WithGenericMethod_GetSecret() override { + ~WithAsyncMethod_TerminateWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status GetSecret(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetSecretRequest* request, ::dapr::proto::runtime::v1::GetSecretResponse* response) override { + ::grpc::Status TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestTerminateWorkflowAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::grpc::ServerAsyncResponseWriter< ::google::protobuf::Empty>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(43, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_GetBulkSecret : public BaseClass { + class WithAsyncMethod_PauseWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_GetBulkSecret() { - ::grpc::Service::MarkMethodGeneric(12); + WithAsyncMethod_PauseWorkflowAlpha1() { + ::grpc::Service::MarkMethodAsync(44); } - ~WithGenericMethod_GetBulkSecret() override { + ~WithAsyncMethod_PauseWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status GetBulkSecret(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetBulkSecretRequest* request, ::dapr::proto::runtime::v1::GetBulkSecretResponse* response) override { + ::grpc::Status PauseWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestPauseWorkflowAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::PauseWorkflowRequest* request, ::grpc::ServerAsyncResponseWriter< ::google::protobuf::Empty>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(44, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_RegisterActorTimer : public BaseClass { + class WithAsyncMethod_ResumeWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_RegisterActorTimer() { - ::grpc::Service::MarkMethodGeneric(13); + WithAsyncMethod_ResumeWorkflowAlpha1() { + ::grpc::Service::MarkMethodAsync(45); } - ~WithGenericMethod_RegisterActorTimer() override { + ~WithAsyncMethod_ResumeWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status RegisterActorTimer(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::RegisterActorTimerRequest* request, ::google::protobuf::Empty* response) override { + ::grpc::Status ResumeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } + void RequestResumeWorkflowAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::ResumeWorkflowRequest* request, ::grpc::ServerAsyncResponseWriter< ::google::protobuf::Empty>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(45, context, request, response, new_call_cq, notification_cq, tag); + } }; template - class WithGenericMethod_UnregisterActorTimer : public BaseClass { + class WithAsyncMethod_RaiseEventWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_UnregisterActorTimer() { - ::grpc::Service::MarkMethodGeneric(14); + WithAsyncMethod_RaiseEventWorkflowAlpha1() { + ::grpc::Service::MarkMethodAsync(46); } - ~WithGenericMethod_UnregisterActorTimer() override { + ~WithAsyncMethod_RaiseEventWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status UnregisterActorTimer(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnregisterActorTimerRequest* request, ::google::protobuf::Empty* response) override { + ::grpc::Status RaiseEventWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestRaiseEventWorkflowAlpha1(::grpc::ServerContext* context, ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* request, ::grpc::ServerAsyncResponseWriter< ::google::protobuf::Empty>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(46, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithAsyncMethod_Shutdown : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithAsyncMethod_Shutdown() { + ::grpc::Service::MarkMethodAsync(47); + } + ~WithAsyncMethod_Shutdown() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status Shutdown(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestShutdown(::grpc::ServerContext* context, ::google::protobuf::Empty* request, ::grpc::ServerAsyncResponseWriter< ::google::protobuf::Empty>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(47, context, request, response, new_call_cq, notification_cq, tag); + } + }; + typedef WithAsyncMethod_InvokeService > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > AsyncService; + template + class WithGenericMethod_InvokeService : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_InvokeService() { + ::grpc::Service::MarkMethodGeneric(0); + } + ~WithGenericMethod_InvokeService() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status InvokeService(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::InvokeServiceRequest* request, ::dapr::proto::common::v1::InvokeResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_GetState : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_GetState() { + ::grpc::Service::MarkMethodGeneric(1); + } + ~WithGenericMethod_GetState() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status GetState(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetStateRequest* request, ::dapr::proto::runtime::v1::GetStateResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_GetBulkState : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_GetBulkState() { + ::grpc::Service::MarkMethodGeneric(2); + } + ~WithGenericMethod_GetBulkState() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status GetBulkState(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetBulkStateRequest* request, ::dapr::proto::runtime::v1::GetBulkStateResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_SaveState : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_SaveState() { + ::grpc::Service::MarkMethodGeneric(3); + } + ~WithGenericMethod_SaveState() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SaveState(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SaveStateRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_QueryStateAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_QueryStateAlpha1() { + ::grpc::Service::MarkMethodGeneric(4); + } + ~WithGenericMethod_QueryStateAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status QueryStateAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::QueryStateRequest* request, ::dapr::proto::runtime::v1::QueryStateResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_DeleteState : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_DeleteState() { + ::grpc::Service::MarkMethodGeneric(5); + } + ~WithGenericMethod_DeleteState() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status DeleteState(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::DeleteStateRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_DeleteBulkState : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_DeleteBulkState() { + ::grpc::Service::MarkMethodGeneric(6); + } + ~WithGenericMethod_DeleteBulkState() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status DeleteBulkState(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::DeleteBulkStateRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_ExecuteStateTransaction : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_ExecuteStateTransaction() { + ::grpc::Service::MarkMethodGeneric(7); + } + ~WithGenericMethod_ExecuteStateTransaction() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status ExecuteStateTransaction(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::ExecuteStateTransactionRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_PublishEvent : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_PublishEvent() { + ::grpc::Service::MarkMethodGeneric(8); + } + ~WithGenericMethod_PublishEvent() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status PublishEvent(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PublishEventRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_BulkPublishEventAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_BulkPublishEventAlpha1() { + ::grpc::Service::MarkMethodGeneric(9); + } + ~WithGenericMethod_BulkPublishEventAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status BulkPublishEventAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::BulkPublishRequest* request, ::dapr::proto::runtime::v1::BulkPublishResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_InvokeBinding : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_InvokeBinding() { + ::grpc::Service::MarkMethodGeneric(10); + } + ~WithGenericMethod_InvokeBinding() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status InvokeBinding(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::InvokeBindingRequest* request, ::dapr::proto::runtime::v1::InvokeBindingResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_GetSecret : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_GetSecret() { + ::grpc::Service::MarkMethodGeneric(11); + } + ~WithGenericMethod_GetSecret() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status GetSecret(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetSecretRequest* request, ::dapr::proto::runtime::v1::GetSecretResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_GetBulkSecret : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_GetBulkSecret() { + ::grpc::Service::MarkMethodGeneric(12); + } + ~WithGenericMethod_GetBulkSecret() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status GetBulkSecret(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetBulkSecretRequest* request, ::dapr::proto::runtime::v1::GetBulkSecretResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_RegisterActorTimer : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_RegisterActorTimer() { + ::grpc::Service::MarkMethodGeneric(13); + } + ~WithGenericMethod_RegisterActorTimer() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status RegisterActorTimer(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::RegisterActorTimerRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_UnregisterActorTimer : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_UnregisterActorTimer() { + ::grpc::Service::MarkMethodGeneric(14); + } + ~WithGenericMethod_UnregisterActorTimer() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status UnregisterActorTimer(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnregisterActorTimerRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } @@ -1907,12 +2639,29 @@ class Dapr final { } }; template + class WithGenericMethod_GetConfiguration : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_GetConfiguration() { + ::grpc::Service::MarkMethodGeneric(22); + } + ~WithGenericMethod_GetConfiguration() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status GetConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template class WithGenericMethod_SubscribeConfigurationAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_SubscribeConfigurationAlpha1() { - ::grpc::Service::MarkMethodGeneric(22); + ::grpc::Service::MarkMethodGeneric(23); } ~WithGenericMethod_SubscribeConfigurationAlpha1() override { BaseClassMustBeDerivedFromService(this); @@ -1924,12 +2673,29 @@ class Dapr final { } }; template + class WithGenericMethod_SubscribeConfiguration : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_SubscribeConfiguration() { + ::grpc::Service::MarkMethodGeneric(24); + } + ~WithGenericMethod_SubscribeConfiguration() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template class WithGenericMethod_UnsubscribeConfigurationAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_UnsubscribeConfigurationAlpha1() { - ::grpc::Service::MarkMethodGeneric(23); + ::grpc::Service::MarkMethodGeneric(25); } ~WithGenericMethod_UnsubscribeConfigurationAlpha1() override { BaseClassMustBeDerivedFromService(this); @@ -1941,12 +2707,29 @@ class Dapr final { } }; template + class WithGenericMethod_UnsubscribeConfiguration : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_UnsubscribeConfiguration() { + ::grpc::Service::MarkMethodGeneric(26); + } + ~WithGenericMethod_UnsubscribeConfiguration() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status UnsubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template class WithGenericMethod_TryLockAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_TryLockAlpha1() { - ::grpc::Service::MarkMethodGeneric(24); + ::grpc::Service::MarkMethodGeneric(27); } ~WithGenericMethod_TryLockAlpha1() override { BaseClassMustBeDerivedFromService(this); @@ -1963,7 +2746,7 @@ class Dapr final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_UnlockAlpha1() { - ::grpc::Service::MarkMethodGeneric(25); + ::grpc::Service::MarkMethodGeneric(28); } ~WithGenericMethod_UnlockAlpha1() override { BaseClassMustBeDerivedFromService(this); @@ -1975,12 +2758,46 @@ class Dapr final { } }; template + class WithGenericMethod_EncryptAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_EncryptAlpha1() { + ::grpc::Service::MarkMethodGeneric(29); + } + ~WithGenericMethod_EncryptAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status EncryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::dapr::proto::runtime::v1::EncryptResponse, ::dapr::proto::runtime::v1::EncryptRequest>* stream) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_DecryptAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_DecryptAlpha1() { + ::grpc::Service::MarkMethodGeneric(30); + } + ~WithGenericMethod_DecryptAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status DecryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::dapr::proto::runtime::v1::DecryptResponse, ::dapr::proto::runtime::v1::DecryptRequest>* stream) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template class WithGenericMethod_GetMetadata : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_GetMetadata() { - ::grpc::Service::MarkMethodGeneric(26); + ::grpc::Service::MarkMethodGeneric(31); } ~WithGenericMethod_GetMetadata() override { BaseClassMustBeDerivedFromService(this); @@ -1997,7 +2814,7 @@ class Dapr final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_SetMetadata() { - ::grpc::Service::MarkMethodGeneric(27); + ::grpc::Service::MarkMethodGeneric(32); } ~WithGenericMethod_SetMetadata() override { BaseClassMustBeDerivedFromService(this); @@ -2009,52 +2826,239 @@ class Dapr final { } }; template + class WithGenericMethod_SubtleGetKeyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_SubtleGetKeyAlpha1() { + ::grpc::Service::MarkMethodGeneric(33); + } + ~WithGenericMethod_SubtleGetKeyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleGetKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest* request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_SubtleEncryptAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_SubtleEncryptAlpha1() { + ::grpc::Service::MarkMethodGeneric(34); + } + ~WithGenericMethod_SubtleEncryptAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleEncryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest* request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_SubtleDecryptAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_SubtleDecryptAlpha1() { + ::grpc::Service::MarkMethodGeneric(35); + } + ~WithGenericMethod_SubtleDecryptAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleDecryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest* request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_SubtleWrapKeyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_SubtleWrapKeyAlpha1() { + ::grpc::Service::MarkMethodGeneric(36); + } + ~WithGenericMethod_SubtleWrapKeyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleWrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_SubtleUnwrapKeyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_SubtleUnwrapKeyAlpha1() { + ::grpc::Service::MarkMethodGeneric(37); + } + ~WithGenericMethod_SubtleUnwrapKeyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleUnwrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_SubtleSignAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_SubtleSignAlpha1() { + ::grpc::Service::MarkMethodGeneric(38); + } + ~WithGenericMethod_SubtleSignAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleSignAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest* request, ::dapr::proto::runtime::v1::SubtleSignResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_SubtleVerifyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_SubtleVerifyAlpha1() { + ::grpc::Service::MarkMethodGeneric(39); + } + ~WithGenericMethod_SubtleVerifyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleVerifyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest* request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template class WithGenericMethod_StartWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_StartWorkflowAlpha1() { - ::grpc::Service::MarkMethodGeneric(28); + ::grpc::Service::MarkMethodGeneric(40); + } + ~WithGenericMethod_StartWorkflowAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_GetWorkflowAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_GetWorkflowAlpha1() { + ::grpc::Service::MarkMethodGeneric(41); + } + ~WithGenericMethod_GetWorkflowAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status GetWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest* request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_PurgeWorkflowAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_PurgeWorkflowAlpha1() { + ::grpc::Service::MarkMethodGeneric(42); + } + ~WithGenericMethod_PurgeWorkflowAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status PurgeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_TerminateWorkflowAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_TerminateWorkflowAlpha1() { + ::grpc::Service::MarkMethodGeneric(43); + } + ~WithGenericMethod_TerminateWorkflowAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_PauseWorkflowAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithGenericMethod_PauseWorkflowAlpha1() { + ::grpc::Service::MarkMethodGeneric(44); } - ~WithGenericMethod_StartWorkflowAlpha1() override { + ~WithGenericMethod_PauseWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::WorkflowReference* response) override { + ::grpc::Status PauseWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } }; template - class WithGenericMethod_GetWorkflowAlpha1 : public BaseClass { + class WithGenericMethod_ResumeWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_GetWorkflowAlpha1() { - ::grpc::Service::MarkMethodGeneric(29); + WithGenericMethod_ResumeWorkflowAlpha1() { + ::grpc::Service::MarkMethodGeneric(45); } - ~WithGenericMethod_GetWorkflowAlpha1() override { + ~WithGenericMethod_ResumeWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status GetWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest* request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response) override { + ::grpc::Status ResumeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } }; template - class WithGenericMethod_TerminateWorkflowAlpha1 : public BaseClass { + class WithGenericMethod_RaiseEventWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithGenericMethod_TerminateWorkflowAlpha1() { - ::grpc::Service::MarkMethodGeneric(30); + WithGenericMethod_RaiseEventWorkflowAlpha1() { + ::grpc::Service::MarkMethodGeneric(46); } - ~WithGenericMethod_TerminateWorkflowAlpha1() override { + ~WithGenericMethod_RaiseEventWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response) override { + ::grpc::Status RaiseEventWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } @@ -2065,7 +3069,7 @@ class Dapr final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithGenericMethod_Shutdown() { - ::grpc::Service::MarkMethodGeneric(31); + ::grpc::Service::MarkMethodGeneric(47); } ~WithGenericMethod_Shutdown() override { BaseClassMustBeDerivedFromService(this); @@ -2517,12 +3521,32 @@ class Dapr final { } }; template + class WithRawMethod_GetConfiguration : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_GetConfiguration() { + ::grpc::Service::MarkMethodRaw(22); + } + ~WithRawMethod_GetConfiguration() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status GetConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestGetConfiguration(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(22, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template class WithRawMethod_SubscribeConfigurationAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_SubscribeConfigurationAlpha1() { - ::grpc::Service::MarkMethodRaw(22); + ::grpc::Service::MarkMethodRaw(23); } ~WithRawMethod_SubscribeConfigurationAlpha1() override { BaseClassMustBeDerivedFromService(this); @@ -2533,7 +3557,27 @@ class Dapr final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestSubscribeConfigurationAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncWriter< ::grpc::ByteBuffer>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncServerStreaming(22, context, request, writer, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncServerStreaming(23, context, request, writer, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_SubscribeConfiguration : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_SubscribeConfiguration() { + ::grpc::Service::MarkMethodRaw(24); + } + ~WithRawMethod_SubscribeConfiguration() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestSubscribeConfiguration(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncWriter< ::grpc::ByteBuffer>* writer, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncServerStreaming(24, context, request, writer, new_call_cq, notification_cq, tag); } }; template @@ -2542,7 +3586,7 @@ class Dapr final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_UnsubscribeConfigurationAlpha1() { - ::grpc::Service::MarkMethodRaw(23); + ::grpc::Service::MarkMethodRaw(25); } ~WithRawMethod_UnsubscribeConfigurationAlpha1() override { BaseClassMustBeDerivedFromService(this); @@ -2553,7 +3597,27 @@ class Dapr final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestUnsubscribeConfigurationAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(23, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(25, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_UnsubscribeConfiguration : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_UnsubscribeConfiguration() { + ::grpc::Service::MarkMethodRaw(26); + } + ~WithRawMethod_UnsubscribeConfiguration() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status UnsubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestUnsubscribeConfiguration(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(26, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2561,139 +3625,399 @@ class Dapr final { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithRawMethod_TryLockAlpha1() { - ::grpc::Service::MarkMethodRaw(24); + WithRawMethod_TryLockAlpha1() { + ::grpc::Service::MarkMethodRaw(27); + } + ~WithRawMethod_TryLockAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status TryLockAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TryLockRequest* request, ::dapr::proto::runtime::v1::TryLockResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestTryLockAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(27, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_UnlockAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_UnlockAlpha1() { + ::grpc::Service::MarkMethodRaw(28); + } + ~WithRawMethod_UnlockAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status UnlockAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnlockRequest* request, ::dapr::proto::runtime::v1::UnlockResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestUnlockAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(28, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_EncryptAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_EncryptAlpha1() { + ::grpc::Service::MarkMethodRaw(29); + } + ~WithRawMethod_EncryptAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status EncryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::dapr::proto::runtime::v1::EncryptResponse, ::dapr::proto::runtime::v1::EncryptRequest>* stream) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestEncryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerAsyncReaderWriter< ::grpc::ByteBuffer, ::grpc::ByteBuffer>* stream, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncBidiStreaming(29, context, stream, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_DecryptAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_DecryptAlpha1() { + ::grpc::Service::MarkMethodRaw(30); + } + ~WithRawMethod_DecryptAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status DecryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerReaderWriter< ::dapr::proto::runtime::v1::DecryptResponse, ::dapr::proto::runtime::v1::DecryptRequest>* stream) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestDecryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerAsyncReaderWriter< ::grpc::ByteBuffer, ::grpc::ByteBuffer>* stream, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncBidiStreaming(30, context, stream, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_GetMetadata : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_GetMetadata() { + ::grpc::Service::MarkMethodRaw(31); + } + ~WithRawMethod_GetMetadata() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status GetMetadata(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, ::dapr::proto::runtime::v1::GetMetadataResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestGetMetadata(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(31, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_SetMetadata : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_SetMetadata() { + ::grpc::Service::MarkMethodRaw(32); + } + ~WithRawMethod_SetMetadata() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SetMetadata(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestSetMetadata(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(32, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_SubtleGetKeyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_SubtleGetKeyAlpha1() { + ::grpc::Service::MarkMethodRaw(33); + } + ~WithRawMethod_SubtleGetKeyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleGetKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest* request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestSubtleGetKeyAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(33, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_SubtleEncryptAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_SubtleEncryptAlpha1() { + ::grpc::Service::MarkMethodRaw(34); + } + ~WithRawMethod_SubtleEncryptAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleEncryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest* request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestSubtleEncryptAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(34, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_SubtleDecryptAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_SubtleDecryptAlpha1() { + ::grpc::Service::MarkMethodRaw(35); + } + ~WithRawMethod_SubtleDecryptAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleDecryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest* request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestSubtleDecryptAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(35, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_SubtleWrapKeyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_SubtleWrapKeyAlpha1() { + ::grpc::Service::MarkMethodRaw(36); + } + ~WithRawMethod_SubtleWrapKeyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleWrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestSubtleWrapKeyAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(36, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_SubtleUnwrapKeyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_SubtleUnwrapKeyAlpha1() { + ::grpc::Service::MarkMethodRaw(37); + } + ~WithRawMethod_SubtleUnwrapKeyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleUnwrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestSubtleUnwrapKeyAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(37, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_SubtleSignAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_SubtleSignAlpha1() { + ::grpc::Service::MarkMethodRaw(38); + } + ~WithRawMethod_SubtleSignAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleSignAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest* request, ::dapr::proto::runtime::v1::SubtleSignResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestSubtleSignAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(38, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_SubtleVerifyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_SubtleVerifyAlpha1() { + ::grpc::Service::MarkMethodRaw(39); + } + ~WithRawMethod_SubtleVerifyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status SubtleVerifyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest* request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestSubtleVerifyAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(39, context, request, response, new_call_cq, notification_cq, tag); + } + }; + template + class WithRawMethod_StartWorkflowAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithRawMethod_StartWorkflowAlpha1() { + ::grpc::Service::MarkMethodRaw(40); } - ~WithRawMethod_TryLockAlpha1() override { + ~WithRawMethod_StartWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status TryLockAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TryLockRequest* request, ::dapr::proto::runtime::v1::TryLockResponse* response) override { + ::grpc::Status StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestTryLockAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(24, context, request, response, new_call_cq, notification_cq, tag); + void RequestStartWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(40, context, request, response, new_call_cq, notification_cq, tag); } }; template - class WithRawMethod_UnlockAlpha1 : public BaseClass { + class WithRawMethod_GetWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithRawMethod_UnlockAlpha1() { - ::grpc::Service::MarkMethodRaw(25); + WithRawMethod_GetWorkflowAlpha1() { + ::grpc::Service::MarkMethodRaw(41); } - ~WithRawMethod_UnlockAlpha1() override { + ~WithRawMethod_GetWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status UnlockAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnlockRequest* request, ::dapr::proto::runtime::v1::UnlockResponse* response) override { + ::grpc::Status GetWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest* request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestUnlockAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(25, context, request, response, new_call_cq, notification_cq, tag); + void RequestGetWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(41, context, request, response, new_call_cq, notification_cq, tag); } }; template - class WithRawMethod_GetMetadata : public BaseClass { + class WithRawMethod_PurgeWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithRawMethod_GetMetadata() { - ::grpc::Service::MarkMethodRaw(26); + WithRawMethod_PurgeWorkflowAlpha1() { + ::grpc::Service::MarkMethodRaw(42); } - ~WithRawMethod_GetMetadata() override { + ~WithRawMethod_PurgeWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status GetMetadata(::grpc::ServerContext* context, const ::google::protobuf::Empty* request, ::dapr::proto::runtime::v1::GetMetadataResponse* response) override { + ::grpc::Status PurgeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestGetMetadata(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(26, context, request, response, new_call_cq, notification_cq, tag); + void RequestPurgeWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(42, context, request, response, new_call_cq, notification_cq, tag); } }; template - class WithRawMethod_SetMetadata : public BaseClass { + class WithRawMethod_TerminateWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithRawMethod_SetMetadata() { - ::grpc::Service::MarkMethodRaw(27); + WithRawMethod_TerminateWorkflowAlpha1() { + ::grpc::Service::MarkMethodRaw(43); } - ~WithRawMethod_SetMetadata() override { + ~WithRawMethod_TerminateWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status SetMetadata(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SetMetadataRequest* request, ::google::protobuf::Empty* response) override { + ::grpc::Status TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestSetMetadata(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(27, context, request, response, new_call_cq, notification_cq, tag); + void RequestTerminateWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(43, context, request, response, new_call_cq, notification_cq, tag); } }; template - class WithRawMethod_StartWorkflowAlpha1 : public BaseClass { + class WithRawMethod_PauseWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithRawMethod_StartWorkflowAlpha1() { - ::grpc::Service::MarkMethodRaw(28); + WithRawMethod_PauseWorkflowAlpha1() { + ::grpc::Service::MarkMethodRaw(44); } - ~WithRawMethod_StartWorkflowAlpha1() override { + ~WithRawMethod_PauseWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::WorkflowReference* response) override { + ::grpc::Status PauseWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestStartWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(28, context, request, response, new_call_cq, notification_cq, tag); + void RequestPauseWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(44, context, request, response, new_call_cq, notification_cq, tag); } }; template - class WithRawMethod_GetWorkflowAlpha1 : public BaseClass { + class WithRawMethod_ResumeWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithRawMethod_GetWorkflowAlpha1() { - ::grpc::Service::MarkMethodRaw(29); + WithRawMethod_ResumeWorkflowAlpha1() { + ::grpc::Service::MarkMethodRaw(45); } - ~WithRawMethod_GetWorkflowAlpha1() override { + ~WithRawMethod_ResumeWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status GetWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetWorkflowRequest* request, ::dapr::proto::runtime::v1::GetWorkflowResponse* response) override { + ::grpc::Status ResumeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestGetWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(29, context, request, response, new_call_cq, notification_cq, tag); + void RequestResumeWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(45, context, request, response, new_call_cq, notification_cq, tag); } }; template - class WithRawMethod_TerminateWorkflowAlpha1 : public BaseClass { + class WithRawMethod_RaiseEventWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: - WithRawMethod_TerminateWorkflowAlpha1() { - ::grpc::Service::MarkMethodRaw(30); + WithRawMethod_RaiseEventWorkflowAlpha1() { + ::grpc::Service::MarkMethodRaw(46); } - ~WithRawMethod_TerminateWorkflowAlpha1() override { + ~WithRawMethod_RaiseEventWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable synchronous version of this method - ::grpc::Status TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response) override { + ::grpc::Status RaiseEventWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } - void RequestTerminateWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(30, context, request, response, new_call_cq, notification_cq, tag); + void RequestRaiseEventWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { + ::grpc::Service::RequestAsyncUnary(46, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -2702,7 +4026,7 @@ class Dapr final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithRawMethod_Shutdown() { - ::grpc::Service::MarkMethodRaw(31); + ::grpc::Service::MarkMethodRaw(47); } ~WithRawMethod_Shutdown() override { BaseClassMustBeDerivedFromService(this); @@ -2713,7 +4037,7 @@ class Dapr final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestShutdown(::grpc::ServerContext* context, ::grpc::ByteBuffer* request, ::grpc::ServerAsyncResponseWriter< ::grpc::ByteBuffer>* response, ::grpc::CompletionQueue* new_call_cq, ::grpc::ServerCompletionQueue* notification_cq, void *tag) { - ::grpc::Service::RequestAsyncUnary(31, context, request, response, new_call_cq, notification_cq, tag); + ::grpc::Service::RequestAsyncUnary(47, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -3157,12 +4481,32 @@ class Dapr final { virtual ::grpc::Status StreamedGetConfigurationAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::GetConfigurationRequest,::dapr::proto::runtime::v1::GetConfigurationResponse>* server_unary_streamer) = 0; }; template + class WithStreamedUnaryMethod_GetConfiguration : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_GetConfiguration() { + ::grpc::Service::MarkMethodStreamed(22, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::GetConfigurationRequest, ::dapr::proto::runtime::v1::GetConfigurationResponse>(std::bind(&WithStreamedUnaryMethod_GetConfiguration::StreamedGetConfiguration, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_GetConfiguration() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status GetConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::GetConfigurationRequest* request, ::dapr::proto::runtime::v1::GetConfigurationResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedGetConfiguration(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::GetConfigurationRequest,::dapr::proto::runtime::v1::GetConfigurationResponse>* server_unary_streamer) = 0; + }; + template class WithStreamedUnaryMethod_UnsubscribeConfigurationAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_UnsubscribeConfigurationAlpha1() { - ::grpc::Service::MarkMethodStreamed(23, + ::grpc::Service::MarkMethodStreamed(25, new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>(std::bind(&WithStreamedUnaryMethod_UnsubscribeConfigurationAlpha1::StreamedUnsubscribeConfigurationAlpha1, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_UnsubscribeConfigurationAlpha1() override { @@ -3177,12 +4521,32 @@ class Dapr final { virtual ::grpc::Status StreamedUnsubscribeConfigurationAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest,::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* server_unary_streamer) = 0; }; template + class WithStreamedUnaryMethod_UnsubscribeConfiguration : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_UnsubscribeConfiguration() { + ::grpc::Service::MarkMethodStreamed(26, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>(std::bind(&WithStreamedUnaryMethod_UnsubscribeConfiguration::StreamedUnsubscribeConfiguration, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_UnsubscribeConfiguration() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status UnsubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* request, ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedUnsubscribeConfiguration(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest,::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>* server_unary_streamer) = 0; + }; + template class WithStreamedUnaryMethod_TryLockAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_TryLockAlpha1() { - ::grpc::Service::MarkMethodStreamed(24, + ::grpc::Service::MarkMethodStreamed(27, new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::TryLockRequest, ::dapr::proto::runtime::v1::TryLockResponse>(std::bind(&WithStreamedUnaryMethod_TryLockAlpha1::StreamedTryLockAlpha1, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_TryLockAlpha1() override { @@ -3202,7 +4566,7 @@ class Dapr final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_UnlockAlpha1() { - ::grpc::Service::MarkMethodStreamed(25, + ::grpc::Service::MarkMethodStreamed(28, new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::UnlockRequest, ::dapr::proto::runtime::v1::UnlockResponse>(std::bind(&WithStreamedUnaryMethod_UnlockAlpha1::StreamedUnlockAlpha1, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_UnlockAlpha1() override { @@ -3222,7 +4586,7 @@ class Dapr final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetMetadata() { - ::grpc::Service::MarkMethodStreamed(26, + ::grpc::Service::MarkMethodStreamed(31, new ::grpc::internal::StreamedUnaryHandler< ::google::protobuf::Empty, ::dapr::proto::runtime::v1::GetMetadataResponse>(std::bind(&WithStreamedUnaryMethod_GetMetadata::StreamedGetMetadata, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetMetadata() override { @@ -3242,7 +4606,7 @@ class Dapr final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_SetMetadata() { - ::grpc::Service::MarkMethodStreamed(27, + ::grpc::Service::MarkMethodStreamed(32, new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::SetMetadataRequest, ::google::protobuf::Empty>(std::bind(&WithStreamedUnaryMethod_SetMetadata::StreamedSetMetadata, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_SetMetadata() override { @@ -3257,24 +4621,164 @@ class Dapr final { virtual ::grpc::Status StreamedSetMetadata(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::SetMetadataRequest,::google::protobuf::Empty>* server_unary_streamer) = 0; }; template + class WithStreamedUnaryMethod_SubtleGetKeyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_SubtleGetKeyAlpha1() { + ::grpc::Service::MarkMethodStreamed(33, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::SubtleGetKeyRequest, ::dapr::proto::runtime::v1::SubtleGetKeyResponse>(std::bind(&WithStreamedUnaryMethod_SubtleGetKeyAlpha1::StreamedSubtleGetKeyAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_SubtleGetKeyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status SubtleGetKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleGetKeyRequest* request, ::dapr::proto::runtime::v1::SubtleGetKeyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedSubtleGetKeyAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::SubtleGetKeyRequest,::dapr::proto::runtime::v1::SubtleGetKeyResponse>* server_unary_streamer) = 0; + }; + template + class WithStreamedUnaryMethod_SubtleEncryptAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_SubtleEncryptAlpha1() { + ::grpc::Service::MarkMethodStreamed(34, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::SubtleEncryptRequest, ::dapr::proto::runtime::v1::SubtleEncryptResponse>(std::bind(&WithStreamedUnaryMethod_SubtleEncryptAlpha1::StreamedSubtleEncryptAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_SubtleEncryptAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status SubtleEncryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleEncryptRequest* request, ::dapr::proto::runtime::v1::SubtleEncryptResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedSubtleEncryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::SubtleEncryptRequest,::dapr::proto::runtime::v1::SubtleEncryptResponse>* server_unary_streamer) = 0; + }; + template + class WithStreamedUnaryMethod_SubtleDecryptAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_SubtleDecryptAlpha1() { + ::grpc::Service::MarkMethodStreamed(35, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::SubtleDecryptRequest, ::dapr::proto::runtime::v1::SubtleDecryptResponse>(std::bind(&WithStreamedUnaryMethod_SubtleDecryptAlpha1::StreamedSubtleDecryptAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_SubtleDecryptAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status SubtleDecryptAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleDecryptRequest* request, ::dapr::proto::runtime::v1::SubtleDecryptResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedSubtleDecryptAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::SubtleDecryptRequest,::dapr::proto::runtime::v1::SubtleDecryptResponse>* server_unary_streamer) = 0; + }; + template + class WithStreamedUnaryMethod_SubtleWrapKeyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_SubtleWrapKeyAlpha1() { + ::grpc::Service::MarkMethodStreamed(36, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::SubtleWrapKeyRequest, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse>(std::bind(&WithStreamedUnaryMethod_SubtleWrapKeyAlpha1::StreamedSubtleWrapKeyAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_SubtleWrapKeyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status SubtleWrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedSubtleWrapKeyAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::SubtleWrapKeyRequest,::dapr::proto::runtime::v1::SubtleWrapKeyResponse>* server_unary_streamer) = 0; + }; + template + class WithStreamedUnaryMethod_SubtleUnwrapKeyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_SubtleUnwrapKeyAlpha1() { + ::grpc::Service::MarkMethodStreamed(37, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>(std::bind(&WithStreamedUnaryMethod_SubtleUnwrapKeyAlpha1::StreamedSubtleUnwrapKeyAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_SubtleUnwrapKeyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status SubtleUnwrapKeyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* request, ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedSubtleUnwrapKeyAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest,::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>* server_unary_streamer) = 0; + }; + template + class WithStreamedUnaryMethod_SubtleSignAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_SubtleSignAlpha1() { + ::grpc::Service::MarkMethodStreamed(38, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::SubtleSignRequest, ::dapr::proto::runtime::v1::SubtleSignResponse>(std::bind(&WithStreamedUnaryMethod_SubtleSignAlpha1::StreamedSubtleSignAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_SubtleSignAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status SubtleSignAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleSignRequest* request, ::dapr::proto::runtime::v1::SubtleSignResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedSubtleSignAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::SubtleSignRequest,::dapr::proto::runtime::v1::SubtleSignResponse>* server_unary_streamer) = 0; + }; + template + class WithStreamedUnaryMethod_SubtleVerifyAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_SubtleVerifyAlpha1() { + ::grpc::Service::MarkMethodStreamed(39, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::SubtleVerifyRequest, ::dapr::proto::runtime::v1::SubtleVerifyResponse>(std::bind(&WithStreamedUnaryMethod_SubtleVerifyAlpha1::StreamedSubtleVerifyAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_SubtleVerifyAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status SubtleVerifyAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubtleVerifyRequest* request, ::dapr::proto::runtime::v1::SubtleVerifyResponse* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedSubtleVerifyAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::SubtleVerifyRequest,::dapr::proto::runtime::v1::SubtleVerifyResponse>* server_unary_streamer) = 0; + }; + template class WithStreamedUnaryMethod_StartWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_StartWorkflowAlpha1() { - ::grpc::Service::MarkMethodStreamed(28, - new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::StartWorkflowRequest, ::dapr::proto::runtime::v1::WorkflowReference>(std::bind(&WithStreamedUnaryMethod_StartWorkflowAlpha1::StreamedStartWorkflowAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + ::grpc::Service::MarkMethodStreamed(40, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::StartWorkflowRequest, ::dapr::proto::runtime::v1::StartWorkflowResponse>(std::bind(&WithStreamedUnaryMethod_StartWorkflowAlpha1::StreamedStartWorkflowAlpha1, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_StartWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable regular version of this method - ::grpc::Status StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::WorkflowReference* response) override { + ::grpc::Status StartWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::StartWorkflowRequest* request, ::dapr::proto::runtime::v1::StartWorkflowResponse* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } // replace default version of method with streamed unary - virtual ::grpc::Status StreamedStartWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::StartWorkflowRequest,::dapr::proto::runtime::v1::WorkflowReference>* server_unary_streamer) = 0; + virtual ::grpc::Status StreamedStartWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::StartWorkflowRequest,::dapr::proto::runtime::v1::StartWorkflowResponse>* server_unary_streamer) = 0; }; template class WithStreamedUnaryMethod_GetWorkflowAlpha1 : public BaseClass { @@ -3282,7 +4786,7 @@ class Dapr final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_GetWorkflowAlpha1() { - ::grpc::Service::MarkMethodStreamed(29, + ::grpc::Service::MarkMethodStreamed(41, new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::GetWorkflowRequest, ::dapr::proto::runtime::v1::GetWorkflowResponse>(std::bind(&WithStreamedUnaryMethod_GetWorkflowAlpha1::StreamedGetWorkflowAlpha1, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_GetWorkflowAlpha1() override { @@ -3297,24 +4801,104 @@ class Dapr final { virtual ::grpc::Status StreamedGetWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::GetWorkflowRequest,::dapr::proto::runtime::v1::GetWorkflowResponse>* server_unary_streamer) = 0; }; template + class WithStreamedUnaryMethod_PurgeWorkflowAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_PurgeWorkflowAlpha1() { + ::grpc::Service::MarkMethodStreamed(42, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::PurgeWorkflowRequest, ::google::protobuf::Empty>(std::bind(&WithStreamedUnaryMethod_PurgeWorkflowAlpha1::StreamedPurgeWorkflowAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_PurgeWorkflowAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status PurgeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PurgeWorkflowRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedPurgeWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::PurgeWorkflowRequest,::google::protobuf::Empty>* server_unary_streamer) = 0; + }; + template class WithStreamedUnaryMethod_TerminateWorkflowAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_TerminateWorkflowAlpha1() { - ::grpc::Service::MarkMethodStreamed(30, - new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::TerminateWorkflowRequest, ::dapr::proto::runtime::v1::TerminateWorkflowResponse>(std::bind(&WithStreamedUnaryMethod_TerminateWorkflowAlpha1::StreamedTerminateWorkflowAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + ::grpc::Service::MarkMethodStreamed(43, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::TerminateWorkflowRequest, ::google::protobuf::Empty>(std::bind(&WithStreamedUnaryMethod_TerminateWorkflowAlpha1::StreamedTerminateWorkflowAlpha1, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_TerminateWorkflowAlpha1() override { BaseClassMustBeDerivedFromService(this); } // disable regular version of this method - ::grpc::Status TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::dapr::proto::runtime::v1::TerminateWorkflowResponse* response) override { + ::grpc::Status TerminateWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::TerminateWorkflowRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedTerminateWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::TerminateWorkflowRequest,::google::protobuf::Empty>* server_unary_streamer) = 0; + }; + template + class WithStreamedUnaryMethod_PauseWorkflowAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_PauseWorkflowAlpha1() { + ::grpc::Service::MarkMethodStreamed(44, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::PauseWorkflowRequest, ::google::protobuf::Empty>(std::bind(&WithStreamedUnaryMethod_PauseWorkflowAlpha1::StreamedPauseWorkflowAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_PauseWorkflowAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status PauseWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::PauseWorkflowRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedPauseWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::PauseWorkflowRequest,::google::protobuf::Empty>* server_unary_streamer) = 0; + }; + template + class WithStreamedUnaryMethod_ResumeWorkflowAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_ResumeWorkflowAlpha1() { + ::grpc::Service::MarkMethodStreamed(45, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::ResumeWorkflowRequest, ::google::protobuf::Empty>(std::bind(&WithStreamedUnaryMethod_ResumeWorkflowAlpha1::StreamedResumeWorkflowAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_ResumeWorkflowAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status ResumeWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::ResumeWorkflowRequest* request, ::google::protobuf::Empty* response) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedResumeWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::ResumeWorkflowRequest,::google::protobuf::Empty>* server_unary_streamer) = 0; + }; + template + class WithStreamedUnaryMethod_RaiseEventWorkflowAlpha1 : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithStreamedUnaryMethod_RaiseEventWorkflowAlpha1() { + ::grpc::Service::MarkMethodStreamed(46, + new ::grpc::internal::StreamedUnaryHandler< ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest, ::google::protobuf::Empty>(std::bind(&WithStreamedUnaryMethod_RaiseEventWorkflowAlpha1::StreamedRaiseEventWorkflowAlpha1, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithStreamedUnaryMethod_RaiseEventWorkflowAlpha1() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status RaiseEventWorkflowAlpha1(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* request, ::google::protobuf::Empty* response) override { abort(); return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } // replace default version of method with streamed unary - virtual ::grpc::Status StreamedTerminateWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::TerminateWorkflowRequest,::dapr::proto::runtime::v1::TerminateWorkflowResponse>* server_unary_streamer) = 0; + virtual ::grpc::Status StreamedRaiseEventWorkflowAlpha1(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest,::google::protobuf::Empty>* server_unary_streamer) = 0; }; template class WithStreamedUnaryMethod_Shutdown : public BaseClass { @@ -3322,7 +4906,7 @@ class Dapr final { void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithStreamedUnaryMethod_Shutdown() { - ::grpc::Service::MarkMethodStreamed(31, + ::grpc::Service::MarkMethodStreamed(47, new ::grpc::internal::StreamedUnaryHandler< ::google::protobuf::Empty, ::google::protobuf::Empty>(std::bind(&WithStreamedUnaryMethod_Shutdown::StreamedShutdown, this, std::placeholders::_1, std::placeholders::_2))); } ~WithStreamedUnaryMethod_Shutdown() override { @@ -3336,14 +4920,14 @@ class Dapr final { // replace default version of method with streamed unary virtual ::grpc::Status StreamedShutdown(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::google::protobuf::Empty,::google::protobuf::Empty>* server_unary_streamer) = 0; }; - typedef WithStreamedUnaryMethod_InvokeService > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedUnaryService; + typedef WithStreamedUnaryMethod_InvokeService > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedUnaryService; template class WithSplitStreamingMethod_SubscribeConfigurationAlpha1 : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service *service) {} public: WithSplitStreamingMethod_SubscribeConfigurationAlpha1() { - ::grpc::Service::MarkMethodStreamed(22, + ::grpc::Service::MarkMethodStreamed(23, new ::grpc::internal::SplitServerStreamingHandler< ::dapr::proto::runtime::v1::SubscribeConfigurationRequest, ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>(std::bind(&WithSplitStreamingMethod_SubscribeConfigurationAlpha1::StreamedSubscribeConfigurationAlpha1, this, std::placeholders::_1, std::placeholders::_2))); } ~WithSplitStreamingMethod_SubscribeConfigurationAlpha1() override { @@ -3357,8 +4941,28 @@ class Dapr final { // replace default version of method with split streamed virtual ::grpc::Status StreamedSubscribeConfigurationAlpha1(::grpc::ServerContext* context, ::grpc::ServerSplitStreamer< ::dapr::proto::runtime::v1::SubscribeConfigurationRequest,::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* server_split_streamer) = 0; }; - typedef WithSplitStreamingMethod_SubscribeConfigurationAlpha1 SplitStreamedService; - typedef WithStreamedUnaryMethod_InvokeService > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedService; + template + class WithSplitStreamingMethod_SubscribeConfiguration : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service *service) {} + public: + WithSplitStreamingMethod_SubscribeConfiguration() { + ::grpc::Service::MarkMethodStreamed(24, + new ::grpc::internal::SplitServerStreamingHandler< ::dapr::proto::runtime::v1::SubscribeConfigurationRequest, ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>(std::bind(&WithSplitStreamingMethod_SubscribeConfiguration::StreamedSubscribeConfiguration, this, std::placeholders::_1, std::placeholders::_2))); + } + ~WithSplitStreamingMethod_SubscribeConfiguration() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status SubscribeConfiguration(::grpc::ServerContext* context, const ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* request, ::grpc::ServerWriter< ::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* writer) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with split streamed + virtual ::grpc::Status StreamedSubscribeConfiguration(::grpc::ServerContext* context, ::grpc::ServerSplitStreamer< ::dapr::proto::runtime::v1::SubscribeConfigurationRequest,::dapr::proto::runtime::v1::SubscribeConfigurationResponse>* server_split_streamer) = 0; + }; + typedef WithSplitStreamingMethod_SubscribeConfigurationAlpha1 > SplitStreamedService; + typedef WithStreamedUnaryMethod_InvokeService > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedService; }; } // namespace v1 diff --git a/src/dapr/proto/runtime/v1/dapr.pb.cc b/src/dapr/proto/runtime/v1/dapr.pb.cc index b6fc217..c76b05a 100644 --- a/src/dapr/proto/runtime/v1/dapr.pb.cc +++ b/src/dapr/proto/runtime/v1/dapr.pb.cc @@ -22,6 +22,7 @@ namespace protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto { extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Etag; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_StateOptions; +extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_StreamPayload; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ConfigurationItem; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_InvokeRequest; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_StateItem; @@ -32,7 +33,9 @@ extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2epr extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_BulkPublishRequest_MetadataEntry_DoNotUse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_BulkPublishResponseFailedEntry; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_BulkStateItem_MetadataEntry_DoNotUse; +extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_DecryptRequestOptions; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_DeleteStateRequest_MetadataEntry_DoNotUse; +extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_EncryptRequestOptions; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ExecuteStateTransactionRequest_MetadataEntry_DoNotUse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_GetBulkSecretRequest_MetadataEntry_DoNotUse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_GetBulkStateRequest_MetadataEntry_DoNotUse; @@ -42,7 +45,7 @@ extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2epr extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_GetSecretResponse_DataEntry_DoNotUse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_GetStateRequest_MetadataEntry_DoNotUse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_GetStateResponse_MetadataEntry_DoNotUse; -extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_GetWorkflowResponse_MetadataEntry_DoNotUse; +extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_GetWorkflowResponse_PropertiesEntry_DoNotUse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_InvokeActorRequest_MetadataEntry_DoNotUse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_InvokeBindingRequest_MetadataEntry_DoNotUse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_InvokeBindingResponse_MetadataEntry_DoNotUse; @@ -56,6 +59,7 @@ extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2epr extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_SecretResponse_SecretsEntry_DoNotUse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_StartWorkflowRequest_OptionsEntry_DoNotUse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_SubscribeConfigurationRequest_MetadataEntry_DoNotUse; +extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_TransactionalActorStateOperation_MetadataEntry_DoNotUse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_BulkPublishRequestEntry; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_BulkStateItem; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_GetBulkSecretResponse_DataEntry_DoNotUse; @@ -63,13 +67,16 @@ extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2epr extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_PubsubSubscriptionRules; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_SecretResponse; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_SubscribeConfigurationResponse_ItemsEntry_DoNotUse; -extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_TransactionalActorStateOperation; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_TransactionalStateOperation; extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_PubsubSubscription; +extern PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_TransactionalActorStateOperation; } // namespace protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto namespace protobuf_google_2fprotobuf_2fany_2eproto { extern PROTOBUF_INTERNAL_EXPORT_protobuf_google_2fprotobuf_2fany_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Any; } // namespace protobuf_google_2fprotobuf_2fany_2eproto +namespace protobuf_google_2fprotobuf_2ftimestamp_2eproto { +extern PROTOBUF_INTERNAL_EXPORT_protobuf_google_2fprotobuf_2ftimestamp_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Timestamp; +} // namespace protobuf_google_2fprotobuf_2ftimestamp_2eproto namespace dapr { namespace proto { namespace runtime { @@ -334,6 +341,11 @@ class ExecuteActorStateTransactionRequestDefaultTypeInternal { ::google::protobuf::internal::ExplicitlyConstructed _instance; } _ExecuteActorStateTransactionRequest_default_instance_; +class TransactionalActorStateOperation_MetadataEntry_DoNotUseDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _TransactionalActorStateOperation_MetadataEntry_DoNotUse_default_instance_; class TransactionalActorStateOperationDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed @@ -469,21 +481,116 @@ class UnlockResponseDefaultTypeInternal { ::google::protobuf::internal::ExplicitlyConstructed _instance; } _UnlockResponse_default_instance_; -class WorkflowReferenceDefaultTypeInternal { +class SubtleGetKeyRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleGetKeyRequest_default_instance_; +class SubtleGetKeyResponseDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleGetKeyResponse_default_instance_; +class SubtleEncryptRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleEncryptRequest_default_instance_; +class SubtleEncryptResponseDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleEncryptResponse_default_instance_; +class SubtleDecryptRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleDecryptRequest_default_instance_; +class SubtleDecryptResponseDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleDecryptResponse_default_instance_; +class SubtleWrapKeyRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleWrapKeyRequest_default_instance_; +class SubtleWrapKeyResponseDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleWrapKeyResponse_default_instance_; +class SubtleUnwrapKeyRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleUnwrapKeyRequest_default_instance_; +class SubtleUnwrapKeyResponseDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleUnwrapKeyResponse_default_instance_; +class SubtleSignRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleSignRequest_default_instance_; +class SubtleSignResponseDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleSignResponse_default_instance_; +class SubtleVerifyRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleVerifyRequest_default_instance_; +class SubtleVerifyResponseDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _SubtleVerifyResponse_default_instance_; +class EncryptRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _EncryptRequest_default_instance_; +class EncryptRequestOptionsDefaultTypeInternal { public: - ::google::protobuf::internal::ExplicitlyConstructed + ::google::protobuf::internal::ExplicitlyConstructed _instance; -} _WorkflowReference_default_instance_; +} _EncryptRequestOptions_default_instance_; +class EncryptResponseDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _EncryptResponse_default_instance_; +class DecryptRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _DecryptRequest_default_instance_; +class DecryptRequestOptionsDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _DecryptRequestOptions_default_instance_; +class DecryptResponseDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _DecryptResponse_default_instance_; class GetWorkflowRequestDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; } _GetWorkflowRequest_default_instance_; -class GetWorkflowResponse_MetadataEntry_DoNotUseDefaultTypeInternal { +class GetWorkflowResponse_PropertiesEntry_DoNotUseDefaultTypeInternal { public: - ::google::protobuf::internal::ExplicitlyConstructed + ::google::protobuf::internal::ExplicitlyConstructed _instance; -} _GetWorkflowResponse_MetadataEntry_DoNotUse_default_instance_; +} _GetWorkflowResponse_PropertiesEntry_DoNotUse_default_instance_; class GetWorkflowResponseDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed @@ -499,16 +606,36 @@ class StartWorkflowRequestDefaultTypeInternal { ::google::protobuf::internal::ExplicitlyConstructed _instance; } _StartWorkflowRequest_default_instance_; +class StartWorkflowResponseDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _StartWorkflowResponse_default_instance_; class TerminateWorkflowRequestDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; } _TerminateWorkflowRequest_default_instance_; -class TerminateWorkflowResponseDefaultTypeInternal { +class PauseWorkflowRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _PauseWorkflowRequest_default_instance_; +class ResumeWorkflowRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _ResumeWorkflowRequest_default_instance_; +class RaiseEventWorkflowRequestDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed + _instance; +} _RaiseEventWorkflowRequest_default_instance_; +class PurgeWorkflowRequestDefaultTypeInternal { public: - ::google::protobuf::internal::ExplicitlyConstructed + ::google::protobuf::internal::ExplicitlyConstructed _instance; -} _TerminateWorkflowResponse_default_instance_; +} _PurgeWorkflowRequest_default_instance_; } // namespace v1 } // namespace runtime } // namespace proto @@ -1255,6 +1382,19 @@ ::google::protobuf::internal::SCCInfo<1> scc_info_ExecuteActorStateTransactionRe {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsExecuteActorStateTransactionRequest}, { &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_TransactionalActorStateOperation.base,}}; +static void InitDefaultsTransactionalActorStateOperation_MetadataEntry_DoNotUse() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_TransactionalActorStateOperation_MetadataEntry_DoNotUse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse(); + } + ::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_TransactionalActorStateOperation_MetadataEntry_DoNotUse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsTransactionalActorStateOperation_MetadataEntry_DoNotUse}, {}}; + static void InitDefaultsTransactionalActorStateOperation() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -1266,9 +1406,10 @@ static void InitDefaultsTransactionalActorStateOperation() { ::dapr::proto::runtime::v1::TransactionalActorStateOperation::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<1> scc_info_TransactionalActorStateOperation = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsTransactionalActorStateOperation}, { - &protobuf_google_2fprotobuf_2fany_2eproto::scc_info_Any.base,}}; +::google::protobuf::internal::SCCInfo<2> scc_info_TransactionalActorStateOperation = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsTransactionalActorStateOperation}, { + &protobuf_google_2fprotobuf_2fany_2eproto::scc_info_Any.base, + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_TransactionalActorStateOperation_MetadataEntry_DoNotUse.base,}}; static void InitDefaultsInvokeActorRequest_MetadataEntry_DoNotUse() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -1641,19 +1782,291 @@ static void InitDefaultsUnlockResponse() { ::google::protobuf::internal::SCCInfo<0> scc_info_UnlockResponse = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsUnlockResponse}, {}}; -static void InitDefaultsWorkflowReference() { +static void InitDefaultsSubtleGetKeyRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleGetKeyRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleGetKeyRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleGetKeyRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleGetKeyRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleGetKeyRequest}, {}}; + +static void InitDefaultsSubtleGetKeyResponse() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleGetKeyResponse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleGetKeyResponse(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleGetKeyResponse::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleGetKeyResponse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleGetKeyResponse}, {}}; + +static void InitDefaultsSubtleEncryptRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleEncryptRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleEncryptRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleEncryptRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleEncryptRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleEncryptRequest}, {}}; + +static void InitDefaultsSubtleEncryptResponse() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleEncryptResponse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleEncryptResponse(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleEncryptResponse::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleEncryptResponse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleEncryptResponse}, {}}; + +static void InitDefaultsSubtleDecryptRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleDecryptRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleDecryptRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleDecryptRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleDecryptRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleDecryptRequest}, {}}; + +static void InitDefaultsSubtleDecryptResponse() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleDecryptResponse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleDecryptResponse(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleDecryptResponse::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleDecryptResponse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleDecryptResponse}, {}}; + +static void InitDefaultsSubtleWrapKeyRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleWrapKeyRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleWrapKeyRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleWrapKeyRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleWrapKeyRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleWrapKeyRequest}, {}}; + +static void InitDefaultsSubtleWrapKeyResponse() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleWrapKeyResponse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleWrapKeyResponse(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleWrapKeyResponse::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleWrapKeyResponse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleWrapKeyResponse}, {}}; + +static void InitDefaultsSubtleUnwrapKeyRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleUnwrapKeyRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleUnwrapKeyRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleUnwrapKeyRequest}, {}}; + +static void InitDefaultsSubtleUnwrapKeyResponse() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleUnwrapKeyResponse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleUnwrapKeyResponse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleUnwrapKeyResponse}, {}}; + +static void InitDefaultsSubtleSignRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleSignRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleSignRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleSignRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleSignRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleSignRequest}, {}}; + +static void InitDefaultsSubtleSignResponse() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleSignResponse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleSignResponse(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleSignResponse::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleSignResponse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleSignResponse}, {}}; + +static void InitDefaultsSubtleVerifyRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleVerifyRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleVerifyRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleVerifyRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleVerifyRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleVerifyRequest}, {}}; + +static void InitDefaultsSubtleVerifyResponse() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_SubtleVerifyResponse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::SubtleVerifyResponse(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::SubtleVerifyResponse::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_SubtleVerifyResponse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSubtleVerifyResponse}, {}}; + +static void InitDefaultsEncryptRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_EncryptRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::EncryptRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::EncryptRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<2> scc_info_EncryptRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsEncryptRequest}, { + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_EncryptRequestOptions.base, + &protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto::scc_info_StreamPayload.base,}}; + +static void InitDefaultsEncryptRequestOptions() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_EncryptRequestOptions_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::EncryptRequestOptions(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::EncryptRequestOptions::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_EncryptRequestOptions = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsEncryptRequestOptions}, {}}; + +static void InitDefaultsEncryptResponse() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_EncryptResponse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::EncryptResponse(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::EncryptResponse::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<1> scc_info_EncryptResponse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsEncryptResponse}, { + &protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto::scc_info_StreamPayload.base,}}; + +static void InitDefaultsDecryptRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_DecryptRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::DecryptRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::DecryptRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<2> scc_info_DecryptRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsDecryptRequest}, { + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_DecryptRequestOptions.base, + &protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto::scc_info_StreamPayload.base,}}; + +static void InitDefaultsDecryptRequestOptions() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_DecryptRequestOptions_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::DecryptRequestOptions(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::DecryptRequestOptions::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_DecryptRequestOptions = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsDecryptRequestOptions}, {}}; + +static void InitDefaultsDecryptResponse() { GOOGLE_PROTOBUF_VERIFY_VERSION; { - void* ptr = &::dapr::proto::runtime::v1::_WorkflowReference_default_instance_; - new (ptr) ::dapr::proto::runtime::v1::WorkflowReference(); + void* ptr = &::dapr::proto::runtime::v1::_DecryptResponse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::DecryptResponse(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } - ::dapr::proto::runtime::v1::WorkflowReference::InitAsDefaultInstance(); + ::dapr::proto::runtime::v1::DecryptResponse::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<0> scc_info_WorkflowReference = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsWorkflowReference}, {}}; +::google::protobuf::internal::SCCInfo<1> scc_info_DecryptResponse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsDecryptResponse}, { + &protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto::scc_info_StreamPayload.base,}}; static void InitDefaultsGetWorkflowRequest() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -1669,18 +2082,18 @@ static void InitDefaultsGetWorkflowRequest() { ::google::protobuf::internal::SCCInfo<0> scc_info_GetWorkflowRequest = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsGetWorkflowRequest}, {}}; -static void InitDefaultsGetWorkflowResponse_MetadataEntry_DoNotUse() { +static void InitDefaultsGetWorkflowResponse_PropertiesEntry_DoNotUse() { GOOGLE_PROTOBUF_VERIFY_VERSION; { - void* ptr = &::dapr::proto::runtime::v1::_GetWorkflowResponse_MetadataEntry_DoNotUse_default_instance_; - new (ptr) ::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse(); + void* ptr = &::dapr::proto::runtime::v1::_GetWorkflowResponse_PropertiesEntry_DoNotUse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse(); } - ::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse::InitAsDefaultInstance(); + ::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<0> scc_info_GetWorkflowResponse_MetadataEntry_DoNotUse = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsGetWorkflowResponse_MetadataEntry_DoNotUse}, {}}; +::google::protobuf::internal::SCCInfo<0> scc_info_GetWorkflowResponse_PropertiesEntry_DoNotUse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsGetWorkflowResponse_PropertiesEntry_DoNotUse}, {}}; static void InitDefaultsGetWorkflowResponse() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -1693,9 +2106,10 @@ static void InitDefaultsGetWorkflowResponse() { ::dapr::proto::runtime::v1::GetWorkflowResponse::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<1> scc_info_GetWorkflowResponse = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsGetWorkflowResponse}, { - &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_GetWorkflowResponse_MetadataEntry_DoNotUse.base,}}; +::google::protobuf::internal::SCCInfo<2> scc_info_GetWorkflowResponse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsGetWorkflowResponse}, { + &protobuf_google_2fprotobuf_2ftimestamp_2eproto::scc_info_Timestamp.base, + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_GetWorkflowResponse_PropertiesEntry_DoNotUse.base,}}; static void InitDefaultsStartWorkflowRequest_OptionsEntry_DoNotUse() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -1725,6 +2139,20 @@ ::google::protobuf::internal::SCCInfo<1> scc_info_StartWorkflowRequest = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsStartWorkflowRequest}, { &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_StartWorkflowRequest_OptionsEntry_DoNotUse.base,}}; +static void InitDefaultsStartWorkflowResponse() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_StartWorkflowResponse_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::StartWorkflowResponse(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::StartWorkflowResponse::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_StartWorkflowResponse = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsStartWorkflowResponse}, {}}; + static void InitDefaultsTerminateWorkflowRequest() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -1739,19 +2167,61 @@ static void InitDefaultsTerminateWorkflowRequest() { ::google::protobuf::internal::SCCInfo<0> scc_info_TerminateWorkflowRequest = {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsTerminateWorkflowRequest}, {}}; -static void InitDefaultsTerminateWorkflowResponse() { +static void InitDefaultsPauseWorkflowRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_PauseWorkflowRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::PauseWorkflowRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::PauseWorkflowRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_PauseWorkflowRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsPauseWorkflowRequest}, {}}; + +static void InitDefaultsResumeWorkflowRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_ResumeWorkflowRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::ResumeWorkflowRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::ResumeWorkflowRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_ResumeWorkflowRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsResumeWorkflowRequest}, {}}; + +static void InitDefaultsRaiseEventWorkflowRequest() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::dapr::proto::runtime::v1::_RaiseEventWorkflowRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<0> scc_info_RaiseEventWorkflowRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsRaiseEventWorkflowRequest}, {}}; + +static void InitDefaultsPurgeWorkflowRequest() { GOOGLE_PROTOBUF_VERIFY_VERSION; { - void* ptr = &::dapr::proto::runtime::v1::_TerminateWorkflowResponse_default_instance_; - new (ptr) ::dapr::proto::runtime::v1::TerminateWorkflowResponse(); + void* ptr = &::dapr::proto::runtime::v1::_PurgeWorkflowRequest_default_instance_; + new (ptr) ::dapr::proto::runtime::v1::PurgeWorkflowRequest(); ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); } - ::dapr::proto::runtime::v1::TerminateWorkflowResponse::InitAsDefaultInstance(); + ::dapr::proto::runtime::v1::PurgeWorkflowRequest::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<0> scc_info_TerminateWorkflowResponse = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsTerminateWorkflowResponse}, {}}; +::google::protobuf::internal::SCCInfo<0> scc_info_PurgeWorkflowRequest = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsPurgeWorkflowRequest}, {}}; void InitDefaults() { ::google::protobuf::internal::InitSCC(&scc_info_InvokeServiceRequest.base); @@ -1806,6 +2276,7 @@ void InitDefaults() { ::google::protobuf::internal::InitSCC(&scc_info_GetActorStateRequest.base); ::google::protobuf::internal::InitSCC(&scc_info_GetActorStateResponse.base); ::google::protobuf::internal::InitSCC(&scc_info_ExecuteActorStateTransactionRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_TransactionalActorStateOperation_MetadataEntry_DoNotUse.base); ::google::protobuf::internal::InitSCC(&scc_info_TransactionalActorStateOperation.base); ::google::protobuf::internal::InitSCC(&scc_info_InvokeActorRequest_MetadataEntry_DoNotUse.base); ::google::protobuf::internal::InitSCC(&scc_info_InvokeActorRequest.base); @@ -1833,18 +2304,41 @@ void InitDefaults() { ::google::protobuf::internal::InitSCC(&scc_info_TryLockResponse.base); ::google::protobuf::internal::InitSCC(&scc_info_UnlockRequest.base); ::google::protobuf::internal::InitSCC(&scc_info_UnlockResponse.base); - ::google::protobuf::internal::InitSCC(&scc_info_WorkflowReference.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleGetKeyRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleGetKeyResponse.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleEncryptRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleEncryptResponse.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleDecryptRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleDecryptResponse.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleWrapKeyRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleWrapKeyResponse.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleUnwrapKeyRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleUnwrapKeyResponse.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleSignRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleSignResponse.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleVerifyRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_SubtleVerifyResponse.base); + ::google::protobuf::internal::InitSCC(&scc_info_EncryptRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_EncryptRequestOptions.base); + ::google::protobuf::internal::InitSCC(&scc_info_EncryptResponse.base); + ::google::protobuf::internal::InitSCC(&scc_info_DecryptRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_DecryptRequestOptions.base); + ::google::protobuf::internal::InitSCC(&scc_info_DecryptResponse.base); ::google::protobuf::internal::InitSCC(&scc_info_GetWorkflowRequest.base); - ::google::protobuf::internal::InitSCC(&scc_info_GetWorkflowResponse_MetadataEntry_DoNotUse.base); + ::google::protobuf::internal::InitSCC(&scc_info_GetWorkflowResponse_PropertiesEntry_DoNotUse.base); ::google::protobuf::internal::InitSCC(&scc_info_GetWorkflowResponse.base); ::google::protobuf::internal::InitSCC(&scc_info_StartWorkflowRequest_OptionsEntry_DoNotUse.base); ::google::protobuf::internal::InitSCC(&scc_info_StartWorkflowRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_StartWorkflowResponse.base); ::google::protobuf::internal::InitSCC(&scc_info_TerminateWorkflowRequest.base); - ::google::protobuf::internal::InitSCC(&scc_info_TerminateWorkflowResponse.base); + ::google::protobuf::internal::InitSCC(&scc_info_PauseWorkflowRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_ResumeWorkflowRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_RaiseEventWorkflowRequest.base); + ::google::protobuf::internal::InitSCC(&scc_info_PurgeWorkflowRequest.base); } -::google::protobuf::Metadata file_level_metadata[87]; -const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors[1]; +::google::protobuf::Metadata file_level_metadata[111]; +const ::google::protobuf::EnumDescriptor* file_level_enum_descriptors[2]; const ::google::protobuf::uint32 TableStruct::offsets[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { ~0u, // no _has_bits_ @@ -2284,6 +2778,15 @@ const ::google::protobuf::uint32 TableStruct::offsets[] GOOGLE_PROTOBUF_ATTRIBUT GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::ExecuteActorStateTransactionRequest, actor_type_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::ExecuteActorStateTransactionRequest, actor_id_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::ExecuteActorStateTransactionRequest, operations_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse, _has_bits_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse, key_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse, value_), + 0, + 1, ~0u, // no _has_bits_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TransactionalActorStateOperation, _internal_metadata_), ~0u, // no _extensions_ @@ -2292,6 +2795,7 @@ const ::google::protobuf::uint32 TableStruct::offsets[] GOOGLE_PROTOBUF_ATTRIBUT GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TransactionalActorStateOperation, operationtype_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TransactionalActorStateOperation, key_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TransactionalActorStateOperation, value_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TransactionalActorStateOperation, metadata_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::InvokeActorRequest_MetadataEntry_DoNotUse, _has_bits_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::InvokeActorRequest_MetadataEntry_DoNotUse, _internal_metadata_), ~0u, // no _extensions_ @@ -2478,7 +2982,7 @@ const ::google::protobuf::uint32 TableStruct::offsets[] GOOGLE_PROTOBUF_ATTRIBUT GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TryLockRequest, store_name_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TryLockRequest, resource_id_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TryLockRequest, lock_owner_), - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TryLockRequest, expiryinseconds_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TryLockRequest, expiry_in_seconds_), ~0u, // no _has_bits_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TryLockResponse, _internal_metadata_), ~0u, // no _extensions_ @@ -2500,42 +3004,200 @@ const ::google::protobuf::uint32 TableStruct::offsets[] GOOGLE_PROTOBUF_ATTRIBUT ~0u, // no _weak_field_map_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::UnlockResponse, status_), ~0u, // no _has_bits_ - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::WorkflowReference, _internal_metadata_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleGetKeyRequest, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::WorkflowReference, instance_id_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleGetKeyRequest, component_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleGetKeyRequest, name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleGetKeyRequest, format_), ~0u, // no _has_bits_ - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowRequest, _internal_metadata_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleGetKeyResponse, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowRequest, instance_id_), - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowRequest, workflow_type_), - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowRequest, workflow_component_), - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse, _has_bits_), - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse, _internal_metadata_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleGetKeyResponse, name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleGetKeyResponse, public_key_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleEncryptRequest, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse, key_), - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse, value_), - 0, - 1, + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleEncryptRequest, component_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleEncryptRequest, plaintext_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleEncryptRequest, algorithm_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleEncryptRequest, key_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleEncryptRequest, nonce_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleEncryptRequest, associated_data_), ~0u, // no _has_bits_ - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse, _internal_metadata_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleEncryptResponse, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse, instance_id_), - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse, start_time_), - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse, metadata_), - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::StartWorkflowRequest_OptionsEntry_DoNotUse, _has_bits_), - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::StartWorkflowRequest_OptionsEntry_DoNotUse, _internal_metadata_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleEncryptResponse, ciphertext_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleEncryptResponse, tag_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleDecryptRequest, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::StartWorkflowRequest_OptionsEntry_DoNotUse, key_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleDecryptRequest, component_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleDecryptRequest, ciphertext_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleDecryptRequest, algorithm_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleDecryptRequest, key_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleDecryptRequest, nonce_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleDecryptRequest, tag_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleDecryptRequest, associated_data_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleDecryptResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleDecryptResponse, plaintext_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleWrapKeyRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleWrapKeyRequest, component_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleWrapKeyRequest, plaintext_key_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleWrapKeyRequest, algorithm_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleWrapKeyRequest, key_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleWrapKeyRequest, nonce_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleWrapKeyRequest, associated_data_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleWrapKeyResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleWrapKeyResponse, wrapped_key_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleWrapKeyResponse, tag_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest, component_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest, wrapped_key_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest, algorithm_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest, key_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest, nonce_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest, tag_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest, associated_data_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse, plaintext_key_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleSignRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleSignRequest, component_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleSignRequest, digest_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleSignRequest, algorithm_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleSignRequest, key_name_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleSignResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleSignResponse, signature_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleVerifyRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleVerifyRequest, component_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleVerifyRequest, digest_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleVerifyRequest, algorithm_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleVerifyRequest, key_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleVerifyRequest, signature_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleVerifyResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::SubtleVerifyResponse, valid_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptRequest, options_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptRequest, payload_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptRequestOptions, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptRequestOptions, component_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptRequestOptions, key_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptRequestOptions, key_wrap_algorithm_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptRequestOptions, data_encryption_cipher_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptRequestOptions, omit_decryption_key_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptRequestOptions, decryption_key_name_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::EncryptResponse, payload_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::DecryptRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::DecryptRequest, options_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::DecryptRequest, payload_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::DecryptRequestOptions, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::DecryptRequestOptions, component_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::DecryptRequestOptions, key_name_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::DecryptResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::DecryptResponse, payload_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowRequest, instance_id_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowRequest, workflow_component_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse, _has_bits_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse, key_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse, value_), + 0, + 1, + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse, instance_id_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse, workflow_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse, created_at_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse, last_updated_at_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse, runtime_status_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::GetWorkflowResponse, properties_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::StartWorkflowRequest_OptionsEntry_DoNotUse, _has_bits_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::StartWorkflowRequest_OptionsEntry_DoNotUse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::StartWorkflowRequest_OptionsEntry_DoNotUse, key_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::StartWorkflowRequest_OptionsEntry_DoNotUse, value_), 0, 1, @@ -2550,6 +3212,12 @@ const ::google::protobuf::uint32 TableStruct::offsets[] GOOGLE_PROTOBUF_ATTRIBUT GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::StartWorkflowRequest, options_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::StartWorkflowRequest, input_), ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::StartWorkflowResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::StartWorkflowResponse, instance_id_), + ~0u, // no _has_bits_ GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TerminateWorkflowRequest, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ @@ -2557,10 +3225,35 @@ const ::google::protobuf::uint32 TableStruct::offsets[] GOOGLE_PROTOBUF_ATTRIBUT GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TerminateWorkflowRequest, instance_id_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TerminateWorkflowRequest, workflow_component_), ~0u, // no _has_bits_ - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::TerminateWorkflowResponse, _internal_metadata_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::PauseWorkflowRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::PauseWorkflowRequest, instance_id_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::PauseWorkflowRequest, workflow_component_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::ResumeWorkflowRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::ResumeWorkflowRequest, instance_id_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::ResumeWorkflowRequest, workflow_component_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::RaiseEventWorkflowRequest, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::RaiseEventWorkflowRequest, instance_id_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::RaiseEventWorkflowRequest, workflow_component_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::RaiseEventWorkflowRequest, event_name_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::RaiseEventWorkflowRequest, event_data_), + ~0u, // no _has_bits_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::PurgeWorkflowRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::PurgeWorkflowRequest, instance_id_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::dapr::proto::runtime::v1::PurgeWorkflowRequest, workflow_component_), }; static const ::google::protobuf::internal::MigrationSchema schemas[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { { 0, -1, sizeof(::dapr::proto::runtime::v1::InvokeServiceRequest)}, @@ -2615,41 +3308,65 @@ static const ::google::protobuf::internal::MigrationSchema schemas[] GOOGLE_PROT { 415, -1, sizeof(::dapr::proto::runtime::v1::GetActorStateRequest)}, { 423, -1, sizeof(::dapr::proto::runtime::v1::GetActorStateResponse)}, { 429, -1, sizeof(::dapr::proto::runtime::v1::ExecuteActorStateTransactionRequest)}, - { 437, -1, sizeof(::dapr::proto::runtime::v1::TransactionalActorStateOperation)}, - { 445, 452, sizeof(::dapr::proto::runtime::v1::InvokeActorRequest_MetadataEntry_DoNotUse)}, - { 454, -1, sizeof(::dapr::proto::runtime::v1::InvokeActorRequest)}, - { 464, -1, sizeof(::dapr::proto::runtime::v1::InvokeActorResponse)}, - { 470, 477, sizeof(::dapr::proto::runtime::v1::GetMetadataResponse_ExtendedMetadataEntry_DoNotUse)}, - { 479, -1, sizeof(::dapr::proto::runtime::v1::GetMetadataResponse)}, - { 489, -1, sizeof(::dapr::proto::runtime::v1::ActiveActorsCount)}, - { 496, -1, sizeof(::dapr::proto::runtime::v1::RegisteredComponents)}, - { 505, 512, sizeof(::dapr::proto::runtime::v1::PubsubSubscription_MetadataEntry_DoNotUse)}, - { 514, -1, sizeof(::dapr::proto::runtime::v1::PubsubSubscription)}, - { 524, -1, sizeof(::dapr::proto::runtime::v1::PubsubSubscriptionRules)}, - { 530, -1, sizeof(::dapr::proto::runtime::v1::PubsubSubscriptionRule)}, - { 537, -1, sizeof(::dapr::proto::runtime::v1::SetMetadataRequest)}, - { 544, 551, sizeof(::dapr::proto::runtime::v1::GetConfigurationRequest_MetadataEntry_DoNotUse)}, - { 553, -1, sizeof(::dapr::proto::runtime::v1::GetConfigurationRequest)}, - { 561, 568, sizeof(::dapr::proto::runtime::v1::GetConfigurationResponse_ItemsEntry_DoNotUse)}, - { 570, -1, sizeof(::dapr::proto::runtime::v1::GetConfigurationResponse)}, - { 576, 583, sizeof(::dapr::proto::runtime::v1::SubscribeConfigurationRequest_MetadataEntry_DoNotUse)}, - { 585, -1, sizeof(::dapr::proto::runtime::v1::SubscribeConfigurationRequest)}, - { 593, -1, sizeof(::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest)}, - { 600, 607, sizeof(::dapr::proto::runtime::v1::SubscribeConfigurationResponse_ItemsEntry_DoNotUse)}, - { 609, -1, sizeof(::dapr::proto::runtime::v1::SubscribeConfigurationResponse)}, - { 616, -1, sizeof(::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse)}, - { 623, -1, sizeof(::dapr::proto::runtime::v1::TryLockRequest)}, - { 632, -1, sizeof(::dapr::proto::runtime::v1::TryLockResponse)}, - { 638, -1, sizeof(::dapr::proto::runtime::v1::UnlockRequest)}, - { 646, -1, sizeof(::dapr::proto::runtime::v1::UnlockResponse)}, - { 652, -1, sizeof(::dapr::proto::runtime::v1::WorkflowReference)}, - { 658, -1, sizeof(::dapr::proto::runtime::v1::GetWorkflowRequest)}, - { 666, 673, sizeof(::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse)}, - { 675, -1, sizeof(::dapr::proto::runtime::v1::GetWorkflowResponse)}, - { 683, 690, sizeof(::dapr::proto::runtime::v1::StartWorkflowRequest_OptionsEntry_DoNotUse)}, - { 692, -1, sizeof(::dapr::proto::runtime::v1::StartWorkflowRequest)}, - { 702, -1, sizeof(::dapr::proto::runtime::v1::TerminateWorkflowRequest)}, - { 709, -1, sizeof(::dapr::proto::runtime::v1::TerminateWorkflowResponse)}, + { 437, 444, sizeof(::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse)}, + { 446, -1, sizeof(::dapr::proto::runtime::v1::TransactionalActorStateOperation)}, + { 455, 462, sizeof(::dapr::proto::runtime::v1::InvokeActorRequest_MetadataEntry_DoNotUse)}, + { 464, -1, sizeof(::dapr::proto::runtime::v1::InvokeActorRequest)}, + { 474, -1, sizeof(::dapr::proto::runtime::v1::InvokeActorResponse)}, + { 480, 487, sizeof(::dapr::proto::runtime::v1::GetMetadataResponse_ExtendedMetadataEntry_DoNotUse)}, + { 489, -1, sizeof(::dapr::proto::runtime::v1::GetMetadataResponse)}, + { 499, -1, sizeof(::dapr::proto::runtime::v1::ActiveActorsCount)}, + { 506, -1, sizeof(::dapr::proto::runtime::v1::RegisteredComponents)}, + { 515, 522, sizeof(::dapr::proto::runtime::v1::PubsubSubscription_MetadataEntry_DoNotUse)}, + { 524, -1, sizeof(::dapr::proto::runtime::v1::PubsubSubscription)}, + { 534, -1, sizeof(::dapr::proto::runtime::v1::PubsubSubscriptionRules)}, + { 540, -1, sizeof(::dapr::proto::runtime::v1::PubsubSubscriptionRule)}, + { 547, -1, sizeof(::dapr::proto::runtime::v1::SetMetadataRequest)}, + { 554, 561, sizeof(::dapr::proto::runtime::v1::GetConfigurationRequest_MetadataEntry_DoNotUse)}, + { 563, -1, sizeof(::dapr::proto::runtime::v1::GetConfigurationRequest)}, + { 571, 578, sizeof(::dapr::proto::runtime::v1::GetConfigurationResponse_ItemsEntry_DoNotUse)}, + { 580, -1, sizeof(::dapr::proto::runtime::v1::GetConfigurationResponse)}, + { 586, 593, sizeof(::dapr::proto::runtime::v1::SubscribeConfigurationRequest_MetadataEntry_DoNotUse)}, + { 595, -1, sizeof(::dapr::proto::runtime::v1::SubscribeConfigurationRequest)}, + { 603, -1, sizeof(::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest)}, + { 610, 617, sizeof(::dapr::proto::runtime::v1::SubscribeConfigurationResponse_ItemsEntry_DoNotUse)}, + { 619, -1, sizeof(::dapr::proto::runtime::v1::SubscribeConfigurationResponse)}, + { 626, -1, sizeof(::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse)}, + { 633, -1, sizeof(::dapr::proto::runtime::v1::TryLockRequest)}, + { 642, -1, sizeof(::dapr::proto::runtime::v1::TryLockResponse)}, + { 648, -1, sizeof(::dapr::proto::runtime::v1::UnlockRequest)}, + { 656, -1, sizeof(::dapr::proto::runtime::v1::UnlockResponse)}, + { 662, -1, sizeof(::dapr::proto::runtime::v1::SubtleGetKeyRequest)}, + { 670, -1, sizeof(::dapr::proto::runtime::v1::SubtleGetKeyResponse)}, + { 677, -1, sizeof(::dapr::proto::runtime::v1::SubtleEncryptRequest)}, + { 688, -1, sizeof(::dapr::proto::runtime::v1::SubtleEncryptResponse)}, + { 695, -1, sizeof(::dapr::proto::runtime::v1::SubtleDecryptRequest)}, + { 707, -1, sizeof(::dapr::proto::runtime::v1::SubtleDecryptResponse)}, + { 713, -1, sizeof(::dapr::proto::runtime::v1::SubtleWrapKeyRequest)}, + { 724, -1, sizeof(::dapr::proto::runtime::v1::SubtleWrapKeyResponse)}, + { 731, -1, sizeof(::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest)}, + { 743, -1, sizeof(::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse)}, + { 749, -1, sizeof(::dapr::proto::runtime::v1::SubtleSignRequest)}, + { 758, -1, sizeof(::dapr::proto::runtime::v1::SubtleSignResponse)}, + { 764, -1, sizeof(::dapr::proto::runtime::v1::SubtleVerifyRequest)}, + { 774, -1, sizeof(::dapr::proto::runtime::v1::SubtleVerifyResponse)}, + { 780, -1, sizeof(::dapr::proto::runtime::v1::EncryptRequest)}, + { 787, -1, sizeof(::dapr::proto::runtime::v1::EncryptRequestOptions)}, + { 798, -1, sizeof(::dapr::proto::runtime::v1::EncryptResponse)}, + { 804, -1, sizeof(::dapr::proto::runtime::v1::DecryptRequest)}, + { 811, -1, sizeof(::dapr::proto::runtime::v1::DecryptRequestOptions)}, + { 818, -1, sizeof(::dapr::proto::runtime::v1::DecryptResponse)}, + { 824, -1, sizeof(::dapr::proto::runtime::v1::GetWorkflowRequest)}, + { 831, 838, sizeof(::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse)}, + { 840, -1, sizeof(::dapr::proto::runtime::v1::GetWorkflowResponse)}, + { 851, 858, sizeof(::dapr::proto::runtime::v1::StartWorkflowRequest_OptionsEntry_DoNotUse)}, + { 860, -1, sizeof(::dapr::proto::runtime::v1::StartWorkflowRequest)}, + { 870, -1, sizeof(::dapr::proto::runtime::v1::StartWorkflowResponse)}, + { 876, -1, sizeof(::dapr::proto::runtime::v1::TerminateWorkflowRequest)}, + { 883, -1, sizeof(::dapr::proto::runtime::v1::PauseWorkflowRequest)}, + { 890, -1, sizeof(::dapr::proto::runtime::v1::ResumeWorkflowRequest)}, + { 897, -1, sizeof(::dapr::proto::runtime::v1::RaiseEventWorkflowRequest)}, + { 906, -1, sizeof(::dapr::proto::runtime::v1::PurgeWorkflowRequest)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -2705,6 +3422,7 @@ static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast(&::dapr::proto::runtime::v1::_GetActorStateRequest_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_GetActorStateResponse_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_ExecuteActorStateTransactionRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_TransactionalActorStateOperation_MetadataEntry_DoNotUse_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_TransactionalActorStateOperation_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_InvokeActorRequest_MetadataEntry_DoNotUse_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_InvokeActorRequest_default_instance_), @@ -2732,14 +3450,37 @@ static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast(&::dapr::proto::runtime::v1::_TryLockResponse_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_UnlockRequest_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_UnlockResponse_default_instance_), - reinterpret_cast(&::dapr::proto::runtime::v1::_WorkflowReference_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleGetKeyRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleGetKeyResponse_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleEncryptRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleEncryptResponse_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleDecryptRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleDecryptResponse_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleWrapKeyRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleWrapKeyResponse_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleUnwrapKeyRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleUnwrapKeyResponse_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleSignRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleSignResponse_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleVerifyRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_SubtleVerifyResponse_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_EncryptRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_EncryptRequestOptions_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_EncryptResponse_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_DecryptRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_DecryptRequestOptions_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_DecryptResponse_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_GetWorkflowRequest_default_instance_), - reinterpret_cast(&::dapr::proto::runtime::v1::_GetWorkflowResponse_MetadataEntry_DoNotUse_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_GetWorkflowResponse_PropertiesEntry_DoNotUse_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_GetWorkflowResponse_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_StartWorkflowRequest_OptionsEntry_DoNotUse_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_StartWorkflowRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_StartWorkflowResponse_default_instance_), reinterpret_cast(&::dapr::proto::runtime::v1::_TerminateWorkflowRequest_default_instance_), - reinterpret_cast(&::dapr::proto::runtime::v1::_TerminateWorkflowResponse_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_PauseWorkflowRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_ResumeWorkflowRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_RaiseEventWorkflowRequest_default_instance_), + reinterpret_cast(&::dapr::proto::runtime::v1::_PurgeWorkflowRequest_default_instance_), }; void protobuf_AssignDescriptors() { @@ -2757,7 +3498,7 @@ void protobuf_AssignDescriptorsOnce() { void protobuf_RegisterTypes(const ::std::string&) GOOGLE_PROTOBUF_ATTRIBUTE_COLD; void protobuf_RegisterTypes(const ::std::string&) { protobuf_AssignDescriptorsOnce(); - ::google::protobuf::internal::RegisterAllTypes(file_level_metadata, 87); + ::google::protobuf::internal::RegisterAllTypes(file_level_metadata, 111); } void AddDescriptorsImpl() { @@ -2765,282 +3506,378 @@ void AddDescriptorsImpl() { static const char descriptor[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = { "\n dapr/proto/runtime/v1/dapr.proto\022\025dapr" ".proto.runtime.v1\032\031google/protobuf/any.p" - "roto\032\033google/protobuf/empty.proto\032!dapr/" - "proto/common/v1/common.proto\"X\n\024InvokeSe" - "rviceRequest\022\n\n\002id\030\001 \001(\t\0224\n\007message\030\003 \001(" - "\0132#.dapr.proto.common.v1.InvokeRequest\"\365" - "\001\n\017GetStateRequest\022\022\n\nstore_name\030\001 \001(\t\022\013" - "\n\003key\030\002 \001(\t\022H\n\013consistency\030\003 \001(\01623.dapr." - "proto.common.v1.StateOptions.StateConsis" - "tency\022F\n\010metadata\030\004 \003(\01324.dapr.proto.run" - "time.v1.GetStateRequest.MetadataEntry\032/\n" - "\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001" - "(\t:\0028\001\"\311\001\n\023GetBulkStateRequest\022\022\n\nstore_" - "name\030\001 \001(\t\022\014\n\004keys\030\002 \003(\t\022\023\n\013parallelism\030" - "\003 \001(\005\022J\n\010metadata\030\004 \003(\01328.dapr.proto.run" - "time.v1.GetBulkStateRequest.MetadataEntr" - "y\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value" - "\030\002 \001(\t:\0028\001\"K\n\024GetBulkStateResponse\0223\n\005it" - "ems\030\001 \003(\0132$.dapr.proto.runtime.v1.BulkSt" - "ateItem\"\276\001\n\rBulkStateItem\022\013\n\003key\030\001 \001(\t\022\014" - "\n\004data\030\002 \001(\014\022\014\n\004etag\030\003 \001(\t\022\r\n\005error\030\004 \001(" - "\t\022D\n\010metadata\030\005 \003(\01322.dapr.proto.runtime" - ".v1.BulkStateItem.MetadataEntry\032/\n\rMetad" - "ataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001" - "\"\250\001\n\020GetStateResponse\022\014\n\004data\030\001 \001(\014\022\014\n\004e" - "tag\030\002 \001(\t\022G\n\010metadata\030\003 \003(\01325.dapr.proto" - ".runtime.v1.GetStateResponse.MetadataEnt" - "ry\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005valu" - "e\030\002 \001(\t:\0028\001\"\220\002\n\022DeleteStateRequest\022\022\n\nst" - "ore_name\030\001 \001(\t\022\013\n\003key\030\002 \001(\t\022(\n\004etag\030\003 \001(" - "\0132\032.dapr.proto.common.v1.Etag\0223\n\007options" - "\030\004 \001(\0132\".dapr.proto.common.v1.StateOptio" - "ns\022I\n\010metadata\030\005 \003(\01327.dapr.proto.runtim" - "e.v1.DeleteStateRequest.MetadataEntry\032/\n" - "\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001" - "(\t:\0028\001\"]\n\026DeleteBulkStateRequest\022\022\n\nstor" - "e_name\030\001 \001(\t\022/\n\006states\030\002 \003(\0132\037.dapr.prot" - "o.common.v1.StateItem\"W\n\020SaveStateReques" - "t\022\022\n\nstore_name\030\001 \001(\t\022/\n\006states\030\002 \003(\0132\037." - "dapr.proto.common.v1.StateItem\"\261\001\n\021Query" - "StateRequest\022\022\n\nstore_name\030\001 \001(\t\022\r\n\005quer" - "y\030\002 \001(\t\022H\n\010metadata\030\003 \003(\01326.dapr.proto.r" - "untime.v1.QueryStateRequest.MetadataEntr" - "y\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value" - "\030\002 \001(\t:\0028\001\"H\n\016QueryStateItem\022\013\n\003key\030\001 \001(" - "\t\022\014\n\004data\030\002 \001(\014\022\014\n\004etag\030\003 \001(\t\022\r\n\005error\030\004" - " \001(\t\"\327\001\n\022QueryStateResponse\0226\n\007results\030\001" - " \003(\0132%.dapr.proto.runtime.v1.QueryStateI" - "tem\022\r\n\005token\030\002 \001(\t\022I\n\010metadata\030\003 \003(\01327.d" - "apr.proto.runtime.v1.QueryStateResponse." - "MetadataEntry\032/\n\rMetadataEntry\022\013\n\003key\030\001 " - "\001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\337\001\n\023PublishEventR" - "equest\022\023\n\013pubsub_name\030\001 \001(\t\022\r\n\005topic\030\002 \001" - "(\t\022\014\n\004data\030\003 \001(\014\022\031\n\021data_content_type\030\004 " - "\001(\t\022J\n\010metadata\030\005 \003(\01328.dapr.proto.runti" - "me.v1.PublishEventRequest.MetadataEntry\032" - "/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002" - " \001(\t:\0028\001\"\365\001\n\022BulkPublishRequest\022\023\n\013pubsu" - "b_name\030\001 \001(\t\022\r\n\005topic\030\002 \001(\t\022\?\n\007entries\030\003" - " \003(\0132..dapr.proto.runtime.v1.BulkPublish" - "RequestEntry\022I\n\010metadata\030\004 \003(\01327.dapr.pr" - "oto.runtime.v1.BulkPublishRequest.Metada" - "taEntry\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n" - "\005value\030\002 \001(\t:\0028\001\"\321\001\n\027BulkPublishRequestE" - "ntry\022\020\n\010entry_id\030\001 \001(\t\022\r\n\005event\030\002 \001(\014\022\024\n" - "\014content_type\030\003 \001(\t\022N\n\010metadata\030\004 \003(\0132<." - "dapr.proto.runtime.v1.BulkPublishRequest" - "Entry.MetadataEntry\032/\n\rMetadataEntry\022\013\n\003" - "key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"c\n\023BulkPubl" - "ishResponse\022L\n\rfailedEntries\030\001 \003(\01325.dap" - "r.proto.runtime.v1.BulkPublishResponseFa" - "iledEntry\"A\n\036BulkPublishResponseFailedEn" - "try\022\020\n\010entry_id\030\001 \001(\t\022\r\n\005error\030\002 \001(\t\"\303\001\n" - "\024InvokeBindingRequest\022\014\n\004name\030\001 \001(\t\022\014\n\004d" - "ata\030\002 \001(\014\022K\n\010metadata\030\003 \003(\01329.dapr.proto" - ".runtime.v1.InvokeBindingRequest.Metadat" - "aEntry\022\021\n\toperation\030\004 \001(\t\032/\n\rMetadataEnt" - "ry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\244\001\n\025I" - "nvokeBindingResponse\022\014\n\004data\030\001 \001(\014\022L\n\010me" - "tadata\030\002 \003(\0132:.dapr.proto.runtime.v1.Inv" - "okeBindingResponse.MetadataEntry\032/\n\rMeta" - "dataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028" - "\001\"\255\001\n\020GetSecretRequest\022\022\n\nstore_name\030\001 \001" - "(\t\022\013\n\003key\030\002 \001(\t\022G\n\010metadata\030\003 \003(\01325.dapr" - ".proto.runtime.v1.GetSecretRequest.Metad" - "ataEntry\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r" - "\n\005value\030\002 \001(\t:\0028\001\"\202\001\n\021GetSecretResponse\022" - "@\n\004data\030\001 \003(\01322.dapr.proto.runtime.v1.Ge" - "tSecretResponse.DataEntry\032+\n\tDataEntry\022\013" - "\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\250\001\n\024GetBu" - "lkSecretRequest\022\022\n\nstore_name\030\001 \001(\t\022K\n\010m" - "etadata\030\002 \003(\01329.dapr.proto.runtime.v1.Ge" - "tBulkSecretRequest.MetadataEntry\032/\n\rMeta" - "dataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028" - "\001\"\205\001\n\016SecretResponse\022C\n\007secrets\030\001 \003(\01322." - "dapr.proto.runtime.v1.SecretResponse.Sec" - "retsEntry\032.\n\014SecretsEntry\022\013\n\003key\030\001 \001(\t\022\r" - "\n\005value\030\002 \001(\t:\0028\001\"\261\001\n\025GetBulkSecretRespo" - "nse\022D\n\004data\030\001 \003(\01326.dapr.proto.runtime.v" - "1.GetBulkSecretResponse.DataEntry\032R\n\tDat" - "aEntry\022\013\n\003key\030\001 \001(\t\0224\n\005value\030\002 \001(\0132%.dap" - "r.proto.runtime.v1.SecretResponse:\0028\001\"f\n" - "\033TransactionalStateOperation\022\025\n\roperatio" - "nType\030\001 \001(\t\0220\n\007request\030\002 \001(\0132\037.dapr.prot" - "o.common.v1.StateItem\"\203\002\n\036ExecuteStateTr" - "ansactionRequest\022\021\n\tstoreName\030\001 \001(\t\022F\n\no" - "perations\030\002 \003(\01322.dapr.proto.runtime.v1." - "TransactionalStateOperation\022U\n\010metadata\030" - "\003 \003(\0132C.dapr.proto.runtime.v1.ExecuteSta" - "teTransactionRequest.MetadataEntry\032/\n\rMe" + "roto\032\033google/protobuf/empty.proto\032\037googl" + "e/protobuf/timestamp.proto\032!dapr/proto/c" + "ommon/v1/common.proto\"X\n\024InvokeServiceRe" + "quest\022\n\n\002id\030\001 \001(\t\0224\n\007message\030\003 \001(\0132#.dap" + "r.proto.common.v1.InvokeRequest\"\365\001\n\017GetS" + "tateRequest\022\022\n\nstore_name\030\001 \001(\t\022\013\n\003key\030\002" + " \001(\t\022H\n\013consistency\030\003 \001(\01623.dapr.proto.c" + "ommon.v1.StateOptions.StateConsistency\022F" + "\n\010metadata\030\004 \003(\01324.dapr.proto.runtime.v1" + ".GetStateRequest.MetadataEntry\032/\n\rMetada" + "taEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"" + "\311\001\n\023GetBulkStateRequest\022\022\n\nstore_name\030\001 " + "\001(\t\022\014\n\004keys\030\002 \003(\t\022\023\n\013parallelism\030\003 \001(\005\022J" + "\n\010metadata\030\004 \003(\01328.dapr.proto.runtime.v1" + ".GetBulkStateRequest.MetadataEntry\032/\n\rMe" "tadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:" - "\0028\001\"\236\001\n\031RegisterActorTimerRequest\022\022\n\nact" - "or_type\030\001 \001(\t\022\020\n\010actor_id\030\002 \001(\t\022\014\n\004name\030" - "\003 \001(\t\022\020\n\010due_time\030\004 \001(\t\022\016\n\006period\030\005 \001(\t\022" - "\020\n\010callback\030\006 \001(\t\022\014\n\004data\030\007 \001(\014\022\013\n\003ttl\030\010" - " \001(\t\"Q\n\033UnregisterActorTimerRequest\022\022\n\na" - "ctor_type\030\001 \001(\t\022\020\n\010actor_id\030\002 \001(\t\022\014\n\004nam" - "e\030\003 \001(\t\"\217\001\n\034RegisterActorReminderRequest" - "\022\022\n\nactor_type\030\001 \001(\t\022\020\n\010actor_id\030\002 \001(\t\022\014" - "\n\004name\030\003 \001(\t\022\020\n\010due_time\030\004 \001(\t\022\016\n\006period" - "\030\005 \001(\t\022\014\n\004data\030\006 \001(\014\022\013\n\003ttl\030\007 \001(\t\"T\n\036Unr" - "egisterActorReminderRequest\022\022\n\nactor_typ" - "e\030\001 \001(\t\022\020\n\010actor_id\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\"" - "f\n\032RenameActorReminderRequest\022\022\n\nactor_t" - "ype\030\001 \001(\t\022\020\n\010actor_id\030\002 \001(\t\022\020\n\010old_name\030" - "\003 \001(\t\022\020\n\010new_name\030\004 \001(\t\"I\n\024GetActorState" - "Request\022\022\n\nactor_type\030\001 \001(\t\022\020\n\010actor_id\030" - "\002 \001(\t\022\013\n\003key\030\003 \001(\t\"%\n\025GetActorStateRespo" - "nse\022\014\n\004data\030\001 \001(\014\"\230\001\n#ExecuteActorStateT" - "ransactionRequest\022\022\n\nactor_type\030\001 \001(\t\022\020\n" - "\010actor_id\030\002 \001(\t\022K\n\noperations\030\003 \003(\01327.da" - "pr.proto.runtime.v1.TransactionalActorSt" - "ateOperation\"k\n TransactionalActorStateO" - "peration\022\025\n\roperationType\030\001 \001(\t\022\013\n\003key\030\002" - " \001(\t\022#\n\005value\030\003 \001(\0132\024.google.protobuf.An" - "y\"\324\001\n\022InvokeActorRequest\022\022\n\nactor_type\030\001" - " \001(\t\022\020\n\010actor_id\030\002 \001(\t\022\016\n\006method\030\003 \001(\t\022\014" - "\n\004data\030\004 \001(\014\022I\n\010metadata\030\005 \003(\01327.dapr.pr" - "oto.runtime.v1.InvokeActorRequest.Metada" - "taEntry\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n" - "\005value\030\002 \001(\t:\0028\001\"#\n\023InvokeActorResponse\022" - "\014\n\004data\030\001 \001(\014\"\214\003\n\023GetMetadataResponse\022\n\n" - "\002id\030\001 \001(\t\022E\n\023active_actors_count\030\002 \003(\0132(" - ".dapr.proto.runtime.v1.ActiveActorsCount" - "\022J\n\025registered_components\030\003 \003(\0132+.dapr.p" - "roto.runtime.v1.RegisteredComponents\022[\n\021" - "extended_metadata\030\004 \003(\0132@.dapr.proto.run" - "time.v1.GetMetadataResponse.ExtendedMeta" - "dataEntry\022@\n\rsubscriptions\030\005 \003(\0132).dapr." - "proto.runtime.v1.PubsubSubscription\0327\n\025E" - "xtendedMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" - "ue\030\002 \001(\t:\0028\001\"0\n\021ActiveActorsCount\022\014\n\004typ" - "e\030\001 \001(\t\022\r\n\005count\030\002 \001(\005\"Y\n\024RegisteredComp" - "onents\022\014\n\004name\030\001 \001(\t\022\014\n\004type\030\002 \001(\t\022\017\n\007ve" - "rsion\030\003 \001(\t\022\024\n\014capabilities\030\004 \003(\t\"\216\002\n\022Pu" - "bsubSubscription\022\023\n\013pubsub_name\030\001 \001(\t\022\r\n" - "\005topic\030\002 \001(\t\022I\n\010metadata\030\003 \003(\01327.dapr.pr" - "oto.runtime.v1.PubsubSubscription.Metada" - "taEntry\022=\n\005rules\030\004 \001(\0132..dapr.proto.runt" - "ime.v1.PubsubSubscriptionRules\022\031\n\021dead_l" - "etter_topic\030\005 \001(\t\032/\n\rMetadataEntry\022\013\n\003ke" - "y\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"W\n\027PubsubSubs" - "criptionRules\022<\n\005rules\030\001 \003(\0132-.dapr.prot" - "o.runtime.v1.PubsubSubscriptionRule\"5\n\026P" - "ubsubSubscriptionRule\022\r\n\005match\030\001 \001(\t\022\014\n\004" - "path\030\002 \001(\t\"0\n\022SetMetadataRequest\022\013\n\003key\030" - "\001 \001(\t\022\r\n\005value\030\002 \001(\t\"\274\001\n\027GetConfiguratio" - "nRequest\022\022\n\nstore_name\030\001 \001(\t\022\014\n\004keys\030\002 \003" - "(\t\022N\n\010metadata\030\003 \003(\0132<.dapr.proto.runtim" - "e.v1.GetConfigurationRequest.MetadataEnt" - "ry\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005valu" - "e\030\002 \001(\t:\0028\001\"\274\001\n\030GetConfigurationResponse" - "\022I\n\005items\030\001 \003(\0132:.dapr.proto.runtime.v1." - "GetConfigurationResponse.ItemsEntry\032U\n\nI" - "temsEntry\022\013\n\003key\030\001 \001(\t\0226\n\005value\030\002 \001(\0132\'." - "dapr.proto.common.v1.ConfigurationItem:\002" - "8\001\"\310\001\n\035SubscribeConfigurationRequest\022\022\n\n" - "store_name\030\001 \001(\t\022\014\n\004keys\030\002 \003(\t\022T\n\010metada" - "ta\030\003 \003(\0132B.dapr.proto.runtime.v1.Subscri" - "beConfigurationRequest.MetadataEntry\032/\n\r" + "\0028\001\"K\n\024GetBulkStateResponse\0223\n\005items\030\001 \003" + "(\0132$.dapr.proto.runtime.v1.BulkStateItem" + "\"\276\001\n\rBulkStateItem\022\013\n\003key\030\001 \001(\t\022\014\n\004data\030" + "\002 \001(\014\022\014\n\004etag\030\003 \001(\t\022\r\n\005error\030\004 \001(\t\022D\n\010me" + "tadata\030\005 \003(\01322.dapr.proto.runtime.v1.Bul" + "kStateItem.MetadataEntry\032/\n\rMetadataEntr" + "y\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\250\001\n\020Ge" + "tStateResponse\022\014\n\004data\030\001 \001(\014\022\014\n\004etag\030\002 \001" + "(\t\022G\n\010metadata\030\003 \003(\01325.dapr.proto.runtim" + "e.v1.GetStateResponse.MetadataEntry\032/\n\rM" + "etadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t" + ":\0028\001\"\220\002\n\022DeleteStateRequest\022\022\n\nstore_nam" + "e\030\001 \001(\t\022\013\n\003key\030\002 \001(\t\022(\n\004etag\030\003 \001(\0132\032.dap" + "r.proto.common.v1.Etag\0223\n\007options\030\004 \001(\0132" + "\".dapr.proto.common.v1.StateOptions\022I\n\010m" + "etadata\030\005 \003(\01327.dapr.proto.runtime.v1.De" + "leteStateRequest.MetadataEntry\032/\n\rMetada" + "taEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"" + "]\n\026DeleteBulkStateRequest\022\022\n\nstore_name\030" + "\001 \001(\t\022/\n\006states\030\002 \003(\0132\037.dapr.proto.commo" + "n.v1.StateItem\"W\n\020SaveStateRequest\022\022\n\nst" + "ore_name\030\001 \001(\t\022/\n\006states\030\002 \003(\0132\037.dapr.pr" + "oto.common.v1.StateItem\"\274\001\n\021QueryStateRe" + "quest\022\035\n\nstore_name\030\001 \001(\tR\tstoreName\022\r\n\005" + "query\030\002 \001(\t\022H\n\010metadata\030\003 \003(\01326.dapr.pro" + "to.runtime.v1.QueryStateRequest.Metadata" + "Entry\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005v" + "alue\030\002 \001(\t:\0028\001\"H\n\016QueryStateItem\022\013\n\003key\030" + "\001 \001(\t\022\014\n\004data\030\002 \001(\014\022\014\n\004etag\030\003 \001(\t\022\r\n\005err" + "or\030\004 \001(\t\"\327\001\n\022QueryStateResponse\0226\n\007resul" + "ts\030\001 \003(\0132%.dapr.proto.runtime.v1.QuerySt" + "ateItem\022\r\n\005token\030\002 \001(\t\022I\n\010metadata\030\003 \003(\013" + "27.dapr.proto.runtime.v1.QueryStateRespo" + "nse.MetadataEntry\032/\n\rMetadataEntry\022\013\n\003ke" + "y\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\337\001\n\023PublishEv" + "entRequest\022\023\n\013pubsub_name\030\001 \001(\t\022\r\n\005topic" + "\030\002 \001(\t\022\014\n\004data\030\003 \001(\014\022\031\n\021data_content_typ" + "e\030\004 \001(\t\022J\n\010metadata\030\005 \003(\01328.dapr.proto.r" + "untime.v1.PublishEventRequest.MetadataEn" + "try\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" + "ue\030\002 \001(\t:\0028\001\"\365\001\n\022BulkPublishRequest\022\023\n\013p" + "ubsub_name\030\001 \001(\t\022\r\n\005topic\030\002 \001(\t\022\?\n\007entri" + "es\030\003 \003(\0132..dapr.proto.runtime.v1.BulkPub" + "lishRequestEntry\022I\n\010metadata\030\004 \003(\01327.dap" + "r.proto.runtime.v1.BulkPublishRequest.Me" + "tadataEntry\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(" + "\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\321\001\n\027BulkPublishRequ" + "estEntry\022\020\n\010entry_id\030\001 \001(\t\022\r\n\005event\030\002 \001(" + "\014\022\024\n\014content_type\030\003 \001(\t\022N\n\010metadata\030\004 \003(" + "\0132<.dapr.proto.runtime.v1.BulkPublishReq" + "uestEntry.MetadataEntry\032/\n\rMetadataEntry" + "\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"c\n\023Bulk" + "PublishResponse\022L\n\rfailedEntries\030\001 \003(\01325" + ".dapr.proto.runtime.v1.BulkPublishRespon" + "seFailedEntry\"A\n\036BulkPublishResponseFail" + "edEntry\022\020\n\010entry_id\030\001 \001(\t\022\r\n\005error\030\002 \001(\t" + "\"\303\001\n\024InvokeBindingRequest\022\014\n\004name\030\001 \001(\t\022" + "\014\n\004data\030\002 \001(\014\022K\n\010metadata\030\003 \003(\01329.dapr.p" + "roto.runtime.v1.InvokeBindingRequest.Met" + "adataEntry\022\021\n\toperation\030\004 \001(\t\032/\n\rMetadat" + "aEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\244" + "\001\n\025InvokeBindingResponse\022\014\n\004data\030\001 \001(\014\022L" + "\n\010metadata\030\002 \003(\0132:.dapr.proto.runtime.v1" + ".InvokeBindingResponse.MetadataEntry\032/\n\r" "MetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(" - "\t:\0028\001\"A\n\037UnsubscribeConfigurationRequest" - "\022\022\n\nstore_name\030\001 \001(\t\022\n\n\002id\030\002 \001(\t\"\324\001\n\036Sub" - "scribeConfigurationResponse\022\n\n\002id\030\001 \001(\t\022" - "O\n\005items\030\002 \003(\0132@.dapr.proto.runtime.v1.S" - "ubscribeConfigurationResponse.ItemsEntry" + "\t:\0028\001\"\270\001\n\020GetSecretRequest\022\035\n\nstore_name" + "\030\001 \001(\tR\tstoreName\022\013\n\003key\030\002 \001(\t\022G\n\010metada" + "ta\030\003 \003(\01325.dapr.proto.runtime.v1.GetSecr" + "etRequest.MetadataEntry\032/\n\rMetadataEntry" + "\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\202\001\n\021Get" + "SecretResponse\022@\n\004data\030\001 \003(\01322.dapr.prot" + "o.runtime.v1.GetSecretResponse.DataEntry" + "\032+\n\tDataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(" + "\t:\0028\001\"\263\001\n\024GetBulkSecretRequest\022\035\n\nstore_" + "name\030\001 \001(\tR\tstoreName\022K\n\010metadata\030\002 \003(\0132" + "9.dapr.proto.runtime.v1.GetBulkSecretReq" + "uest.MetadataEntry\032/\n\rMetadataEntry\022\013\n\003k" + "ey\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\205\001\n\016SecretRe" + "sponse\022C\n\007secrets\030\001 \003(\01322.dapr.proto.run" + "time.v1.SecretResponse.SecretsEntry\032.\n\014S" + "ecretsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:" + "\0028\001\"\261\001\n\025GetBulkSecretResponse\022D\n\004data\030\001 " + "\003(\01326.dapr.proto.runtime.v1.GetBulkSecre" + "tResponse.DataEntry\032R\n\tDataEntry\022\013\n\003key\030" + "\001 \001(\t\0224\n\005value\030\002 \001(\0132%.dapr.proto.runtim" + "e.v1.SecretResponse:\0028\001\"f\n\033Transactional" + "StateOperation\022\025\n\roperationType\030\001 \001(\t\0220\n" + "\007request\030\002 \001(\0132\037.dapr.proto.common.v1.St" + "ateItem\"\203\002\n\036ExecuteStateTransactionReque" + "st\022\021\n\tstoreName\030\001 \001(\t\022F\n\noperations\030\002 \003(" + "\01322.dapr.proto.runtime.v1.TransactionalS" + "tateOperation\022U\n\010metadata\030\003 \003(\0132C.dapr.p" + "roto.runtime.v1.ExecuteStateTransactionR" + "equest.MetadataEntry\032/\n\rMetadataEntry\022\013\n" + "\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\236\001\n\031Regist" + "erActorTimerRequest\022\022\n\nactor_type\030\001 \001(\t\022" + "\020\n\010actor_id\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\022\020\n\010due_t" + "ime\030\004 \001(\t\022\016\n\006period\030\005 \001(\t\022\020\n\010callback\030\006 " + "\001(\t\022\014\n\004data\030\007 \001(\014\022\013\n\003ttl\030\010 \001(\t\"Q\n\033Unregi" + "sterActorTimerRequest\022\022\n\nactor_type\030\001 \001(" + "\t\022\020\n\010actor_id\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\"\217\001\n\034Re" + "gisterActorReminderRequest\022\022\n\nactor_type" + "\030\001 \001(\t\022\020\n\010actor_id\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\022\020" + "\n\010due_time\030\004 \001(\t\022\016\n\006period\030\005 \001(\t\022\014\n\004data" + "\030\006 \001(\014\022\013\n\003ttl\030\007 \001(\t\"T\n\036UnregisterActorRe" + "minderRequest\022\022\n\nactor_type\030\001 \001(\t\022\020\n\010act" + "or_id\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\"f\n\032RenameActor" + "ReminderRequest\022\022\n\nactor_type\030\001 \001(\t\022\020\n\010a" + "ctor_id\030\002 \001(\t\022\020\n\010old_name\030\003 \001(\t\022\020\n\010new_n" + "ame\030\004 \001(\t\"I\n\024GetActorStateRequest\022\022\n\nact" + "or_type\030\001 \001(\t\022\020\n\010actor_id\030\002 \001(\t\022\013\n\003key\030\003" + " \001(\t\"%\n\025GetActorStateResponse\022\014\n\004data\030\001 " + "\001(\014\"\230\001\n#ExecuteActorStateTransactionRequ" + "est\022\022\n\nactor_type\030\001 \001(\t\022\020\n\010actor_id\030\002 \001(" + "\t\022K\n\noperations\030\003 \003(\01327.dapr.proto.runti" + "me.v1.TransactionalActorStateOperation\"\365" + "\001\n TransactionalActorStateOperation\022\025\n\ro" + "perationType\030\001 \001(\t\022\013\n\003key\030\002 \001(\t\022#\n\005value" + "\030\003 \001(\0132\024.google.protobuf.Any\022W\n\010metadata" + "\030\004 \003(\0132E.dapr.proto.runtime.v1.Transacti" + "onalActorStateOperation.MetadataEntry\032/\n" + "\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001" + "(\t:\0028\001\"\324\001\n\022InvokeActorRequest\022\022\n\nactor_t" + "ype\030\001 \001(\t\022\020\n\010actor_id\030\002 \001(\t\022\016\n\006method\030\003 " + "\001(\t\022\014\n\004data\030\004 \001(\014\022I\n\010metadata\030\005 \003(\01327.da" + "pr.proto.runtime.v1.InvokeActorRequest.M" + "etadataEntry\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001" + "(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"#\n\023InvokeActorResp" + "onse\022\014\n\004data\030\001 \001(\014\"\214\003\n\023GetMetadataRespon" + "se\022\n\n\002id\030\001 \001(\t\022E\n\023active_actors_count\030\002 " + "\003(\0132(.dapr.proto.runtime.v1.ActiveActors" + "Count\022J\n\025registered_components\030\003 \003(\0132+.d" + "apr.proto.runtime.v1.RegisteredComponent" + "s\022[\n\021extended_metadata\030\004 \003(\0132@.dapr.prot" + "o.runtime.v1.GetMetadataResponse.Extende" + "dMetadataEntry\022@\n\rsubscriptions\030\005 \003(\0132)." + "dapr.proto.runtime.v1.PubsubSubscription" + "\0327\n\025ExtendedMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r" + "\n\005value\030\002 \001(\t:\0028\001\"0\n\021ActiveActorsCount\022\014" + "\n\004type\030\001 \001(\t\022\r\n\005count\030\002 \001(\005\"Y\n\024Registere" + "dComponents\022\014\n\004name\030\001 \001(\t\022\014\n\004type\030\002 \001(\t\022" + "\017\n\007version\030\003 \001(\t\022\024\n\014capabilities\030\004 \003(\t\"\216" + "\002\n\022PubsubSubscription\022\023\n\013pubsub_name\030\001 \001" + "(\t\022\r\n\005topic\030\002 \001(\t\022I\n\010metadata\030\003 \003(\01327.da" + "pr.proto.runtime.v1.PubsubSubscription.M" + "etadataEntry\022=\n\005rules\030\004 \001(\0132..dapr.proto" + ".runtime.v1.PubsubSubscriptionRules\022\031\n\021d" + "ead_letter_topic\030\005 \001(\t\032/\n\rMetadataEntry\022" + "\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"W\n\027Pubsu" + "bSubscriptionRules\022<\n\005rules\030\001 \003(\0132-.dapr" + ".proto.runtime.v1.PubsubSubscriptionRule" + "\"5\n\026PubsubSubscriptionRule\022\r\n\005match\030\001 \001(" + "\t\022\014\n\004path\030\002 \001(\t\"0\n\022SetMetadataRequest\022\013\n" + "\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t\"\274\001\n\027GetConfigu" + "rationRequest\022\022\n\nstore_name\030\001 \001(\t\022\014\n\004key" + "s\030\002 \003(\t\022N\n\010metadata\030\003 \003(\0132<.dapr.proto.r" + "untime.v1.GetConfigurationRequest.Metada" + "taEntry\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n" + "\005value\030\002 \001(\t:\0028\001\"\274\001\n\030GetConfigurationRes" + "ponse\022I\n\005items\030\001 \003(\0132:.dapr.proto.runtim" + "e.v1.GetConfigurationResponse.ItemsEntry" "\032U\n\nItemsEntry\022\013\n\003key\030\001 \001(\t\0226\n\005value\030\002 \001" "(\0132\'.dapr.proto.common.v1.ConfigurationI" - "tem:\0028\001\"\?\n UnsubscribeConfigurationRespo" - "nse\022\n\n\002ok\030\001 \001(\010\022\017\n\007message\030\002 \001(\t\"f\n\016TryL" - "ockRequest\022\022\n\nstore_name\030\001 \001(\t\022\023\n\013resour" - "ce_id\030\002 \001(\t\022\022\n\nlock_owner\030\003 \001(\t\022\027\n\017expir" - "yInSeconds\030\004 \001(\005\"\"\n\017TryLockResponse\022\017\n\007s" - "uccess\030\001 \001(\010\"L\n\rUnlockRequest\022\022\n\nstore_n" - "ame\030\001 \001(\t\022\023\n\013resource_id\030\002 \001(\t\022\022\n\nlock_o" - "wner\030\003 \001(\t\"\256\001\n\016UnlockResponse\022<\n\006status\030" - "\001 \001(\0162,.dapr.proto.runtime.v1.UnlockResp" - "onse.Status\"^\n\006Status\022\013\n\007SUCCESS\020\000\022\027\n\023LO" - "CK_DOES_NOT_EXIST\020\001\022\032\n\026LOCK_BELONGS_TO_O" - "THERS\020\002\022\022\n\016INTERNAL_ERROR\020\003\"(\n\021WorkflowR" - "eference\022\023\n\013instance_id\030\001 \001(\t\"\\\n\022GetWork" - "flowRequest\022\023\n\013instance_id\030\001 \001(\t\022\025\n\rwork" - "flow_type\030\002 \001(\t\022\032\n\022workflow_component\030\003 " - "\001(\t\"\273\001\n\023GetWorkflowResponse\022\023\n\013instance_" - "id\030\001 \001(\t\022\022\n\nstart_time\030\002 \001(\003\022J\n\010metadata" - "\030\003 \003(\01328.dapr.proto.runtime.v1.GetWorkfl" - "owResponse.MetadataEntry\032/\n\rMetadataEntr" - "y\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\350\001\n\024St" - "artWorkflowRequest\022\023\n\013instance_id\030\001 \001(\t\022" - "\032\n\022workflow_component\030\002 \001(\t\022\025\n\rworkflow_" - "name\030\003 \001(\t\022I\n\007options\030\004 \003(\01328.dapr.proto" - ".runtime.v1.StartWorkflowRequest.Options" - "Entry\022\r\n\005input\030\005 \001(\014\032.\n\014OptionsEntry\022\013\n\003" - "key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"K\n\030Terminat" - "eWorkflowRequest\022\023\n\013instance_id\030\001 \001(\t\022\032\n" - "\022workflow_component\030\002 \001(\t\"\033\n\031TerminateWo" - "rkflowResponse2\213\032\n\004Dapr\022d\n\rInvokeService" - "\022+.dapr.proto.runtime.v1.InvokeServiceRe" - "quest\032$.dapr.proto.common.v1.InvokeRespo" - "nse\"\000\022]\n\010GetState\022&.dapr.proto.runtime.v" - "1.GetStateRequest\032\'.dapr.proto.runtime.v" - "1.GetStateResponse\"\000\022i\n\014GetBulkState\022*.d" - "apr.proto.runtime.v1.GetBulkStateRequest" - "\032+.dapr.proto.runtime.v1.GetBulkStateRes" - "ponse\"\000\022N\n\tSaveState\022\'.dapr.proto.runtim" - "e.v1.SaveStateRequest\032\026.google.protobuf." - "Empty\"\000\022i\n\020QueryStateAlpha1\022(.dapr.proto" - ".runtime.v1.QueryStateRequest\032).dapr.pro" - "to.runtime.v1.QueryStateResponse\"\000\022R\n\013De" - "leteState\022).dapr.proto.runtime.v1.Delete" - "StateRequest\032\026.google.protobuf.Empty\"\000\022Z" - "\n\017DeleteBulkState\022-.dapr.proto.runtime.v" - "1.DeleteBulkStateRequest\032\026.google.protob" - "uf.Empty\"\000\022j\n\027ExecuteStateTransaction\0225." - "dapr.proto.runtime.v1.ExecuteStateTransa" - "ctionRequest\032\026.google.protobuf.Empty\"\000\022T" - "\n\014PublishEvent\022*.dapr.proto.runtime.v1.P" - "ublishEventRequest\032\026.google.protobuf.Emp" - "ty\"\000\022q\n\026BulkPublishEventAlpha1\022).dapr.pr" - "oto.runtime.v1.BulkPublishRequest\032*.dapr" - ".proto.runtime.v1.BulkPublishResponse\"\000\022" - "l\n\rInvokeBinding\022+.dapr.proto.runtime.v1" - ".InvokeBindingRequest\032,.dapr.proto.runti" - "me.v1.InvokeBindingResponse\"\000\022`\n\tGetSecr" - "et\022\'.dapr.proto.runtime.v1.GetSecretRequ" - "est\032(.dapr.proto.runtime.v1.GetSecretRes" - "ponse\"\000\022l\n\rGetBulkSecret\022+.dapr.proto.ru" - "ntime.v1.GetBulkSecretRequest\032,.dapr.pro" - "to.runtime.v1.GetBulkSecretResponse\"\000\022`\n" - "\022RegisterActorTimer\0220.dapr.proto.runtime" - ".v1.RegisterActorTimerRequest\032\026.google.p" - "rotobuf.Empty\"\000\022d\n\024UnregisterActorTimer\022" - "2.dapr.proto.runtime.v1.UnregisterActorT" - "imerRequest\032\026.google.protobuf.Empty\"\000\022f\n" - "\025RegisterActorReminder\0223.dapr.proto.runt" - "ime.v1.RegisterActorReminderRequest\032\026.go" - "ogle.protobuf.Empty\"\000\022j\n\027UnregisterActor" - "Reminder\0225.dapr.proto.runtime.v1.Unregis" - "terActorReminderRequest\032\026.google.protobu" - "f.Empty\"\000\022b\n\023RenameActorReminder\0221.dapr." - "proto.runtime.v1.RenameActorReminderRequ" - "est\032\026.google.protobuf.Empty\"\000\022l\n\rGetActo" - "rState\022+.dapr.proto.runtime.v1.GetActorS" - "tateRequest\032,.dapr.proto.runtime.v1.GetA" - "ctorStateResponse\"\000\022t\n\034ExecuteActorState" - "Transaction\022:.dapr.proto.runtime.v1.Exec" - "uteActorStateTransactionRequest\032\026.google" - ".protobuf.Empty\"\000\022f\n\013InvokeActor\022).dapr." - "proto.runtime.v1.InvokeActorRequest\032*.da" - "pr.proto.runtime.v1.InvokeActorResponse\"" - "\000\022{\n\026GetConfigurationAlpha1\022..dapr.proto" - ".runtime.v1.GetConfigurationRequest\032/.da" - "pr.proto.runtime.v1.GetConfigurationResp" - "onse\"\000\022\217\001\n\034SubscribeConfigurationAlpha1\022" - "4.dapr.proto.runtime.v1.SubscribeConfigu" - "rationRequest\0325.dapr.proto.runtime.v1.Su" - "bscribeConfigurationResponse\"\0000\001\022\223\001\n\036Uns" - "ubscribeConfigurationAlpha1\0226.dapr.proto" + "tem:\0028\001\"\310\001\n\035SubscribeConfigurationReques" + "t\022\022\n\nstore_name\030\001 \001(\t\022\014\n\004keys\030\002 \003(\t\022T\n\010m" + "etadata\030\003 \003(\0132B.dapr.proto.runtime.v1.Su" + "bscribeConfigurationRequest.MetadataEntr" + "y\032/\n\rMetadataEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value" + "\030\002 \001(\t:\0028\001\"A\n\037UnsubscribeConfigurationRe" + "quest\022\022\n\nstore_name\030\001 \001(\t\022\n\n\002id\030\002 \001(\t\"\324\001" + "\n\036SubscribeConfigurationResponse\022\n\n\002id\030\001" + " \001(\t\022O\n\005items\030\002 \003(\0132@.dapr.proto.runtime" + ".v1.SubscribeConfigurationResponse.Items" + "Entry\032U\n\nItemsEntry\022\013\n\003key\030\001 \001(\t\0226\n\005valu" + "e\030\002 \001(\0132\'.dapr.proto.common.v1.Configura" + "tionItem:\0028\001\"\?\n UnsubscribeConfiguration" + "Response\022\n\n\002ok\030\001 \001(\010\022\017\n\007message\030\002 \001(\t\"\233\001" + "\n\016TryLockRequest\022\035\n\nstore_name\030\001 \001(\tR\tst" + "oreName\022\037\n\013resource_id\030\002 \001(\tR\nresourceId" + "\022\035\n\nlock_owner\030\003 \001(\tR\tlockOwner\022*\n\021expir" + "y_in_seconds\030\004 \001(\005R\017expiryInSeconds\"\"\n\017T" + "ryLockResponse\022\017\n\007success\030\001 \001(\010\"n\n\rUnloc" + "kRequest\022\035\n\nstore_name\030\001 \001(\tR\tstoreName\022" + "\037\n\013resource_id\030\002 \001(\tR\nresourceId\022\035\n\nlock" + "_owner\030\003 \001(\tR\tlockOwner\"\256\001\n\016UnlockRespon" + "se\022<\n\006status\030\001 \001(\0162,.dapr.proto.runtime." + "v1.UnlockResponse.Status\"^\n\006Status\022\013\n\007SU" + "CCESS\020\000\022\027\n\023LOCK_DOES_NOT_EXIST\020\001\022\032\n\026LOCK" + "_BELONGS_TO_OTHERS\020\002\022\022\n\016INTERNAL_ERROR\020\003" + "\"\260\001\n\023SubtleGetKeyRequest\022%\n\016component_na" + "me\030\001 \001(\tR\rcomponentName\022\014\n\004name\030\002 \001(\t\022D\n" + "\006format\030\003 \001(\01624.dapr.proto.runtime.v1.Su" + "btleGetKeyRequest.KeyFormat\"\036\n\tKeyFormat" + "\022\007\n\003PEM\020\000\022\010\n\004JSON\020\001\"C\n\024SubtleGetKeyRespo" + "nse\022\014\n\004name\030\001 \001(\t\022\035\n\npublic_key\030\002 \001(\tR\tp" + "ublicKey\"\266\001\n\024SubtleEncryptRequest\022%\n\016com" + "ponent_name\030\001 \001(\tR\rcomponentName\022\021\n\tplai" + "ntext\030\002 \001(\014\022\021\n\talgorithm\030\003 \001(\t\022\031\n\010key_na" + "me\030\004 \001(\tR\007keyName\022\r\n\005nonce\030\005 \001(\014\022\'\n\017asso" + "ciated_data\030\006 \001(\014R\016associatedData\"8\n\025Sub" + "tleEncryptResponse\022\022\n\nciphertext\030\001 \001(\014\022\013" + "\n\003tag\030\002 \001(\014\"\304\001\n\024SubtleDecryptRequest\022%\n\016" + "component_name\030\001 \001(\tR\rcomponentName\022\022\n\nc" + "iphertext\030\002 \001(\014\022\021\n\talgorithm\030\003 \001(\t\022\031\n\010ke" + "y_name\030\004 \001(\tR\007keyName\022\r\n\005nonce\030\005 \001(\014\022\013\n\003" + "tag\030\006 \001(\014\022\'\n\017associated_data\030\007 \001(\014R\016asso" + "ciatedData\"*\n\025SubtleDecryptResponse\022\021\n\tp" + "laintext\030\001 \001(\014\"\310\001\n\024SubtleWrapKeyRequest\022" + "%\n\016component_name\030\001 \001(\tR\rcomponentName\022#" + "\n\rplaintext_key\030\002 \001(\014R\014plaintextKey\022\021\n\ta" + "lgorithm\030\003 \001(\t\022\031\n\010key_name\030\004 \001(\tR\007keyNam" + "e\022\r\n\005nonce\030\005 \001(\014\022\'\n\017associated_data\030\006 \001(" + "\014R\016associatedData\"E\n\025SubtleWrapKeyRespon" + "se\022\037\n\013wrapped_key\030\001 \001(\014R\nwrappedKey\022\013\n\003t" + "ag\030\002 \001(\014\"\323\001\n\026SubtleUnwrapKeyRequest\022%\n\016c" + "omponent_name\030\001 \001(\tR\rcomponentName\022\037\n\013wr" + "apped_key\030\002 \001(\014R\nwrappedKey\022\021\n\talgorithm" + "\030\003 \001(\t\022\031\n\010key_name\030\004 \001(\tR\007keyName\022\r\n\005non" + "ce\030\005 \001(\014\022\013\n\003tag\030\006 \001(\014\022\'\n\017associated_data" + "\030\007 \001(\014R\016associatedData\">\n\027SubtleUnwrapKe" + "yResponse\022#\n\rplaintext_key\030\001 \001(\014R\014plaint" + "extKey\"x\n\021SubtleSignRequest\022%\n\016component" + "_name\030\001 \001(\tR\rcomponentName\022\016\n\006digest\030\002 \001" + "(\014\022\021\n\talgorithm\030\003 \001(\t\022\031\n\010key_name\030\004 \001(\tR" + "\007keyName\"\'\n\022SubtleSignResponse\022\021\n\tsignat" + "ure\030\001 \001(\014\"\215\001\n\023SubtleVerifyRequest\022%\n\016com" + "ponent_name\030\001 \001(\tR\rcomponentName\022\016\n\006dige" + "st\030\002 \001(\014\022\021\n\talgorithm\030\003 \001(\t\022\031\n\010key_name\030" + "\004 \001(\tR\007keyName\022\021\n\tsignature\030\005 \001(\014\"%\n\024Sub" + "tleVerifyResponse\022\r\n\005valid\030\001 \001(\010\"\205\001\n\016Enc" + "ryptRequest\022=\n\007options\030\001 \001(\0132,.dapr.prot" + "o.runtime.v1.EncryptRequestOptions\0224\n\007pa" + "yload\030\002 \001(\0132#.dapr.proto.common.v1.Strea" + "mPayload\"\376\001\n\025EncryptRequestOptions\022%\n\016co" + "mponent_name\030\001 \001(\tR\rcomponentName\022\031\n\010key" + "_name\030\002 \001(\tR\007keyName\022\032\n\022key_wrap_algorit" + "hm\030\003 \001(\t\022\036\n\026data_encryption_cipher\030\n \001(\t" + "\0227\n\030omit_decryption_key_name\030\013 \001(\010R\025omit" + "DecryptionKeyName\022.\n\023decryption_key_name" + "\030\014 \001(\tR\021decryptionKeyName\"G\n\017EncryptResp" + "onse\0224\n\007payload\030\001 \001(\0132#.dapr.proto.commo" + "n.v1.StreamPayload\"\205\001\n\016DecryptRequest\022=\n" + "\007options\030\001 \001(\0132,.dapr.proto.runtime.v1.D" + "ecryptRequestOptions\0224\n\007payload\030\002 \001(\0132#." + "dapr.proto.common.v1.StreamPayload\"Y\n\025De" + "cryptRequestOptions\022%\n\016component_name\030\001 " + "\001(\tR\rcomponentName\022\031\n\010key_name\030\014 \001(\tR\007ke" + "yName\"G\n\017DecryptResponse\0224\n\007payload\030\001 \001(" + "\0132#.dapr.proto.common.v1.StreamPayload\"d" + "\n\022GetWorkflowRequest\022\037\n\013instance_id\030\001 \001(" + "\tR\ninstanceID\022-\n\022workflow_component\030\002 \001(" + "\tR\021workflowComponent\"\204\003\n\023GetWorkflowResp" + "onse\022\037\n\013instance_id\030\001 \001(\tR\ninstanceID\022#\n" + "\rworkflow_name\030\002 \001(\tR\014workflowName\0229\n\ncr" + "eated_at\030\003 \001(\0132\032.google.protobuf.Timesta" + "mpR\tcreatedAt\022B\n\017last_updated_at\030\004 \001(\0132\032" + ".google.protobuf.TimestampR\rlastUpdatedA" + "t\022%\n\016runtime_status\030\005 \001(\tR\rruntimeStatus" + "\022N\n\nproperties\030\006 \003(\0132:.dapr.proto.runtim" + "e.v1.GetWorkflowResponse.PropertiesEntry" + "\0321\n\017PropertiesEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005valu" + "e\030\002 \001(\t:\0028\001\"\225\002\n\024StartWorkflowRequest\022\037\n\013" + "instance_id\030\001 \001(\tR\ninstanceID\022-\n\022workflo" + "w_component\030\002 \001(\tR\021workflowComponent\022#\n\r" + "workflow_name\030\003 \001(\tR\014workflowName\022I\n\007opt" + "ions\030\004 \003(\01328.dapr.proto.runtime.v1.Start" + "WorkflowRequest.OptionsEntry\022\r\n\005input\030\005 " + "\001(\014\032.\n\014OptionsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005valu" + "e\030\002 \001(\t:\0028\001\"8\n\025StartWorkflowResponse\022\037\n\013" + "instance_id\030\001 \001(\tR\ninstanceID\"j\n\030Termina" + "teWorkflowRequest\022\037\n\013instance_id\030\001 \001(\tR\n" + "instanceID\022-\n\022workflow_component\030\002 \001(\tR\021" + "workflowComponent\"f\n\024PauseWorkflowReques" + "t\022\037\n\013instance_id\030\001 \001(\tR\ninstanceID\022-\n\022wo" + "rkflow_component\030\002 \001(\tR\021workflowComponen" + "t\"g\n\025ResumeWorkflowRequest\022\037\n\013instance_i" + "d\030\001 \001(\tR\ninstanceID\022-\n\022workflow_componen" + "t\030\002 \001(\tR\021workflowComponent\"\236\001\n\031RaiseEven" + "tWorkflowRequest\022\037\n\013instance_id\030\001 \001(\tR\ni" + "nstanceID\022-\n\022workflow_component\030\002 \001(\tR\021w" + "orkflowComponent\022\035\n\nevent_name\030\003 \001(\tR\tev" + "entName\022\022\n\nevent_data\030\004 \001(\014\"f\n\024PurgeWork" + "flowRequest\022\037\n\013instance_id\030\001 \001(\tR\ninstan" + "ceID\022-\n\022workflow_component\030\002 \001(\tR\021workfl" + "owComponent2\351\'\n\004Dapr\022d\n\rInvokeService\022+." + "dapr.proto.runtime.v1.InvokeServiceReque" + "st\032$.dapr.proto.common.v1.InvokeResponse" + "\"\000\022]\n\010GetState\022&.dapr.proto.runtime.v1.G" + "etStateRequest\032\'.dapr.proto.runtime.v1.G" + "etStateResponse\"\000\022i\n\014GetBulkState\022*.dapr" + ".proto.runtime.v1.GetBulkStateRequest\032+." + "dapr.proto.runtime.v1.GetBulkStateRespon" + "se\"\000\022N\n\tSaveState\022\'.dapr.proto.runtime.v" + "1.SaveStateRequest\032\026.google.protobuf.Emp" + "ty\"\000\022i\n\020QueryStateAlpha1\022(.dapr.proto.ru" + "ntime.v1.QueryStateRequest\032).dapr.proto." + "runtime.v1.QueryStateResponse\"\000\022R\n\013Delet" + "eState\022).dapr.proto.runtime.v1.DeleteSta" + "teRequest\032\026.google.protobuf.Empty\"\000\022Z\n\017D" + "eleteBulkState\022-.dapr.proto.runtime.v1.D" + "eleteBulkStateRequest\032\026.google.protobuf." + "Empty\"\000\022j\n\027ExecuteStateTransaction\0225.dap" + "r.proto.runtime.v1.ExecuteStateTransacti" + "onRequest\032\026.google.protobuf.Empty\"\000\022T\n\014P" + "ublishEvent\022*.dapr.proto.runtime.v1.Publ" + "ishEventRequest\032\026.google.protobuf.Empty\"" + "\000\022q\n\026BulkPublishEventAlpha1\022).dapr.proto" + ".runtime.v1.BulkPublishRequest\032*.dapr.pr" + "oto.runtime.v1.BulkPublishResponse\"\000\022l\n\r" + "InvokeBinding\022+.dapr.proto.runtime.v1.In" + "vokeBindingRequest\032,.dapr.proto.runtime." + "v1.InvokeBindingResponse\"\000\022`\n\tGetSecret\022" + "\'.dapr.proto.runtime.v1.GetSecretRequest" + "\032(.dapr.proto.runtime.v1.GetSecretRespon" + "se\"\000\022l\n\rGetBulkSecret\022+.dapr.proto.runti" + "me.v1.GetBulkSecretRequest\032,.dapr.proto." + "runtime.v1.GetBulkSecretResponse\"\000\022`\n\022Re" + "gisterActorTimer\0220.dapr.proto.runtime.v1" + ".RegisterActorTimerRequest\032\026.google.prot" + "obuf.Empty\"\000\022d\n\024UnregisterActorTimer\0222.d" + "apr.proto.runtime.v1.UnregisterActorTime" + "rRequest\032\026.google.protobuf.Empty\"\000\022f\n\025Re" + "gisterActorReminder\0223.dapr.proto.runtime" + ".v1.RegisterActorReminderRequest\032\026.googl" + "e.protobuf.Empty\"\000\022j\n\027UnregisterActorRem" + "inder\0225.dapr.proto.runtime.v1.Unregister" + "ActorReminderRequest\032\026.google.protobuf.E" + "mpty\"\000\022b\n\023RenameActorReminder\0221.dapr.pro" + "to.runtime.v1.RenameActorReminderRequest" + "\032\026.google.protobuf.Empty\"\000\022l\n\rGetActorSt" + "ate\022+.dapr.proto.runtime.v1.GetActorStat" + "eRequest\032,.dapr.proto.runtime.v1.GetActo" + "rStateResponse\"\000\022t\n\034ExecuteActorStateTra" + "nsaction\022:.dapr.proto.runtime.v1.Execute" + "ActorStateTransactionRequest\032\026.google.pr" + "otobuf.Empty\"\000\022f\n\013InvokeActor\022).dapr.pro" + "to.runtime.v1.InvokeActorRequest\032*.dapr." + "proto.runtime.v1.InvokeActorResponse\"\000\022{" + "\n\026GetConfigurationAlpha1\022..dapr.proto.ru" + "ntime.v1.GetConfigurationRequest\032/.dapr." + "proto.runtime.v1.GetConfigurationRespons" + "e\"\000\022u\n\020GetConfiguration\022..dapr.proto.run" + "time.v1.GetConfigurationRequest\032/.dapr.p" + "roto.runtime.v1.GetConfigurationResponse" + "\"\000\022\217\001\n\034SubscribeConfigurationAlpha1\0224.da" + "pr.proto.runtime.v1.SubscribeConfigurati" + "onRequest\0325.dapr.proto.runtime.v1.Subscr" + "ibeConfigurationResponse\"\0000\001\022\211\001\n\026Subscri" + "beConfiguration\0224.dapr.proto.runtime.v1." + "SubscribeConfigurationRequest\0325.dapr.pro" + "to.runtime.v1.SubscribeConfigurationResp" + "onse\"\0000\001\022\223\001\n\036UnsubscribeConfigurationAlp" + "ha1\0226.dapr.proto.runtime.v1.UnsubscribeC" + "onfigurationRequest\0327.dapr.proto.runtime" + ".v1.UnsubscribeConfigurationResponse\"\000\022\215" + "\001\n\030UnsubscribeConfiguration\0226.dapr.proto" ".runtime.v1.UnsubscribeConfigurationRequ" "est\0327.dapr.proto.runtime.v1.UnsubscribeC" "onfigurationResponse\"\000\022`\n\rTryLockAlpha1\022" @@ -3048,31 +3885,66 @@ void AddDescriptorsImpl() { ".dapr.proto.runtime.v1.TryLockResponse\"\000" "\022]\n\014UnlockAlpha1\022$.dapr.proto.runtime.v1" ".UnlockRequest\032%.dapr.proto.runtime.v1.U" - "nlockResponse\"\000\022S\n\013GetMetadata\022\026.google." + "nlockResponse\"\000\022b\n\rEncryptAlpha1\022%.dapr." + "proto.runtime.v1.EncryptRequest\032&.dapr.p" + "roto.runtime.v1.EncryptResponse(\0010\001\022b\n\rD" + "ecryptAlpha1\022%.dapr.proto.runtime.v1.Dec" + "ryptRequest\032&.dapr.proto.runtime.v1.Decr" + "yptResponse(\0010\001\022S\n\013GetMetadata\022\026.google." "protobuf.Empty\032*.dapr.proto.runtime.v1.G" "etMetadataResponse\"\000\022R\n\013SetMetadata\022).da" "pr.proto.runtime.v1.SetMetadataRequest\032\026" - ".google.protobuf.Empty\"\000\022n\n\023StartWorkflo" - "wAlpha1\022+.dapr.proto.runtime.v1.StartWor" - "kflowRequest\032(.dapr.proto.runtime.v1.Wor" - "kflowReference\"\000\022l\n\021GetWorkflowAlpha1\022)." - "dapr.proto.runtime.v1.GetWorkflowRequest" - "\032*.dapr.proto.runtime.v1.GetWorkflowResp" - "onse\"\000\022~\n\027TerminateWorkflowAlpha1\022/.dapr" - ".proto.runtime.v1.TerminateWorkflowReque" - "st\0320.dapr.proto.runtime.v1.TerminateWork" - "flowResponse\"\000\022<\n\010Shutdown\022\026.google.prot" - "obuf.Empty\032\026.google.protobuf.Empty\"\000Bi\n\n" - "io.dapr.v1B\nDaprProtosZ1github.com/dapr/" - "dapr/pkg/proto/runtime/v1;runtime\252\002\033Dapr" - ".Client.Autogen.Grpc.v1b\006proto3" + ".google.protobuf.Empty\"\000\022m\n\022SubtleGetKey" + "Alpha1\022*.dapr.proto.runtime.v1.SubtleGet" + "KeyRequest\032+.dapr.proto.runtime.v1.Subtl" + "eGetKeyResponse\022p\n\023SubtleEncryptAlpha1\022+" + ".dapr.proto.runtime.v1.SubtleEncryptRequ" + "est\032,.dapr.proto.runtime.v1.SubtleEncryp" + "tResponse\022p\n\023SubtleDecryptAlpha1\022+.dapr." + "proto.runtime.v1.SubtleDecryptRequest\032,." + "dapr.proto.runtime.v1.SubtleDecryptRespo" + "nse\022p\n\023SubtleWrapKeyAlpha1\022+.dapr.proto." + "runtime.v1.SubtleWrapKeyRequest\032,.dapr.p" + "roto.runtime.v1.SubtleWrapKeyResponse\022v\n" + "\025SubtleUnwrapKeyAlpha1\022-.dapr.proto.runt" + "ime.v1.SubtleUnwrapKeyRequest\032..dapr.pro" + "to.runtime.v1.SubtleUnwrapKeyResponse\022g\n" + "\020SubtleSignAlpha1\022(.dapr.proto.runtime.v" + "1.SubtleSignRequest\032).dapr.proto.runtime" + ".v1.SubtleSignResponse\022m\n\022SubtleVerifyAl" + "pha1\022*.dapr.proto.runtime.v1.SubtleVerif" + "yRequest\032+.dapr.proto.runtime.v1.SubtleV" + "erifyResponse\022r\n\023StartWorkflowAlpha1\022+.d" + "apr.proto.runtime.v1.StartWorkflowReques" + "t\032,.dapr.proto.runtime.v1.StartWorkflowR" + "esponse\"\000\022l\n\021GetWorkflowAlpha1\022).dapr.pr" + "oto.runtime.v1.GetWorkflowRequest\032*.dapr" + ".proto.runtime.v1.GetWorkflowResponse\"\000\022" + "\\\n\023PurgeWorkflowAlpha1\022+.dapr.proto.runt" + "ime.v1.PurgeWorkflowRequest\032\026.google.pro" + "tobuf.Empty\"\000\022d\n\027TerminateWorkflowAlpha1" + "\022/.dapr.proto.runtime.v1.TerminateWorkfl" + "owRequest\032\026.google.protobuf.Empty\"\000\022\\\n\023P" + "auseWorkflowAlpha1\022+.dapr.proto.runtime." + "v1.PauseWorkflowRequest\032\026.google.protobu" + "f.Empty\"\000\022^\n\024ResumeWorkflowAlpha1\022,.dapr" + ".proto.runtime.v1.ResumeWorkflowRequest\032" + "\026.google.protobuf.Empty\"\000\022f\n\030RaiseEventW" + "orkflowAlpha1\0220.dapr.proto.runtime.v1.Ra" + "iseEventWorkflowRequest\032\026.google.protobu" + "f.Empty\"\000\022<\n\010Shutdown\022\026.google.protobuf." + "Empty\032\026.google.protobuf.Empty\"\000Bi\n\nio.da" + "pr.v1B\nDaprProtosZ1github.com/dapr/dapr/" + "pkg/proto/runtime/v1;runtime\252\002\033Dapr.Clie" + "nt.Autogen.Grpc.v1b\006proto3" }; ::google::protobuf::DescriptorPool::InternalAddGeneratedFile( - descriptor, 12111); + descriptor, 17306); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "dapr/proto/runtime/v1/dapr.proto", &protobuf_RegisterTypes); ::protobuf_google_2fprotobuf_2fany_2eproto::AddDescriptors(); ::protobuf_google_2fprotobuf_2fempty_2eproto::AddDescriptors(); + ::protobuf_google_2fprotobuf_2ftimestamp_2eproto::AddDescriptors(); ::protobuf_dapr_2fproto_2fcommon_2fv1_2fcommon_2eproto::AddDescriptors(); } @@ -3116,6 +3988,27 @@ const UnlockResponse_Status UnlockResponse::Status_MIN; const UnlockResponse_Status UnlockResponse::Status_MAX; const int UnlockResponse::Status_ARRAYSIZE; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 +const ::google::protobuf::EnumDescriptor* SubtleGetKeyRequest_KeyFormat_descriptor() { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_enum_descriptors[1]; +} +bool SubtleGetKeyRequest_KeyFormat_IsValid(int value) { + switch (value) { + case 0: + case 1: + return true; + default: + return false; + } +} + +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const SubtleGetKeyRequest_KeyFormat SubtleGetKeyRequest::PEM; +const SubtleGetKeyRequest_KeyFormat SubtleGetKeyRequest::JSON; +const SubtleGetKeyRequest_KeyFormat SubtleGetKeyRequest::KeyFormat_MIN; +const SubtleGetKeyRequest_KeyFormat SubtleGetKeyRequest::KeyFormat_MAX; +const int SubtleGetKeyRequest::KeyFormat_ARRAYSIZE; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 // =================================================================== @@ -6967,7 +7860,7 @@ bool QueryStateRequest::MergePartialFromCodedStream( tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { @@ -7052,7 +7945,7 @@ void QueryStateRequest::SerializeWithCachedSizes( ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->store_name().data(), static_cast(this->store_name().length()), @@ -7139,7 +8032,7 @@ ::google::protobuf::uint8* QueryStateRequest::InternalSerializeWithCachedSizesTo ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->store_name().data(), static_cast(this->store_name().length()), @@ -7249,7 +8142,7 @@ size_t QueryStateRequest::ByteSizeLong() const { } } - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( @@ -11369,7 +12262,7 @@ bool GetSecretRequest::MergePartialFromCodedStream( tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { @@ -11454,7 +12347,7 @@ void GetSecretRequest::SerializeWithCachedSizes( ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->store_name().data(), static_cast(this->store_name().length()), @@ -11541,7 +12434,7 @@ ::google::protobuf::uint8* GetSecretRequest::InternalSerializeWithCachedSizesToA ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->store_name().data(), static_cast(this->store_name().length()), @@ -11651,7 +12544,7 @@ size_t GetSecretRequest::ByteSizeLong() const { } } - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( @@ -12191,7 +13084,7 @@ bool GetBulkSecretRequest::MergePartialFromCodedStream( tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { @@ -12260,7 +13153,7 @@ void GetBulkSecretRequest::SerializeWithCachedSizes( ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->store_name().data(), static_cast(this->store_name().length()), @@ -12337,7 +13230,7 @@ ::google::protobuf::uint8* GetBulkSecretRequest::InternalSerializeWithCachedSize ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->store_name().data(), static_cast(this->store_name().length()), @@ -12436,7 +13329,7 @@ size_t GetBulkSecretRequest::ByteSizeLong() const { } } - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( @@ -17252,6 +18145,23 @@ ::google::protobuf::Metadata ExecuteActorStateTransactionRequest::GetMetadata() } +// =================================================================== + +TransactionalActorStateOperation_MetadataEntry_DoNotUse::TransactionalActorStateOperation_MetadataEntry_DoNotUse() {} +TransactionalActorStateOperation_MetadataEntry_DoNotUse::TransactionalActorStateOperation_MetadataEntry_DoNotUse(::google::protobuf::Arena* arena) : SuperType(arena) {} +void TransactionalActorStateOperation_MetadataEntry_DoNotUse::MergeFrom(const TransactionalActorStateOperation_MetadataEntry_DoNotUse& other) { + MergeFromInternal(other); +} +::google::protobuf::Metadata TransactionalActorStateOperation_MetadataEntry_DoNotUse::GetMetadata() const { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[52]; +} +void TransactionalActorStateOperation_MetadataEntry_DoNotUse::MergeFrom( + const ::google::protobuf::Message& other) { + ::google::protobuf::Message::MergeFrom(other); +} + + // =================================================================== void TransactionalActorStateOperation::InitAsDefaultInstance() { @@ -17268,6 +18178,7 @@ void TransactionalActorStateOperation::clear_value() { const int TransactionalActorStateOperation::kOperationTypeFieldNumber; const int TransactionalActorStateOperation::kKeyFieldNumber; const int TransactionalActorStateOperation::kValueFieldNumber; +const int TransactionalActorStateOperation::kMetadataFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 TransactionalActorStateOperation::TransactionalActorStateOperation() @@ -17281,6 +18192,7 @@ TransactionalActorStateOperation::TransactionalActorStateOperation(const Transac : ::google::protobuf::Message(), _internal_metadata_(NULL) { _internal_metadata_.MergeFrom(from._internal_metadata_); + metadata_.MergeFrom(from.metadata_); operationtype_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.operationtype().size() > 0) { operationtype_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.operationtype_); @@ -17334,6 +18246,7 @@ void TransactionalActorStateOperation::Clear() { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + metadata_.Clear(); operationtype_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (GetArenaNoVirtual() == NULL && value_ != NULL) { @@ -17397,6 +18310,33 @@ bool TransactionalActorStateOperation::MergePartialFromCodedStream( break; } + // map metadata = 4; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { + TransactionalActorStateOperation_MetadataEntry_DoNotUse::Parser< ::google::protobuf::internal::MapField< + TransactionalActorStateOperation_MetadataEntry_DoNotUse, + ::std::string, ::std::string, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + 0 >, + ::google::protobuf::Map< ::std::string, ::std::string > > parser(&metadata_); + DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( + input, &parser)); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + parser.key().data(), static_cast(parser.key().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.TransactionalActorStateOperation.MetadataEntry.key")); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + parser.value().data(), static_cast(parser.value().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.TransactionalActorStateOperation.MetadataEntry.value")); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -17449,6 +18389,59 @@ void TransactionalActorStateOperation::SerializeWithCachedSizes( 3, this->_internal_value(), output); } + // map metadata = 4; + if (!this->metadata().empty()) { + typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer + ConstPtr; + typedef ConstPtr SortItem; + typedef ::google::protobuf::internal::CompareByDerefFirst Less; + struct Utf8Check { + static void Check(ConstPtr p) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->first.data(), static_cast(p->first.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.TransactionalActorStateOperation.MetadataEntry.key"); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->second.data(), static_cast(p->second.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.TransactionalActorStateOperation.MetadataEntry.value"); + } + }; + + if (output->IsSerializationDeterministic() && + this->metadata().size() > 1) { + ::std::unique_ptr items( + new SortItem[this->metadata().size()]); + typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; + size_type n = 0; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->metadata().begin(); + it != this->metadata().end(); ++it, ++n) { + items[static_cast(n)] = SortItem(&*it); + } + ::std::sort(&items[0], &items[static_cast(n)], Less()); + ::std::unique_ptr entry; + for (size_type i = 0; i < n; i++) { + entry.reset(metadata_.NewEntryWrapper( + items[static_cast(i)]->first, items[static_cast(i)]->second)); + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 4, *entry, output); + Utf8Check::Check(items[static_cast(i)]); + } + } else { + ::std::unique_ptr entry; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->metadata().begin(); + it != this->metadata().end(); ++it) { + entry.reset(metadata_.NewEntryWrapper( + it->first, it->second)); + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 4, *entry, output); + Utf8Check::Check(&*it); + } + } + } + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); @@ -17492,28 +18485,99 @@ ::google::protobuf::uint8* TransactionalActorStateOperation::InternalSerializeWi 3, this->_internal_value(), deterministic, target); } - if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { - target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( - (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); - } - // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.TransactionalActorStateOperation) - return target; -} - -size_t TransactionalActorStateOperation::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.TransactionalActorStateOperation) - size_t total_size = 0; + // map metadata = 4; + if (!this->metadata().empty()) { + typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer + ConstPtr; + typedef ConstPtr SortItem; + typedef ::google::protobuf::internal::CompareByDerefFirst Less; + struct Utf8Check { + static void Check(ConstPtr p) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->first.data(), static_cast(p->first.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.TransactionalActorStateOperation.MetadataEntry.key"); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->second.data(), static_cast(p->second.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.TransactionalActorStateOperation.MetadataEntry.value"); + } + }; - if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { - total_size += - ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( - (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); - } - // string operationType = 1; - if (this->operationtype().size() > 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->operationtype()); + if (deterministic && + this->metadata().size() > 1) { + ::std::unique_ptr items( + new SortItem[this->metadata().size()]); + typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; + size_type n = 0; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->metadata().begin(); + it != this->metadata().end(); ++it, ++n) { + items[static_cast(n)] = SortItem(&*it); + } + ::std::sort(&items[0], &items[static_cast(n)], Less()); + ::std::unique_ptr entry; + for (size_type i = 0; i < n; i++) { + entry.reset(metadata_.NewEntryWrapper( + items[static_cast(i)]->first, items[static_cast(i)]->second)); + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageNoVirtualToArray( + 4, *entry, deterministic, target); +; + Utf8Check::Check(items[static_cast(i)]); + } + } else { + ::std::unique_ptr entry; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->metadata().begin(); + it != this->metadata().end(); ++it) { + entry.reset(metadata_.NewEntryWrapper( + it->first, it->second)); + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageNoVirtualToArray( + 4, *entry, deterministic, target); +; + Utf8Check::Check(&*it); + } + } + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.TransactionalActorStateOperation) + return target; +} + +size_t TransactionalActorStateOperation::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.TransactionalActorStateOperation) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // map metadata = 4; + total_size += 1 * + ::google::protobuf::internal::FromIntSize(this->metadata_size()); + { + ::std::unique_ptr entry; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->metadata().begin(); + it != this->metadata().end(); ++it) { + entry.reset(metadata_.NewEntryWrapper(it->first, it->second)); + total_size += ::google::protobuf::internal::WireFormatLite:: + MessageSizeNoVirtual(*entry); + } + } + + // string operationType = 1; + if (this->operationtype().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->operationtype()); } // string key = 2; @@ -17557,6 +18621,7 @@ void TransactionalActorStateOperation::MergeFrom(const TransactionalActorStateOp ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; + metadata_.MergeFrom(from.metadata_); if (from.operationtype().size() > 0) { operationtype_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.operationtype_); @@ -17594,6 +18659,7 @@ void TransactionalActorStateOperation::Swap(TransactionalActorStateOperation* ot } void TransactionalActorStateOperation::InternalSwap(TransactionalActorStateOperation* other) { using std::swap; + metadata_.Swap(&other->metadata_); operationtype_.Swap(&other->operationtype_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); key_.Swap(&other->key_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), @@ -17617,7 +18683,7 @@ void InvokeActorRequest_MetadataEntry_DoNotUse::MergeFrom(const InvokeActorReque } ::google::protobuf::Metadata InvokeActorRequest_MetadataEntry_DoNotUse::GetMetadata() const { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); - return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[53]; + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[54]; } void InvokeActorRequest_MetadataEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -18424,7 +19490,7 @@ void GetMetadataResponse_ExtendedMetadataEntry_DoNotUse::MergeFrom(const GetMeta } ::google::protobuf::Metadata GetMetadataResponse_ExtendedMetadataEntry_DoNotUse::GetMetadata() const { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); - return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[56]; + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[57]; } void GetMetadataResponse_ExtendedMetadataEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -19663,7 +20729,7 @@ void PubsubSubscription_MetadataEntry_DoNotUse::MergeFrom(const PubsubSubscripti } ::google::protobuf::Metadata PubsubSubscription_MetadataEntry_DoNotUse::GetMetadata() const { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); - return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[60]; + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[61]; } void PubsubSubscription_MetadataEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -21073,7 +22139,7 @@ void GetConfigurationRequest_MetadataEntry_DoNotUse::MergeFrom(const GetConfigur } ::google::protobuf::Metadata GetConfigurationRequest_MetadataEntry_DoNotUse::GetMetadata() const { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); - return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[65]; + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[66]; } void GetConfigurationRequest_MetadataEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -21538,7 +22604,7 @@ void GetConfigurationResponse_ItemsEntry_DoNotUse::MergeFrom(const GetConfigurat } ::google::protobuf::Metadata GetConfigurationResponse_ItemsEntry_DoNotUse::GetMetadata() const { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); - return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[67]; + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[68]; } void GetConfigurationResponse_ItemsEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -21886,7 +22952,7 @@ void SubscribeConfigurationRequest_MetadataEntry_DoNotUse::MergeFrom(const Subsc } ::google::protobuf::Metadata SubscribeConfigurationRequest_MetadataEntry_DoNotUse::GetMetadata() const { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); - return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[69]; + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[70]; } void SubscribeConfigurationRequest_MetadataEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -22651,7 +23717,7 @@ void SubscribeConfigurationResponse_ItemsEntry_DoNotUse::MergeFrom(const Subscri } ::google::protobuf::Metadata SubscribeConfigurationResponse_ItemsEntry_DoNotUse::GetMetadata() const { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); - return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[72]; + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[73]; } void SubscribeConfigurationResponse_ItemsEntry_DoNotUse::MergeFrom( const ::google::protobuf::Message& other) { @@ -23361,7 +24427,7 @@ TryLockRequest::TryLockRequest(const TryLockRequest& from) if (from.lock_owner().size() > 0) { lock_owner_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.lock_owner_); } - expiryinseconds_ = from.expiryinseconds_; + expiry_in_seconds_ = from.expiry_in_seconds_; // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.TryLockRequest) } @@ -23369,7 +24435,7 @@ void TryLockRequest::SharedCtor() { store_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); resource_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); lock_owner_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - expiryinseconds_ = 0; + expiry_in_seconds_ = 0; } TryLockRequest::~TryLockRequest() { @@ -23406,7 +24472,7 @@ void TryLockRequest::Clear() { store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); resource_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); lock_owner_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - expiryinseconds_ = 0; + expiry_in_seconds_ = 0; _internal_metadata_.Clear(); } @@ -23420,7 +24486,7 @@ bool TryLockRequest::MergePartialFromCodedStream( tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { @@ -23436,7 +24502,7 @@ bool TryLockRequest::MergePartialFromCodedStream( break; } - // string resource_id = 2; + // string resource_id = 2[json_name = "resourceId"]; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { @@ -23452,7 +24518,7 @@ bool TryLockRequest::MergePartialFromCodedStream( break; } - // string lock_owner = 3; + // string lock_owner = 3[json_name = "lockOwner"]; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { @@ -23468,14 +24534,14 @@ bool TryLockRequest::MergePartialFromCodedStream( break; } - // int32 expiryInSeconds = 4; + // int32 expiry_in_seconds = 4[json_name = "expiryInSeconds"]; case 4: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(32u /* 32 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( - input, &expiryinseconds_))); + input, &expiry_in_seconds_))); } else { goto handle_unusual; } @@ -23508,7 +24574,7 @@ void TryLockRequest::SerializeWithCachedSizes( ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->store_name().data(), static_cast(this->store_name().length()), @@ -23518,7 +24584,7 @@ void TryLockRequest::SerializeWithCachedSizes( 1, this->store_name(), output); } - // string resource_id = 2; + // string resource_id = 2[json_name = "resourceId"]; if (this->resource_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->resource_id().data(), static_cast(this->resource_id().length()), @@ -23528,7 +24594,7 @@ void TryLockRequest::SerializeWithCachedSizes( 2, this->resource_id(), output); } - // string lock_owner = 3; + // string lock_owner = 3[json_name = "lockOwner"]; if (this->lock_owner().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->lock_owner().data(), static_cast(this->lock_owner().length()), @@ -23538,9 +24604,9 @@ void TryLockRequest::SerializeWithCachedSizes( 3, this->lock_owner(), output); } - // int32 expiryInSeconds = 4; - if (this->expiryinseconds() != 0) { - ::google::protobuf::internal::WireFormatLite::WriteInt32(4, this->expiryinseconds(), output); + // int32 expiry_in_seconds = 4[json_name = "expiryInSeconds"]; + if (this->expiry_in_seconds() != 0) { + ::google::protobuf::internal::WireFormatLite::WriteInt32(4, this->expiry_in_seconds(), output); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { @@ -23557,7 +24623,7 @@ ::google::protobuf::uint8* TryLockRequest::InternalSerializeWithCachedSizesToArr ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->store_name().data(), static_cast(this->store_name().length()), @@ -23568,7 +24634,7 @@ ::google::protobuf::uint8* TryLockRequest::InternalSerializeWithCachedSizesToArr 1, this->store_name(), target); } - // string resource_id = 2; + // string resource_id = 2[json_name = "resourceId"]; if (this->resource_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->resource_id().data(), static_cast(this->resource_id().length()), @@ -23579,7 +24645,7 @@ ::google::protobuf::uint8* TryLockRequest::InternalSerializeWithCachedSizesToArr 2, this->resource_id(), target); } - // string lock_owner = 3; + // string lock_owner = 3[json_name = "lockOwner"]; if (this->lock_owner().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->lock_owner().data(), static_cast(this->lock_owner().length()), @@ -23590,9 +24656,9 @@ ::google::protobuf::uint8* TryLockRequest::InternalSerializeWithCachedSizesToArr 3, this->lock_owner(), target); } - // int32 expiryInSeconds = 4; - if (this->expiryinseconds() != 0) { - target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(4, this->expiryinseconds(), target); + // int32 expiry_in_seconds = 4[json_name = "expiryInSeconds"]; + if (this->expiry_in_seconds() != 0) { + target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(4, this->expiry_in_seconds(), target); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { @@ -23612,32 +24678,32 @@ size_t TryLockRequest::ByteSizeLong() const { ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); } - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->store_name()); } - // string resource_id = 2; + // string resource_id = 2[json_name = "resourceId"]; if (this->resource_id().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->resource_id()); } - // string lock_owner = 3; + // string lock_owner = 3[json_name = "lockOwner"]; if (this->lock_owner().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->lock_owner()); } - // int32 expiryInSeconds = 4; - if (this->expiryinseconds() != 0) { + // int32 expiry_in_seconds = 4[json_name = "expiryInSeconds"]; + if (this->expiry_in_seconds() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( - this->expiryinseconds()); + this->expiry_in_seconds()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); @@ -23679,8 +24745,8 @@ void TryLockRequest::MergeFrom(const TryLockRequest& from) { lock_owner_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.lock_owner_); } - if (from.expiryinseconds() != 0) { - set_expiryinseconds(from.expiryinseconds()); + if (from.expiry_in_seconds() != 0) { + set_expiry_in_seconds(from.expiry_in_seconds()); } } @@ -23714,7 +24780,7 @@ void TryLockRequest::InternalSwap(TryLockRequest* other) { GetArenaNoVirtual()); lock_owner_.Swap(&other->lock_owner_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); - swap(expiryinseconds_, other->expiryinseconds_); + swap(expiry_in_seconds_, other->expiry_in_seconds_); _internal_metadata_.Swap(&other->_internal_metadata_); } @@ -24034,7 +25100,7 @@ bool UnlockRequest::MergePartialFromCodedStream( tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { @@ -24050,7 +25116,7 @@ bool UnlockRequest::MergePartialFromCodedStream( break; } - // string resource_id = 2; + // string resource_id = 2[json_name = "resourceId"]; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { @@ -24066,7 +25132,7 @@ bool UnlockRequest::MergePartialFromCodedStream( break; } - // string lock_owner = 3; + // string lock_owner = 3[json_name = "lockOwner"]; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { @@ -24108,7 +25174,7 @@ void UnlockRequest::SerializeWithCachedSizes( ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->store_name().data(), static_cast(this->store_name().length()), @@ -24118,7 +25184,7 @@ void UnlockRequest::SerializeWithCachedSizes( 1, this->store_name(), output); } - // string resource_id = 2; + // string resource_id = 2[json_name = "resourceId"]; if (this->resource_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->resource_id().data(), static_cast(this->resource_id().length()), @@ -24128,7 +25194,7 @@ void UnlockRequest::SerializeWithCachedSizes( 2, this->resource_id(), output); } - // string lock_owner = 3; + // string lock_owner = 3[json_name = "lockOwner"]; if (this->lock_owner().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->lock_owner().data(), static_cast(this->lock_owner().length()), @@ -24152,7 +25218,7 @@ ::google::protobuf::uint8* UnlockRequest::InternalSerializeWithCachedSizesToArra ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->store_name().data(), static_cast(this->store_name().length()), @@ -24163,7 +25229,7 @@ ::google::protobuf::uint8* UnlockRequest::InternalSerializeWithCachedSizesToArra 1, this->store_name(), target); } - // string resource_id = 2; + // string resource_id = 2[json_name = "resourceId"]; if (this->resource_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->resource_id().data(), static_cast(this->resource_id().length()), @@ -24174,7 +25240,7 @@ ::google::protobuf::uint8* UnlockRequest::InternalSerializeWithCachedSizesToArra 2, this->resource_id(), target); } - // string lock_owner = 3; + // string lock_owner = 3[json_name = "lockOwner"]; if (this->lock_owner().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->lock_owner().data(), static_cast(this->lock_owner().length()), @@ -24202,21 +25268,21 @@ size_t UnlockRequest::ByteSizeLong() const { ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); } - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; if (this->store_name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->store_name()); } - // string resource_id = 2; + // string resource_id = 2[json_name = "resourceId"]; if (this->resource_id().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->resource_id()); } - // string lock_owner = 3; + // string lock_owner = 3[json_name = "lockOwner"]; if (this->lock_owner().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( @@ -24530,87 +25596,130 @@ ::google::protobuf::Metadata UnlockResponse::GetMetadata() const { // =================================================================== -void WorkflowReference::InitAsDefaultInstance() { +void SubtleGetKeyRequest::InitAsDefaultInstance() { } #if !defined(_MSC_VER) || _MSC_VER >= 1900 -const int WorkflowReference::kInstanceIdFieldNumber; +const int SubtleGetKeyRequest::kComponentNameFieldNumber; +const int SubtleGetKeyRequest::kNameFieldNumber; +const int SubtleGetKeyRequest::kFormatFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 -WorkflowReference::WorkflowReference() +SubtleGetKeyRequest::SubtleGetKeyRequest() : ::google::protobuf::Message(), _internal_metadata_(NULL) { ::google::protobuf::internal::InitSCC( - &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_WorkflowReference.base); + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleGetKeyRequest.base); SharedCtor(); - // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.WorkflowReference) + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleGetKeyRequest) } -WorkflowReference::WorkflowReference(const WorkflowReference& from) +SubtleGetKeyRequest::SubtleGetKeyRequest(const SubtleGetKeyRequest& from) : ::google::protobuf::Message(), _internal_metadata_(NULL) { _internal_metadata_.MergeFrom(from._internal_metadata_); - instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.instance_id().size() > 0) { - instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.component_name().size() > 0) { + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.name().size() > 0) { + name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } - // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.WorkflowReference) + format_ = from.format_; + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleGetKeyRequest) } -void WorkflowReference::SharedCtor() { - instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +void SubtleGetKeyRequest::SharedCtor() { + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + format_ = 0; } -WorkflowReference::~WorkflowReference() { - // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.WorkflowReference) +SubtleGetKeyRequest::~SubtleGetKeyRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleGetKeyRequest) SharedDtor(); } -void WorkflowReference::SharedDtor() { - instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +void SubtleGetKeyRequest::SharedDtor() { + component_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -void WorkflowReference::SetCachedSize(int size) const { +void SubtleGetKeyRequest::SetCachedSize(int size) const { _cached_size_.Set(size); } -const ::google::protobuf::Descriptor* WorkflowReference::descriptor() { +const ::google::protobuf::Descriptor* SubtleGetKeyRequest::descriptor() { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; } -const WorkflowReference& WorkflowReference::default_instance() { - ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_WorkflowReference.base); +const SubtleGetKeyRequest& SubtleGetKeyRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleGetKeyRequest.base); return *internal_default_instance(); } -void WorkflowReference::Clear() { -// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.WorkflowReference) +void SubtleGetKeyRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleGetKeyRequest) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + format_ = 0; _internal_metadata_.Clear(); } -bool WorkflowReference::MergePartialFromCodedStream( +bool SubtleGetKeyRequest::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; - // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.WorkflowReference) + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleGetKeyRequest) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // string instance_id = 1; + // string component_name = 1[json_name = "componentName"]; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_instance_id())); + input, this->mutable_component_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->instance_id().data(), static_cast(this->instance_id().length()), + this->component_name().data(), static_cast(this->component_name().length()), ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.WorkflowReference.instance_id")); + "dapr.proto.runtime.v1.SubtleGetKeyRequest.component_name")); + } else { + goto handle_unusual; + } + break; + } + + // string name = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->name().data(), static_cast(this->name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleGetKeyRequest.name")); + } else { + goto handle_unusual; + } + break; + } + + // .dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat format = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(24u /* 24 & 0xFF */)) { + int value; + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( + input, &value))); + set_format(static_cast< ::dapr::proto::runtime::v1::SubtleGetKeyRequest_KeyFormat >(value)); } else { goto handle_unusual; } @@ -24629,65 +25738,98 @@ bool WorkflowReference::MergePartialFromCodedStream( } } success: - // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.WorkflowReference) + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleGetKeyRequest) return true; failure: - // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.WorkflowReference) + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleGetKeyRequest) return false; #undef DO_ } -void WorkflowReference::SerializeWithCachedSizes( +void SubtleGetKeyRequest::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.WorkflowReference) + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleGetKeyRequest) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string instance_id = 1; - if (this->instance_id().size() > 0) { + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->instance_id().data(), static_cast(this->instance_id().length()), + this->component_name().data(), static_cast(this->component_name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.WorkflowReference.instance_id"); + "dapr.proto.runtime.v1.SubtleGetKeyRequest.component_name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 1, this->instance_id(), output); + 1, this->component_name(), output); + } + + // string name = 2; + if (this->name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->name().data(), static_cast(this->name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleGetKeyRequest.name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 2, this->name(), output); + } + + // .dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat format = 3; + if (this->format() != 0) { + ::google::protobuf::internal::WireFormatLite::WriteEnum( + 3, this->format(), output); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); } - // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.WorkflowReference) + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleGetKeyRequest) } -::google::protobuf::uint8* WorkflowReference::InternalSerializeWithCachedSizesToArray( +::google::protobuf::uint8* SubtleGetKeyRequest::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused - // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.WorkflowReference) + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleGetKeyRequest) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string instance_id = 1; - if (this->instance_id().size() > 0) { + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->instance_id().data(), static_cast(this->instance_id().length()), + this->component_name().data(), static_cast(this->component_name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.WorkflowReference.instance_id"); + "dapr.proto.runtime.v1.SubtleGetKeyRequest.component_name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 1, this->instance_id(), target); + 1, this->component_name(), target); + } + + // string name = 2; + if (this->name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->name().data(), static_cast(this->name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleGetKeyRequest.name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 2, this->name(), target); + } + + // .dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat format = 3; + if (this->format() != 0) { + target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( + 3, this->format(), target); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); } - // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.WorkflowReference) + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleGetKeyRequest) return target; } -size_t WorkflowReference::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.WorkflowReference) +size_t SubtleGetKeyRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleGetKeyRequest) size_t total_size = 0; if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { @@ -24695,11 +25837,24 @@ size_t WorkflowReference::ByteSizeLong() const { ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); } - // string instance_id = 1; - if (this->instance_id().size() > 0) { + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->instance_id()); + this->component_name()); + } + + // string name = 2; + if (this->name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->name()); + } + + // .dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat format = 3; + if (this->format() != 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::EnumSize(this->format()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); @@ -24707,64 +25862,74 @@ size_t WorkflowReference::ByteSizeLong() const { return total_size; } -void WorkflowReference::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.WorkflowReference) +void SubtleGetKeyRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleGetKeyRequest) GOOGLE_DCHECK_NE(&from, this); - const WorkflowReference* source = - ::google::protobuf::internal::DynamicCastToGenerated( + const SubtleGetKeyRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( &from); if (source == NULL) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.WorkflowReference) + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleGetKeyRequest) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.WorkflowReference) + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleGetKeyRequest) MergeFrom(*source); } } -void WorkflowReference::MergeFrom(const WorkflowReference& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.WorkflowReference) +void SubtleGetKeyRequest::MergeFrom(const SubtleGetKeyRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleGetKeyRequest) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - if (from.instance_id().size() > 0) { + if (from.component_name().size() > 0) { - instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + if (from.name().size() > 0) { + + name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); + } + if (from.format() != 0) { + set_format(from.format()); } } -void WorkflowReference::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.WorkflowReference) +void SubtleGetKeyRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleGetKeyRequest) if (&from == this) return; Clear(); MergeFrom(from); } -void WorkflowReference::CopyFrom(const WorkflowReference& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.WorkflowReference) +void SubtleGetKeyRequest::CopyFrom(const SubtleGetKeyRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleGetKeyRequest) if (&from == this) return; Clear(); MergeFrom(from); } -bool WorkflowReference::IsInitialized() const { +bool SubtleGetKeyRequest::IsInitialized() const { return true; } -void WorkflowReference::Swap(WorkflowReference* other) { +void SubtleGetKeyRequest::Swap(SubtleGetKeyRequest* other) { if (other == this) return; InternalSwap(other); } -void WorkflowReference::InternalSwap(WorkflowReference* other) { +void SubtleGetKeyRequest::InternalSwap(SubtleGetKeyRequest* other) { using std::swap; - instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + component_name_.Swap(&other->component_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + name_.Swap(&other->name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); + swap(format_, other->format_); _internal_metadata_.Swap(&other->_internal_metadata_); } -::google::protobuf::Metadata WorkflowReference::GetMetadata() const { +::google::protobuf::Metadata SubtleGetKeyRequest::GetMetadata() const { protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; } @@ -24772,135 +25937,111 @@ ::google::protobuf::Metadata WorkflowReference::GetMetadata() const { // =================================================================== -void GetWorkflowRequest::InitAsDefaultInstance() { +void SubtleGetKeyResponse::InitAsDefaultInstance() { } #if !defined(_MSC_VER) || _MSC_VER >= 1900 -const int GetWorkflowRequest::kInstanceIdFieldNumber; -const int GetWorkflowRequest::kWorkflowTypeFieldNumber; -const int GetWorkflowRequest::kWorkflowComponentFieldNumber; +const int SubtleGetKeyResponse::kNameFieldNumber; +const int SubtleGetKeyResponse::kPublicKeyFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 -GetWorkflowRequest::GetWorkflowRequest() +SubtleGetKeyResponse::SubtleGetKeyResponse() : ::google::protobuf::Message(), _internal_metadata_(NULL) { ::google::protobuf::internal::InitSCC( - &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_GetWorkflowRequest.base); + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleGetKeyResponse.base); SharedCtor(); - // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleGetKeyResponse) } -GetWorkflowRequest::GetWorkflowRequest(const GetWorkflowRequest& from) +SubtleGetKeyResponse::SubtleGetKeyResponse(const SubtleGetKeyResponse& from) : ::google::protobuf::Message(), _internal_metadata_(NULL) { _internal_metadata_.MergeFrom(from._internal_metadata_); - instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.instance_id().size() > 0) { - instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); - } - workflow_type_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.workflow_type().size() > 0) { - workflow_type_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_type_); + name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.name().size() > 0) { + name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } - workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.workflow_component().size() > 0) { - workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + public_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.public_key().size() > 0) { + public_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.public_key_); } - // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleGetKeyResponse) } -void GetWorkflowRequest::SharedCtor() { - instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_type_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +void SubtleGetKeyResponse::SharedCtor() { + name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + public_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -GetWorkflowRequest::~GetWorkflowRequest() { - // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.GetWorkflowRequest) +SubtleGetKeyResponse::~SubtleGetKeyResponse() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleGetKeyResponse) SharedDtor(); } -void GetWorkflowRequest::SharedDtor() { - instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_type_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_component_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +void SubtleGetKeyResponse::SharedDtor() { + name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + public_key_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -void GetWorkflowRequest::SetCachedSize(int size) const { +void SubtleGetKeyResponse::SetCachedSize(int size) const { _cached_size_.Set(size); } -const ::google::protobuf::Descriptor* GetWorkflowRequest::descriptor() { +const ::google::protobuf::Descriptor* SubtleGetKeyResponse::descriptor() { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; } -const GetWorkflowRequest& GetWorkflowRequest::default_instance() { - ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_GetWorkflowRequest.base); +const SubtleGetKeyResponse& SubtleGetKeyResponse::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleGetKeyResponse.base); return *internal_default_instance(); } -void GetWorkflowRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.GetWorkflowRequest) +void SubtleGetKeyResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleGetKeyResponse) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + public_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } -bool GetWorkflowRequest::MergePartialFromCodedStream( +bool SubtleGetKeyResponse::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; - // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleGetKeyResponse) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // string instance_id = 1; + // string name = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_instance_id())); + input, this->mutable_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->instance_id().data(), static_cast(this->instance_id().length()), + this->name().data(), static_cast(this->name().length()), ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.GetWorkflowRequest.instance_id")); + "dapr.proto.runtime.v1.SubtleGetKeyResponse.name")); } else { goto handle_unusual; } break; } - // string workflow_type = 2; + // string public_key = 2[json_name = "publicKey"]; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_workflow_type())); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->workflow_type().data(), static_cast(this->workflow_type().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.GetWorkflowRequest.workflow_type")); - } else { - goto handle_unusual; - } - break; - } - - // string workflow_component = 3; - case 3: { - if (static_cast< ::google::protobuf::uint8>(tag) == - static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_workflow_component())); + input, this->mutable_public_key())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->workflow_component().data(), static_cast(this->workflow_component().length()), + this->public_key().data(), static_cast(this->public_key().length()), ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component")); + "dapr.proto.runtime.v1.SubtleGetKeyResponse.public_key")); } else { goto handle_unusual; } @@ -24919,107 +26060,86 @@ bool GetWorkflowRequest::MergePartialFromCodedStream( } } success: - // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleGetKeyResponse) return true; failure: - // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleGetKeyResponse) return false; #undef DO_ } -void GetWorkflowRequest::SerializeWithCachedSizes( +void SubtleGetKeyResponse::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleGetKeyResponse) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string instance_id = 1; - if (this->instance_id().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->instance_id().data(), static_cast(this->instance_id().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowRequest.instance_id"); - ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 1, this->instance_id(), output); - } - - // string workflow_type = 2; - if (this->workflow_type().size() > 0) { + // string name = 1; + if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->workflow_type().data(), static_cast(this->workflow_type().length()), + this->name().data(), static_cast(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowRequest.workflow_type"); + "dapr.proto.runtime.v1.SubtleGetKeyResponse.name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 2, this->workflow_type(), output); + 1, this->name(), output); } - // string workflow_component = 3; - if (this->workflow_component().size() > 0) { + // string public_key = 2[json_name = "publicKey"]; + if (this->public_key().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->workflow_component().data(), static_cast(this->workflow_component().length()), + this->public_key().data(), static_cast(this->public_key().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component"); + "dapr.proto.runtime.v1.SubtleGetKeyResponse.public_key"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 3, this->workflow_component(), output); + 2, this->public_key(), output); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); } - // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleGetKeyResponse) } -::google::protobuf::uint8* GetWorkflowRequest::InternalSerializeWithCachedSizesToArray( +::google::protobuf::uint8* SubtleGetKeyResponse::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused - // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleGetKeyResponse) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string instance_id = 1; - if (this->instance_id().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->instance_id().data(), static_cast(this->instance_id().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowRequest.instance_id"); - target = - ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 1, this->instance_id(), target); - } - - // string workflow_type = 2; - if (this->workflow_type().size() > 0) { + // string name = 1; + if (this->name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->workflow_type().data(), static_cast(this->workflow_type().length()), + this->name().data(), static_cast(this->name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowRequest.workflow_type"); + "dapr.proto.runtime.v1.SubtleGetKeyResponse.name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 2, this->workflow_type(), target); + 1, this->name(), target); } - // string workflow_component = 3; - if (this->workflow_component().size() > 0) { + // string public_key = 2[json_name = "publicKey"]; + if (this->public_key().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->workflow_component().data(), static_cast(this->workflow_component().length()), + this->public_key().data(), static_cast(this->public_key().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component"); + "dapr.proto.runtime.v1.SubtleGetKeyResponse.public_key"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 3, this->workflow_component(), target); + 2, this->public_key(), target); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); } - // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleGetKeyResponse) return target; } -size_t GetWorkflowRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.GetWorkflowRequest) +size_t SubtleGetKeyResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleGetKeyResponse) size_t total_size = 0; if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { @@ -25027,25 +26147,18 @@ size_t GetWorkflowRequest::ByteSizeLong() const { ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); } - // string instance_id = 1; - if (this->instance_id().size() > 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->instance_id()); - } - - // string workflow_type = 2; - if (this->workflow_type().size() > 0) { + // string name = 1; + if (this->name().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->workflow_type()); + this->name()); } - // string workflow_component = 3; - if (this->workflow_component().size() > 0) { + // string public_key = 2[json_name = "publicKey"]; + if (this->public_key().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->workflow_component()); + this->public_key()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); @@ -25053,76 +26166,70 @@ size_t GetWorkflowRequest::ByteSizeLong() const { return total_size; } -void GetWorkflowRequest::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.GetWorkflowRequest) +void SubtleGetKeyResponse::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleGetKeyResponse) GOOGLE_DCHECK_NE(&from, this); - const GetWorkflowRequest* source = - ::google::protobuf::internal::DynamicCastToGenerated( + const SubtleGetKeyResponse* source = + ::google::protobuf::internal::DynamicCastToGenerated( &from); if (source == NULL) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleGetKeyResponse) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleGetKeyResponse) MergeFrom(*source); } } -void GetWorkflowRequest::MergeFrom(const GetWorkflowRequest& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.GetWorkflowRequest) +void SubtleGetKeyResponse::MergeFrom(const SubtleGetKeyResponse& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleGetKeyResponse) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - if (from.instance_id().size() > 0) { - - instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); - } - if (from.workflow_type().size() > 0) { + if (from.name().size() > 0) { - workflow_type_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_type_); + name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.name_); } - if (from.workflow_component().size() > 0) { + if (from.public_key().size() > 0) { - workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + public_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.public_key_); } } -void GetWorkflowRequest::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.GetWorkflowRequest) +void SubtleGetKeyResponse::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleGetKeyResponse) if (&from == this) return; Clear(); MergeFrom(from); } -void GetWorkflowRequest::CopyFrom(const GetWorkflowRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.GetWorkflowRequest) +void SubtleGetKeyResponse::CopyFrom(const SubtleGetKeyResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleGetKeyResponse) if (&from == this) return; Clear(); MergeFrom(from); } -bool GetWorkflowRequest::IsInitialized() const { +bool SubtleGetKeyResponse::IsInitialized() const { return true; } -void GetWorkflowRequest::Swap(GetWorkflowRequest* other) { +void SubtleGetKeyResponse::Swap(SubtleGetKeyResponse* other) { if (other == this) return; InternalSwap(other); } -void GetWorkflowRequest::InternalSwap(GetWorkflowRequest* other) { +void SubtleGetKeyResponse::InternalSwap(SubtleGetKeyResponse* other) { using std::swap; - instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), - GetArenaNoVirtual()); - workflow_type_.Swap(&other->workflow_type_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + name_.Swap(&other->name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); - workflow_component_.Swap(&other->workflow_component_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + public_key_.Swap(&other->public_key_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); _internal_metadata_.Swap(&other->_internal_metadata_); } -::google::protobuf::Metadata GetWorkflowRequest::GetMetadata() const { +::google::protobuf::Metadata SubtleGetKeyResponse::GetMetadata() const { protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; } @@ -25130,152 +26237,195 @@ ::google::protobuf::Metadata GetWorkflowRequest::GetMetadata() const { // =================================================================== -GetWorkflowResponse_MetadataEntry_DoNotUse::GetWorkflowResponse_MetadataEntry_DoNotUse() {} -GetWorkflowResponse_MetadataEntry_DoNotUse::GetWorkflowResponse_MetadataEntry_DoNotUse(::google::protobuf::Arena* arena) : SuperType(arena) {} -void GetWorkflowResponse_MetadataEntry_DoNotUse::MergeFrom(const GetWorkflowResponse_MetadataEntry_DoNotUse& other) { - MergeFromInternal(other); -} -::google::protobuf::Metadata GetWorkflowResponse_MetadataEntry_DoNotUse::GetMetadata() const { - ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); - return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[81]; -} -void GetWorkflowResponse_MetadataEntry_DoNotUse::MergeFrom( - const ::google::protobuf::Message& other) { - ::google::protobuf::Message::MergeFrom(other); -} - - -// =================================================================== - -void GetWorkflowResponse::InitAsDefaultInstance() { +void SubtleEncryptRequest::InitAsDefaultInstance() { } #if !defined(_MSC_VER) || _MSC_VER >= 1900 -const int GetWorkflowResponse::kInstanceIdFieldNumber; -const int GetWorkflowResponse::kStartTimeFieldNumber; -const int GetWorkflowResponse::kMetadataFieldNumber; +const int SubtleEncryptRequest::kComponentNameFieldNumber; +const int SubtleEncryptRequest::kPlaintextFieldNumber; +const int SubtleEncryptRequest::kAlgorithmFieldNumber; +const int SubtleEncryptRequest::kKeyNameFieldNumber; +const int SubtleEncryptRequest::kNonceFieldNumber; +const int SubtleEncryptRequest::kAssociatedDataFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 -GetWorkflowResponse::GetWorkflowResponse() +SubtleEncryptRequest::SubtleEncryptRequest() : ::google::protobuf::Message(), _internal_metadata_(NULL) { ::google::protobuf::internal::InitSCC( - &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_GetWorkflowResponse.base); + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleEncryptRequest.base); SharedCtor(); - // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.GetWorkflowResponse) + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleEncryptRequest) } -GetWorkflowResponse::GetWorkflowResponse(const GetWorkflowResponse& from) +SubtleEncryptRequest::SubtleEncryptRequest(const SubtleEncryptRequest& from) : ::google::protobuf::Message(), _internal_metadata_(NULL) { _internal_metadata_.MergeFrom(from._internal_metadata_); - metadata_.MergeFrom(from.metadata_); - instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.instance_id().size() > 0) { - instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.component_name().size() > 0) { + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); } - start_time_ = from.start_time_; - // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.GetWorkflowResponse) + plaintext_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.plaintext().size() > 0) { + plaintext_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.plaintext_); + } + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.algorithm().size() > 0) { + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.key_name().size() > 0) { + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + nonce_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.nonce().size() > 0) { + nonce_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.nonce_); + } + associated_data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.associated_data().size() > 0) { + associated_data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.associated_data_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleEncryptRequest) } -void GetWorkflowResponse::SharedCtor() { - instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - start_time_ = GOOGLE_LONGLONG(0); +void SubtleEncryptRequest::SharedCtor() { + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + plaintext_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -GetWorkflowResponse::~GetWorkflowResponse() { - // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.GetWorkflowResponse) +SubtleEncryptRequest::~SubtleEncryptRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleEncryptRequest) SharedDtor(); } -void GetWorkflowResponse::SharedDtor() { - instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +void SubtleEncryptRequest::SharedDtor() { + component_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + plaintext_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -void GetWorkflowResponse::SetCachedSize(int size) const { +void SubtleEncryptRequest::SetCachedSize(int size) const { _cached_size_.Set(size); } -const ::google::protobuf::Descriptor* GetWorkflowResponse::descriptor() { +const ::google::protobuf::Descriptor* SubtleEncryptRequest::descriptor() { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; } -const GetWorkflowResponse& GetWorkflowResponse::default_instance() { - ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_GetWorkflowResponse.base); +const SubtleEncryptRequest& SubtleEncryptRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleEncryptRequest.base); return *internal_default_instance(); } -void GetWorkflowResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.GetWorkflowResponse) +void SubtleEncryptRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleEncryptRequest) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - metadata_.Clear(); - instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - start_time_ = GOOGLE_LONGLONG(0); + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + plaintext_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } -bool GetWorkflowResponse::MergePartialFromCodedStream( +bool SubtleEncryptRequest::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; - // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.GetWorkflowResponse) + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleEncryptRequest) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // string instance_id = 1; + // string component_name = 1[json_name = "componentName"]; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_instance_id())); + input, this->mutable_component_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->instance_id().data(), static_cast(this->instance_id().length()), + this->component_name().data(), static_cast(this->component_name().length()), ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.GetWorkflowResponse.instance_id")); + "dapr.proto.runtime.v1.SubtleEncryptRequest.component_name")); } else { goto handle_unusual; } break; } - // int64 start_time = 2; + // bytes plaintext = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == - static_cast< ::google::protobuf::uint8>(16u /* 16 & 0xFF */)) { - - DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< - ::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>( - input, &start_time_))); + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_plaintext())); } else { goto handle_unusual; } break; } - // map metadata = 3; + // string algorithm = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { - GetWorkflowResponse_MetadataEntry_DoNotUse::Parser< ::google::protobuf::internal::MapField< - GetWorkflowResponse_MetadataEntry_DoNotUse, - ::std::string, ::std::string, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - 0 >, - ::google::protobuf::Map< ::std::string, ::std::string > > parser(&metadata_); - DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( - input, &parser)); + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_algorithm())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - parser.key().data(), static_cast(parser.key().length()), + this->algorithm().data(), static_cast(this->algorithm().length()), ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.GetWorkflowResponse.MetadataEntry.key")); + "dapr.proto.runtime.v1.SubtleEncryptRequest.algorithm")); + } else { + goto handle_unusual; + } + break; + } + + // string key_name = 4[json_name = "keyName"]; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_key_name())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - parser.value().data(), static_cast(parser.value().length()), + this->key_name().data(), static_cast(this->key_name().length()), ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.GetWorkflowResponse.MetadataEntry.value")); + "dapr.proto.runtime.v1.SubtleEncryptRequest.key_name")); + } else { + goto handle_unusual; + } + break; + } + + // bytes nonce = 5; + case 5: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(42u /* 42 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_nonce())); + } else { + goto handle_unusual; + } + break; + } + + // bytes associated_data = 6[json_name = "associatedData"]; + case 6: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(50u /* 50 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_associated_data())); } else { goto handle_unusual; } @@ -25294,185 +26444,146 @@ bool GetWorkflowResponse::MergePartialFromCodedStream( } } success: - // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.GetWorkflowResponse) + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleEncryptRequest) return true; failure: - // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.GetWorkflowResponse) + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleEncryptRequest) return false; #undef DO_ } -void GetWorkflowResponse::SerializeWithCachedSizes( +void SubtleEncryptRequest::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.GetWorkflowResponse) + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleEncryptRequest) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string instance_id = 1; - if (this->instance_id().size() > 0) { + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->instance_id().data(), static_cast(this->instance_id().length()), + this->component_name().data(), static_cast(this->component_name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowResponse.instance_id"); + "dapr.proto.runtime.v1.SubtleEncryptRequest.component_name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 1, this->instance_id(), output); + 1, this->component_name(), output); } - // int64 start_time = 2; - if (this->start_time() != 0) { - ::google::protobuf::internal::WireFormatLite::WriteInt64(2, this->start_time(), output); + // bytes plaintext = 2; + if (this->plaintext().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 2, this->plaintext(), output); } - // map metadata = 3; - if (!this->metadata().empty()) { - typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer - ConstPtr; - typedef ConstPtr SortItem; - typedef ::google::protobuf::internal::CompareByDerefFirst Less; - struct Utf8Check { - static void Check(ConstPtr p) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - p->first.data(), static_cast(p->first.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowResponse.MetadataEntry.key"); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - p->second.data(), static_cast(p->second.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowResponse.MetadataEntry.value"); - } - }; + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleEncryptRequest.algorithm"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->algorithm(), output); + } - if (output->IsSerializationDeterministic() && - this->metadata().size() > 1) { - ::std::unique_ptr items( - new SortItem[this->metadata().size()]); - typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; - size_type n = 0; - for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator - it = this->metadata().begin(); - it != this->metadata().end(); ++it, ++n) { - items[static_cast(n)] = SortItem(&*it); - } - ::std::sort(&items[0], &items[static_cast(n)], Less()); - ::std::unique_ptr entry; - for (size_type i = 0; i < n; i++) { - entry.reset(metadata_.NewEntryWrapper( - items[static_cast(i)]->first, items[static_cast(i)]->second)); - ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( - 3, *entry, output); - Utf8Check::Check(items[static_cast(i)]); - } - } else { - ::std::unique_ptr entry; - for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator - it = this->metadata().begin(); - it != this->metadata().end(); ++it) { - entry.reset(metadata_.NewEntryWrapper( - it->first, it->second)); - ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( - 3, *entry, output); - Utf8Check::Check(&*it); - } - } + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleEncryptRequest.key_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 4, this->key_name(), output); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 5, this->nonce(), output); + } + + // bytes associated_data = 6[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 6, this->associated_data(), output); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); } - // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.GetWorkflowResponse) + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleEncryptRequest) } -::google::protobuf::uint8* GetWorkflowResponse::InternalSerializeWithCachedSizesToArray( +::google::protobuf::uint8* SubtleEncryptRequest::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused - // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.GetWorkflowResponse) + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleEncryptRequest) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string instance_id = 1; - if (this->instance_id().size() > 0) { + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->instance_id().data(), static_cast(this->instance_id().length()), + this->component_name().data(), static_cast(this->component_name().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowResponse.instance_id"); + "dapr.proto.runtime.v1.SubtleEncryptRequest.component_name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 1, this->instance_id(), target); + 1, this->component_name(), target); } - // int64 start_time = 2; - if (this->start_time() != 0) { - target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(2, this->start_time(), target); + // bytes plaintext = 2; + if (this->plaintext().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 2, this->plaintext(), target); } - // map metadata = 3; - if (!this->metadata().empty()) { - typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer - ConstPtr; - typedef ConstPtr SortItem; - typedef ::google::protobuf::internal::CompareByDerefFirst Less; - struct Utf8Check { - static void Check(ConstPtr p) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - p->first.data(), static_cast(p->first.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowResponse.MetadataEntry.key"); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - p->second.data(), static_cast(p->second.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.GetWorkflowResponse.MetadataEntry.value"); - } - }; + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleEncryptRequest.algorithm"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->algorithm(), target); + } - if (deterministic && - this->metadata().size() > 1) { - ::std::unique_ptr items( - new SortItem[this->metadata().size()]); - typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; - size_type n = 0; - for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator - it = this->metadata().begin(); - it != this->metadata().end(); ++it, ++n) { - items[static_cast(n)] = SortItem(&*it); - } - ::std::sort(&items[0], &items[static_cast(n)], Less()); - ::std::unique_ptr entry; - for (size_type i = 0; i < n; i++) { - entry.reset(metadata_.NewEntryWrapper( - items[static_cast(i)]->first, items[static_cast(i)]->second)); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessageNoVirtualToArray( - 3, *entry, deterministic, target); -; - Utf8Check::Check(items[static_cast(i)]); - } - } else { - ::std::unique_ptr entry; - for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator - it = this->metadata().begin(); - it != this->metadata().end(); ++it) { - entry.reset(metadata_.NewEntryWrapper( - it->first, it->second)); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessageNoVirtualToArray( - 3, *entry, deterministic, target); -; - Utf8Check::Check(&*it); - } - } + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleEncryptRequest.key_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 4, this->key_name(), target); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 5, this->nonce(), target); + } + + // bytes associated_data = 6[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 6, this->associated_data(), target); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); } - // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.GetWorkflowResponse) + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleEncryptRequest) return target; } -size_t GetWorkflowResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.GetWorkflowResponse) +size_t SubtleEncryptRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleEncryptRequest) size_t total_size = 0; if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { @@ -25480,32 +26591,46 @@ size_t GetWorkflowResponse::ByteSizeLong() const { ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); } - // map metadata = 3; - total_size += 1 * - ::google::protobuf::internal::FromIntSize(this->metadata_size()); - { - ::std::unique_ptr entry; - for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator - it = this->metadata().begin(); - it != this->metadata().end(); ++it) { - entry.reset(metadata_.NewEntryWrapper(it->first, it->second)); - total_size += ::google::protobuf::internal::WireFormatLite:: - MessageSizeNoVirtual(*entry); - } + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->component_name()); } - // string instance_id = 1; - if (this->instance_id().size() > 0) { + // bytes plaintext = 2; + if (this->plaintext().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->plaintext()); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( - this->instance_id()); + this->algorithm()); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->key_name()); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->nonce()); } - // int64 start_time = 2; - if (this->start_time() != 0) { + // bytes associated_data = 6[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { total_size += 1 + - ::google::protobuf::internal::WireFormatLite::Int64Size( - this->start_time()); + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->associated_data()); } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); @@ -25513,70 +26638,94 @@ size_t GetWorkflowResponse::ByteSizeLong() const { return total_size; } -void GetWorkflowResponse::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.GetWorkflowResponse) +void SubtleEncryptRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleEncryptRequest) GOOGLE_DCHECK_NE(&from, this); - const GetWorkflowResponse* source = - ::google::protobuf::internal::DynamicCastToGenerated( + const SubtleEncryptRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( &from); if (source == NULL) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.GetWorkflowResponse) + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleEncryptRequest) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.GetWorkflowResponse) + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleEncryptRequest) MergeFrom(*source); } } -void GetWorkflowResponse::MergeFrom(const GetWorkflowResponse& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.GetWorkflowResponse) +void SubtleEncryptRequest::MergeFrom(const SubtleEncryptRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleEncryptRequest) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - metadata_.MergeFrom(from.metadata_); - if (from.instance_id().size() > 0) { + if (from.component_name().size() > 0) { - instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + if (from.plaintext().size() > 0) { + + plaintext_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.plaintext_); + } + if (from.algorithm().size() > 0) { + + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + if (from.key_name().size() > 0) { + + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + if (from.nonce().size() > 0) { + + nonce_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.nonce_); } - if (from.start_time() != 0) { - set_start_time(from.start_time()); + if (from.associated_data().size() > 0) { + + associated_data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.associated_data_); } } -void GetWorkflowResponse::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.GetWorkflowResponse) +void SubtleEncryptRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleEncryptRequest) if (&from == this) return; Clear(); MergeFrom(from); } -void GetWorkflowResponse::CopyFrom(const GetWorkflowResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.GetWorkflowResponse) +void SubtleEncryptRequest::CopyFrom(const SubtleEncryptRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleEncryptRequest) if (&from == this) return; Clear(); MergeFrom(from); } -bool GetWorkflowResponse::IsInitialized() const { +bool SubtleEncryptRequest::IsInitialized() const { return true; } -void GetWorkflowResponse::Swap(GetWorkflowResponse* other) { +void SubtleEncryptRequest::Swap(SubtleEncryptRequest* other) { if (other == this) return; InternalSwap(other); } -void GetWorkflowResponse::InternalSwap(GetWorkflowResponse* other) { +void SubtleEncryptRequest::InternalSwap(SubtleEncryptRequest* other) { using std::swap; - metadata_.Swap(&other->metadata_); - instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + component_name_.Swap(&other->component_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + plaintext_.Swap(&other->plaintext_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + algorithm_.Swap(&other->algorithm_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + key_name_.Swap(&other->key_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + nonce_.Swap(&other->nonce_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + associated_data_.Swap(&other->associated_data_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); - swap(start_time_, other->start_time_); _internal_metadata_.Swap(&other->_internal_metadata_); } -::google::protobuf::Metadata GetWorkflowResponse::GetMetadata() const { +::google::protobuf::Metadata SubtleEncryptRequest::GetMetadata() const { protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; } @@ -25584,202 +26733,103 @@ ::google::protobuf::Metadata GetWorkflowResponse::GetMetadata() const { // =================================================================== -StartWorkflowRequest_OptionsEntry_DoNotUse::StartWorkflowRequest_OptionsEntry_DoNotUse() {} -StartWorkflowRequest_OptionsEntry_DoNotUse::StartWorkflowRequest_OptionsEntry_DoNotUse(::google::protobuf::Arena* arena) : SuperType(arena) {} -void StartWorkflowRequest_OptionsEntry_DoNotUse::MergeFrom(const StartWorkflowRequest_OptionsEntry_DoNotUse& other) { - MergeFromInternal(other); -} -::google::protobuf::Metadata StartWorkflowRequest_OptionsEntry_DoNotUse::GetMetadata() const { - ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); - return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[83]; -} -void StartWorkflowRequest_OptionsEntry_DoNotUse::MergeFrom( - const ::google::protobuf::Message& other) { - ::google::protobuf::Message::MergeFrom(other); -} - - -// =================================================================== - -void StartWorkflowRequest::InitAsDefaultInstance() { +void SubtleEncryptResponse::InitAsDefaultInstance() { } #if !defined(_MSC_VER) || _MSC_VER >= 1900 -const int StartWorkflowRequest::kInstanceIdFieldNumber; -const int StartWorkflowRequest::kWorkflowComponentFieldNumber; -const int StartWorkflowRequest::kWorkflowNameFieldNumber; -const int StartWorkflowRequest::kOptionsFieldNumber; -const int StartWorkflowRequest::kInputFieldNumber; +const int SubtleEncryptResponse::kCiphertextFieldNumber; +const int SubtleEncryptResponse::kTagFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 -StartWorkflowRequest::StartWorkflowRequest() +SubtleEncryptResponse::SubtleEncryptResponse() : ::google::protobuf::Message(), _internal_metadata_(NULL) { ::google::protobuf::internal::InitSCC( - &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_StartWorkflowRequest.base); + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleEncryptResponse.base); SharedCtor(); - // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleEncryptResponse) } -StartWorkflowRequest::StartWorkflowRequest(const StartWorkflowRequest& from) +SubtleEncryptResponse::SubtleEncryptResponse(const SubtleEncryptResponse& from) : ::google::protobuf::Message(), _internal_metadata_(NULL) { _internal_metadata_.MergeFrom(from._internal_metadata_); - options_.MergeFrom(from.options_); - instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.instance_id().size() > 0) { - instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); - } - workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.workflow_component().size() > 0) { - workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); - } - workflow_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.workflow_name().size() > 0) { - workflow_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_name_); + ciphertext_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.ciphertext().size() > 0) { + ciphertext_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.ciphertext_); } - input_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.input().size() > 0) { - input_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.input_); + tag_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.tag().size() > 0) { + tag_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tag_); } - // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleEncryptResponse) } -void StartWorkflowRequest::SharedCtor() { - instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - input_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +void SubtleEncryptResponse::SharedCtor() { + ciphertext_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -StartWorkflowRequest::~StartWorkflowRequest() { - // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.StartWorkflowRequest) +SubtleEncryptResponse::~SubtleEncryptResponse() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleEncryptResponse) SharedDtor(); } -void StartWorkflowRequest::SharedDtor() { - instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_component_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - input_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +void SubtleEncryptResponse::SharedDtor() { + ciphertext_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -void StartWorkflowRequest::SetCachedSize(int size) const { +void SubtleEncryptResponse::SetCachedSize(int size) const { _cached_size_.Set(size); } -const ::google::protobuf::Descriptor* StartWorkflowRequest::descriptor() { +const ::google::protobuf::Descriptor* SubtleEncryptResponse::descriptor() { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; } -const StartWorkflowRequest& StartWorkflowRequest::default_instance() { - ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_StartWorkflowRequest.base); +const SubtleEncryptResponse& SubtleEncryptResponse::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleEncryptResponse.base); return *internal_default_instance(); } -void StartWorkflowRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.StartWorkflowRequest) +void SubtleEncryptResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleEncryptResponse) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - options_.Clear(); - instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - workflow_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - input_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + ciphertext_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } -bool StartWorkflowRequest::MergePartialFromCodedStream( +bool SubtleEncryptResponse::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; - // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleEncryptResponse) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // string instance_id = 1; + // bytes ciphertext = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_instance_id())); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->instance_id().data(), static_cast(this->instance_id().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.StartWorkflowRequest.instance_id")); + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_ciphertext())); } else { goto handle_unusual; } break; } - // string workflow_component = 2; + // bytes tag = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_workflow_component())); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->workflow_component().data(), static_cast(this->workflow_component().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component")); - } else { - goto handle_unusual; - } - break; - } - - // string workflow_name = 3; - case 3: { - if (static_cast< ::google::protobuf::uint8>(tag) == - static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_workflow_name())); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->workflow_name().data(), static_cast(this->workflow_name().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name")); - } else { - goto handle_unusual; - } - break; - } - - // map options = 4; - case 4: { - if (static_cast< ::google::protobuf::uint8>(tag) == - static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { - StartWorkflowRequest_OptionsEntry_DoNotUse::Parser< ::google::protobuf::internal::MapField< - StartWorkflowRequest_OptionsEntry_DoNotUse, - ::std::string, ::std::string, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - 0 >, - ::google::protobuf::Map< ::std::string, ::std::string > > parser(&options_); - DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( - input, &parser)); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - parser.key().data(), static_cast(parser.key().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.key")); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - parser.value().data(), static_cast(parser.value().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.value")); - } else { - goto handle_unusual; - } - break; - } - - // bytes input = 5; - case 5: { - if (static_cast< ::google::protobuf::uint8>(tag) == - static_cast< ::google::protobuf::uint8>(42u /* 42 & 0xFF */)) { DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( - input, this->mutable_input())); + input, this->mutable_tag())); } else { goto handle_unusual; } @@ -25798,230 +26848,8227 @@ bool StartWorkflowRequest::MergePartialFromCodedStream( } } success: - // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleEncryptResponse) return true; failure: - // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleEncryptResponse) return false; #undef DO_ } -void StartWorkflowRequest::SerializeWithCachedSizes( +void SubtleEncryptResponse::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleEncryptResponse) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string instance_id = 1; - if (this->instance_id().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->instance_id().data(), static_cast(this->instance_id().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.StartWorkflowRequest.instance_id"); - ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 1, this->instance_id(), output); + // bytes ciphertext = 1; + if (this->ciphertext().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 1, this->ciphertext(), output); } - // string workflow_component = 2; - if (this->workflow_component().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->workflow_component().data(), static_cast(this->workflow_component().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component"); - ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 2, this->workflow_component(), output); + // bytes tag = 2; + if (this->tag().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 2, this->tag(), output); } - // string workflow_name = 3; + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleEncryptResponse) +} + +::google::protobuf::uint8* SubtleEncryptResponse::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleEncryptResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // bytes ciphertext = 1; + if (this->ciphertext().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 1, this->ciphertext(), target); + } + + // bytes tag = 2; + if (this->tag().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 2, this->tag(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleEncryptResponse) + return target; +} + +size_t SubtleEncryptResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleEncryptResponse) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // bytes ciphertext = 1; + if (this->ciphertext().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->ciphertext()); + } + + // bytes tag = 2; + if (this->tag().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->tag()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void SubtleEncryptResponse::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleEncryptResponse) + GOOGLE_DCHECK_NE(&from, this); + const SubtleEncryptResponse* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleEncryptResponse) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleEncryptResponse) + MergeFrom(*source); + } +} + +void SubtleEncryptResponse::MergeFrom(const SubtleEncryptResponse& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleEncryptResponse) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.ciphertext().size() > 0) { + + ciphertext_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.ciphertext_); + } + if (from.tag().size() > 0) { + + tag_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tag_); + } +} + +void SubtleEncryptResponse::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleEncryptResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void SubtleEncryptResponse::CopyFrom(const SubtleEncryptResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleEncryptResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool SubtleEncryptResponse::IsInitialized() const { + return true; +} + +void SubtleEncryptResponse::Swap(SubtleEncryptResponse* other) { + if (other == this) return; + InternalSwap(other); +} +void SubtleEncryptResponse::InternalSwap(SubtleEncryptResponse* other) { + using std::swap; + ciphertext_.Swap(&other->ciphertext_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + tag_.Swap(&other->tag_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata SubtleEncryptResponse::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void SubtleDecryptRequest::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int SubtleDecryptRequest::kComponentNameFieldNumber; +const int SubtleDecryptRequest::kCiphertextFieldNumber; +const int SubtleDecryptRequest::kAlgorithmFieldNumber; +const int SubtleDecryptRequest::kKeyNameFieldNumber; +const int SubtleDecryptRequest::kNonceFieldNumber; +const int SubtleDecryptRequest::kTagFieldNumber; +const int SubtleDecryptRequest::kAssociatedDataFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +SubtleDecryptRequest::SubtleDecryptRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleDecryptRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleDecryptRequest) +} +SubtleDecryptRequest::SubtleDecryptRequest(const SubtleDecryptRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.component_name().size() > 0) { + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + ciphertext_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.ciphertext().size() > 0) { + ciphertext_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.ciphertext_); + } + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.algorithm().size() > 0) { + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.key_name().size() > 0) { + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + nonce_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.nonce().size() > 0) { + nonce_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.nonce_); + } + tag_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.tag().size() > 0) { + tag_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tag_); + } + associated_data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.associated_data().size() > 0) { + associated_data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.associated_data_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleDecryptRequest) +} + +void SubtleDecryptRequest::SharedCtor() { + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + ciphertext_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +SubtleDecryptRequest::~SubtleDecryptRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleDecryptRequest) + SharedDtor(); +} + +void SubtleDecryptRequest::SharedDtor() { + component_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + ciphertext_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void SubtleDecryptRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* SubtleDecryptRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const SubtleDecryptRequest& SubtleDecryptRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleDecryptRequest.base); + return *internal_default_instance(); +} + + +void SubtleDecryptRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleDecryptRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + ciphertext_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool SubtleDecryptRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleDecryptRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string component_name = 1[json_name = "componentName"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_component_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleDecryptRequest.component_name")); + } else { + goto handle_unusual; + } + break; + } + + // bytes ciphertext = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_ciphertext())); + } else { + goto handle_unusual; + } + break; + } + + // string algorithm = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_algorithm())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleDecryptRequest.algorithm")); + } else { + goto handle_unusual; + } + break; + } + + // string key_name = 4[json_name = "keyName"]; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_key_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleDecryptRequest.key_name")); + } else { + goto handle_unusual; + } + break; + } + + // bytes nonce = 5; + case 5: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(42u /* 42 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_nonce())); + } else { + goto handle_unusual; + } + break; + } + + // bytes tag = 6; + case 6: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(50u /* 50 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_tag())); + } else { + goto handle_unusual; + } + break; + } + + // bytes associated_data = 7[json_name = "associatedData"]; + case 7: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(58u /* 58 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_associated_data())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleDecryptRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleDecryptRequest) + return false; +#undef DO_ +} + +void SubtleDecryptRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleDecryptRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleDecryptRequest.component_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->component_name(), output); + } + + // bytes ciphertext = 2; + if (this->ciphertext().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 2, this->ciphertext(), output); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleDecryptRequest.algorithm"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->algorithm(), output); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleDecryptRequest.key_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 4, this->key_name(), output); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 5, this->nonce(), output); + } + + // bytes tag = 6; + if (this->tag().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 6, this->tag(), output); + } + + // bytes associated_data = 7[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 7, this->associated_data(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleDecryptRequest) +} + +::google::protobuf::uint8* SubtleDecryptRequest::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleDecryptRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleDecryptRequest.component_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->component_name(), target); + } + + // bytes ciphertext = 2; + if (this->ciphertext().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 2, this->ciphertext(), target); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleDecryptRequest.algorithm"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->algorithm(), target); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleDecryptRequest.key_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 4, this->key_name(), target); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 5, this->nonce(), target); + } + + // bytes tag = 6; + if (this->tag().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 6, this->tag(), target); + } + + // bytes associated_data = 7[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 7, this->associated_data(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleDecryptRequest) + return target; +} + +size_t SubtleDecryptRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleDecryptRequest) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->component_name()); + } + + // bytes ciphertext = 2; + if (this->ciphertext().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->ciphertext()); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->algorithm()); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->key_name()); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->nonce()); + } + + // bytes tag = 6; + if (this->tag().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->tag()); + } + + // bytes associated_data = 7[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->associated_data()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void SubtleDecryptRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleDecryptRequest) + GOOGLE_DCHECK_NE(&from, this); + const SubtleDecryptRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleDecryptRequest) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleDecryptRequest) + MergeFrom(*source); + } +} + +void SubtleDecryptRequest::MergeFrom(const SubtleDecryptRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleDecryptRequest) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.component_name().size() > 0) { + + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + if (from.ciphertext().size() > 0) { + + ciphertext_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.ciphertext_); + } + if (from.algorithm().size() > 0) { + + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + if (from.key_name().size() > 0) { + + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + if (from.nonce().size() > 0) { + + nonce_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.nonce_); + } + if (from.tag().size() > 0) { + + tag_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tag_); + } + if (from.associated_data().size() > 0) { + + associated_data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.associated_data_); + } +} + +void SubtleDecryptRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleDecryptRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void SubtleDecryptRequest::CopyFrom(const SubtleDecryptRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleDecryptRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool SubtleDecryptRequest::IsInitialized() const { + return true; +} + +void SubtleDecryptRequest::Swap(SubtleDecryptRequest* other) { + if (other == this) return; + InternalSwap(other); +} +void SubtleDecryptRequest::InternalSwap(SubtleDecryptRequest* other) { + using std::swap; + component_name_.Swap(&other->component_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + ciphertext_.Swap(&other->ciphertext_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + algorithm_.Swap(&other->algorithm_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + key_name_.Swap(&other->key_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + nonce_.Swap(&other->nonce_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + tag_.Swap(&other->tag_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + associated_data_.Swap(&other->associated_data_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata SubtleDecryptRequest::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void SubtleDecryptResponse::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int SubtleDecryptResponse::kPlaintextFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +SubtleDecryptResponse::SubtleDecryptResponse() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleDecryptResponse.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleDecryptResponse) +} +SubtleDecryptResponse::SubtleDecryptResponse(const SubtleDecryptResponse& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + plaintext_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.plaintext().size() > 0) { + plaintext_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.plaintext_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleDecryptResponse) +} + +void SubtleDecryptResponse::SharedCtor() { + plaintext_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +SubtleDecryptResponse::~SubtleDecryptResponse() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleDecryptResponse) + SharedDtor(); +} + +void SubtleDecryptResponse::SharedDtor() { + plaintext_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void SubtleDecryptResponse::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* SubtleDecryptResponse::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const SubtleDecryptResponse& SubtleDecryptResponse::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleDecryptResponse.base); + return *internal_default_instance(); +} + + +void SubtleDecryptResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleDecryptResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + plaintext_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool SubtleDecryptResponse::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleDecryptResponse) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // bytes plaintext = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_plaintext())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleDecryptResponse) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleDecryptResponse) + return false; +#undef DO_ +} + +void SubtleDecryptResponse::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleDecryptResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // bytes plaintext = 1; + if (this->plaintext().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 1, this->plaintext(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleDecryptResponse) +} + +::google::protobuf::uint8* SubtleDecryptResponse::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleDecryptResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // bytes plaintext = 1; + if (this->plaintext().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 1, this->plaintext(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleDecryptResponse) + return target; +} + +size_t SubtleDecryptResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleDecryptResponse) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // bytes plaintext = 1; + if (this->plaintext().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->plaintext()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void SubtleDecryptResponse::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleDecryptResponse) + GOOGLE_DCHECK_NE(&from, this); + const SubtleDecryptResponse* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleDecryptResponse) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleDecryptResponse) + MergeFrom(*source); + } +} + +void SubtleDecryptResponse::MergeFrom(const SubtleDecryptResponse& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleDecryptResponse) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.plaintext().size() > 0) { + + plaintext_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.plaintext_); + } +} + +void SubtleDecryptResponse::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleDecryptResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void SubtleDecryptResponse::CopyFrom(const SubtleDecryptResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleDecryptResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool SubtleDecryptResponse::IsInitialized() const { + return true; +} + +void SubtleDecryptResponse::Swap(SubtleDecryptResponse* other) { + if (other == this) return; + InternalSwap(other); +} +void SubtleDecryptResponse::InternalSwap(SubtleDecryptResponse* other) { + using std::swap; + plaintext_.Swap(&other->plaintext_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata SubtleDecryptResponse::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void SubtleWrapKeyRequest::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int SubtleWrapKeyRequest::kComponentNameFieldNumber; +const int SubtleWrapKeyRequest::kPlaintextKeyFieldNumber; +const int SubtleWrapKeyRequest::kAlgorithmFieldNumber; +const int SubtleWrapKeyRequest::kKeyNameFieldNumber; +const int SubtleWrapKeyRequest::kNonceFieldNumber; +const int SubtleWrapKeyRequest::kAssociatedDataFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +SubtleWrapKeyRequest::SubtleWrapKeyRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleWrapKeyRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleWrapKeyRequest) +} +SubtleWrapKeyRequest::SubtleWrapKeyRequest(const SubtleWrapKeyRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.component_name().size() > 0) { + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + plaintext_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.plaintext_key().size() > 0) { + plaintext_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.plaintext_key_); + } + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.algorithm().size() > 0) { + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.key_name().size() > 0) { + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + nonce_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.nonce().size() > 0) { + nonce_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.nonce_); + } + associated_data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.associated_data().size() > 0) { + associated_data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.associated_data_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleWrapKeyRequest) +} + +void SubtleWrapKeyRequest::SharedCtor() { + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + plaintext_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +SubtleWrapKeyRequest::~SubtleWrapKeyRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + SharedDtor(); +} + +void SubtleWrapKeyRequest::SharedDtor() { + component_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + plaintext_key_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void SubtleWrapKeyRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* SubtleWrapKeyRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const SubtleWrapKeyRequest& SubtleWrapKeyRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleWrapKeyRequest.base); + return *internal_default_instance(); +} + + +void SubtleWrapKeyRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + plaintext_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool SubtleWrapKeyRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string component_name = 1[json_name = "componentName"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_component_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleWrapKeyRequest.component_name")); + } else { + goto handle_unusual; + } + break; + } + + // bytes plaintext_key = 2[json_name = "plaintextKey"]; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_plaintext_key())); + } else { + goto handle_unusual; + } + break; + } + + // string algorithm = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_algorithm())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleWrapKeyRequest.algorithm")); + } else { + goto handle_unusual; + } + break; + } + + // string key_name = 4[json_name = "keyName"]; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_key_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleWrapKeyRequest.key_name")); + } else { + goto handle_unusual; + } + break; + } + + // bytes nonce = 5; + case 5: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(42u /* 42 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_nonce())); + } else { + goto handle_unusual; + } + break; + } + + // bytes associated_data = 6[json_name = "associatedData"]; + case 6: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(50u /* 50 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_associated_data())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + return false; +#undef DO_ +} + +void SubtleWrapKeyRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleWrapKeyRequest.component_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->component_name(), output); + } + + // bytes plaintext_key = 2[json_name = "plaintextKey"]; + if (this->plaintext_key().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 2, this->plaintext_key(), output); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleWrapKeyRequest.algorithm"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->algorithm(), output); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleWrapKeyRequest.key_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 4, this->key_name(), output); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 5, this->nonce(), output); + } + + // bytes associated_data = 6[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 6, this->associated_data(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleWrapKeyRequest) +} + +::google::protobuf::uint8* SubtleWrapKeyRequest::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleWrapKeyRequest.component_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->component_name(), target); + } + + // bytes plaintext_key = 2[json_name = "plaintextKey"]; + if (this->plaintext_key().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 2, this->plaintext_key(), target); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleWrapKeyRequest.algorithm"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->algorithm(), target); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleWrapKeyRequest.key_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 4, this->key_name(), target); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 5, this->nonce(), target); + } + + // bytes associated_data = 6[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 6, this->associated_data(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + return target; +} + +size_t SubtleWrapKeyRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->component_name()); + } + + // bytes plaintext_key = 2[json_name = "plaintextKey"]; + if (this->plaintext_key().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->plaintext_key()); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->algorithm()); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->key_name()); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->nonce()); + } + + // bytes associated_data = 6[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->associated_data()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void SubtleWrapKeyRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + GOOGLE_DCHECK_NE(&from, this); + const SubtleWrapKeyRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + MergeFrom(*source); + } +} + +void SubtleWrapKeyRequest::MergeFrom(const SubtleWrapKeyRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.component_name().size() > 0) { + + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + if (from.plaintext_key().size() > 0) { + + plaintext_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.plaintext_key_); + } + if (from.algorithm().size() > 0) { + + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + if (from.key_name().size() > 0) { + + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + if (from.nonce().size() > 0) { + + nonce_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.nonce_); + } + if (from.associated_data().size() > 0) { + + associated_data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.associated_data_); + } +} + +void SubtleWrapKeyRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void SubtleWrapKeyRequest::CopyFrom(const SubtleWrapKeyRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleWrapKeyRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool SubtleWrapKeyRequest::IsInitialized() const { + return true; +} + +void SubtleWrapKeyRequest::Swap(SubtleWrapKeyRequest* other) { + if (other == this) return; + InternalSwap(other); +} +void SubtleWrapKeyRequest::InternalSwap(SubtleWrapKeyRequest* other) { + using std::swap; + component_name_.Swap(&other->component_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + plaintext_key_.Swap(&other->plaintext_key_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + algorithm_.Swap(&other->algorithm_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + key_name_.Swap(&other->key_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + nonce_.Swap(&other->nonce_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + associated_data_.Swap(&other->associated_data_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata SubtleWrapKeyRequest::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void SubtleWrapKeyResponse::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int SubtleWrapKeyResponse::kWrappedKeyFieldNumber; +const int SubtleWrapKeyResponse::kTagFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +SubtleWrapKeyResponse::SubtleWrapKeyResponse() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleWrapKeyResponse.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleWrapKeyResponse) +} +SubtleWrapKeyResponse::SubtleWrapKeyResponse(const SubtleWrapKeyResponse& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + wrapped_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.wrapped_key().size() > 0) { + wrapped_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.wrapped_key_); + } + tag_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.tag().size() > 0) { + tag_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tag_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleWrapKeyResponse) +} + +void SubtleWrapKeyResponse::SharedCtor() { + wrapped_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +SubtleWrapKeyResponse::~SubtleWrapKeyResponse() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + SharedDtor(); +} + +void SubtleWrapKeyResponse::SharedDtor() { + wrapped_key_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void SubtleWrapKeyResponse::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* SubtleWrapKeyResponse::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const SubtleWrapKeyResponse& SubtleWrapKeyResponse::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleWrapKeyResponse.base); + return *internal_default_instance(); +} + + +void SubtleWrapKeyResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + wrapped_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool SubtleWrapKeyResponse::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // bytes wrapped_key = 1[json_name = "wrappedKey"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_wrapped_key())); + } else { + goto handle_unusual; + } + break; + } + + // bytes tag = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_tag())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + return false; +#undef DO_ +} + +void SubtleWrapKeyResponse::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // bytes wrapped_key = 1[json_name = "wrappedKey"]; + if (this->wrapped_key().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 1, this->wrapped_key(), output); + } + + // bytes tag = 2; + if (this->tag().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 2, this->tag(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleWrapKeyResponse) +} + +::google::protobuf::uint8* SubtleWrapKeyResponse::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // bytes wrapped_key = 1[json_name = "wrappedKey"]; + if (this->wrapped_key().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 1, this->wrapped_key(), target); + } + + // bytes tag = 2; + if (this->tag().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 2, this->tag(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + return target; +} + +size_t SubtleWrapKeyResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // bytes wrapped_key = 1[json_name = "wrappedKey"]; + if (this->wrapped_key().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->wrapped_key()); + } + + // bytes tag = 2; + if (this->tag().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->tag()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void SubtleWrapKeyResponse::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + GOOGLE_DCHECK_NE(&from, this); + const SubtleWrapKeyResponse* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + MergeFrom(*source); + } +} + +void SubtleWrapKeyResponse::MergeFrom(const SubtleWrapKeyResponse& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.wrapped_key().size() > 0) { + + wrapped_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.wrapped_key_); + } + if (from.tag().size() > 0) { + + tag_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tag_); + } +} + +void SubtleWrapKeyResponse::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void SubtleWrapKeyResponse::CopyFrom(const SubtleWrapKeyResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool SubtleWrapKeyResponse::IsInitialized() const { + return true; +} + +void SubtleWrapKeyResponse::Swap(SubtleWrapKeyResponse* other) { + if (other == this) return; + InternalSwap(other); +} +void SubtleWrapKeyResponse::InternalSwap(SubtleWrapKeyResponse* other) { + using std::swap; + wrapped_key_.Swap(&other->wrapped_key_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + tag_.Swap(&other->tag_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata SubtleWrapKeyResponse::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void SubtleUnwrapKeyRequest::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int SubtleUnwrapKeyRequest::kComponentNameFieldNumber; +const int SubtleUnwrapKeyRequest::kWrappedKeyFieldNumber; +const int SubtleUnwrapKeyRequest::kAlgorithmFieldNumber; +const int SubtleUnwrapKeyRequest::kKeyNameFieldNumber; +const int SubtleUnwrapKeyRequest::kNonceFieldNumber; +const int SubtleUnwrapKeyRequest::kTagFieldNumber; +const int SubtleUnwrapKeyRequest::kAssociatedDataFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +SubtleUnwrapKeyRequest::SubtleUnwrapKeyRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleUnwrapKeyRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) +} +SubtleUnwrapKeyRequest::SubtleUnwrapKeyRequest(const SubtleUnwrapKeyRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.component_name().size() > 0) { + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + wrapped_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.wrapped_key().size() > 0) { + wrapped_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.wrapped_key_); + } + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.algorithm().size() > 0) { + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.key_name().size() > 0) { + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + nonce_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.nonce().size() > 0) { + nonce_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.nonce_); + } + tag_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.tag().size() > 0) { + tag_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tag_); + } + associated_data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.associated_data().size() > 0) { + associated_data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.associated_data_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) +} + +void SubtleUnwrapKeyRequest::SharedCtor() { + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + wrapped_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +SubtleUnwrapKeyRequest::~SubtleUnwrapKeyRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + SharedDtor(); +} + +void SubtleUnwrapKeyRequest::SharedDtor() { + component_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + wrapped_key_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void SubtleUnwrapKeyRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* SubtleUnwrapKeyRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const SubtleUnwrapKeyRequest& SubtleUnwrapKeyRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleUnwrapKeyRequest.base); + return *internal_default_instance(); +} + + +void SubtleUnwrapKeyRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + wrapped_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + nonce_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + tag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + associated_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool SubtleUnwrapKeyRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string component_name = 1[json_name = "componentName"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_component_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.component_name")); + } else { + goto handle_unusual; + } + break; + } + + // bytes wrapped_key = 2[json_name = "wrappedKey"]; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_wrapped_key())); + } else { + goto handle_unusual; + } + break; + } + + // string algorithm = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_algorithm())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.algorithm")); + } else { + goto handle_unusual; + } + break; + } + + // string key_name = 4[json_name = "keyName"]; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_key_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.key_name")); + } else { + goto handle_unusual; + } + break; + } + + // bytes nonce = 5; + case 5: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(42u /* 42 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_nonce())); + } else { + goto handle_unusual; + } + break; + } + + // bytes tag = 6; + case 6: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(50u /* 50 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_tag())); + } else { + goto handle_unusual; + } + break; + } + + // bytes associated_data = 7[json_name = "associatedData"]; + case 7: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(58u /* 58 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_associated_data())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + return false; +#undef DO_ +} + +void SubtleUnwrapKeyRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.component_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->component_name(), output); + } + + // bytes wrapped_key = 2[json_name = "wrappedKey"]; + if (this->wrapped_key().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 2, this->wrapped_key(), output); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.algorithm"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->algorithm(), output); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.key_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 4, this->key_name(), output); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 5, this->nonce(), output); + } + + // bytes tag = 6; + if (this->tag().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 6, this->tag(), output); + } + + // bytes associated_data = 7[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 7, this->associated_data(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) +} + +::google::protobuf::uint8* SubtleUnwrapKeyRequest::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.component_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->component_name(), target); + } + + // bytes wrapped_key = 2[json_name = "wrappedKey"]; + if (this->wrapped_key().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 2, this->wrapped_key(), target); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.algorithm"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->algorithm(), target); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.key_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 4, this->key_name(), target); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 5, this->nonce(), target); + } + + // bytes tag = 6; + if (this->tag().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 6, this->tag(), target); + } + + // bytes associated_data = 7[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 7, this->associated_data(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + return target; +} + +size_t SubtleUnwrapKeyRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->component_name()); + } + + // bytes wrapped_key = 2[json_name = "wrappedKey"]; + if (this->wrapped_key().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->wrapped_key()); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->algorithm()); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->key_name()); + } + + // bytes nonce = 5; + if (this->nonce().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->nonce()); + } + + // bytes tag = 6; + if (this->tag().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->tag()); + } + + // bytes associated_data = 7[json_name = "associatedData"]; + if (this->associated_data().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->associated_data()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void SubtleUnwrapKeyRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + GOOGLE_DCHECK_NE(&from, this); + const SubtleUnwrapKeyRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + MergeFrom(*source); + } +} + +void SubtleUnwrapKeyRequest::MergeFrom(const SubtleUnwrapKeyRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.component_name().size() > 0) { + + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + if (from.wrapped_key().size() > 0) { + + wrapped_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.wrapped_key_); + } + if (from.algorithm().size() > 0) { + + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + if (from.key_name().size() > 0) { + + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + if (from.nonce().size() > 0) { + + nonce_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.nonce_); + } + if (from.tag().size() > 0) { + + tag_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tag_); + } + if (from.associated_data().size() > 0) { + + associated_data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.associated_data_); + } +} + +void SubtleUnwrapKeyRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void SubtleUnwrapKeyRequest::CopyFrom(const SubtleUnwrapKeyRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool SubtleUnwrapKeyRequest::IsInitialized() const { + return true; +} + +void SubtleUnwrapKeyRequest::Swap(SubtleUnwrapKeyRequest* other) { + if (other == this) return; + InternalSwap(other); +} +void SubtleUnwrapKeyRequest::InternalSwap(SubtleUnwrapKeyRequest* other) { + using std::swap; + component_name_.Swap(&other->component_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + wrapped_key_.Swap(&other->wrapped_key_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + algorithm_.Swap(&other->algorithm_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + key_name_.Swap(&other->key_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + nonce_.Swap(&other->nonce_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + tag_.Swap(&other->tag_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + associated_data_.Swap(&other->associated_data_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata SubtleUnwrapKeyRequest::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void SubtleUnwrapKeyResponse::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int SubtleUnwrapKeyResponse::kPlaintextKeyFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +SubtleUnwrapKeyResponse::SubtleUnwrapKeyResponse() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleUnwrapKeyResponse.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) +} +SubtleUnwrapKeyResponse::SubtleUnwrapKeyResponse(const SubtleUnwrapKeyResponse& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + plaintext_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.plaintext_key().size() > 0) { + plaintext_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.plaintext_key_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) +} + +void SubtleUnwrapKeyResponse::SharedCtor() { + plaintext_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +SubtleUnwrapKeyResponse::~SubtleUnwrapKeyResponse() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + SharedDtor(); +} + +void SubtleUnwrapKeyResponse::SharedDtor() { + plaintext_key_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void SubtleUnwrapKeyResponse::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* SubtleUnwrapKeyResponse::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const SubtleUnwrapKeyResponse& SubtleUnwrapKeyResponse::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleUnwrapKeyResponse.base); + return *internal_default_instance(); +} + + +void SubtleUnwrapKeyResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + plaintext_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool SubtleUnwrapKeyResponse::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // bytes plaintext_key = 1[json_name = "plaintextKey"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_plaintext_key())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + return false; +#undef DO_ +} + +void SubtleUnwrapKeyResponse::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // bytes plaintext_key = 1[json_name = "plaintextKey"]; + if (this->plaintext_key().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 1, this->plaintext_key(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) +} + +::google::protobuf::uint8* SubtleUnwrapKeyResponse::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // bytes plaintext_key = 1[json_name = "plaintextKey"]; + if (this->plaintext_key().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 1, this->plaintext_key(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + return target; +} + +size_t SubtleUnwrapKeyResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // bytes plaintext_key = 1[json_name = "plaintextKey"]; + if (this->plaintext_key().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->plaintext_key()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void SubtleUnwrapKeyResponse::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + GOOGLE_DCHECK_NE(&from, this); + const SubtleUnwrapKeyResponse* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + MergeFrom(*source); + } +} + +void SubtleUnwrapKeyResponse::MergeFrom(const SubtleUnwrapKeyResponse& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.plaintext_key().size() > 0) { + + plaintext_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.plaintext_key_); + } +} + +void SubtleUnwrapKeyResponse::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void SubtleUnwrapKeyResponse::CopyFrom(const SubtleUnwrapKeyResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool SubtleUnwrapKeyResponse::IsInitialized() const { + return true; +} + +void SubtleUnwrapKeyResponse::Swap(SubtleUnwrapKeyResponse* other) { + if (other == this) return; + InternalSwap(other); +} +void SubtleUnwrapKeyResponse::InternalSwap(SubtleUnwrapKeyResponse* other) { + using std::swap; + plaintext_key_.Swap(&other->plaintext_key_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata SubtleUnwrapKeyResponse::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void SubtleSignRequest::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int SubtleSignRequest::kComponentNameFieldNumber; +const int SubtleSignRequest::kDigestFieldNumber; +const int SubtleSignRequest::kAlgorithmFieldNumber; +const int SubtleSignRequest::kKeyNameFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +SubtleSignRequest::SubtleSignRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleSignRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleSignRequest) +} +SubtleSignRequest::SubtleSignRequest(const SubtleSignRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.component_name().size() > 0) { + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + digest_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.digest().size() > 0) { + digest_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.digest_); + } + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.algorithm().size() > 0) { + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.key_name().size() > 0) { + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleSignRequest) +} + +void SubtleSignRequest::SharedCtor() { + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + digest_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +SubtleSignRequest::~SubtleSignRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleSignRequest) + SharedDtor(); +} + +void SubtleSignRequest::SharedDtor() { + component_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + digest_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void SubtleSignRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* SubtleSignRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const SubtleSignRequest& SubtleSignRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleSignRequest.base); + return *internal_default_instance(); +} + + +void SubtleSignRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleSignRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + digest_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool SubtleSignRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleSignRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string component_name = 1[json_name = "componentName"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_component_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleSignRequest.component_name")); + } else { + goto handle_unusual; + } + break; + } + + // bytes digest = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_digest())); + } else { + goto handle_unusual; + } + break; + } + + // string algorithm = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_algorithm())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleSignRequest.algorithm")); + } else { + goto handle_unusual; + } + break; + } + + // string key_name = 4[json_name = "keyName"]; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_key_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleSignRequest.key_name")); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleSignRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleSignRequest) + return false; +#undef DO_ +} + +void SubtleSignRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleSignRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleSignRequest.component_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->component_name(), output); + } + + // bytes digest = 2; + if (this->digest().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 2, this->digest(), output); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleSignRequest.algorithm"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->algorithm(), output); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleSignRequest.key_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 4, this->key_name(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleSignRequest) +} + +::google::protobuf::uint8* SubtleSignRequest::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleSignRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleSignRequest.component_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->component_name(), target); + } + + // bytes digest = 2; + if (this->digest().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 2, this->digest(), target); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleSignRequest.algorithm"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->algorithm(), target); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleSignRequest.key_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 4, this->key_name(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleSignRequest) + return target; +} + +size_t SubtleSignRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleSignRequest) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->component_name()); + } + + // bytes digest = 2; + if (this->digest().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->digest()); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->algorithm()); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->key_name()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void SubtleSignRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleSignRequest) + GOOGLE_DCHECK_NE(&from, this); + const SubtleSignRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleSignRequest) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleSignRequest) + MergeFrom(*source); + } +} + +void SubtleSignRequest::MergeFrom(const SubtleSignRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleSignRequest) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.component_name().size() > 0) { + + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + if (from.digest().size() > 0) { + + digest_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.digest_); + } + if (from.algorithm().size() > 0) { + + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + if (from.key_name().size() > 0) { + + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } +} + +void SubtleSignRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleSignRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void SubtleSignRequest::CopyFrom(const SubtleSignRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleSignRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool SubtleSignRequest::IsInitialized() const { + return true; +} + +void SubtleSignRequest::Swap(SubtleSignRequest* other) { + if (other == this) return; + InternalSwap(other); +} +void SubtleSignRequest::InternalSwap(SubtleSignRequest* other) { + using std::swap; + component_name_.Swap(&other->component_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + digest_.Swap(&other->digest_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + algorithm_.Swap(&other->algorithm_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + key_name_.Swap(&other->key_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata SubtleSignRequest::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void SubtleSignResponse::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int SubtleSignResponse::kSignatureFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +SubtleSignResponse::SubtleSignResponse() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleSignResponse.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleSignResponse) +} +SubtleSignResponse::SubtleSignResponse(const SubtleSignResponse& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + signature_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.signature().size() > 0) { + signature_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.signature_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleSignResponse) +} + +void SubtleSignResponse::SharedCtor() { + signature_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +SubtleSignResponse::~SubtleSignResponse() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleSignResponse) + SharedDtor(); +} + +void SubtleSignResponse::SharedDtor() { + signature_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void SubtleSignResponse::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* SubtleSignResponse::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const SubtleSignResponse& SubtleSignResponse::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleSignResponse.base); + return *internal_default_instance(); +} + + +void SubtleSignResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleSignResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + signature_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool SubtleSignResponse::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleSignResponse) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // bytes signature = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_signature())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleSignResponse) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleSignResponse) + return false; +#undef DO_ +} + +void SubtleSignResponse::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleSignResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // bytes signature = 1; + if (this->signature().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 1, this->signature(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleSignResponse) +} + +::google::protobuf::uint8* SubtleSignResponse::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleSignResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // bytes signature = 1; + if (this->signature().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 1, this->signature(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleSignResponse) + return target; +} + +size_t SubtleSignResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleSignResponse) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // bytes signature = 1; + if (this->signature().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->signature()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void SubtleSignResponse::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleSignResponse) + GOOGLE_DCHECK_NE(&from, this); + const SubtleSignResponse* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleSignResponse) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleSignResponse) + MergeFrom(*source); + } +} + +void SubtleSignResponse::MergeFrom(const SubtleSignResponse& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleSignResponse) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.signature().size() > 0) { + + signature_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.signature_); + } +} + +void SubtleSignResponse::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleSignResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void SubtleSignResponse::CopyFrom(const SubtleSignResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleSignResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool SubtleSignResponse::IsInitialized() const { + return true; +} + +void SubtleSignResponse::Swap(SubtleSignResponse* other) { + if (other == this) return; + InternalSwap(other); +} +void SubtleSignResponse::InternalSwap(SubtleSignResponse* other) { + using std::swap; + signature_.Swap(&other->signature_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata SubtleSignResponse::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void SubtleVerifyRequest::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int SubtleVerifyRequest::kComponentNameFieldNumber; +const int SubtleVerifyRequest::kDigestFieldNumber; +const int SubtleVerifyRequest::kAlgorithmFieldNumber; +const int SubtleVerifyRequest::kKeyNameFieldNumber; +const int SubtleVerifyRequest::kSignatureFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +SubtleVerifyRequest::SubtleVerifyRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleVerifyRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleVerifyRequest) +} +SubtleVerifyRequest::SubtleVerifyRequest(const SubtleVerifyRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.component_name().size() > 0) { + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + digest_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.digest().size() > 0) { + digest_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.digest_); + } + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.algorithm().size() > 0) { + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.key_name().size() > 0) { + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + signature_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.signature().size() > 0) { + signature_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.signature_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleVerifyRequest) +} + +void SubtleVerifyRequest::SharedCtor() { + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + digest_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + signature_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +SubtleVerifyRequest::~SubtleVerifyRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleVerifyRequest) + SharedDtor(); +} + +void SubtleVerifyRequest::SharedDtor() { + component_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + digest_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + signature_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void SubtleVerifyRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* SubtleVerifyRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const SubtleVerifyRequest& SubtleVerifyRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleVerifyRequest.base); + return *internal_default_instance(); +} + + +void SubtleVerifyRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleVerifyRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + digest_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + signature_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool SubtleVerifyRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleVerifyRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string component_name = 1[json_name = "componentName"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_component_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleVerifyRequest.component_name")); + } else { + goto handle_unusual; + } + break; + } + + // bytes digest = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_digest())); + } else { + goto handle_unusual; + } + break; + } + + // string algorithm = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_algorithm())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleVerifyRequest.algorithm")); + } else { + goto handle_unusual; + } + break; + } + + // string key_name = 4[json_name = "keyName"]; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_key_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.SubtleVerifyRequest.key_name")); + } else { + goto handle_unusual; + } + break; + } + + // bytes signature = 5; + case 5: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(42u /* 42 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_signature())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleVerifyRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleVerifyRequest) + return false; +#undef DO_ +} + +void SubtleVerifyRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleVerifyRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleVerifyRequest.component_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->component_name(), output); + } + + // bytes digest = 2; + if (this->digest().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 2, this->digest(), output); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleVerifyRequest.algorithm"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->algorithm(), output); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleVerifyRequest.key_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 4, this->key_name(), output); + } + + // bytes signature = 5; + if (this->signature().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 5, this->signature(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleVerifyRequest) +} + +::google::protobuf::uint8* SubtleVerifyRequest::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleVerifyRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleVerifyRequest.component_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->component_name(), target); + } + + // bytes digest = 2; + if (this->digest().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 2, this->digest(), target); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->algorithm().data(), static_cast(this->algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleVerifyRequest.algorithm"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->algorithm(), target); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.SubtleVerifyRequest.key_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 4, this->key_name(), target); + } + + // bytes signature = 5; + if (this->signature().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 5, this->signature(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleVerifyRequest) + return target; +} + +size_t SubtleVerifyRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleVerifyRequest) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->component_name()); + } + + // bytes digest = 2; + if (this->digest().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->digest()); + } + + // string algorithm = 3; + if (this->algorithm().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->algorithm()); + } + + // string key_name = 4[json_name = "keyName"]; + if (this->key_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->key_name()); + } + + // bytes signature = 5; + if (this->signature().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->signature()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void SubtleVerifyRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleVerifyRequest) + GOOGLE_DCHECK_NE(&from, this); + const SubtleVerifyRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleVerifyRequest) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleVerifyRequest) + MergeFrom(*source); + } +} + +void SubtleVerifyRequest::MergeFrom(const SubtleVerifyRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleVerifyRequest) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.component_name().size() > 0) { + + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + if (from.digest().size() > 0) { + + digest_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.digest_); + } + if (from.algorithm().size() > 0) { + + algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.algorithm_); + } + if (from.key_name().size() > 0) { + + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + if (from.signature().size() > 0) { + + signature_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.signature_); + } +} + +void SubtleVerifyRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleVerifyRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void SubtleVerifyRequest::CopyFrom(const SubtleVerifyRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleVerifyRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool SubtleVerifyRequest::IsInitialized() const { + return true; +} + +void SubtleVerifyRequest::Swap(SubtleVerifyRequest* other) { + if (other == this) return; + InternalSwap(other); +} +void SubtleVerifyRequest::InternalSwap(SubtleVerifyRequest* other) { + using std::swap; + component_name_.Swap(&other->component_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + digest_.Swap(&other->digest_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + algorithm_.Swap(&other->algorithm_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + key_name_.Swap(&other->key_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + signature_.Swap(&other->signature_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata SubtleVerifyRequest::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void SubtleVerifyResponse::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int SubtleVerifyResponse::kValidFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +SubtleVerifyResponse::SubtleVerifyResponse() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleVerifyResponse.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.SubtleVerifyResponse) +} +SubtleVerifyResponse::SubtleVerifyResponse(const SubtleVerifyResponse& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + valid_ = from.valid_; + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.SubtleVerifyResponse) +} + +void SubtleVerifyResponse::SharedCtor() { + valid_ = false; +} + +SubtleVerifyResponse::~SubtleVerifyResponse() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.SubtleVerifyResponse) + SharedDtor(); +} + +void SubtleVerifyResponse::SharedDtor() { +} + +void SubtleVerifyResponse::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* SubtleVerifyResponse::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const SubtleVerifyResponse& SubtleVerifyResponse::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_SubtleVerifyResponse.base); + return *internal_default_instance(); +} + + +void SubtleVerifyResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.SubtleVerifyResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + valid_ = false; + _internal_metadata_.Clear(); +} + +bool SubtleVerifyResponse::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.SubtleVerifyResponse) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // bool valid = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(8u /* 8 & 0xFF */)) { + + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( + input, &valid_))); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.SubtleVerifyResponse) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.SubtleVerifyResponse) + return false; +#undef DO_ +} + +void SubtleVerifyResponse::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.SubtleVerifyResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // bool valid = 1; + if (this->valid() != 0) { + ::google::protobuf::internal::WireFormatLite::WriteBool(1, this->valid(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.SubtleVerifyResponse) +} + +::google::protobuf::uint8* SubtleVerifyResponse::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.SubtleVerifyResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // bool valid = 1; + if (this->valid() != 0) { + target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(1, this->valid(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.SubtleVerifyResponse) + return target; +} + +size_t SubtleVerifyResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.SubtleVerifyResponse) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // bool valid = 1; + if (this->valid() != 0) { + total_size += 1 + 1; + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void SubtleVerifyResponse::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.SubtleVerifyResponse) + GOOGLE_DCHECK_NE(&from, this); + const SubtleVerifyResponse* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.SubtleVerifyResponse) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.SubtleVerifyResponse) + MergeFrom(*source); + } +} + +void SubtleVerifyResponse::MergeFrom(const SubtleVerifyResponse& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.SubtleVerifyResponse) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.valid() != 0) { + set_valid(from.valid()); + } +} + +void SubtleVerifyResponse::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.SubtleVerifyResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void SubtleVerifyResponse::CopyFrom(const SubtleVerifyResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.SubtleVerifyResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool SubtleVerifyResponse::IsInitialized() const { + return true; +} + +void SubtleVerifyResponse::Swap(SubtleVerifyResponse* other) { + if (other == this) return; + InternalSwap(other); +} +void SubtleVerifyResponse::InternalSwap(SubtleVerifyResponse* other) { + using std::swap; + swap(valid_, other->valid_); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata SubtleVerifyResponse::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void EncryptRequest::InitAsDefaultInstance() { + ::dapr::proto::runtime::v1::_EncryptRequest_default_instance_._instance.get_mutable()->options_ = const_cast< ::dapr::proto::runtime::v1::EncryptRequestOptions*>( + ::dapr::proto::runtime::v1::EncryptRequestOptions::internal_default_instance()); + ::dapr::proto::runtime::v1::_EncryptRequest_default_instance_._instance.get_mutable()->payload_ = const_cast< ::dapr::proto::common::v1::StreamPayload*>( + ::dapr::proto::common::v1::StreamPayload::internal_default_instance()); +} +void EncryptRequest::clear_payload() { + if (GetArenaNoVirtual() == NULL && payload_ != NULL) { + delete payload_; + } + payload_ = NULL; +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int EncryptRequest::kOptionsFieldNumber; +const int EncryptRequest::kPayloadFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +EncryptRequest::EncryptRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_EncryptRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.EncryptRequest) +} +EncryptRequest::EncryptRequest(const EncryptRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + if (from.has_options()) { + options_ = new ::dapr::proto::runtime::v1::EncryptRequestOptions(*from.options_); + } else { + options_ = NULL; + } + if (from.has_payload()) { + payload_ = new ::dapr::proto::common::v1::StreamPayload(*from.payload_); + } else { + payload_ = NULL; + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.EncryptRequest) +} + +void EncryptRequest::SharedCtor() { + ::memset(&options_, 0, static_cast( + reinterpret_cast(&payload_) - + reinterpret_cast(&options_)) + sizeof(payload_)); +} + +EncryptRequest::~EncryptRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.EncryptRequest) + SharedDtor(); +} + +void EncryptRequest::SharedDtor() { + if (this != internal_default_instance()) delete options_; + if (this != internal_default_instance()) delete payload_; +} + +void EncryptRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* EncryptRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const EncryptRequest& EncryptRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_EncryptRequest.base); + return *internal_default_instance(); +} + + +void EncryptRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.EncryptRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + if (GetArenaNoVirtual() == NULL && options_ != NULL) { + delete options_; + } + options_ = NULL; + if (GetArenaNoVirtual() == NULL && payload_ != NULL) { + delete payload_; + } + payload_ = NULL; + _internal_metadata_.Clear(); +} + +bool EncryptRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.EncryptRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // .dapr.proto.runtime.v1.EncryptRequestOptions options = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_options())); + } else { + goto handle_unusual; + } + break; + } + + // .dapr.proto.common.v1.StreamPayload payload = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_payload())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.EncryptRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.EncryptRequest) + return false; +#undef DO_ +} + +void EncryptRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.EncryptRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .dapr.proto.runtime.v1.EncryptRequestOptions options = 1; + if (this->has_options()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 1, this->_internal_options(), output); + } + + // .dapr.proto.common.v1.StreamPayload payload = 2; + if (this->has_payload()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 2, this->_internal_payload(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.EncryptRequest) +} + +::google::protobuf::uint8* EncryptRequest::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.EncryptRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .dapr.proto.runtime.v1.EncryptRequestOptions options = 1; + if (this->has_options()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 1, this->_internal_options(), deterministic, target); + } + + // .dapr.proto.common.v1.StreamPayload payload = 2; + if (this->has_payload()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 2, this->_internal_payload(), deterministic, target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.EncryptRequest) + return target; +} + +size_t EncryptRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.EncryptRequest) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // .dapr.proto.runtime.v1.EncryptRequestOptions options = 1; + if (this->has_options()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *options_); + } + + // .dapr.proto.common.v1.StreamPayload payload = 2; + if (this->has_payload()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *payload_); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void EncryptRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.EncryptRequest) + GOOGLE_DCHECK_NE(&from, this); + const EncryptRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.EncryptRequest) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.EncryptRequest) + MergeFrom(*source); + } +} + +void EncryptRequest::MergeFrom(const EncryptRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.EncryptRequest) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.has_options()) { + mutable_options()->::dapr::proto::runtime::v1::EncryptRequestOptions::MergeFrom(from.options()); + } + if (from.has_payload()) { + mutable_payload()->::dapr::proto::common::v1::StreamPayload::MergeFrom(from.payload()); + } +} + +void EncryptRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.EncryptRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void EncryptRequest::CopyFrom(const EncryptRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.EncryptRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool EncryptRequest::IsInitialized() const { + return true; +} + +void EncryptRequest::Swap(EncryptRequest* other) { + if (other == this) return; + InternalSwap(other); +} +void EncryptRequest::InternalSwap(EncryptRequest* other) { + using std::swap; + swap(options_, other->options_); + swap(payload_, other->payload_); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata EncryptRequest::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void EncryptRequestOptions::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int EncryptRequestOptions::kComponentNameFieldNumber; +const int EncryptRequestOptions::kKeyNameFieldNumber; +const int EncryptRequestOptions::kKeyWrapAlgorithmFieldNumber; +const int EncryptRequestOptions::kDataEncryptionCipherFieldNumber; +const int EncryptRequestOptions::kOmitDecryptionKeyNameFieldNumber; +const int EncryptRequestOptions::kDecryptionKeyNameFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +EncryptRequestOptions::EncryptRequestOptions() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_EncryptRequestOptions.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.EncryptRequestOptions) +} +EncryptRequestOptions::EncryptRequestOptions(const EncryptRequestOptions& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.component_name().size() > 0) { + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.key_name().size() > 0) { + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + key_wrap_algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.key_wrap_algorithm().size() > 0) { + key_wrap_algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_wrap_algorithm_); + } + data_encryption_cipher_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.data_encryption_cipher().size() > 0) { + data_encryption_cipher_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.data_encryption_cipher_); + } + decryption_key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.decryption_key_name().size() > 0) { + decryption_key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.decryption_key_name_); + } + omit_decryption_key_name_ = from.omit_decryption_key_name_; + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.EncryptRequestOptions) +} + +void EncryptRequestOptions::SharedCtor() { + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_wrap_algorithm_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + data_encryption_cipher_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + decryption_key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + omit_decryption_key_name_ = false; +} + +EncryptRequestOptions::~EncryptRequestOptions() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.EncryptRequestOptions) + SharedDtor(); +} + +void EncryptRequestOptions::SharedDtor() { + component_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_wrap_algorithm_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + data_encryption_cipher_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + decryption_key_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void EncryptRequestOptions::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* EncryptRequestOptions::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const EncryptRequestOptions& EncryptRequestOptions::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_EncryptRequestOptions.base); + return *internal_default_instance(); +} + + +void EncryptRequestOptions::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.EncryptRequestOptions) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_wrap_algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + data_encryption_cipher_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + decryption_key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + omit_decryption_key_name_ = false; + _internal_metadata_.Clear(); +} + +bool EncryptRequestOptions::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.EncryptRequestOptions) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string component_name = 1[json_name = "componentName"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_component_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.EncryptRequestOptions.component_name")); + } else { + goto handle_unusual; + } + break; + } + + // string key_name = 2[json_name = "keyName"]; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_key_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.EncryptRequestOptions.key_name")); + } else { + goto handle_unusual; + } + break; + } + + // string key_wrap_algorithm = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_key_wrap_algorithm())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_wrap_algorithm().data(), static_cast(this->key_wrap_algorithm().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.EncryptRequestOptions.key_wrap_algorithm")); + } else { + goto handle_unusual; + } + break; + } + + // string data_encryption_cipher = 10; + case 10: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(82u /* 82 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_data_encryption_cipher())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->data_encryption_cipher().data(), static_cast(this->data_encryption_cipher().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.EncryptRequestOptions.data_encryption_cipher")); + } else { + goto handle_unusual; + } + break; + } + + // bool omit_decryption_key_name = 11[json_name = "omitDecryptionKeyName"]; + case 11: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(88u /* 88 & 0xFF */)) { + + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( + input, &omit_decryption_key_name_))); + } else { + goto handle_unusual; + } + break; + } + + // string decryption_key_name = 12[json_name = "decryptionKeyName"]; + case 12: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(98u /* 98 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_decryption_key_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->decryption_key_name().data(), static_cast(this->decryption_key_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.EncryptRequestOptions.decryption_key_name")); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.EncryptRequestOptions) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.EncryptRequestOptions) + return false; +#undef DO_ +} + +void EncryptRequestOptions::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.EncryptRequestOptions) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.EncryptRequestOptions.component_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->component_name(), output); + } + + // string key_name = 2[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.EncryptRequestOptions.key_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 2, this->key_name(), output); + } + + // string key_wrap_algorithm = 3; + if (this->key_wrap_algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_wrap_algorithm().data(), static_cast(this->key_wrap_algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.EncryptRequestOptions.key_wrap_algorithm"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->key_wrap_algorithm(), output); + } + + // string data_encryption_cipher = 10; + if (this->data_encryption_cipher().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->data_encryption_cipher().data(), static_cast(this->data_encryption_cipher().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.EncryptRequestOptions.data_encryption_cipher"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 10, this->data_encryption_cipher(), output); + } + + // bool omit_decryption_key_name = 11[json_name = "omitDecryptionKeyName"]; + if (this->omit_decryption_key_name() != 0) { + ::google::protobuf::internal::WireFormatLite::WriteBool(11, this->omit_decryption_key_name(), output); + } + + // string decryption_key_name = 12[json_name = "decryptionKeyName"]; + if (this->decryption_key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->decryption_key_name().data(), static_cast(this->decryption_key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.EncryptRequestOptions.decryption_key_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 12, this->decryption_key_name(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.EncryptRequestOptions) +} + +::google::protobuf::uint8* EncryptRequestOptions::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.EncryptRequestOptions) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.EncryptRequestOptions.component_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->component_name(), target); + } + + // string key_name = 2[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.EncryptRequestOptions.key_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 2, this->key_name(), target); + } + + // string key_wrap_algorithm = 3; + if (this->key_wrap_algorithm().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_wrap_algorithm().data(), static_cast(this->key_wrap_algorithm().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.EncryptRequestOptions.key_wrap_algorithm"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->key_wrap_algorithm(), target); + } + + // string data_encryption_cipher = 10; + if (this->data_encryption_cipher().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->data_encryption_cipher().data(), static_cast(this->data_encryption_cipher().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.EncryptRequestOptions.data_encryption_cipher"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 10, this->data_encryption_cipher(), target); + } + + // bool omit_decryption_key_name = 11[json_name = "omitDecryptionKeyName"]; + if (this->omit_decryption_key_name() != 0) { + target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(11, this->omit_decryption_key_name(), target); + } + + // string decryption_key_name = 12[json_name = "decryptionKeyName"]; + if (this->decryption_key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->decryption_key_name().data(), static_cast(this->decryption_key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.EncryptRequestOptions.decryption_key_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 12, this->decryption_key_name(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.EncryptRequestOptions) + return target; +} + +size_t EncryptRequestOptions::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.EncryptRequestOptions) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->component_name()); + } + + // string key_name = 2[json_name = "keyName"]; + if (this->key_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->key_name()); + } + + // string key_wrap_algorithm = 3; + if (this->key_wrap_algorithm().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->key_wrap_algorithm()); + } + + // string data_encryption_cipher = 10; + if (this->data_encryption_cipher().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->data_encryption_cipher()); + } + + // string decryption_key_name = 12[json_name = "decryptionKeyName"]; + if (this->decryption_key_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->decryption_key_name()); + } + + // bool omit_decryption_key_name = 11[json_name = "omitDecryptionKeyName"]; + if (this->omit_decryption_key_name() != 0) { + total_size += 1 + 1; + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void EncryptRequestOptions::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.EncryptRequestOptions) + GOOGLE_DCHECK_NE(&from, this); + const EncryptRequestOptions* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.EncryptRequestOptions) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.EncryptRequestOptions) + MergeFrom(*source); + } +} + +void EncryptRequestOptions::MergeFrom(const EncryptRequestOptions& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.EncryptRequestOptions) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.component_name().size() > 0) { + + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + if (from.key_name().size() > 0) { + + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + if (from.key_wrap_algorithm().size() > 0) { + + key_wrap_algorithm_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_wrap_algorithm_); + } + if (from.data_encryption_cipher().size() > 0) { + + data_encryption_cipher_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.data_encryption_cipher_); + } + if (from.decryption_key_name().size() > 0) { + + decryption_key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.decryption_key_name_); + } + if (from.omit_decryption_key_name() != 0) { + set_omit_decryption_key_name(from.omit_decryption_key_name()); + } +} + +void EncryptRequestOptions::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.EncryptRequestOptions) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void EncryptRequestOptions::CopyFrom(const EncryptRequestOptions& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.EncryptRequestOptions) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool EncryptRequestOptions::IsInitialized() const { + return true; +} + +void EncryptRequestOptions::Swap(EncryptRequestOptions* other) { + if (other == this) return; + InternalSwap(other); +} +void EncryptRequestOptions::InternalSwap(EncryptRequestOptions* other) { + using std::swap; + component_name_.Swap(&other->component_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + key_name_.Swap(&other->key_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + key_wrap_algorithm_.Swap(&other->key_wrap_algorithm_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + data_encryption_cipher_.Swap(&other->data_encryption_cipher_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + decryption_key_name_.Swap(&other->decryption_key_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + swap(omit_decryption_key_name_, other->omit_decryption_key_name_); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata EncryptRequestOptions::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void EncryptResponse::InitAsDefaultInstance() { + ::dapr::proto::runtime::v1::_EncryptResponse_default_instance_._instance.get_mutable()->payload_ = const_cast< ::dapr::proto::common::v1::StreamPayload*>( + ::dapr::proto::common::v1::StreamPayload::internal_default_instance()); +} +void EncryptResponse::clear_payload() { + if (GetArenaNoVirtual() == NULL && payload_ != NULL) { + delete payload_; + } + payload_ = NULL; +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int EncryptResponse::kPayloadFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +EncryptResponse::EncryptResponse() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_EncryptResponse.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.EncryptResponse) +} +EncryptResponse::EncryptResponse(const EncryptResponse& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + if (from.has_payload()) { + payload_ = new ::dapr::proto::common::v1::StreamPayload(*from.payload_); + } else { + payload_ = NULL; + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.EncryptResponse) +} + +void EncryptResponse::SharedCtor() { + payload_ = NULL; +} + +EncryptResponse::~EncryptResponse() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.EncryptResponse) + SharedDtor(); +} + +void EncryptResponse::SharedDtor() { + if (this != internal_default_instance()) delete payload_; +} + +void EncryptResponse::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* EncryptResponse::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const EncryptResponse& EncryptResponse::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_EncryptResponse.base); + return *internal_default_instance(); +} + + +void EncryptResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.EncryptResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + if (GetArenaNoVirtual() == NULL && payload_ != NULL) { + delete payload_; + } + payload_ = NULL; + _internal_metadata_.Clear(); +} + +bool EncryptResponse::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.EncryptResponse) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // .dapr.proto.common.v1.StreamPayload payload = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_payload())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.EncryptResponse) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.EncryptResponse) + return false; +#undef DO_ +} + +void EncryptResponse::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.EncryptResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .dapr.proto.common.v1.StreamPayload payload = 1; + if (this->has_payload()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 1, this->_internal_payload(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.EncryptResponse) +} + +::google::protobuf::uint8* EncryptResponse::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.EncryptResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .dapr.proto.common.v1.StreamPayload payload = 1; + if (this->has_payload()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 1, this->_internal_payload(), deterministic, target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.EncryptResponse) + return target; +} + +size_t EncryptResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.EncryptResponse) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // .dapr.proto.common.v1.StreamPayload payload = 1; + if (this->has_payload()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *payload_); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void EncryptResponse::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.EncryptResponse) + GOOGLE_DCHECK_NE(&from, this); + const EncryptResponse* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.EncryptResponse) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.EncryptResponse) + MergeFrom(*source); + } +} + +void EncryptResponse::MergeFrom(const EncryptResponse& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.EncryptResponse) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.has_payload()) { + mutable_payload()->::dapr::proto::common::v1::StreamPayload::MergeFrom(from.payload()); + } +} + +void EncryptResponse::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.EncryptResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void EncryptResponse::CopyFrom(const EncryptResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.EncryptResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool EncryptResponse::IsInitialized() const { + return true; +} + +void EncryptResponse::Swap(EncryptResponse* other) { + if (other == this) return; + InternalSwap(other); +} +void EncryptResponse::InternalSwap(EncryptResponse* other) { + using std::swap; + swap(payload_, other->payload_); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata EncryptResponse::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void DecryptRequest::InitAsDefaultInstance() { + ::dapr::proto::runtime::v1::_DecryptRequest_default_instance_._instance.get_mutable()->options_ = const_cast< ::dapr::proto::runtime::v1::DecryptRequestOptions*>( + ::dapr::proto::runtime::v1::DecryptRequestOptions::internal_default_instance()); + ::dapr::proto::runtime::v1::_DecryptRequest_default_instance_._instance.get_mutable()->payload_ = const_cast< ::dapr::proto::common::v1::StreamPayload*>( + ::dapr::proto::common::v1::StreamPayload::internal_default_instance()); +} +void DecryptRequest::clear_payload() { + if (GetArenaNoVirtual() == NULL && payload_ != NULL) { + delete payload_; + } + payload_ = NULL; +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int DecryptRequest::kOptionsFieldNumber; +const int DecryptRequest::kPayloadFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +DecryptRequest::DecryptRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_DecryptRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.DecryptRequest) +} +DecryptRequest::DecryptRequest(const DecryptRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + if (from.has_options()) { + options_ = new ::dapr::proto::runtime::v1::DecryptRequestOptions(*from.options_); + } else { + options_ = NULL; + } + if (from.has_payload()) { + payload_ = new ::dapr::proto::common::v1::StreamPayload(*from.payload_); + } else { + payload_ = NULL; + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.DecryptRequest) +} + +void DecryptRequest::SharedCtor() { + ::memset(&options_, 0, static_cast( + reinterpret_cast(&payload_) - + reinterpret_cast(&options_)) + sizeof(payload_)); +} + +DecryptRequest::~DecryptRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.DecryptRequest) + SharedDtor(); +} + +void DecryptRequest::SharedDtor() { + if (this != internal_default_instance()) delete options_; + if (this != internal_default_instance()) delete payload_; +} + +void DecryptRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* DecryptRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const DecryptRequest& DecryptRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_DecryptRequest.base); + return *internal_default_instance(); +} + + +void DecryptRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.DecryptRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + if (GetArenaNoVirtual() == NULL && options_ != NULL) { + delete options_; + } + options_ = NULL; + if (GetArenaNoVirtual() == NULL && payload_ != NULL) { + delete payload_; + } + payload_ = NULL; + _internal_metadata_.Clear(); +} + +bool DecryptRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.DecryptRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // .dapr.proto.runtime.v1.DecryptRequestOptions options = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_options())); + } else { + goto handle_unusual; + } + break; + } + + // .dapr.proto.common.v1.StreamPayload payload = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_payload())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.DecryptRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.DecryptRequest) + return false; +#undef DO_ +} + +void DecryptRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.DecryptRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .dapr.proto.runtime.v1.DecryptRequestOptions options = 1; + if (this->has_options()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 1, this->_internal_options(), output); + } + + // .dapr.proto.common.v1.StreamPayload payload = 2; + if (this->has_payload()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 2, this->_internal_payload(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.DecryptRequest) +} + +::google::protobuf::uint8* DecryptRequest::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.DecryptRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .dapr.proto.runtime.v1.DecryptRequestOptions options = 1; + if (this->has_options()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 1, this->_internal_options(), deterministic, target); + } + + // .dapr.proto.common.v1.StreamPayload payload = 2; + if (this->has_payload()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 2, this->_internal_payload(), deterministic, target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.DecryptRequest) + return target; +} + +size_t DecryptRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.DecryptRequest) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // .dapr.proto.runtime.v1.DecryptRequestOptions options = 1; + if (this->has_options()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *options_); + } + + // .dapr.proto.common.v1.StreamPayload payload = 2; + if (this->has_payload()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *payload_); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void DecryptRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.DecryptRequest) + GOOGLE_DCHECK_NE(&from, this); + const DecryptRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.DecryptRequest) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.DecryptRequest) + MergeFrom(*source); + } +} + +void DecryptRequest::MergeFrom(const DecryptRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.DecryptRequest) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.has_options()) { + mutable_options()->::dapr::proto::runtime::v1::DecryptRequestOptions::MergeFrom(from.options()); + } + if (from.has_payload()) { + mutable_payload()->::dapr::proto::common::v1::StreamPayload::MergeFrom(from.payload()); + } +} + +void DecryptRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.DecryptRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void DecryptRequest::CopyFrom(const DecryptRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.DecryptRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool DecryptRequest::IsInitialized() const { + return true; +} + +void DecryptRequest::Swap(DecryptRequest* other) { + if (other == this) return; + InternalSwap(other); +} +void DecryptRequest::InternalSwap(DecryptRequest* other) { + using std::swap; + swap(options_, other->options_); + swap(payload_, other->payload_); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata DecryptRequest::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void DecryptRequestOptions::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int DecryptRequestOptions::kComponentNameFieldNumber; +const int DecryptRequestOptions::kKeyNameFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +DecryptRequestOptions::DecryptRequestOptions() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_DecryptRequestOptions.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.DecryptRequestOptions) +} +DecryptRequestOptions::DecryptRequestOptions(const DecryptRequestOptions& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.component_name().size() > 0) { + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.key_name().size() > 0) { + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.DecryptRequestOptions) +} + +void DecryptRequestOptions::SharedCtor() { + component_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +DecryptRequestOptions::~DecryptRequestOptions() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.DecryptRequestOptions) + SharedDtor(); +} + +void DecryptRequestOptions::SharedDtor() { + component_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void DecryptRequestOptions::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* DecryptRequestOptions::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const DecryptRequestOptions& DecryptRequestOptions::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_DecryptRequestOptions.base); + return *internal_default_instance(); +} + + +void DecryptRequestOptions::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.DecryptRequestOptions) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool DecryptRequestOptions::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.DecryptRequestOptions) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string component_name = 1[json_name = "componentName"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_component_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.DecryptRequestOptions.component_name")); + } else { + goto handle_unusual; + } + break; + } + + // string key_name = 12[json_name = "keyName"]; + case 12: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(98u /* 98 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_key_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.DecryptRequestOptions.key_name")); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.DecryptRequestOptions) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.DecryptRequestOptions) + return false; +#undef DO_ +} + +void DecryptRequestOptions::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.DecryptRequestOptions) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.DecryptRequestOptions.component_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->component_name(), output); + } + + // string key_name = 12[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.DecryptRequestOptions.key_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 12, this->key_name(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.DecryptRequestOptions) +} + +::google::protobuf::uint8* DecryptRequestOptions::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.DecryptRequestOptions) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->component_name().data(), static_cast(this->component_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.DecryptRequestOptions.component_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->component_name(), target); + } + + // string key_name = 12[json_name = "keyName"]; + if (this->key_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->key_name().data(), static_cast(this->key_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.DecryptRequestOptions.key_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 12, this->key_name(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.DecryptRequestOptions) + return target; +} + +size_t DecryptRequestOptions::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.DecryptRequestOptions) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // string component_name = 1[json_name = "componentName"]; + if (this->component_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->component_name()); + } + + // string key_name = 12[json_name = "keyName"]; + if (this->key_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->key_name()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void DecryptRequestOptions::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.DecryptRequestOptions) + GOOGLE_DCHECK_NE(&from, this); + const DecryptRequestOptions* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.DecryptRequestOptions) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.DecryptRequestOptions) + MergeFrom(*source); + } +} + +void DecryptRequestOptions::MergeFrom(const DecryptRequestOptions& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.DecryptRequestOptions) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.component_name().size() > 0) { + + component_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.component_name_); + } + if (from.key_name().size() > 0) { + + key_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.key_name_); + } +} + +void DecryptRequestOptions::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.DecryptRequestOptions) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void DecryptRequestOptions::CopyFrom(const DecryptRequestOptions& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.DecryptRequestOptions) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool DecryptRequestOptions::IsInitialized() const { + return true; +} + +void DecryptRequestOptions::Swap(DecryptRequestOptions* other) { + if (other == this) return; + InternalSwap(other); +} +void DecryptRequestOptions::InternalSwap(DecryptRequestOptions* other) { + using std::swap; + component_name_.Swap(&other->component_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + key_name_.Swap(&other->key_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata DecryptRequestOptions::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void DecryptResponse::InitAsDefaultInstance() { + ::dapr::proto::runtime::v1::_DecryptResponse_default_instance_._instance.get_mutable()->payload_ = const_cast< ::dapr::proto::common::v1::StreamPayload*>( + ::dapr::proto::common::v1::StreamPayload::internal_default_instance()); +} +void DecryptResponse::clear_payload() { + if (GetArenaNoVirtual() == NULL && payload_ != NULL) { + delete payload_; + } + payload_ = NULL; +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int DecryptResponse::kPayloadFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +DecryptResponse::DecryptResponse() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_DecryptResponse.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.DecryptResponse) +} +DecryptResponse::DecryptResponse(const DecryptResponse& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + if (from.has_payload()) { + payload_ = new ::dapr::proto::common::v1::StreamPayload(*from.payload_); + } else { + payload_ = NULL; + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.DecryptResponse) +} + +void DecryptResponse::SharedCtor() { + payload_ = NULL; +} + +DecryptResponse::~DecryptResponse() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.DecryptResponse) + SharedDtor(); +} + +void DecryptResponse::SharedDtor() { + if (this != internal_default_instance()) delete payload_; +} + +void DecryptResponse::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* DecryptResponse::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const DecryptResponse& DecryptResponse::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_DecryptResponse.base); + return *internal_default_instance(); +} + + +void DecryptResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.DecryptResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + if (GetArenaNoVirtual() == NULL && payload_ != NULL) { + delete payload_; + } + payload_ = NULL; + _internal_metadata_.Clear(); +} + +bool DecryptResponse::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.DecryptResponse) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // .dapr.proto.common.v1.StreamPayload payload = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_payload())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.DecryptResponse) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.DecryptResponse) + return false; +#undef DO_ +} + +void DecryptResponse::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.DecryptResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .dapr.proto.common.v1.StreamPayload payload = 1; + if (this->has_payload()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 1, this->_internal_payload(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.DecryptResponse) +} + +::google::protobuf::uint8* DecryptResponse::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.DecryptResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .dapr.proto.common.v1.StreamPayload payload = 1; + if (this->has_payload()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 1, this->_internal_payload(), deterministic, target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.DecryptResponse) + return target; +} + +size_t DecryptResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.DecryptResponse) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // .dapr.proto.common.v1.StreamPayload payload = 1; + if (this->has_payload()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *payload_); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void DecryptResponse::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.DecryptResponse) + GOOGLE_DCHECK_NE(&from, this); + const DecryptResponse* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.DecryptResponse) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.DecryptResponse) + MergeFrom(*source); + } +} + +void DecryptResponse::MergeFrom(const DecryptResponse& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.DecryptResponse) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.has_payload()) { + mutable_payload()->::dapr::proto::common::v1::StreamPayload::MergeFrom(from.payload()); + } +} + +void DecryptResponse::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.DecryptResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void DecryptResponse::CopyFrom(const DecryptResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.DecryptResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool DecryptResponse::IsInitialized() const { + return true; +} + +void DecryptResponse::Swap(DecryptResponse* other) { + if (other == this) return; + InternalSwap(other); +} +void DecryptResponse::InternalSwap(DecryptResponse* other) { + using std::swap; + swap(payload_, other->payload_); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata DecryptResponse::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void GetWorkflowRequest::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int GetWorkflowRequest::kInstanceIdFieldNumber; +const int GetWorkflowRequest::kWorkflowComponentFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +GetWorkflowRequest::GetWorkflowRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_GetWorkflowRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.GetWorkflowRequest) +} +GetWorkflowRequest::GetWorkflowRequest(const GetWorkflowRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.instance_id().size() > 0) { + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.workflow_component().size() > 0) { + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.GetWorkflowRequest) +} + +void GetWorkflowRequest::SharedCtor() { + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +GetWorkflowRequest::~GetWorkflowRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.GetWorkflowRequest) + SharedDtor(); +} + +void GetWorkflowRequest::SharedDtor() { + instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void GetWorkflowRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* GetWorkflowRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const GetWorkflowRequest& GetWorkflowRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_GetWorkflowRequest.base); + return *internal_default_instance(); +} + + +void GetWorkflowRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.GetWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool GetWorkflowRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.GetWorkflowRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string instance_id = 1[json_name = "instanceID"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_instance_id())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.GetWorkflowRequest.instance_id")); + } else { + goto handle_unusual; + } + break; + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_workflow_component())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component")); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.GetWorkflowRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.GetWorkflowRequest) + return false; +#undef DO_ +} + +void GetWorkflowRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.GetWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowRequest.instance_id"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->instance_id(), output); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 2, this->workflow_component(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.GetWorkflowRequest) +} + +::google::protobuf::uint8* GetWorkflowRequest::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.GetWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowRequest.instance_id"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->instance_id(), target); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 2, this->workflow_component(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.GetWorkflowRequest) + return target; +} + +size_t GetWorkflowRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.GetWorkflowRequest) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->instance_id()); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->workflow_component()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void GetWorkflowRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.GetWorkflowRequest) + GOOGLE_DCHECK_NE(&from, this); + const GetWorkflowRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.GetWorkflowRequest) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.GetWorkflowRequest) + MergeFrom(*source); + } +} + +void GetWorkflowRequest::MergeFrom(const GetWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.GetWorkflowRequest) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.instance_id().size() > 0) { + + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + if (from.workflow_component().size() > 0) { + + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + } +} + +void GetWorkflowRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.GetWorkflowRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void GetWorkflowRequest::CopyFrom(const GetWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.GetWorkflowRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool GetWorkflowRequest::IsInitialized() const { + return true; +} + +void GetWorkflowRequest::Swap(GetWorkflowRequest* other) { + if (other == this) return; + InternalSwap(other); +} +void GetWorkflowRequest::InternalSwap(GetWorkflowRequest* other) { + using std::swap; + instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + workflow_component_.Swap(&other->workflow_component_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata GetWorkflowRequest::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +GetWorkflowResponse_PropertiesEntry_DoNotUse::GetWorkflowResponse_PropertiesEntry_DoNotUse() {} +GetWorkflowResponse_PropertiesEntry_DoNotUse::GetWorkflowResponse_PropertiesEntry_DoNotUse(::google::protobuf::Arena* arena) : SuperType(arena) {} +void GetWorkflowResponse_PropertiesEntry_DoNotUse::MergeFrom(const GetWorkflowResponse_PropertiesEntry_DoNotUse& other) { + MergeFromInternal(other); +} +::google::protobuf::Metadata GetWorkflowResponse_PropertiesEntry_DoNotUse::GetMetadata() const { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[101]; +} +void GetWorkflowResponse_PropertiesEntry_DoNotUse::MergeFrom( + const ::google::protobuf::Message& other) { + ::google::protobuf::Message::MergeFrom(other); +} + + +// =================================================================== + +void GetWorkflowResponse::InitAsDefaultInstance() { + ::dapr::proto::runtime::v1::_GetWorkflowResponse_default_instance_._instance.get_mutable()->created_at_ = const_cast< ::google::protobuf::Timestamp*>( + ::google::protobuf::Timestamp::internal_default_instance()); + ::dapr::proto::runtime::v1::_GetWorkflowResponse_default_instance_._instance.get_mutable()->last_updated_at_ = const_cast< ::google::protobuf::Timestamp*>( + ::google::protobuf::Timestamp::internal_default_instance()); +} +void GetWorkflowResponse::clear_created_at() { + if (GetArenaNoVirtual() == NULL && created_at_ != NULL) { + delete created_at_; + } + created_at_ = NULL; +} +void GetWorkflowResponse::clear_last_updated_at() { + if (GetArenaNoVirtual() == NULL && last_updated_at_ != NULL) { + delete last_updated_at_; + } + last_updated_at_ = NULL; +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int GetWorkflowResponse::kInstanceIdFieldNumber; +const int GetWorkflowResponse::kWorkflowNameFieldNumber; +const int GetWorkflowResponse::kCreatedAtFieldNumber; +const int GetWorkflowResponse::kLastUpdatedAtFieldNumber; +const int GetWorkflowResponse::kRuntimeStatusFieldNumber; +const int GetWorkflowResponse::kPropertiesFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +GetWorkflowResponse::GetWorkflowResponse() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_GetWorkflowResponse.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.GetWorkflowResponse) +} +GetWorkflowResponse::GetWorkflowResponse(const GetWorkflowResponse& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + properties_.MergeFrom(from.properties_); + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.instance_id().size() > 0) { + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + workflow_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.workflow_name().size() > 0) { + workflow_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_name_); + } + runtime_status_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.runtime_status().size() > 0) { + runtime_status_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.runtime_status_); + } + if (from.has_created_at()) { + created_at_ = new ::google::protobuf::Timestamp(*from.created_at_); + } else { + created_at_ = NULL; + } + if (from.has_last_updated_at()) { + last_updated_at_ = new ::google::protobuf::Timestamp(*from.last_updated_at_); + } else { + last_updated_at_ = NULL; + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.GetWorkflowResponse) +} + +void GetWorkflowResponse::SharedCtor() { + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + runtime_status_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + ::memset(&created_at_, 0, static_cast( + reinterpret_cast(&last_updated_at_) - + reinterpret_cast(&created_at_)) + sizeof(last_updated_at_)); +} + +GetWorkflowResponse::~GetWorkflowResponse() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.GetWorkflowResponse) + SharedDtor(); +} + +void GetWorkflowResponse::SharedDtor() { + instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + runtime_status_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (this != internal_default_instance()) delete created_at_; + if (this != internal_default_instance()) delete last_updated_at_; +} + +void GetWorkflowResponse::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* GetWorkflowResponse::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const GetWorkflowResponse& GetWorkflowResponse::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_GetWorkflowResponse.base); + return *internal_default_instance(); +} + + +void GetWorkflowResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.GetWorkflowResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + properties_.Clear(); + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + runtime_status_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (GetArenaNoVirtual() == NULL && created_at_ != NULL) { + delete created_at_; + } + created_at_ = NULL; + if (GetArenaNoVirtual() == NULL && last_updated_at_ != NULL) { + delete last_updated_at_; + } + last_updated_at_ = NULL; + _internal_metadata_.Clear(); +} + +bool GetWorkflowResponse::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.GetWorkflowResponse) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string instance_id = 1[json_name = "instanceID"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_instance_id())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.GetWorkflowResponse.instance_id")); + } else { + goto handle_unusual; + } + break; + } + + // string workflow_name = 2[json_name = "workflowName"]; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_workflow_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_name().data(), static_cast(this->workflow_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.GetWorkflowResponse.workflow_name")); + } else { + goto handle_unusual; + } + break; + } + + // .google.protobuf.Timestamp created_at = 3[json_name = "createdAt"]; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_created_at())); + } else { + goto handle_unusual; + } + break; + } + + // .google.protobuf.Timestamp last_updated_at = 4[json_name = "lastUpdatedAt"]; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_last_updated_at())); + } else { + goto handle_unusual; + } + break; + } + + // string runtime_status = 5[json_name = "runtimeStatus"]; + case 5: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(42u /* 42 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_runtime_status())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->runtime_status().data(), static_cast(this->runtime_status().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.GetWorkflowResponse.runtime_status")); + } else { + goto handle_unusual; + } + break; + } + + // map properties = 6; + case 6: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(50u /* 50 & 0xFF */)) { + GetWorkflowResponse_PropertiesEntry_DoNotUse::Parser< ::google::protobuf::internal::MapField< + GetWorkflowResponse_PropertiesEntry_DoNotUse, + ::std::string, ::std::string, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + 0 >, + ::google::protobuf::Map< ::std::string, ::std::string > > parser(&properties_); + DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( + input, &parser)); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + parser.key().data(), static_cast(parser.key().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.GetWorkflowResponse.PropertiesEntry.key")); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + parser.value().data(), static_cast(parser.value().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.GetWorkflowResponse.PropertiesEntry.value")); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.GetWorkflowResponse) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.GetWorkflowResponse) + return false; +#undef DO_ +} + +void GetWorkflowResponse::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.GetWorkflowResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowResponse.instance_id"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->instance_id(), output); + } + + // string workflow_name = 2[json_name = "workflowName"]; + if (this->workflow_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_name().data(), static_cast(this->workflow_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowResponse.workflow_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 2, this->workflow_name(), output); + } + + // .google.protobuf.Timestamp created_at = 3[json_name = "createdAt"]; + if (this->has_created_at()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 3, this->_internal_created_at(), output); + } + + // .google.protobuf.Timestamp last_updated_at = 4[json_name = "lastUpdatedAt"]; + if (this->has_last_updated_at()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 4, this->_internal_last_updated_at(), output); + } + + // string runtime_status = 5[json_name = "runtimeStatus"]; + if (this->runtime_status().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->runtime_status().data(), static_cast(this->runtime_status().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowResponse.runtime_status"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 5, this->runtime_status(), output); + } + + // map properties = 6; + if (!this->properties().empty()) { + typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer + ConstPtr; + typedef ConstPtr SortItem; + typedef ::google::protobuf::internal::CompareByDerefFirst Less; + struct Utf8Check { + static void Check(ConstPtr p) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->first.data(), static_cast(p->first.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowResponse.PropertiesEntry.key"); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->second.data(), static_cast(p->second.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowResponse.PropertiesEntry.value"); + } + }; + + if (output->IsSerializationDeterministic() && + this->properties().size() > 1) { + ::std::unique_ptr items( + new SortItem[this->properties().size()]); + typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; + size_type n = 0; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->properties().begin(); + it != this->properties().end(); ++it, ++n) { + items[static_cast(n)] = SortItem(&*it); + } + ::std::sort(&items[0], &items[static_cast(n)], Less()); + ::std::unique_ptr entry; + for (size_type i = 0; i < n; i++) { + entry.reset(properties_.NewEntryWrapper( + items[static_cast(i)]->first, items[static_cast(i)]->second)); + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 6, *entry, output); + Utf8Check::Check(items[static_cast(i)]); + } + } else { + ::std::unique_ptr entry; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->properties().begin(); + it != this->properties().end(); ++it) { + entry.reset(properties_.NewEntryWrapper( + it->first, it->second)); + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 6, *entry, output); + Utf8Check::Check(&*it); + } + } + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.GetWorkflowResponse) +} + +::google::protobuf::uint8* GetWorkflowResponse::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.GetWorkflowResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowResponse.instance_id"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->instance_id(), target); + } + + // string workflow_name = 2[json_name = "workflowName"]; + if (this->workflow_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_name().data(), static_cast(this->workflow_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowResponse.workflow_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 2, this->workflow_name(), target); + } + + // .google.protobuf.Timestamp created_at = 3[json_name = "createdAt"]; + if (this->has_created_at()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 3, this->_internal_created_at(), deterministic, target); + } + + // .google.protobuf.Timestamp last_updated_at = 4[json_name = "lastUpdatedAt"]; + if (this->has_last_updated_at()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 4, this->_internal_last_updated_at(), deterministic, target); + } + + // string runtime_status = 5[json_name = "runtimeStatus"]; + if (this->runtime_status().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->runtime_status().data(), static_cast(this->runtime_status().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowResponse.runtime_status"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 5, this->runtime_status(), target); + } + + // map properties = 6; + if (!this->properties().empty()) { + typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer + ConstPtr; + typedef ConstPtr SortItem; + typedef ::google::protobuf::internal::CompareByDerefFirst Less; + struct Utf8Check { + static void Check(ConstPtr p) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->first.data(), static_cast(p->first.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowResponse.PropertiesEntry.key"); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->second.data(), static_cast(p->second.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.GetWorkflowResponse.PropertiesEntry.value"); + } + }; + + if (deterministic && + this->properties().size() > 1) { + ::std::unique_ptr items( + new SortItem[this->properties().size()]); + typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; + size_type n = 0; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->properties().begin(); + it != this->properties().end(); ++it, ++n) { + items[static_cast(n)] = SortItem(&*it); + } + ::std::sort(&items[0], &items[static_cast(n)], Less()); + ::std::unique_ptr entry; + for (size_type i = 0; i < n; i++) { + entry.reset(properties_.NewEntryWrapper( + items[static_cast(i)]->first, items[static_cast(i)]->second)); + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageNoVirtualToArray( + 6, *entry, deterministic, target); +; + Utf8Check::Check(items[static_cast(i)]); + } + } else { + ::std::unique_ptr entry; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->properties().begin(); + it != this->properties().end(); ++it) { + entry.reset(properties_.NewEntryWrapper( + it->first, it->second)); + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageNoVirtualToArray( + 6, *entry, deterministic, target); +; + Utf8Check::Check(&*it); + } + } + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.GetWorkflowResponse) + return target; +} + +size_t GetWorkflowResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.GetWorkflowResponse) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // map properties = 6; + total_size += 1 * + ::google::protobuf::internal::FromIntSize(this->properties_size()); + { + ::std::unique_ptr entry; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->properties().begin(); + it != this->properties().end(); ++it) { + entry.reset(properties_.NewEntryWrapper(it->first, it->second)); + total_size += ::google::protobuf::internal::WireFormatLite:: + MessageSizeNoVirtual(*entry); + } + } + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->instance_id()); + } + + // string workflow_name = 2[json_name = "workflowName"]; + if (this->workflow_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->workflow_name()); + } + + // string runtime_status = 5[json_name = "runtimeStatus"]; + if (this->runtime_status().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->runtime_status()); + } + + // .google.protobuf.Timestamp created_at = 3[json_name = "createdAt"]; + if (this->has_created_at()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *created_at_); + } + + // .google.protobuf.Timestamp last_updated_at = 4[json_name = "lastUpdatedAt"]; + if (this->has_last_updated_at()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *last_updated_at_); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void GetWorkflowResponse::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.GetWorkflowResponse) + GOOGLE_DCHECK_NE(&from, this); + const GetWorkflowResponse* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.GetWorkflowResponse) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.GetWorkflowResponse) + MergeFrom(*source); + } +} + +void GetWorkflowResponse::MergeFrom(const GetWorkflowResponse& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.GetWorkflowResponse) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + properties_.MergeFrom(from.properties_); + if (from.instance_id().size() > 0) { + + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + if (from.workflow_name().size() > 0) { + + workflow_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_name_); + } + if (from.runtime_status().size() > 0) { + + runtime_status_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.runtime_status_); + } + if (from.has_created_at()) { + mutable_created_at()->::google::protobuf::Timestamp::MergeFrom(from.created_at()); + } + if (from.has_last_updated_at()) { + mutable_last_updated_at()->::google::protobuf::Timestamp::MergeFrom(from.last_updated_at()); + } +} + +void GetWorkflowResponse::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.GetWorkflowResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void GetWorkflowResponse::CopyFrom(const GetWorkflowResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.GetWorkflowResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool GetWorkflowResponse::IsInitialized() const { + return true; +} + +void GetWorkflowResponse::Swap(GetWorkflowResponse* other) { + if (other == this) return; + InternalSwap(other); +} +void GetWorkflowResponse::InternalSwap(GetWorkflowResponse* other) { + using std::swap; + properties_.Swap(&other->properties_); + instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + workflow_name_.Swap(&other->workflow_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + runtime_status_.Swap(&other->runtime_status_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + swap(created_at_, other->created_at_); + swap(last_updated_at_, other->last_updated_at_); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata GetWorkflowResponse::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +StartWorkflowRequest_OptionsEntry_DoNotUse::StartWorkflowRequest_OptionsEntry_DoNotUse() {} +StartWorkflowRequest_OptionsEntry_DoNotUse::StartWorkflowRequest_OptionsEntry_DoNotUse(::google::protobuf::Arena* arena) : SuperType(arena) {} +void StartWorkflowRequest_OptionsEntry_DoNotUse::MergeFrom(const StartWorkflowRequest_OptionsEntry_DoNotUse& other) { + MergeFromInternal(other); +} +::google::protobuf::Metadata StartWorkflowRequest_OptionsEntry_DoNotUse::GetMetadata() const { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[103]; +} +void StartWorkflowRequest_OptionsEntry_DoNotUse::MergeFrom( + const ::google::protobuf::Message& other) { + ::google::protobuf::Message::MergeFrom(other); +} + + +// =================================================================== + +void StartWorkflowRequest::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int StartWorkflowRequest::kInstanceIdFieldNumber; +const int StartWorkflowRequest::kWorkflowComponentFieldNumber; +const int StartWorkflowRequest::kWorkflowNameFieldNumber; +const int StartWorkflowRequest::kOptionsFieldNumber; +const int StartWorkflowRequest::kInputFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +StartWorkflowRequest::StartWorkflowRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_StartWorkflowRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.StartWorkflowRequest) +} +StartWorkflowRequest::StartWorkflowRequest(const StartWorkflowRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + options_.MergeFrom(from.options_); + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.instance_id().size() > 0) { + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.workflow_component().size() > 0) { + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + } + workflow_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.workflow_name().size() > 0) { + workflow_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_name_); + } + input_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.input().size() > 0) { + input_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.input_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.StartWorkflowRequest) +} + +void StartWorkflowRequest::SharedCtor() { + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + input_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +StartWorkflowRequest::~StartWorkflowRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.StartWorkflowRequest) + SharedDtor(); +} + +void StartWorkflowRequest::SharedDtor() { + instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + input_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void StartWorkflowRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* StartWorkflowRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const StartWorkflowRequest& StartWorkflowRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_StartWorkflowRequest.base); + return *internal_default_instance(); +} + + +void StartWorkflowRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.StartWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + options_.Clear(); + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + input_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool StartWorkflowRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.StartWorkflowRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string instance_id = 1[json_name = "instanceID"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_instance_id())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.StartWorkflowRequest.instance_id")); + } else { + goto handle_unusual; + } + break; + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_workflow_component())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component")); + } else { + goto handle_unusual; + } + break; + } + + // string workflow_name = 3[json_name = "workflowName"]; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_workflow_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_name().data(), static_cast(this->workflow_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name")); + } else { + goto handle_unusual; + } + break; + } + + // map options = 4; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { + StartWorkflowRequest_OptionsEntry_DoNotUse::Parser< ::google::protobuf::internal::MapField< + StartWorkflowRequest_OptionsEntry_DoNotUse, + ::std::string, ::std::string, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + 0 >, + ::google::protobuf::Map< ::std::string, ::std::string > > parser(&options_); + DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( + input, &parser)); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + parser.key().data(), static_cast(parser.key().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.key")); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + parser.value().data(), static_cast(parser.value().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.value")); + } else { + goto handle_unusual; + } + break; + } + + // bytes input = 5; + case 5: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(42u /* 42 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_input())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.StartWorkflowRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.StartWorkflowRequest) + return false; +#undef DO_ +} + +void StartWorkflowRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.StartWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowRequest.instance_id"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->instance_id(), output); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 2, this->workflow_component(), output); + } + + // string workflow_name = 3[json_name = "workflowName"]; + if (this->workflow_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_name().data(), static_cast(this->workflow_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->workflow_name(), output); + } + + // map options = 4; + if (!this->options().empty()) { + typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer + ConstPtr; + typedef ConstPtr SortItem; + typedef ::google::protobuf::internal::CompareByDerefFirst Less; + struct Utf8Check { + static void Check(ConstPtr p) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->first.data(), static_cast(p->first.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.key"); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->second.data(), static_cast(p->second.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.value"); + } + }; + + if (output->IsSerializationDeterministic() && + this->options().size() > 1) { + ::std::unique_ptr items( + new SortItem[this->options().size()]); + typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; + size_type n = 0; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->options().begin(); + it != this->options().end(); ++it, ++n) { + items[static_cast(n)] = SortItem(&*it); + } + ::std::sort(&items[0], &items[static_cast(n)], Less()); + ::std::unique_ptr entry; + for (size_type i = 0; i < n; i++) { + entry.reset(options_.NewEntryWrapper( + items[static_cast(i)]->first, items[static_cast(i)]->second)); + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 4, *entry, output); + Utf8Check::Check(items[static_cast(i)]); + } + } else { + ::std::unique_ptr entry; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->options().begin(); + it != this->options().end(); ++it) { + entry.reset(options_.NewEntryWrapper( + it->first, it->second)); + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 4, *entry, output); + Utf8Check::Check(&*it); + } + } + } + + // bytes input = 5; + if (this->input().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 5, this->input(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.StartWorkflowRequest) +} + +::google::protobuf::uint8* StartWorkflowRequest::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.StartWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowRequest.instance_id"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->instance_id(), target); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 2, this->workflow_component(), target); + } + + // string workflow_name = 3[json_name = "workflowName"]; + if (this->workflow_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_name().data(), static_cast(this->workflow_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->workflow_name(), target); + } + + // map options = 4; + if (!this->options().empty()) { + typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer + ConstPtr; + typedef ConstPtr SortItem; + typedef ::google::protobuf::internal::CompareByDerefFirst Less; + struct Utf8Check { + static void Check(ConstPtr p) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->first.data(), static_cast(p->first.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.key"); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + p->second.data(), static_cast(p->second.length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.value"); + } + }; + + if (deterministic && + this->options().size() > 1) { + ::std::unique_ptr items( + new SortItem[this->options().size()]); + typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; + size_type n = 0; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->options().begin(); + it != this->options().end(); ++it, ++n) { + items[static_cast(n)] = SortItem(&*it); + } + ::std::sort(&items[0], &items[static_cast(n)], Less()); + ::std::unique_ptr entry; + for (size_type i = 0; i < n; i++) { + entry.reset(options_.NewEntryWrapper( + items[static_cast(i)]->first, items[static_cast(i)]->second)); + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageNoVirtualToArray( + 4, *entry, deterministic, target); +; + Utf8Check::Check(items[static_cast(i)]); + } + } else { + ::std::unique_ptr entry; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->options().begin(); + it != this->options().end(); ++it) { + entry.reset(options_.NewEntryWrapper( + it->first, it->second)); + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageNoVirtualToArray( + 4, *entry, deterministic, target); +; + Utf8Check::Check(&*it); + } + } + } + + // bytes input = 5; + if (this->input().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 5, this->input(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.StartWorkflowRequest) + return target; +} + +size_t StartWorkflowRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.StartWorkflowRequest) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // map options = 4; + total_size += 1 * + ::google::protobuf::internal::FromIntSize(this->options_size()); + { + ::std::unique_ptr entry; + for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator + it = this->options().begin(); + it != this->options().end(); ++it) { + entry.reset(options_.NewEntryWrapper(it->first, it->second)); + total_size += ::google::protobuf::internal::WireFormatLite:: + MessageSizeNoVirtual(*entry); + } + } + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->instance_id()); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->workflow_component()); + } + + // string workflow_name = 3[json_name = "workflowName"]; if (this->workflow_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->workflow_name()); + } + + // bytes input = 5; + if (this->input().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->input()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void StartWorkflowRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.StartWorkflowRequest) + GOOGLE_DCHECK_NE(&from, this); + const StartWorkflowRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.StartWorkflowRequest) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.StartWorkflowRequest) + MergeFrom(*source); + } +} + +void StartWorkflowRequest::MergeFrom(const StartWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.StartWorkflowRequest) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + options_.MergeFrom(from.options_); + if (from.instance_id().size() > 0) { + + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + if (from.workflow_component().size() > 0) { + + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + } + if (from.workflow_name().size() > 0) { + + workflow_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_name_); + } + if (from.input().size() > 0) { + + input_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.input_); + } +} + +void StartWorkflowRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.StartWorkflowRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void StartWorkflowRequest::CopyFrom(const StartWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.StartWorkflowRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool StartWorkflowRequest::IsInitialized() const { + return true; +} + +void StartWorkflowRequest::Swap(StartWorkflowRequest* other) { + if (other == this) return; + InternalSwap(other); +} +void StartWorkflowRequest::InternalSwap(StartWorkflowRequest* other) { + using std::swap; + options_.Swap(&other->options_); + instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + workflow_component_.Swap(&other->workflow_component_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + workflow_name_.Swap(&other->workflow_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + input_.Swap(&other->input_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata StartWorkflowRequest::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void StartWorkflowResponse::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int StartWorkflowResponse::kInstanceIdFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +StartWorkflowResponse::StartWorkflowResponse() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_StartWorkflowResponse.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.StartWorkflowResponse) +} +StartWorkflowResponse::StartWorkflowResponse(const StartWorkflowResponse& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.instance_id().size() > 0) { + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.StartWorkflowResponse) +} + +void StartWorkflowResponse::SharedCtor() { + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +StartWorkflowResponse::~StartWorkflowResponse() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.StartWorkflowResponse) + SharedDtor(); +} + +void StartWorkflowResponse::SharedDtor() { + instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void StartWorkflowResponse::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* StartWorkflowResponse::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const StartWorkflowResponse& StartWorkflowResponse::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_StartWorkflowResponse.base); + return *internal_default_instance(); +} + + +void StartWorkflowResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.StartWorkflowResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool StartWorkflowResponse::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.StartWorkflowResponse) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string instance_id = 1[json_name = "instanceID"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_instance_id())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.StartWorkflowResponse.instance_id")); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.StartWorkflowResponse) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.StartWorkflowResponse) + return false; +#undef DO_ +} + +void StartWorkflowResponse::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.StartWorkflowResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowResponse.instance_id"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->instance_id(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.StartWorkflowResponse) +} + +::google::protobuf::uint8* StartWorkflowResponse::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.StartWorkflowResponse) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.StartWorkflowResponse.instance_id"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->instance_id(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.StartWorkflowResponse) + return target; +} + +size_t StartWorkflowResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.StartWorkflowResponse) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->instance_id()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void StartWorkflowResponse::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.StartWorkflowResponse) + GOOGLE_DCHECK_NE(&from, this); + const StartWorkflowResponse* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.StartWorkflowResponse) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.StartWorkflowResponse) + MergeFrom(*source); + } +} + +void StartWorkflowResponse::MergeFrom(const StartWorkflowResponse& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.StartWorkflowResponse) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.instance_id().size() > 0) { + + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } +} + +void StartWorkflowResponse::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.StartWorkflowResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void StartWorkflowResponse::CopyFrom(const StartWorkflowResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.StartWorkflowResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool StartWorkflowResponse::IsInitialized() const { + return true; +} + +void StartWorkflowResponse::Swap(StartWorkflowResponse* other) { + if (other == this) return; + InternalSwap(other); +} +void StartWorkflowResponse::InternalSwap(StartWorkflowResponse* other) { + using std::swap; + instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata StartWorkflowResponse::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void TerminateWorkflowRequest::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int TerminateWorkflowRequest::kInstanceIdFieldNumber; +const int TerminateWorkflowRequest::kWorkflowComponentFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +TerminateWorkflowRequest::TerminateWorkflowRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_TerminateWorkflowRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.TerminateWorkflowRequest) +} +TerminateWorkflowRequest::TerminateWorkflowRequest(const TerminateWorkflowRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.instance_id().size() > 0) { + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.workflow_component().size() > 0) { + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.TerminateWorkflowRequest) +} + +void TerminateWorkflowRequest::SharedCtor() { + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +TerminateWorkflowRequest::~TerminateWorkflowRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.TerminateWorkflowRequest) + SharedDtor(); +} + +void TerminateWorkflowRequest::SharedDtor() { + instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void TerminateWorkflowRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* TerminateWorkflowRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const TerminateWorkflowRequest& TerminateWorkflowRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_TerminateWorkflowRequest.base); + return *internal_default_instance(); +} + + +void TerminateWorkflowRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool TerminateWorkflowRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string instance_id = 1[json_name = "instanceID"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_instance_id())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id")); + } else { + goto handle_unusual; + } + break; + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_workflow_component())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component")); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.TerminateWorkflowRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.TerminateWorkflowRequest) + return false; +#undef DO_ +} + +void TerminateWorkflowRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->instance_id(), output); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 2, this->workflow_component(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.TerminateWorkflowRequest) +} + +::google::protobuf::uint8* TerminateWorkflowRequest::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->instance_id(), target); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 2, this->workflow_component(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.TerminateWorkflowRequest) + return target; +} + +size_t TerminateWorkflowRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->instance_id()); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->workflow_component()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void TerminateWorkflowRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + GOOGLE_DCHECK_NE(&from, this); + const TerminateWorkflowRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.TerminateWorkflowRequest) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.TerminateWorkflowRequest) + MergeFrom(*source); + } +} + +void TerminateWorkflowRequest::MergeFrom(const TerminateWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.instance_id().size() > 0) { + + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + if (from.workflow_component().size() > 0) { + + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + } +} + +void TerminateWorkflowRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void TerminateWorkflowRequest::CopyFrom(const TerminateWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool TerminateWorkflowRequest::IsInitialized() const { + return true; +} + +void TerminateWorkflowRequest::Swap(TerminateWorkflowRequest* other) { + if (other == this) return; + InternalSwap(other); +} +void TerminateWorkflowRequest::InternalSwap(TerminateWorkflowRequest* other) { + using std::swap; + instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + workflow_component_.Swap(&other->workflow_component_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata TerminateWorkflowRequest::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void PauseWorkflowRequest::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int PauseWorkflowRequest::kInstanceIdFieldNumber; +const int PauseWorkflowRequest::kWorkflowComponentFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +PauseWorkflowRequest::PauseWorkflowRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_PauseWorkflowRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.PauseWorkflowRequest) +} +PauseWorkflowRequest::PauseWorkflowRequest(const PauseWorkflowRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.instance_id().size() > 0) { + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.workflow_component().size() > 0) { + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.PauseWorkflowRequest) +} + +void PauseWorkflowRequest::SharedCtor() { + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +PauseWorkflowRequest::~PauseWorkflowRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.PauseWorkflowRequest) + SharedDtor(); +} + +void PauseWorkflowRequest::SharedDtor() { + instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void PauseWorkflowRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* PauseWorkflowRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} + +const PauseWorkflowRequest& PauseWorkflowRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_PauseWorkflowRequest.base); + return *internal_default_instance(); +} + + +void PauseWorkflowRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.PauseWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool PauseWorkflowRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.PauseWorkflowRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string instance_id = 1[json_name = "instanceID"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_instance_id())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.PauseWorkflowRequest.instance_id")); + } else { + goto handle_unusual; + } + break; + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_workflow_component())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.PauseWorkflowRequest.workflow_component")); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.PauseWorkflowRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.PauseWorkflowRequest) + return false; +#undef DO_ +} + +void PauseWorkflowRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.PauseWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->workflow_name().data(), static_cast(this->workflow_name().length()), + this->instance_id().data(), static_cast(this->instance_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name"); + "dapr.proto.runtime.v1.PauseWorkflowRequest.instance_id"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 3, this->workflow_name(), output); + 1, this->instance_id(), output); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.PauseWorkflowRequest.workflow_component"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 2, this->workflow_component(), output); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); + } + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.PauseWorkflowRequest) +} + +::google::protobuf::uint8* PauseWorkflowRequest::InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const { + (void)deterministic; // Unused + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.PauseWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.PauseWorkflowRequest.instance_id"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->instance_id(), target); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.PauseWorkflowRequest.workflow_component"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 2, this->workflow_component(), target); + } + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); + } + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.PauseWorkflowRequest) + return target; +} + +size_t PauseWorkflowRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.PauseWorkflowRequest) + size_t total_size = 0; + + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); + } + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->instance_id()); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->workflow_component()); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void PauseWorkflowRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.PauseWorkflowRequest) + GOOGLE_DCHECK_NE(&from, this); + const PauseWorkflowRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( + &from); + if (source == NULL) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.PauseWorkflowRequest) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.PauseWorkflowRequest) + MergeFrom(*source); + } +} + +void PauseWorkflowRequest::MergeFrom(const PauseWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.PauseWorkflowRequest) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.instance_id().size() > 0) { + + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + if (from.workflow_component().size() > 0) { + + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + } +} + +void PauseWorkflowRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.PauseWorkflowRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void PauseWorkflowRequest::CopyFrom(const PauseWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.PauseWorkflowRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool PauseWorkflowRequest::IsInitialized() const { + return true; +} + +void PauseWorkflowRequest::Swap(PauseWorkflowRequest* other) { + if (other == this) return; + InternalSwap(other); +} +void PauseWorkflowRequest::InternalSwap(PauseWorkflowRequest* other) { + using std::swap; + instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + workflow_component_.Swap(&other->workflow_component_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + _internal_metadata_.Swap(&other->_internal_metadata_); +} + +::google::protobuf::Metadata PauseWorkflowRequest::GetMetadata() const { + protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; +} + + +// =================================================================== + +void ResumeWorkflowRequest::InitAsDefaultInstance() { +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int ResumeWorkflowRequest::kInstanceIdFieldNumber; +const int ResumeWorkflowRequest::kWorkflowComponentFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +ResumeWorkflowRequest::ResumeWorkflowRequest() + : ::google::protobuf::Message(), _internal_metadata_(NULL) { + ::google::protobuf::internal::InitSCC( + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_ResumeWorkflowRequest.base); + SharedCtor(); + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.ResumeWorkflowRequest) +} +ResumeWorkflowRequest::ResumeWorkflowRequest(const ResumeWorkflowRequest& from) + : ::google::protobuf::Message(), + _internal_metadata_(NULL) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.instance_id().size() > 0) { + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.workflow_component().size() > 0) { + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.ResumeWorkflowRequest) +} + +void ResumeWorkflowRequest::SharedCtor() { + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +ResumeWorkflowRequest::~ResumeWorkflowRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.ResumeWorkflowRequest) + SharedDtor(); +} + +void ResumeWorkflowRequest::SharedDtor() { + instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} + +void ResumeWorkflowRequest::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const ::google::protobuf::Descriptor* ResumeWorkflowRequest::descriptor() { + ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); + return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; +} - // map options = 4; - if (!this->options().empty()) { - typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer - ConstPtr; - typedef ConstPtr SortItem; - typedef ::google::protobuf::internal::CompareByDerefFirst Less; - struct Utf8Check { - static void Check(ConstPtr p) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - p->first.data(), static_cast(p->first.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.key"); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - p->second.data(), static_cast(p->second.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.value"); - } - }; +const ResumeWorkflowRequest& ResumeWorkflowRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_ResumeWorkflowRequest.base); + return *internal_default_instance(); +} - if (output->IsSerializationDeterministic() && - this->options().size() > 1) { - ::std::unique_ptr items( - new SortItem[this->options().size()]); - typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; - size_type n = 0; - for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator - it = this->options().begin(); - it != this->options().end(); ++it, ++n) { - items[static_cast(n)] = SortItem(&*it); + +void ResumeWorkflowRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.ResumeWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + _internal_metadata_.Clear(); +} + +bool ResumeWorkflowRequest::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.ResumeWorkflowRequest) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string instance_id = 1[json_name = "instanceID"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_instance_id())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.ResumeWorkflowRequest.instance_id")); + } else { + goto handle_unusual; + } + break; } - ::std::sort(&items[0], &items[static_cast(n)], Less()); - ::std::unique_ptr entry; - for (size_type i = 0; i < n; i++) { - entry.reset(options_.NewEntryWrapper( - items[static_cast(i)]->first, items[static_cast(i)]->second)); - ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( - 4, *entry, output); - Utf8Check::Check(items[static_cast(i)]); + + // string workflow_component = 2[json_name = "workflowComponent"]; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_workflow_component())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.ResumeWorkflowRequest.workflow_component")); + } else { + goto handle_unusual; + } + break; } - } else { - ::std::unique_ptr entry; - for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator - it = this->options().begin(); - it != this->options().end(); ++it) { - entry.reset(options_.NewEntryWrapper( - it->first, it->second)); - ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( - 4, *entry, output); - Utf8Check::Check(&*it); + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; } } } +success: + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.ResumeWorkflowRequest) + return true; +failure: + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.ResumeWorkflowRequest) + return false; +#undef DO_ +} - // bytes input = 5; - if (this->input().size() > 0) { - ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( - 5, this->input(), output); +void ResumeWorkflowRequest::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.ResumeWorkflowRequest) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.ResumeWorkflowRequest.instance_id"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->instance_id(), output); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.ResumeWorkflowRequest.workflow_component"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 2, this->workflow_component(), output); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); } - // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.ResumeWorkflowRequest) } -::google::protobuf::uint8* StartWorkflowRequest::InternalSerializeWithCachedSizesToArray( +::google::protobuf::uint8* ResumeWorkflowRequest::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused - // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.ResumeWorkflowRequest) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string instance_id = 1; + // string instance_id = 1[json_name = "instanceID"]; if (this->instance_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->instance_id().data(), static_cast(this->instance_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.StartWorkflowRequest.instance_id"); + "dapr.proto.runtime.v1.ResumeWorkflowRequest.instance_id"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->instance_id(), target); } - // string workflow_component = 2; + // string workflow_component = 2[json_name = "workflowComponent"]; if (this->workflow_component().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->workflow_component().data(), static_cast(this->workflow_component().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component"); + "dapr.proto.runtime.v1.ResumeWorkflowRequest.workflow_component"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 2, this->workflow_component(), target); } - // string workflow_name = 3; - if (this->workflow_name().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->workflow_name().data(), static_cast(this->workflow_name().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name"); - target = - ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 3, this->workflow_name(), target); - } - - // map options = 4; - if (!this->options().empty()) { - typedef ::google::protobuf::Map< ::std::string, ::std::string >::const_pointer - ConstPtr; - typedef ConstPtr SortItem; - typedef ::google::protobuf::internal::CompareByDerefFirst Less; - struct Utf8Check { - static void Check(ConstPtr p) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - p->first.data(), static_cast(p->first.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.key"); - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - p->second.data(), static_cast(p->second.length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry.value"); - } - }; - - if (deterministic && - this->options().size() > 1) { - ::std::unique_ptr items( - new SortItem[this->options().size()]); - typedef ::google::protobuf::Map< ::std::string, ::std::string >::size_type size_type; - size_type n = 0; - for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator - it = this->options().begin(); - it != this->options().end(); ++it, ++n) { - items[static_cast(n)] = SortItem(&*it); - } - ::std::sort(&items[0], &items[static_cast(n)], Less()); - ::std::unique_ptr entry; - for (size_type i = 0; i < n; i++) { - entry.reset(options_.NewEntryWrapper( - items[static_cast(i)]->first, items[static_cast(i)]->second)); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessageNoVirtualToArray( - 4, *entry, deterministic, target); -; - Utf8Check::Check(items[static_cast(i)]); - } - } else { - ::std::unique_ptr entry; - for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator - it = this->options().begin(); - it != this->options().end(); ++it) { - entry.reset(options_.NewEntryWrapper( - it->first, it->second)); - target = ::google::protobuf::internal::WireFormatLite:: - InternalWriteMessageNoVirtualToArray( - 4, *entry, deterministic, target); -; - Utf8Check::Check(&*it); - } - } - } - - // bytes input = 5; - if (this->input().size() > 0) { - target = - ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( - 5, this->input(), target); - } - if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); } - // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.ResumeWorkflowRequest) return target; } -size_t StartWorkflowRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.StartWorkflowRequest) +size_t ResumeWorkflowRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.ResumeWorkflowRequest) size_t total_size = 0; if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { @@ -26029,131 +35076,89 @@ size_t StartWorkflowRequest::ByteSizeLong() const { ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); } - // map options = 4; - total_size += 1 * - ::google::protobuf::internal::FromIntSize(this->options_size()); - { - ::std::unique_ptr entry; - for (::google::protobuf::Map< ::std::string, ::std::string >::const_iterator - it = this->options().begin(); - it != this->options().end(); ++it) { - entry.reset(options_.NewEntryWrapper(it->first, it->second)); - total_size += ::google::protobuf::internal::WireFormatLite:: - MessageSizeNoVirtual(*entry); - } - } - - // string instance_id = 1; + // string instance_id = 1[json_name = "instanceID"]; if (this->instance_id().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->instance_id()); } - // string workflow_component = 2; + // string workflow_component = 2[json_name = "workflowComponent"]; if (this->workflow_component().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->workflow_component()); } - // string workflow_name = 3; - if (this->workflow_name().size() > 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->workflow_name()); - } - - // bytes input = 5; - if (this->input().size() > 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::BytesSize( - this->input()); - } - int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } -void StartWorkflowRequest::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.StartWorkflowRequest) +void ResumeWorkflowRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.ResumeWorkflowRequest) GOOGLE_DCHECK_NE(&from, this); - const StartWorkflowRequest* source = - ::google::protobuf::internal::DynamicCastToGenerated( + const ResumeWorkflowRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( &from); if (source == NULL) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.ResumeWorkflowRequest) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.ResumeWorkflowRequest) MergeFrom(*source); } } -void StartWorkflowRequest::MergeFrom(const StartWorkflowRequest& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.StartWorkflowRequest) +void ResumeWorkflowRequest::MergeFrom(const ResumeWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.ResumeWorkflowRequest) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - options_.MergeFrom(from.options_); if (from.instance_id().size() > 0) { instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); } if (from.workflow_component().size() > 0) { - workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); - } - if (from.workflow_name().size() > 0) { - - workflow_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_name_); - } - if (from.input().size() > 0) { - - input_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.input_); + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); } } -void StartWorkflowRequest::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.StartWorkflowRequest) +void ResumeWorkflowRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.ResumeWorkflowRequest) if (&from == this) return; Clear(); MergeFrom(from); } -void StartWorkflowRequest::CopyFrom(const StartWorkflowRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.StartWorkflowRequest) +void ResumeWorkflowRequest::CopyFrom(const ResumeWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.ResumeWorkflowRequest) if (&from == this) return; Clear(); MergeFrom(from); } -bool StartWorkflowRequest::IsInitialized() const { +bool ResumeWorkflowRequest::IsInitialized() const { return true; } -void StartWorkflowRequest::Swap(StartWorkflowRequest* other) { +void ResumeWorkflowRequest::Swap(ResumeWorkflowRequest* other) { if (other == this) return; InternalSwap(other); } -void StartWorkflowRequest::InternalSwap(StartWorkflowRequest* other) { +void ResumeWorkflowRequest::InternalSwap(ResumeWorkflowRequest* other) { using std::swap; - options_.Swap(&other->options_); instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); workflow_component_.Swap(&other->workflow_component_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); - workflow_name_.Swap(&other->workflow_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), - GetArenaNoVirtual()); - input_.Swap(&other->input_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), - GetArenaNoVirtual()); _internal_metadata_.Swap(&other->_internal_metadata_); } -::google::protobuf::Metadata StartWorkflowRequest::GetMetadata() const { +::google::protobuf::Metadata ResumeWorkflowRequest::GetMetadata() const { protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; } @@ -26161,21 +35166,23 @@ ::google::protobuf::Metadata StartWorkflowRequest::GetMetadata() const { // =================================================================== -void TerminateWorkflowRequest::InitAsDefaultInstance() { +void RaiseEventWorkflowRequest::InitAsDefaultInstance() { } #if !defined(_MSC_VER) || _MSC_VER >= 1900 -const int TerminateWorkflowRequest::kInstanceIdFieldNumber; -const int TerminateWorkflowRequest::kWorkflowComponentFieldNumber; +const int RaiseEventWorkflowRequest::kInstanceIdFieldNumber; +const int RaiseEventWorkflowRequest::kWorkflowComponentFieldNumber; +const int RaiseEventWorkflowRequest::kEventNameFieldNumber; +const int RaiseEventWorkflowRequest::kEventDataFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 -TerminateWorkflowRequest::TerminateWorkflowRequest() +RaiseEventWorkflowRequest::RaiseEventWorkflowRequest() : ::google::protobuf::Message(), _internal_metadata_(NULL) { ::google::protobuf::internal::InitSCC( - &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_TerminateWorkflowRequest.base); + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_RaiseEventWorkflowRequest.base); SharedCtor(); - // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.TerminateWorkflowRequest) + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) } -TerminateWorkflowRequest::TerminateWorkflowRequest(const TerminateWorkflowRequest& from) +RaiseEventWorkflowRequest::RaiseEventWorkflowRequest(const RaiseEventWorkflowRequest& from) : ::google::protobuf::Message(), _internal_metadata_(NULL) { _internal_metadata_.MergeFrom(from._internal_metadata_); @@ -26187,60 +35194,74 @@ TerminateWorkflowRequest::TerminateWorkflowRequest(const TerminateWorkflowReques if (from.workflow_component().size() > 0) { workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); } - // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.TerminateWorkflowRequest) + event_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.event_name().size() > 0) { + event_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.event_name_); + } + event_data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.event_data().size() > 0) { + event_data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.event_data_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) } -void TerminateWorkflowRequest::SharedCtor() { +void RaiseEventWorkflowRequest::SharedCtor() { instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + event_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + event_data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -TerminateWorkflowRequest::~TerminateWorkflowRequest() { - // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.TerminateWorkflowRequest) +RaiseEventWorkflowRequest::~RaiseEventWorkflowRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) SharedDtor(); } -void TerminateWorkflowRequest::SharedDtor() { +void RaiseEventWorkflowRequest::SharedDtor() { instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); workflow_component_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + event_name_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + event_data_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -void TerminateWorkflowRequest::SetCachedSize(int size) const { +void RaiseEventWorkflowRequest::SetCachedSize(int size) const { _cached_size_.Set(size); } -const ::google::protobuf::Descriptor* TerminateWorkflowRequest::descriptor() { +const ::google::protobuf::Descriptor* RaiseEventWorkflowRequest::descriptor() { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; } -const TerminateWorkflowRequest& TerminateWorkflowRequest::default_instance() { - ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_TerminateWorkflowRequest.base); +const RaiseEventWorkflowRequest& RaiseEventWorkflowRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_RaiseEventWorkflowRequest.base); return *internal_default_instance(); } -void TerminateWorkflowRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) +void RaiseEventWorkflowRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + event_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + event_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } -bool TerminateWorkflowRequest::MergePartialFromCodedStream( +bool RaiseEventWorkflowRequest::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; - // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // string instance_id = 1; + // string instance_id = 1[json_name = "instanceID"]; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { @@ -26249,14 +35270,14 @@ bool TerminateWorkflowRequest::MergePartialFromCodedStream( DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->instance_id().data(), static_cast(this->instance_id().length()), ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id")); + "dapr.proto.runtime.v1.RaiseEventWorkflowRequest.instance_id")); } else { goto handle_unusual; } break; } - // string workflow_component = 2; + // string workflow_component = 2[json_name = "workflowComponent"]; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { @@ -26265,7 +35286,35 @@ bool TerminateWorkflowRequest::MergePartialFromCodedStream( DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->workflow_component().data(), static_cast(this->workflow_component().length()), ::google::protobuf::internal::WireFormatLite::PARSE, - "dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component")); + "dapr.proto.runtime.v1.RaiseEventWorkflowRequest.workflow_component")); + } else { + goto handle_unusual; + } + break; + } + + // string event_name = 3[json_name = "eventName"]; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(26u /* 26 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_event_name())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->event_name().data(), static_cast(this->event_name().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_name")); + } else { + goto handle_unusual; + } + break; + } + + // bytes event_data = 4; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(34u /* 34 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadBytes( + input, this->mutable_event_data())); } else { goto handle_unusual; } @@ -26284,86 +35333,120 @@ bool TerminateWorkflowRequest::MergePartialFromCodedStream( } } success: - // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.TerminateWorkflowRequest) + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) return true; failure: - // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.TerminateWorkflowRequest) + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) return false; #undef DO_ } -void TerminateWorkflowRequest::SerializeWithCachedSizes( +void RaiseEventWorkflowRequest::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string instance_id = 1; + // string instance_id = 1[json_name = "instanceID"]; if (this->instance_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->instance_id().data(), static_cast(this->instance_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id"); + "dapr.proto.runtime.v1.RaiseEventWorkflowRequest.instance_id"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->instance_id(), output); } - // string workflow_component = 2; + // string workflow_component = 2[json_name = "workflowComponent"]; if (this->workflow_component().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->workflow_component().data(), static_cast(this->workflow_component().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component"); + "dapr.proto.runtime.v1.RaiseEventWorkflowRequest.workflow_component"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 2, this->workflow_component(), output); } + // string event_name = 3[json_name = "eventName"]; + if (this->event_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->event_name().data(), static_cast(this->event_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_name"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 3, this->event_name(), output); + } + + // bytes event_data = 4; + if (this->event_data().size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased( + 4, this->event_data(), output); + } + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); } - // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.TerminateWorkflowRequest) + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) } -::google::protobuf::uint8* TerminateWorkflowRequest::InternalSerializeWithCachedSizesToArray( +::google::protobuf::uint8* RaiseEventWorkflowRequest::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused - // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // string instance_id = 1; + // string instance_id = 1[json_name = "instanceID"]; if (this->instance_id().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->instance_id().data(), static_cast(this->instance_id().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id"); + "dapr.proto.runtime.v1.RaiseEventWorkflowRequest.instance_id"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->instance_id(), target); } - // string workflow_component = 2; + // string workflow_component = 2[json_name = "workflowComponent"]; if (this->workflow_component().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->workflow_component().data(), static_cast(this->workflow_component().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component"); + "dapr.proto.runtime.v1.RaiseEventWorkflowRequest.workflow_component"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 2, this->workflow_component(), target); } + // string event_name = 3[json_name = "eventName"]; + if (this->event_name().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->event_name().data(), static_cast(this->event_name().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_name"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 3, this->event_name(), target); + } + + // bytes event_data = 4; + if (this->event_data().size() > 0) { + target = + ::google::protobuf::internal::WireFormatLite::WriteBytesToArray( + 4, this->event_data(), target); + } + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); } - // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.TerminateWorkflowRequest) + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) return target; } -size_t TerminateWorkflowRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) +size_t RaiseEventWorkflowRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) size_t total_size = 0; if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { @@ -26371,42 +35454,56 @@ size_t TerminateWorkflowRequest::ByteSizeLong() const { ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); } - // string instance_id = 1; + // string instance_id = 1[json_name = "instanceID"]; if (this->instance_id().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->instance_id()); } - // string workflow_component = 2; + // string workflow_component = 2[json_name = "workflowComponent"]; if (this->workflow_component().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->workflow_component()); } + // string event_name = 3[json_name = "eventName"]; + if (this->event_name().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->event_name()); + } + + // bytes event_data = 4; + if (this->event_data().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->event_data()); + } + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } -void TerminateWorkflowRequest::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) +void RaiseEventWorkflowRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) GOOGLE_DCHECK_NE(&from, this); - const TerminateWorkflowRequest* source = - ::google::protobuf::internal::DynamicCastToGenerated( + const RaiseEventWorkflowRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( &from); if (source == NULL) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.TerminateWorkflowRequest) + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.TerminateWorkflowRequest) + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) MergeFrom(*source); } } -void TerminateWorkflowRequest::MergeFrom(const TerminateWorkflowRequest& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) +void RaiseEventWorkflowRequest::MergeFrom(const RaiseEventWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; @@ -26420,40 +35517,52 @@ void TerminateWorkflowRequest::MergeFrom(const TerminateWorkflowRequest& from) { workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); } + if (from.event_name().size() > 0) { + + event_name_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.event_name_); + } + if (from.event_data().size() > 0) { + + event_data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.event_data_); + } } -void TerminateWorkflowRequest::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) +void RaiseEventWorkflowRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) if (&from == this) return; Clear(); MergeFrom(from); } -void TerminateWorkflowRequest::CopyFrom(const TerminateWorkflowRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.TerminateWorkflowRequest) +void RaiseEventWorkflowRequest::CopyFrom(const RaiseEventWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) if (&from == this) return; Clear(); MergeFrom(from); } -bool TerminateWorkflowRequest::IsInitialized() const { +bool RaiseEventWorkflowRequest::IsInitialized() const { return true; } -void TerminateWorkflowRequest::Swap(TerminateWorkflowRequest* other) { +void RaiseEventWorkflowRequest::Swap(RaiseEventWorkflowRequest* other) { if (other == this) return; InternalSwap(other); } -void TerminateWorkflowRequest::InternalSwap(TerminateWorkflowRequest* other) { +void RaiseEventWorkflowRequest::InternalSwap(RaiseEventWorkflowRequest* other) { using std::swap; instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); workflow_component_.Swap(&other->workflow_component_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); + event_name_.Swap(&other->event_name_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + event_data_.Swap(&other->event_data_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); _internal_metadata_.Swap(&other->_internal_metadata_); } -::google::protobuf::Metadata TerminateWorkflowRequest::GetMetadata() const { +::google::protobuf::Metadata RaiseEventWorkflowRequest::GetMetadata() const { protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; } @@ -26461,114 +35570,209 @@ ::google::protobuf::Metadata TerminateWorkflowRequest::GetMetadata() const { // =================================================================== -void TerminateWorkflowResponse::InitAsDefaultInstance() { +void PurgeWorkflowRequest::InitAsDefaultInstance() { } #if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int PurgeWorkflowRequest::kInstanceIdFieldNumber; +const int PurgeWorkflowRequest::kWorkflowComponentFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 -TerminateWorkflowResponse::TerminateWorkflowResponse() +PurgeWorkflowRequest::PurgeWorkflowRequest() : ::google::protobuf::Message(), _internal_metadata_(NULL) { ::google::protobuf::internal::InitSCC( - &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_TerminateWorkflowResponse.base); + &protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_PurgeWorkflowRequest.base); SharedCtor(); - // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.TerminateWorkflowResponse) + // @@protoc_insertion_point(constructor:dapr.proto.runtime.v1.PurgeWorkflowRequest) } -TerminateWorkflowResponse::TerminateWorkflowResponse(const TerminateWorkflowResponse& from) +PurgeWorkflowRequest::PurgeWorkflowRequest(const PurgeWorkflowRequest& from) : ::google::protobuf::Message(), _internal_metadata_(NULL) { _internal_metadata_.MergeFrom(from._internal_metadata_); - // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.TerminateWorkflowResponse) + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.instance_id().size() > 0) { + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.workflow_component().size() > 0) { + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + } + // @@protoc_insertion_point(copy_constructor:dapr.proto.runtime.v1.PurgeWorkflowRequest) } -void TerminateWorkflowResponse::SharedCtor() { +void PurgeWorkflowRequest::SharedCtor() { + instance_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -TerminateWorkflowResponse::~TerminateWorkflowResponse() { - // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.TerminateWorkflowResponse) +PurgeWorkflowRequest::~PurgeWorkflowRequest() { + // @@protoc_insertion_point(destructor:dapr.proto.runtime.v1.PurgeWorkflowRequest) SharedDtor(); } -void TerminateWorkflowResponse::SharedDtor() { +void PurgeWorkflowRequest::SharedDtor() { + instance_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -void TerminateWorkflowResponse::SetCachedSize(int size) const { +void PurgeWorkflowRequest::SetCachedSize(int size) const { _cached_size_.Set(size); } -const ::google::protobuf::Descriptor* TerminateWorkflowResponse::descriptor() { +const ::google::protobuf::Descriptor* PurgeWorkflowRequest::descriptor() { ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; } -const TerminateWorkflowResponse& TerminateWorkflowResponse::default_instance() { - ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_TerminateWorkflowResponse.base); +const PurgeWorkflowRequest& PurgeWorkflowRequest::default_instance() { + ::google::protobuf::internal::InitSCC(&protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::scc_info_PurgeWorkflowRequest.base); return *internal_default_instance(); } -void TerminateWorkflowResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.TerminateWorkflowResponse) +void PurgeWorkflowRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:dapr.proto.runtime.v1.PurgeWorkflowRequest) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); _internal_metadata_.Clear(); } -bool TerminateWorkflowResponse::MergePartialFromCodedStream( +bool PurgeWorkflowRequest::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; - // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.TerminateWorkflowResponse) + // @@protoc_insertion_point(parse_start:dapr.proto.runtime.v1.PurgeWorkflowRequest) for (;;) { ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; - handle_unusual: - if (tag == 0) { - goto success; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // string instance_id = 1[json_name = "instanceID"]; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_instance_id())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.PurgeWorkflowRequest.instance_id")); + } else { + goto handle_unusual; + } + break; + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == + static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_workflow_component())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "dapr.proto.runtime.v1.PurgeWorkflowRequest.workflow_component")); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } } - DO_(::google::protobuf::internal::WireFormat::SkipField( - input, tag, _internal_metadata_.mutable_unknown_fields())); } success: - // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.TerminateWorkflowResponse) + // @@protoc_insertion_point(parse_success:dapr.proto.runtime.v1.PurgeWorkflowRequest) return true; failure: - // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.TerminateWorkflowResponse) + // @@protoc_insertion_point(parse_failure:dapr.proto.runtime.v1.PurgeWorkflowRequest) return false; #undef DO_ } -void TerminateWorkflowResponse::SerializeWithCachedSizes( +void PurgeWorkflowRequest::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { - // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.TerminateWorkflowResponse) + // @@protoc_insertion_point(serialize_start:dapr.proto.runtime.v1.PurgeWorkflowRequest) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.PurgeWorkflowRequest.instance_id"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 1, this->instance_id(), output); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.PurgeWorkflowRequest.workflow_component"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 2, this->workflow_component(), output); + } + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); } - // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.TerminateWorkflowResponse) + // @@protoc_insertion_point(serialize_end:dapr.proto.runtime.v1.PurgeWorkflowRequest) } -::google::protobuf::uint8* TerminateWorkflowResponse::InternalSerializeWithCachedSizesToArray( +::google::protobuf::uint8* PurgeWorkflowRequest::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused - // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.TerminateWorkflowResponse) + // @@protoc_insertion_point(serialize_to_array_start:dapr.proto.runtime.v1.PurgeWorkflowRequest) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->instance_id().data(), static_cast(this->instance_id().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.PurgeWorkflowRequest.instance_id"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 1, this->instance_id(), target); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->workflow_component().data(), static_cast(this->workflow_component().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "dapr.proto.runtime.v1.PurgeWorkflowRequest.workflow_component"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 2, this->workflow_component(), target); + } + if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); } - // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.TerminateWorkflowResponse) + // @@protoc_insertion_point(serialize_to_array_end:dapr.proto.runtime.v1.PurgeWorkflowRequest) return target; } -size_t TerminateWorkflowResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.TerminateWorkflowResponse) +size_t PurgeWorkflowRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:dapr.proto.runtime.v1.PurgeWorkflowRequest) size_t total_size = 0; if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { @@ -26576,63 +35780,89 @@ size_t TerminateWorkflowResponse::ByteSizeLong() const { ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); } + // string instance_id = 1[json_name = "instanceID"]; + if (this->instance_id().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->instance_id()); + } + + // string workflow_component = 2[json_name = "workflowComponent"]; + if (this->workflow_component().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->workflow_component()); + } + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; } -void TerminateWorkflowResponse::MergeFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.TerminateWorkflowResponse) +void PurgeWorkflowRequest::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:dapr.proto.runtime.v1.PurgeWorkflowRequest) GOOGLE_DCHECK_NE(&from, this); - const TerminateWorkflowResponse* source = - ::google::protobuf::internal::DynamicCastToGenerated( + const PurgeWorkflowRequest* source = + ::google::protobuf::internal::DynamicCastToGenerated( &from); if (source == NULL) { - // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.TerminateWorkflowResponse) + // @@protoc_insertion_point(generalized_merge_from_cast_fail:dapr.proto.runtime.v1.PurgeWorkflowRequest) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { - // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.TerminateWorkflowResponse) + // @@protoc_insertion_point(generalized_merge_from_cast_success:dapr.proto.runtime.v1.PurgeWorkflowRequest) MergeFrom(*source); } } -void TerminateWorkflowResponse::MergeFrom(const TerminateWorkflowResponse& from) { -// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.TerminateWorkflowResponse) +void PurgeWorkflowRequest::MergeFrom(const PurgeWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:dapr.proto.runtime.v1.PurgeWorkflowRequest) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; + if (from.instance_id().size() > 0) { + + instance_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.instance_id_); + } + if (from.workflow_component().size() > 0) { + + workflow_component_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.workflow_component_); + } } -void TerminateWorkflowResponse::CopyFrom(const ::google::protobuf::Message& from) { -// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.TerminateWorkflowResponse) +void PurgeWorkflowRequest::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:dapr.proto.runtime.v1.PurgeWorkflowRequest) if (&from == this) return; Clear(); MergeFrom(from); } -void TerminateWorkflowResponse::CopyFrom(const TerminateWorkflowResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.TerminateWorkflowResponse) +void PurgeWorkflowRequest::CopyFrom(const PurgeWorkflowRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:dapr.proto.runtime.v1.PurgeWorkflowRequest) if (&from == this) return; Clear(); MergeFrom(from); } -bool TerminateWorkflowResponse::IsInitialized() const { +bool PurgeWorkflowRequest::IsInitialized() const { return true; } -void TerminateWorkflowResponse::Swap(TerminateWorkflowResponse* other) { +void PurgeWorkflowRequest::Swap(PurgeWorkflowRequest* other) { if (other == this) return; InternalSwap(other); } -void TerminateWorkflowResponse::InternalSwap(TerminateWorkflowResponse* other) { +void PurgeWorkflowRequest::InternalSwap(PurgeWorkflowRequest* other) { using std::swap; + instance_id_.Swap(&other->instance_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); + workflow_component_.Swap(&other->workflow_component_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); _internal_metadata_.Swap(&other->_internal_metadata_); } -::google::protobuf::Metadata TerminateWorkflowResponse::GetMetadata() const { +::google::protobuf::Metadata PurgeWorkflowRequest::GetMetadata() const { protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::protobuf_AssignDescriptorsOnce(); return ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::file_level_metadata[kIndexInFileMessages]; } @@ -26801,6 +36031,9 @@ template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::GetAct template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::ExecuteActorStateTransactionRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::ExecuteActorStateTransactionRequest >(Arena* arena) { return Arena::CreateInternal< ::dapr::proto::runtime::v1::ExecuteActorStateTransactionRequest >(arena); } +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse >(arena); +} template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::TransactionalActorStateOperation* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::TransactionalActorStateOperation >(Arena* arena) { return Arena::CreateInternal< ::dapr::proto::runtime::v1::TransactionalActorStateOperation >(arena); } @@ -26882,14 +36115,71 @@ template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::Unlock template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::UnlockResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::UnlockResponse >(Arena* arena) { return Arena::CreateInternal< ::dapr::proto::runtime::v1::UnlockResponse >(arena); } -template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::WorkflowReference* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::WorkflowReference >(Arena* arena) { - return Arena::CreateInternal< ::dapr::proto::runtime::v1::WorkflowReference >(arena); +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleGetKeyRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleGetKeyRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleGetKeyRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleGetKeyResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleGetKeyResponse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleGetKeyResponse >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleEncryptRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleEncryptRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleEncryptRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleEncryptResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleEncryptResponse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleEncryptResponse >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleDecryptRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleDecryptRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleDecryptRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleDecryptResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleDecryptResponse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleDecryptResponse >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleWrapKeyRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleWrapKeyRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleWrapKeyResponse >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleSignRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleSignRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleSignRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleSignResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleSignResponse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleSignResponse >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleVerifyRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleVerifyRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleVerifyRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::SubtleVerifyResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::SubtleVerifyResponse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::SubtleVerifyResponse >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::EncryptRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::EncryptRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::EncryptRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::EncryptRequestOptions* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::EncryptRequestOptions >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::EncryptRequestOptions >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::EncryptResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::EncryptResponse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::EncryptResponse >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::DecryptRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::DecryptRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::DecryptRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::DecryptRequestOptions* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::DecryptRequestOptions >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::DecryptRequestOptions >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::DecryptResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::DecryptResponse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::DecryptResponse >(arena); } template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::GetWorkflowRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::GetWorkflowRequest >(Arena* arena) { return Arena::CreateInternal< ::dapr::proto::runtime::v1::GetWorkflowRequest >(arena); } -template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse >(Arena* arena) { - return Arena::CreateInternal< ::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse >(arena); +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse >(arena); } template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::GetWorkflowResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::GetWorkflowResponse >(Arena* arena) { return Arena::CreateInternal< ::dapr::proto::runtime::v1::GetWorkflowResponse >(arena); @@ -26900,11 +36190,23 @@ template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::StartW template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::StartWorkflowRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::StartWorkflowRequest >(Arena* arena) { return Arena::CreateInternal< ::dapr::proto::runtime::v1::StartWorkflowRequest >(arena); } +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::StartWorkflowResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::StartWorkflowResponse >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::StartWorkflowResponse >(arena); +} template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::TerminateWorkflowRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::TerminateWorkflowRequest >(Arena* arena) { return Arena::CreateInternal< ::dapr::proto::runtime::v1::TerminateWorkflowRequest >(arena); } -template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::TerminateWorkflowResponse* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::TerminateWorkflowResponse >(Arena* arena) { - return Arena::CreateInternal< ::dapr::proto::runtime::v1::TerminateWorkflowResponse >(arena); +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::PauseWorkflowRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::PauseWorkflowRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::PauseWorkflowRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::ResumeWorkflowRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::ResumeWorkflowRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::ResumeWorkflowRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest >(arena); +} +template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::dapr::proto::runtime::v1::PurgeWorkflowRequest* Arena::CreateMaybeMessage< ::dapr::proto::runtime::v1::PurgeWorkflowRequest >(Arena* arena) { + return Arena::CreateInternal< ::dapr::proto::runtime::v1::PurgeWorkflowRequest >(arena); } } // namespace protobuf } // namespace google diff --git a/src/dapr/proto/runtime/v1/dapr.pb.h b/src/dapr/proto/runtime/v1/dapr.pb.h index b10a574..8e13d74 100644 --- a/src/dapr/proto/runtime/v1/dapr.pb.h +++ b/src/dapr/proto/runtime/v1/dapr.pb.h @@ -36,6 +36,7 @@ #include #include #include +#include #include "dapr/proto/common/v1/common.pb.h" // @@protoc_insertion_point(includes) #define PROTOBUF_INTERNAL_EXPORT_protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto @@ -45,7 +46,7 @@ namespace protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto { struct TableStruct { static const ::google::protobuf::internal::ParseTableField entries[]; static const ::google::protobuf::internal::AuxillaryParseTableField aux[]; - static const ::google::protobuf::internal::ParseTable schema[87]; + static const ::google::protobuf::internal::ParseTable schema[111]; static const ::google::protobuf::internal::FieldMetadata field_metadata[]; static const ::google::protobuf::internal::SerializationTable serialization_table[]; static const ::google::protobuf::uint32 offsets[]; @@ -83,6 +84,15 @@ extern BulkStateItemDefaultTypeInternal _BulkStateItem_default_instance_; class BulkStateItem_MetadataEntry_DoNotUse; class BulkStateItem_MetadataEntry_DoNotUseDefaultTypeInternal; extern BulkStateItem_MetadataEntry_DoNotUseDefaultTypeInternal _BulkStateItem_MetadataEntry_DoNotUse_default_instance_; +class DecryptRequest; +class DecryptRequestDefaultTypeInternal; +extern DecryptRequestDefaultTypeInternal _DecryptRequest_default_instance_; +class DecryptRequestOptions; +class DecryptRequestOptionsDefaultTypeInternal; +extern DecryptRequestOptionsDefaultTypeInternal _DecryptRequestOptions_default_instance_; +class DecryptResponse; +class DecryptResponseDefaultTypeInternal; +extern DecryptResponseDefaultTypeInternal _DecryptResponse_default_instance_; class DeleteBulkStateRequest; class DeleteBulkStateRequestDefaultTypeInternal; extern DeleteBulkStateRequestDefaultTypeInternal _DeleteBulkStateRequest_default_instance_; @@ -92,6 +102,15 @@ extern DeleteStateRequestDefaultTypeInternal _DeleteStateRequest_default_instanc class DeleteStateRequest_MetadataEntry_DoNotUse; class DeleteStateRequest_MetadataEntry_DoNotUseDefaultTypeInternal; extern DeleteStateRequest_MetadataEntry_DoNotUseDefaultTypeInternal _DeleteStateRequest_MetadataEntry_DoNotUse_default_instance_; +class EncryptRequest; +class EncryptRequestDefaultTypeInternal; +extern EncryptRequestDefaultTypeInternal _EncryptRequest_default_instance_; +class EncryptRequestOptions; +class EncryptRequestOptionsDefaultTypeInternal; +extern EncryptRequestOptionsDefaultTypeInternal _EncryptRequestOptions_default_instance_; +class EncryptResponse; +class EncryptResponseDefaultTypeInternal; +extern EncryptResponseDefaultTypeInternal _EncryptResponse_default_instance_; class ExecuteActorStateTransactionRequest; class ExecuteActorStateTransactionRequestDefaultTypeInternal; extern ExecuteActorStateTransactionRequestDefaultTypeInternal _ExecuteActorStateTransactionRequest_default_instance_; @@ -176,9 +195,9 @@ extern GetWorkflowRequestDefaultTypeInternal _GetWorkflowRequest_default_instanc class GetWorkflowResponse; class GetWorkflowResponseDefaultTypeInternal; extern GetWorkflowResponseDefaultTypeInternal _GetWorkflowResponse_default_instance_; -class GetWorkflowResponse_MetadataEntry_DoNotUse; -class GetWorkflowResponse_MetadataEntry_DoNotUseDefaultTypeInternal; -extern GetWorkflowResponse_MetadataEntry_DoNotUseDefaultTypeInternal _GetWorkflowResponse_MetadataEntry_DoNotUse_default_instance_; +class GetWorkflowResponse_PropertiesEntry_DoNotUse; +class GetWorkflowResponse_PropertiesEntry_DoNotUseDefaultTypeInternal; +extern GetWorkflowResponse_PropertiesEntry_DoNotUseDefaultTypeInternal _GetWorkflowResponse_PropertiesEntry_DoNotUse_default_instance_; class InvokeActorRequest; class InvokeActorRequestDefaultTypeInternal; extern InvokeActorRequestDefaultTypeInternal _InvokeActorRequest_default_instance_; @@ -203,6 +222,9 @@ extern InvokeBindingResponse_MetadataEntry_DoNotUseDefaultTypeInternal _InvokeBi class InvokeServiceRequest; class InvokeServiceRequestDefaultTypeInternal; extern InvokeServiceRequestDefaultTypeInternal _InvokeServiceRequest_default_instance_; +class PauseWorkflowRequest; +class PauseWorkflowRequestDefaultTypeInternal; +extern PauseWorkflowRequestDefaultTypeInternal _PauseWorkflowRequest_default_instance_; class PublishEventRequest; class PublishEventRequestDefaultTypeInternal; extern PublishEventRequestDefaultTypeInternal _PublishEventRequest_default_instance_; @@ -221,6 +243,9 @@ extern PubsubSubscriptionRulesDefaultTypeInternal _PubsubSubscriptionRules_defau class PubsubSubscription_MetadataEntry_DoNotUse; class PubsubSubscription_MetadataEntry_DoNotUseDefaultTypeInternal; extern PubsubSubscription_MetadataEntry_DoNotUseDefaultTypeInternal _PubsubSubscription_MetadataEntry_DoNotUse_default_instance_; +class PurgeWorkflowRequest; +class PurgeWorkflowRequestDefaultTypeInternal; +extern PurgeWorkflowRequestDefaultTypeInternal _PurgeWorkflowRequest_default_instance_; class QueryStateItem; class QueryStateItemDefaultTypeInternal; extern QueryStateItemDefaultTypeInternal _QueryStateItem_default_instance_; @@ -236,6 +261,9 @@ extern QueryStateResponseDefaultTypeInternal _QueryStateResponse_default_instanc class QueryStateResponse_MetadataEntry_DoNotUse; class QueryStateResponse_MetadataEntry_DoNotUseDefaultTypeInternal; extern QueryStateResponse_MetadataEntry_DoNotUseDefaultTypeInternal _QueryStateResponse_MetadataEntry_DoNotUse_default_instance_; +class RaiseEventWorkflowRequest; +class RaiseEventWorkflowRequestDefaultTypeInternal; +extern RaiseEventWorkflowRequestDefaultTypeInternal _RaiseEventWorkflowRequest_default_instance_; class RegisterActorReminderRequest; class RegisterActorReminderRequestDefaultTypeInternal; extern RegisterActorReminderRequestDefaultTypeInternal _RegisterActorReminderRequest_default_instance_; @@ -248,6 +276,9 @@ extern RegisteredComponentsDefaultTypeInternal _RegisteredComponents_default_ins class RenameActorReminderRequest; class RenameActorReminderRequestDefaultTypeInternal; extern RenameActorReminderRequestDefaultTypeInternal _RenameActorReminderRequest_default_instance_; +class ResumeWorkflowRequest; +class ResumeWorkflowRequestDefaultTypeInternal; +extern ResumeWorkflowRequestDefaultTypeInternal _ResumeWorkflowRequest_default_instance_; class SaveStateRequest; class SaveStateRequestDefaultTypeInternal; extern SaveStateRequestDefaultTypeInternal _SaveStateRequest_default_instance_; @@ -266,6 +297,9 @@ extern StartWorkflowRequestDefaultTypeInternal _StartWorkflowRequest_default_ins class StartWorkflowRequest_OptionsEntry_DoNotUse; class StartWorkflowRequest_OptionsEntry_DoNotUseDefaultTypeInternal; extern StartWorkflowRequest_OptionsEntry_DoNotUseDefaultTypeInternal _StartWorkflowRequest_OptionsEntry_DoNotUse_default_instance_; +class StartWorkflowResponse; +class StartWorkflowResponseDefaultTypeInternal; +extern StartWorkflowResponseDefaultTypeInternal _StartWorkflowResponse_default_instance_; class SubscribeConfigurationRequest; class SubscribeConfigurationRequestDefaultTypeInternal; extern SubscribeConfigurationRequestDefaultTypeInternal _SubscribeConfigurationRequest_default_instance_; @@ -278,15 +312,57 @@ extern SubscribeConfigurationResponseDefaultTypeInternal _SubscribeConfiguration class SubscribeConfigurationResponse_ItemsEntry_DoNotUse; class SubscribeConfigurationResponse_ItemsEntry_DoNotUseDefaultTypeInternal; extern SubscribeConfigurationResponse_ItemsEntry_DoNotUseDefaultTypeInternal _SubscribeConfigurationResponse_ItemsEntry_DoNotUse_default_instance_; +class SubtleDecryptRequest; +class SubtleDecryptRequestDefaultTypeInternal; +extern SubtleDecryptRequestDefaultTypeInternal _SubtleDecryptRequest_default_instance_; +class SubtleDecryptResponse; +class SubtleDecryptResponseDefaultTypeInternal; +extern SubtleDecryptResponseDefaultTypeInternal _SubtleDecryptResponse_default_instance_; +class SubtleEncryptRequest; +class SubtleEncryptRequestDefaultTypeInternal; +extern SubtleEncryptRequestDefaultTypeInternal _SubtleEncryptRequest_default_instance_; +class SubtleEncryptResponse; +class SubtleEncryptResponseDefaultTypeInternal; +extern SubtleEncryptResponseDefaultTypeInternal _SubtleEncryptResponse_default_instance_; +class SubtleGetKeyRequest; +class SubtleGetKeyRequestDefaultTypeInternal; +extern SubtleGetKeyRequestDefaultTypeInternal _SubtleGetKeyRequest_default_instance_; +class SubtleGetKeyResponse; +class SubtleGetKeyResponseDefaultTypeInternal; +extern SubtleGetKeyResponseDefaultTypeInternal _SubtleGetKeyResponse_default_instance_; +class SubtleSignRequest; +class SubtleSignRequestDefaultTypeInternal; +extern SubtleSignRequestDefaultTypeInternal _SubtleSignRequest_default_instance_; +class SubtleSignResponse; +class SubtleSignResponseDefaultTypeInternal; +extern SubtleSignResponseDefaultTypeInternal _SubtleSignResponse_default_instance_; +class SubtleUnwrapKeyRequest; +class SubtleUnwrapKeyRequestDefaultTypeInternal; +extern SubtleUnwrapKeyRequestDefaultTypeInternal _SubtleUnwrapKeyRequest_default_instance_; +class SubtleUnwrapKeyResponse; +class SubtleUnwrapKeyResponseDefaultTypeInternal; +extern SubtleUnwrapKeyResponseDefaultTypeInternal _SubtleUnwrapKeyResponse_default_instance_; +class SubtleVerifyRequest; +class SubtleVerifyRequestDefaultTypeInternal; +extern SubtleVerifyRequestDefaultTypeInternal _SubtleVerifyRequest_default_instance_; +class SubtleVerifyResponse; +class SubtleVerifyResponseDefaultTypeInternal; +extern SubtleVerifyResponseDefaultTypeInternal _SubtleVerifyResponse_default_instance_; +class SubtleWrapKeyRequest; +class SubtleWrapKeyRequestDefaultTypeInternal; +extern SubtleWrapKeyRequestDefaultTypeInternal _SubtleWrapKeyRequest_default_instance_; +class SubtleWrapKeyResponse; +class SubtleWrapKeyResponseDefaultTypeInternal; +extern SubtleWrapKeyResponseDefaultTypeInternal _SubtleWrapKeyResponse_default_instance_; class TerminateWorkflowRequest; class TerminateWorkflowRequestDefaultTypeInternal; extern TerminateWorkflowRequestDefaultTypeInternal _TerminateWorkflowRequest_default_instance_; -class TerminateWorkflowResponse; -class TerminateWorkflowResponseDefaultTypeInternal; -extern TerminateWorkflowResponseDefaultTypeInternal _TerminateWorkflowResponse_default_instance_; class TransactionalActorStateOperation; class TransactionalActorStateOperationDefaultTypeInternal; extern TransactionalActorStateOperationDefaultTypeInternal _TransactionalActorStateOperation_default_instance_; +class TransactionalActorStateOperation_MetadataEntry_DoNotUse; +class TransactionalActorStateOperation_MetadataEntry_DoNotUseDefaultTypeInternal; +extern TransactionalActorStateOperation_MetadataEntry_DoNotUseDefaultTypeInternal _TransactionalActorStateOperation_MetadataEntry_DoNotUse_default_instance_; class TransactionalStateOperation; class TransactionalStateOperationDefaultTypeInternal; extern TransactionalStateOperationDefaultTypeInternal _TransactionalStateOperation_default_instance_; @@ -314,9 +390,6 @@ extern UnsubscribeConfigurationRequestDefaultTypeInternal _UnsubscribeConfigurat class UnsubscribeConfigurationResponse; class UnsubscribeConfigurationResponseDefaultTypeInternal; extern UnsubscribeConfigurationResponseDefaultTypeInternal _UnsubscribeConfigurationResponse_default_instance_; -class WorkflowReference; -class WorkflowReferenceDefaultTypeInternal; -extern WorkflowReferenceDefaultTypeInternal _WorkflowReference_default_instance_; } // namespace v1 } // namespace runtime } // namespace proto @@ -332,9 +405,15 @@ template<> ::dapr::proto::runtime::v1::BulkPublishResponse* Arena::CreateMaybeMe template<> ::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry>(Arena*); template<> ::dapr::proto::runtime::v1::BulkStateItem* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::BulkStateItem>(Arena*); template<> ::dapr::proto::runtime::v1::BulkStateItem_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::BulkStateItem_MetadataEntry_DoNotUse>(Arena*); +template<> ::dapr::proto::runtime::v1::DecryptRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::DecryptRequest>(Arena*); +template<> ::dapr::proto::runtime::v1::DecryptRequestOptions* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::DecryptRequestOptions>(Arena*); +template<> ::dapr::proto::runtime::v1::DecryptResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::DecryptResponse>(Arena*); template<> ::dapr::proto::runtime::v1::DeleteBulkStateRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::DeleteBulkStateRequest>(Arena*); template<> ::dapr::proto::runtime::v1::DeleteStateRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::DeleteStateRequest>(Arena*); template<> ::dapr::proto::runtime::v1::DeleteStateRequest_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::DeleteStateRequest_MetadataEntry_DoNotUse>(Arena*); +template<> ::dapr::proto::runtime::v1::EncryptRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::EncryptRequest>(Arena*); +template<> ::dapr::proto::runtime::v1::EncryptRequestOptions* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::EncryptRequestOptions>(Arena*); +template<> ::dapr::proto::runtime::v1::EncryptResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::EncryptResponse>(Arena*); template<> ::dapr::proto::runtime::v1::ExecuteActorStateTransactionRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::ExecuteActorStateTransactionRequest>(Arena*); template<> ::dapr::proto::runtime::v1::ExecuteStateTransactionRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::ExecuteStateTransactionRequest>(Arena*); template<> ::dapr::proto::runtime::v1::ExecuteStateTransactionRequest_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::ExecuteStateTransactionRequest_MetadataEntry_DoNotUse>(Arena*); @@ -363,7 +442,7 @@ template<> ::dapr::proto::runtime::v1::GetStateResponse* Arena::CreateMaybeMessa template<> ::dapr::proto::runtime::v1::GetStateResponse_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::GetStateResponse_MetadataEntry_DoNotUse>(Arena*); template<> ::dapr::proto::runtime::v1::GetWorkflowRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::GetWorkflowRequest>(Arena*); template<> ::dapr::proto::runtime::v1::GetWorkflowResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::GetWorkflowResponse>(Arena*); -template<> ::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::GetWorkflowResponse_MetadataEntry_DoNotUse>(Arena*); +template<> ::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::GetWorkflowResponse_PropertiesEntry_DoNotUse>(Arena*); template<> ::dapr::proto::runtime::v1::InvokeActorRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::InvokeActorRequest>(Arena*); template<> ::dapr::proto::runtime::v1::InvokeActorRequest_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::InvokeActorRequest_MetadataEntry_DoNotUse>(Arena*); template<> ::dapr::proto::runtime::v1::InvokeActorResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::InvokeActorResponse>(Arena*); @@ -372,34 +451,53 @@ template<> ::dapr::proto::runtime::v1::InvokeBindingRequest_MetadataEntry_DoNotU template<> ::dapr::proto::runtime::v1::InvokeBindingResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::InvokeBindingResponse>(Arena*); template<> ::dapr::proto::runtime::v1::InvokeBindingResponse_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::InvokeBindingResponse_MetadataEntry_DoNotUse>(Arena*); template<> ::dapr::proto::runtime::v1::InvokeServiceRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::InvokeServiceRequest>(Arena*); +template<> ::dapr::proto::runtime::v1::PauseWorkflowRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::PauseWorkflowRequest>(Arena*); template<> ::dapr::proto::runtime::v1::PublishEventRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::PublishEventRequest>(Arena*); template<> ::dapr::proto::runtime::v1::PublishEventRequest_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::PublishEventRequest_MetadataEntry_DoNotUse>(Arena*); template<> ::dapr::proto::runtime::v1::PubsubSubscription* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::PubsubSubscription>(Arena*); template<> ::dapr::proto::runtime::v1::PubsubSubscriptionRule* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::PubsubSubscriptionRule>(Arena*); template<> ::dapr::proto::runtime::v1::PubsubSubscriptionRules* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::PubsubSubscriptionRules>(Arena*); template<> ::dapr::proto::runtime::v1::PubsubSubscription_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::PubsubSubscription_MetadataEntry_DoNotUse>(Arena*); +template<> ::dapr::proto::runtime::v1::PurgeWorkflowRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::PurgeWorkflowRequest>(Arena*); template<> ::dapr::proto::runtime::v1::QueryStateItem* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::QueryStateItem>(Arena*); template<> ::dapr::proto::runtime::v1::QueryStateRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::QueryStateRequest>(Arena*); template<> ::dapr::proto::runtime::v1::QueryStateRequest_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::QueryStateRequest_MetadataEntry_DoNotUse>(Arena*); template<> ::dapr::proto::runtime::v1::QueryStateResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::QueryStateResponse>(Arena*); template<> ::dapr::proto::runtime::v1::QueryStateResponse_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::QueryStateResponse_MetadataEntry_DoNotUse>(Arena*); +template<> ::dapr::proto::runtime::v1::RaiseEventWorkflowRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::RaiseEventWorkflowRequest>(Arena*); template<> ::dapr::proto::runtime::v1::RegisterActorReminderRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::RegisterActorReminderRequest>(Arena*); template<> ::dapr::proto::runtime::v1::RegisterActorTimerRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::RegisterActorTimerRequest>(Arena*); template<> ::dapr::proto::runtime::v1::RegisteredComponents* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::RegisteredComponents>(Arena*); template<> ::dapr::proto::runtime::v1::RenameActorReminderRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::RenameActorReminderRequest>(Arena*); +template<> ::dapr::proto::runtime::v1::ResumeWorkflowRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::ResumeWorkflowRequest>(Arena*); template<> ::dapr::proto::runtime::v1::SaveStateRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SaveStateRequest>(Arena*); template<> ::dapr::proto::runtime::v1::SecretResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SecretResponse>(Arena*); template<> ::dapr::proto::runtime::v1::SecretResponse_SecretsEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SecretResponse_SecretsEntry_DoNotUse>(Arena*); template<> ::dapr::proto::runtime::v1::SetMetadataRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SetMetadataRequest>(Arena*); template<> ::dapr::proto::runtime::v1::StartWorkflowRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::StartWorkflowRequest>(Arena*); template<> ::dapr::proto::runtime::v1::StartWorkflowRequest_OptionsEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::StartWorkflowRequest_OptionsEntry_DoNotUse>(Arena*); +template<> ::dapr::proto::runtime::v1::StartWorkflowResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::StartWorkflowResponse>(Arena*); template<> ::dapr::proto::runtime::v1::SubscribeConfigurationRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubscribeConfigurationRequest>(Arena*); template<> ::dapr::proto::runtime::v1::SubscribeConfigurationRequest_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubscribeConfigurationRequest_MetadataEntry_DoNotUse>(Arena*); template<> ::dapr::proto::runtime::v1::SubscribeConfigurationResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubscribeConfigurationResponse>(Arena*); template<> ::dapr::proto::runtime::v1::SubscribeConfigurationResponse_ItemsEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubscribeConfigurationResponse_ItemsEntry_DoNotUse>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleDecryptRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleDecryptRequest>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleDecryptResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleDecryptResponse>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleEncryptRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleEncryptRequest>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleEncryptResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleEncryptResponse>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleGetKeyRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleGetKeyRequest>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleGetKeyResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleGetKeyResponse>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleSignRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleSignRequest>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleSignResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleSignResponse>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleUnwrapKeyRequest>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleUnwrapKeyResponse>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleVerifyRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleVerifyRequest>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleVerifyResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleVerifyResponse>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleWrapKeyRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleWrapKeyRequest>(Arena*); +template<> ::dapr::proto::runtime::v1::SubtleWrapKeyResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::SubtleWrapKeyResponse>(Arena*); template<> ::dapr::proto::runtime::v1::TerminateWorkflowRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::TerminateWorkflowRequest>(Arena*); -template<> ::dapr::proto::runtime::v1::TerminateWorkflowResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::TerminateWorkflowResponse>(Arena*); template<> ::dapr::proto::runtime::v1::TransactionalActorStateOperation* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::TransactionalActorStateOperation>(Arena*); +template<> ::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::TransactionalActorStateOperation_MetadataEntry_DoNotUse>(Arena*); template<> ::dapr::proto::runtime::v1::TransactionalStateOperation* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::TransactionalStateOperation>(Arena*); template<> ::dapr::proto::runtime::v1::TryLockRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::TryLockRequest>(Arena*); template<> ::dapr::proto::runtime::v1::TryLockResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::TryLockResponse>(Arena*); @@ -409,7 +507,6 @@ template<> ::dapr::proto::runtime::v1::UnregisterActorReminderRequest* Arena::Cr template<> ::dapr::proto::runtime::v1::UnregisterActorTimerRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::UnregisterActorTimerRequest>(Arena*); template<> ::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::UnsubscribeConfigurationRequest>(Arena*); template<> ::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::UnsubscribeConfigurationResponse>(Arena*); -template<> ::dapr::proto::runtime::v1::WorkflowReference* Arena::CreateMaybeMessage<::dapr::proto::runtime::v1::WorkflowReference>(Arena*); } // namespace protobuf } // namespace google namespace dapr { @@ -440,6 +537,27 @@ inline bool UnlockResponse_Status_Parse( return ::google::protobuf::internal::ParseNamedEnum( UnlockResponse_Status_descriptor(), name, value); } +enum SubtleGetKeyRequest_KeyFormat { + SubtleGetKeyRequest_KeyFormat_PEM = 0, + SubtleGetKeyRequest_KeyFormat_JSON = 1, + SubtleGetKeyRequest_KeyFormat_SubtleGetKeyRequest_KeyFormat_INT_MIN_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32min, + SubtleGetKeyRequest_KeyFormat_SubtleGetKeyRequest_KeyFormat_INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max +}; +bool SubtleGetKeyRequest_KeyFormat_IsValid(int value); +const SubtleGetKeyRequest_KeyFormat SubtleGetKeyRequest_KeyFormat_KeyFormat_MIN = SubtleGetKeyRequest_KeyFormat_PEM; +const SubtleGetKeyRequest_KeyFormat SubtleGetKeyRequest_KeyFormat_KeyFormat_MAX = SubtleGetKeyRequest_KeyFormat_JSON; +const int SubtleGetKeyRequest_KeyFormat_KeyFormat_ARRAYSIZE = SubtleGetKeyRequest_KeyFormat_KeyFormat_MAX + 1; + +const ::google::protobuf::EnumDescriptor* SubtleGetKeyRequest_KeyFormat_descriptor(); +inline const ::std::string& SubtleGetKeyRequest_KeyFormat_Name(SubtleGetKeyRequest_KeyFormat value) { + return ::google::protobuf::internal::NameOfEnum( + SubtleGetKeyRequest_KeyFormat_descriptor(), value); +} +inline bool SubtleGetKeyRequest_KeyFormat_Parse( + const ::std::string& name, SubtleGetKeyRequest_KeyFormat* value) { + return ::google::protobuf::internal::ParseNamedEnum( + SubtleGetKeyRequest_KeyFormat_descriptor(), name, value); +} // =================================================================== class InvokeServiceRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.InvokeServiceRequest) */ { @@ -1934,7 +2052,7 @@ class QueryStateRequest : public ::google::protobuf::Message /* @@protoc_inserti ::google::protobuf::Map< ::std::string, ::std::string >* mutable_metadata(); - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; void clear_store_name(); static const int kStoreNameFieldNumber = 1; const ::std::string& store_name() const; @@ -3522,7 +3640,7 @@ class GetSecretRequest : public ::google::protobuf::Message /* @@protoc_insertio ::google::protobuf::Map< ::std::string, ::std::string >* mutable_metadata(); - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; void clear_store_name(); static const int kStoreNameFieldNumber = 1; const ::std::string& store_name() const; @@ -3818,7 +3936,7 @@ class GetBulkSecretRequest : public ::google::protobuf::Message /* @@protoc_inse ::google::protobuf::Map< ::std::string, ::std::string >* mutable_metadata(); - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; void clear_store_name(); static const int kStoreNameFieldNumber = 1; const ::std::string& store_name() const; @@ -5645,6 +5763,27 @@ class ExecuteActorStateTransactionRequest : public ::google::protobuf::Message / }; // ------------------------------------------------------------------- +class TransactionalActorStateOperation_MetadataEntry_DoNotUse : public ::google::protobuf::internal::MapEntry { +public: + typedef ::google::protobuf::internal::MapEntry SuperType; + TransactionalActorStateOperation_MetadataEntry_DoNotUse(); + TransactionalActorStateOperation_MetadataEntry_DoNotUse(::google::protobuf::Arena* arena); + void MergeFrom(const TransactionalActorStateOperation_MetadataEntry_DoNotUse& other); + static const TransactionalActorStateOperation_MetadataEntry_DoNotUse* internal_default_instance() { return reinterpret_cast(&_TransactionalActorStateOperation_MetadataEntry_DoNotUse_default_instance_); } + void MergeFrom(const ::google::protobuf::Message& other) final; + ::google::protobuf::Metadata GetMetadata() const; +}; + +// ------------------------------------------------------------------- + class TransactionalActorStateOperation : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.TransactionalActorStateOperation) */ { public: TransactionalActorStateOperation(); @@ -5680,7 +5819,7 @@ class TransactionalActorStateOperation : public ::google::protobuf::Message /* @ &_TransactionalActorStateOperation_default_instance_); } static constexpr int kIndexInFileMessages = - 52; + 53; void Swap(TransactionalActorStateOperation* other); friend void swap(TransactionalActorStateOperation& a, TransactionalActorStateOperation& b) { @@ -5730,8 +5869,18 @@ class TransactionalActorStateOperation : public ::google::protobuf::Message /* @ // nested types ---------------------------------------------------- + // accessors ------------------------------------------------------- + // map metadata = 4; + int metadata_size() const; + void clear_metadata(); + static const int kMetadataFieldNumber = 4; + const ::google::protobuf::Map< ::std::string, ::std::string >& + metadata() const; + ::google::protobuf::Map< ::std::string, ::std::string >* + mutable_metadata(); + // string operationType = 1; void clear_operationtype(); static const int kOperationTypeFieldNumber = 1; @@ -5776,6 +5925,12 @@ class TransactionalActorStateOperation : public ::google::protobuf::Message /* @ private: ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::MapField< + TransactionalActorStateOperation_MetadataEntry_DoNotUse, + ::std::string, ::std::string, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + 0 > metadata_; ::google::protobuf::internal::ArenaStringPtr operationtype_; ::google::protobuf::internal::ArenaStringPtr key_; ::google::protobuf::Any* value_; @@ -5840,7 +5995,7 @@ class InvokeActorRequest : public ::google::protobuf::Message /* @@protoc_insert &_InvokeActorRequest_default_instance_); } static constexpr int kIndexInFileMessages = - 54; + 55; void Swap(InvokeActorRequest* other); friend void swap(InvokeActorRequest& a, InvokeActorRequest& b) { @@ -6012,7 +6167,7 @@ class InvokeActorResponse : public ::google::protobuf::Message /* @@protoc_inser &_InvokeActorResponse_default_instance_); } static constexpr int kIndexInFileMessages = - 55; + 56; void Swap(InvokeActorResponse* other); friend void swap(InvokeActorResponse& a, InvokeActorResponse& b) { @@ -6144,7 +6299,7 @@ class GetMetadataResponse : public ::google::protobuf::Message /* @@protoc_inser &_GetMetadataResponse_default_instance_); } static constexpr int kIndexInFileMessages = - 57; + 58; void Swap(GetMetadataResponse* other); friend void swap(GetMetadataResponse& a, GetMetadataResponse& b) { @@ -6310,7 +6465,7 @@ class ActiveActorsCount : public ::google::protobuf::Message /* @@protoc_inserti &_ActiveActorsCount_default_instance_); } static constexpr int kIndexInFileMessages = - 58; + 59; void Swap(ActiveActorsCount* other); friend void swap(ActiveActorsCount& a, ActiveActorsCount& b) { @@ -6428,7 +6583,7 @@ class RegisteredComponents : public ::google::protobuf::Message /* @@protoc_inse &_RegisteredComponents_default_instance_); } static constexpr int kIndexInFileMessages = - 59; + 60; void Swap(RegisteredComponents* other); friend void swap(RegisteredComponents& a, RegisteredComponents& b) { @@ -6613,7 +6768,7 @@ class PubsubSubscription : public ::google::protobuf::Message /* @@protoc_insert &_PubsubSubscription_default_instance_); } static constexpr int kIndexInFileMessages = - 61; + 62; void Swap(PubsubSubscription* other); friend void swap(PubsubSubscription& a, PubsubSubscription& b) { @@ -6783,7 +6938,7 @@ class PubsubSubscriptionRules : public ::google::protobuf::Message /* @@protoc_i &_PubsubSubscriptionRules_default_instance_); } static constexpr int kIndexInFileMessages = - 62; + 63; void Swap(PubsubSubscriptionRules* other); friend void swap(PubsubSubscriptionRules& a, PubsubSubscriptionRules& b) { @@ -6892,7 +7047,7 @@ class PubsubSubscriptionRule : public ::google::protobuf::Message /* @@protoc_in &_PubsubSubscriptionRule_default_instance_); } static constexpr int kIndexInFileMessages = - 63; + 64; void Swap(PubsubSubscriptionRule* other); friend void swap(PubsubSubscriptionRule& a, PubsubSubscriptionRule& b) { @@ -7018,7 +7173,7 @@ class SetMetadataRequest : public ::google::protobuf::Message /* @@protoc_insert &_SetMetadataRequest_default_instance_); } static constexpr int kIndexInFileMessages = - 64; + 65; void Swap(SetMetadataRequest* other); friend void swap(SetMetadataRequest& a, SetMetadataRequest& b) { @@ -7165,7 +7320,7 @@ class GetConfigurationRequest : public ::google::protobuf::Message /* @@protoc_i &_GetConfigurationRequest_default_instance_); } static constexpr int kIndexInFileMessages = - 66; + 67; void Swap(GetConfigurationRequest* other); friend void swap(GetConfigurationRequest& a, GetConfigurationRequest& b) { @@ -7336,7 +7491,7 @@ class GetConfigurationResponse : public ::google::protobuf::Message /* @@protoc_ &_GetConfigurationResponse_default_instance_); } static constexpr int kIndexInFileMessages = - 68; + 69; void Swap(GetConfigurationResponse* other); friend void swap(GetConfigurationResponse& a, GetConfigurationResponse& b) { @@ -7469,7 +7624,7 @@ class SubscribeConfigurationRequest : public ::google::protobuf::Message /* @@pr &_SubscribeConfigurationRequest_default_instance_); } static constexpr int kIndexInFileMessages = - 70; + 71; void Swap(SubscribeConfigurationRequest* other); friend void swap(SubscribeConfigurationRequest& a, SubscribeConfigurationRequest& b) { @@ -7619,7 +7774,7 @@ class UnsubscribeConfigurationRequest : public ::google::protobuf::Message /* @@ &_UnsubscribeConfigurationRequest_default_instance_); } static constexpr int kIndexInFileMessages = - 71; + 72; void Swap(UnsubscribeConfigurationRequest* other); friend void swap(UnsubscribeConfigurationRequest& a, UnsubscribeConfigurationRequest& b) { @@ -7766,7 +7921,7 @@ class SubscribeConfigurationResponse : public ::google::protobuf::Message /* @@p &_SubscribeConfigurationResponse_default_instance_); } static constexpr int kIndexInFileMessages = - 73; + 74; void Swap(SubscribeConfigurationResponse* other); friend void swap(SubscribeConfigurationResponse& a, SubscribeConfigurationResponse& b) { @@ -7893,7 +8048,7 @@ class UnsubscribeConfigurationResponse : public ::google::protobuf::Message /* @ &_UnsubscribeConfigurationResponse_default_instance_); } static constexpr int kIndexInFileMessages = - 74; + 75; void Swap(UnsubscribeConfigurationResponse* other); friend void swap(UnsubscribeConfigurationResponse& a, UnsubscribeConfigurationResponse& b) { @@ -8011,7 +8166,7 @@ class TryLockRequest : public ::google::protobuf::Message /* @@protoc_insertion_ &_TryLockRequest_default_instance_); } static constexpr int kIndexInFileMessages = - 75; + 76; void Swap(TryLockRequest* other); friend void swap(TryLockRequest& a, TryLockRequest& b) { @@ -8063,7 +8218,7 @@ class TryLockRequest : public ::google::protobuf::Message /* @@protoc_insertion_ // accessors ------------------------------------------------------- - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; void clear_store_name(); static const int kStoreNameFieldNumber = 1; const ::std::string& store_name() const; @@ -8077,7 +8232,7 @@ class TryLockRequest : public ::google::protobuf::Message /* @@protoc_insertion_ ::std::string* release_store_name(); void set_allocated_store_name(::std::string* store_name); - // string resource_id = 2; + // string resource_id = 2[json_name = "resourceId"]; void clear_resource_id(); static const int kResourceIdFieldNumber = 2; const ::std::string& resource_id() const; @@ -8091,7 +8246,7 @@ class TryLockRequest : public ::google::protobuf::Message /* @@protoc_insertion_ ::std::string* release_resource_id(); void set_allocated_resource_id(::std::string* resource_id); - // string lock_owner = 3; + // string lock_owner = 3[json_name = "lockOwner"]; void clear_lock_owner(); static const int kLockOwnerFieldNumber = 3; const ::std::string& lock_owner() const; @@ -8105,11 +8260,11 @@ class TryLockRequest : public ::google::protobuf::Message /* @@protoc_insertion_ ::std::string* release_lock_owner(); void set_allocated_lock_owner(::std::string* lock_owner); - // int32 expiryInSeconds = 4; - void clear_expiryinseconds(); + // int32 expiry_in_seconds = 4[json_name = "expiryInSeconds"]; + void clear_expiry_in_seconds(); static const int kExpiryInSecondsFieldNumber = 4; - ::google::protobuf::int32 expiryinseconds() const; - void set_expiryinseconds(::google::protobuf::int32 value); + ::google::protobuf::int32 expiry_in_seconds() const; + void set_expiry_in_seconds(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.TryLockRequest) private: @@ -8118,7 +8273,7 @@ class TryLockRequest : public ::google::protobuf::Message /* @@protoc_insertion_ ::google::protobuf::internal::ArenaStringPtr store_name_; ::google::protobuf::internal::ArenaStringPtr resource_id_; ::google::protobuf::internal::ArenaStringPtr lock_owner_; - ::google::protobuf::int32 expiryinseconds_; + ::google::protobuf::int32 expiry_in_seconds_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; }; @@ -8159,7 +8314,7 @@ class TryLockResponse : public ::google::protobuf::Message /* @@protoc_insertion &_TryLockResponse_default_instance_); } static constexpr int kIndexInFileMessages = - 76; + 77; void Swap(TryLockResponse* other); friend void swap(TryLockResponse& a, TryLockResponse& b) { @@ -8262,7 +8417,7 @@ class UnlockRequest : public ::google::protobuf::Message /* @@protoc_insertion_p &_UnlockRequest_default_instance_); } static constexpr int kIndexInFileMessages = - 77; + 78; void Swap(UnlockRequest* other); friend void swap(UnlockRequest& a, UnlockRequest& b) { @@ -8314,7 +8469,7 @@ class UnlockRequest : public ::google::protobuf::Message /* @@protoc_insertion_p // accessors ------------------------------------------------------- - // string store_name = 1; + // string store_name = 1[json_name = "storeName"]; void clear_store_name(); static const int kStoreNameFieldNumber = 1; const ::std::string& store_name() const; @@ -8328,7 +8483,7 @@ class UnlockRequest : public ::google::protobuf::Message /* @@protoc_insertion_p ::std::string* release_store_name(); void set_allocated_store_name(::std::string* store_name); - // string resource_id = 2; + // string resource_id = 2[json_name = "resourceId"]; void clear_resource_id(); static const int kResourceIdFieldNumber = 2; const ::std::string& resource_id() const; @@ -8342,7 +8497,7 @@ class UnlockRequest : public ::google::protobuf::Message /* @@protoc_insertion_p ::std::string* release_resource_id(); void set_allocated_resource_id(::std::string* resource_id); - // string lock_owner = 3; + // string lock_owner = 3[json_name = "lockOwner"]; void clear_lock_owner(); static const int kLockOwnerFieldNumber = 3; const ::std::string& lock_owner() const; @@ -8403,7 +8558,7 @@ class UnlockResponse : public ::google::protobuf::Message /* @@protoc_insertion_ &_UnlockResponse_default_instance_); } static constexpr int kIndexInFileMessages = - 78; + 79; void Swap(UnlockResponse* other); friend void swap(UnlockResponse& a, UnlockResponse& b) { @@ -8501,24 +8656,24 @@ class UnlockResponse : public ::google::protobuf::Message /* @@protoc_insertion_ }; // ------------------------------------------------------------------- -class WorkflowReference : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.WorkflowReference) */ { +class SubtleGetKeyRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleGetKeyRequest) */ { public: - WorkflowReference(); - virtual ~WorkflowReference(); + SubtleGetKeyRequest(); + virtual ~SubtleGetKeyRequest(); - WorkflowReference(const WorkflowReference& from); + SubtleGetKeyRequest(const SubtleGetKeyRequest& from); - inline WorkflowReference& operator=(const WorkflowReference& from) { + inline SubtleGetKeyRequest& operator=(const SubtleGetKeyRequest& from) { CopyFrom(from); return *this; } #if LANG_CXX11 - WorkflowReference(WorkflowReference&& from) noexcept - : WorkflowReference() { + SubtleGetKeyRequest(SubtleGetKeyRequest&& from) noexcept + : SubtleGetKeyRequest() { *this = ::std::move(from); } - inline WorkflowReference& operator=(WorkflowReference&& from) noexcept { + inline SubtleGetKeyRequest& operator=(SubtleGetKeyRequest&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { @@ -8528,34 +8683,34 @@ class WorkflowReference : public ::google::protobuf::Message /* @@protoc_inserti } #endif static const ::google::protobuf::Descriptor* descriptor(); - static const WorkflowReference& default_instance(); + static const SubtleGetKeyRequest& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY - static inline const WorkflowReference* internal_default_instance() { - return reinterpret_cast( - &_WorkflowReference_default_instance_); + static inline const SubtleGetKeyRequest* internal_default_instance() { + return reinterpret_cast( + &_SubtleGetKeyRequest_default_instance_); } static constexpr int kIndexInFileMessages = - 79; + 80; - void Swap(WorkflowReference* other); - friend void swap(WorkflowReference& a, WorkflowReference& b) { + void Swap(SubtleGetKeyRequest* other); + friend void swap(SubtleGetKeyRequest& a, SubtleGetKeyRequest& b) { a.Swap(&b); } // implements Message ---------------------------------------------- - inline WorkflowReference* New() const final { - return CreateMaybeMessage(NULL); + inline SubtleGetKeyRequest* New() const final { + return CreateMaybeMessage(NULL); } - WorkflowReference* New(::google::protobuf::Arena* arena) const final { - return CreateMaybeMessage(arena); + SubtleGetKeyRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; - void CopyFrom(const WorkflowReference& from); - void MergeFrom(const WorkflowReference& from); + void CopyFrom(const SubtleGetKeyRequest& from); + void MergeFrom(const SubtleGetKeyRequest& from); void Clear() final; bool IsInitialized() const final; @@ -8572,7 +8727,7 @@ class WorkflowReference : public ::google::protobuf::Message /* @@protoc_inserti void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(WorkflowReference* other); + void InternalSwap(SubtleGetKeyRequest* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; @@ -8586,50 +8741,98 @@ class WorkflowReference : public ::google::protobuf::Message /* @@protoc_inserti // nested types ---------------------------------------------------- + typedef SubtleGetKeyRequest_KeyFormat KeyFormat; + static const KeyFormat PEM = + SubtleGetKeyRequest_KeyFormat_PEM; + static const KeyFormat JSON = + SubtleGetKeyRequest_KeyFormat_JSON; + static inline bool KeyFormat_IsValid(int value) { + return SubtleGetKeyRequest_KeyFormat_IsValid(value); + } + static const KeyFormat KeyFormat_MIN = + SubtleGetKeyRequest_KeyFormat_KeyFormat_MIN; + static const KeyFormat KeyFormat_MAX = + SubtleGetKeyRequest_KeyFormat_KeyFormat_MAX; + static const int KeyFormat_ARRAYSIZE = + SubtleGetKeyRequest_KeyFormat_KeyFormat_ARRAYSIZE; + static inline const ::google::protobuf::EnumDescriptor* + KeyFormat_descriptor() { + return SubtleGetKeyRequest_KeyFormat_descriptor(); + } + static inline const ::std::string& KeyFormat_Name(KeyFormat value) { + return SubtleGetKeyRequest_KeyFormat_Name(value); + } + static inline bool KeyFormat_Parse(const ::std::string& name, + KeyFormat* value) { + return SubtleGetKeyRequest_KeyFormat_Parse(name, value); + } + // accessors ------------------------------------------------------- - // string instance_id = 1; - void clear_instance_id(); - static const int kInstanceIdFieldNumber = 1; - const ::std::string& instance_id() const; - void set_instance_id(const ::std::string& value); + // string component_name = 1[json_name = "componentName"]; + void clear_component_name(); + static const int kComponentNameFieldNumber = 1; + const ::std::string& component_name() const; + void set_component_name(const ::std::string& value); #if LANG_CXX11 - void set_instance_id(::std::string&& value); + void set_component_name(::std::string&& value); #endif - void set_instance_id(const char* value); - void set_instance_id(const char* value, size_t size); - ::std::string* mutable_instance_id(); - ::std::string* release_instance_id(); - void set_allocated_instance_id(::std::string* instance_id); + void set_component_name(const char* value); + void set_component_name(const char* value, size_t size); + ::std::string* mutable_component_name(); + ::std::string* release_component_name(); + void set_allocated_component_name(::std::string* component_name); + + // string name = 2; + void clear_name(); + static const int kNameFieldNumber = 2; + const ::std::string& name() const; + void set_name(const ::std::string& value); + #if LANG_CXX11 + void set_name(::std::string&& value); + #endif + void set_name(const char* value); + void set_name(const char* value, size_t size); + ::std::string* mutable_name(); + ::std::string* release_name(); + void set_allocated_name(::std::string* name); - // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.WorkflowReference) + // .dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat format = 3; + void clear_format(); + static const int kFormatFieldNumber = 3; + ::dapr::proto::runtime::v1::SubtleGetKeyRequest_KeyFormat format() const; + void set_format(::dapr::proto::runtime::v1::SubtleGetKeyRequest_KeyFormat value); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleGetKeyRequest) private: ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; - ::google::protobuf::internal::ArenaStringPtr instance_id_; + ::google::protobuf::internal::ArenaStringPtr component_name_; + ::google::protobuf::internal::ArenaStringPtr name_; + int format_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; }; // ------------------------------------------------------------------- -class GetWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.GetWorkflowRequest) */ { +class SubtleGetKeyResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleGetKeyResponse) */ { public: - GetWorkflowRequest(); - virtual ~GetWorkflowRequest(); + SubtleGetKeyResponse(); + virtual ~SubtleGetKeyResponse(); - GetWorkflowRequest(const GetWorkflowRequest& from); + SubtleGetKeyResponse(const SubtleGetKeyResponse& from); - inline GetWorkflowRequest& operator=(const GetWorkflowRequest& from) { + inline SubtleGetKeyResponse& operator=(const SubtleGetKeyResponse& from) { CopyFrom(from); return *this; } #if LANG_CXX11 - GetWorkflowRequest(GetWorkflowRequest&& from) noexcept - : GetWorkflowRequest() { + SubtleGetKeyResponse(SubtleGetKeyResponse&& from) noexcept + : SubtleGetKeyResponse() { *this = ::std::move(from); } - inline GetWorkflowRequest& operator=(GetWorkflowRequest&& from) noexcept { + inline SubtleGetKeyResponse& operator=(SubtleGetKeyResponse&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { @@ -8639,34 +8842,34 @@ class GetWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insert } #endif static const ::google::protobuf::Descriptor* descriptor(); - static const GetWorkflowRequest& default_instance(); + static const SubtleGetKeyResponse& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY - static inline const GetWorkflowRequest* internal_default_instance() { - return reinterpret_cast( - &_GetWorkflowRequest_default_instance_); + static inline const SubtleGetKeyResponse* internal_default_instance() { + return reinterpret_cast( + &_SubtleGetKeyResponse_default_instance_); } static constexpr int kIndexInFileMessages = - 80; + 81; - void Swap(GetWorkflowRequest* other); - friend void swap(GetWorkflowRequest& a, GetWorkflowRequest& b) { + void Swap(SubtleGetKeyResponse* other); + friend void swap(SubtleGetKeyResponse& a, SubtleGetKeyResponse& b) { a.Swap(&b); } // implements Message ---------------------------------------------- - inline GetWorkflowRequest* New() const final { - return CreateMaybeMessage(NULL); + inline SubtleGetKeyResponse* New() const final { + return CreateMaybeMessage(NULL); } - GetWorkflowRequest* New(::google::protobuf::Arena* arena) const final { - return CreateMaybeMessage(arena); + SubtleGetKeyResponse* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; - void CopyFrom(const GetWorkflowRequest& from); - void MergeFrom(const GetWorkflowRequest& from); + void CopyFrom(const SubtleGetKeyResponse& from); + void MergeFrom(const SubtleGetKeyResponse& from); void Clear() final; bool IsInitialized() const final; @@ -8683,7 +8886,7 @@ class GetWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insert void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(GetWorkflowRequest* other); + void InternalSwap(SubtleGetKeyResponse* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; @@ -8699,99 +8902,63 @@ class GetWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insert // accessors ------------------------------------------------------- - // string instance_id = 1; - void clear_instance_id(); - static const int kInstanceIdFieldNumber = 1; - const ::std::string& instance_id() const; - void set_instance_id(const ::std::string& value); - #if LANG_CXX11 - void set_instance_id(::std::string&& value); - #endif - void set_instance_id(const char* value); - void set_instance_id(const char* value, size_t size); - ::std::string* mutable_instance_id(); - ::std::string* release_instance_id(); - void set_allocated_instance_id(::std::string* instance_id); - - // string workflow_type = 2; - void clear_workflow_type(); - static const int kWorkflowTypeFieldNumber = 2; - const ::std::string& workflow_type() const; - void set_workflow_type(const ::std::string& value); + // string name = 1; + void clear_name(); + static const int kNameFieldNumber = 1; + const ::std::string& name() const; + void set_name(const ::std::string& value); #if LANG_CXX11 - void set_workflow_type(::std::string&& value); + void set_name(::std::string&& value); #endif - void set_workflow_type(const char* value); - void set_workflow_type(const char* value, size_t size); - ::std::string* mutable_workflow_type(); - ::std::string* release_workflow_type(); - void set_allocated_workflow_type(::std::string* workflow_type); + void set_name(const char* value); + void set_name(const char* value, size_t size); + ::std::string* mutable_name(); + ::std::string* release_name(); + void set_allocated_name(::std::string* name); - // string workflow_component = 3; - void clear_workflow_component(); - static const int kWorkflowComponentFieldNumber = 3; - const ::std::string& workflow_component() const; - void set_workflow_component(const ::std::string& value); + // string public_key = 2[json_name = "publicKey"]; + void clear_public_key(); + static const int kPublicKeyFieldNumber = 2; + const ::std::string& public_key() const; + void set_public_key(const ::std::string& value); #if LANG_CXX11 - void set_workflow_component(::std::string&& value); + void set_public_key(::std::string&& value); #endif - void set_workflow_component(const char* value); - void set_workflow_component(const char* value, size_t size); - ::std::string* mutable_workflow_component(); - ::std::string* release_workflow_component(); - void set_allocated_workflow_component(::std::string* workflow_component); + void set_public_key(const char* value); + void set_public_key(const char* value, size_t size); + ::std::string* mutable_public_key(); + ::std::string* release_public_key(); + void set_allocated_public_key(::std::string* public_key); - // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.GetWorkflowRequest) + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleGetKeyResponse) private: ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; - ::google::protobuf::internal::ArenaStringPtr instance_id_; - ::google::protobuf::internal::ArenaStringPtr workflow_type_; - ::google::protobuf::internal::ArenaStringPtr workflow_component_; + ::google::protobuf::internal::ArenaStringPtr name_; + ::google::protobuf::internal::ArenaStringPtr public_key_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; }; // ------------------------------------------------------------------- -class GetWorkflowResponse_MetadataEntry_DoNotUse : public ::google::protobuf::internal::MapEntry { -public: - typedef ::google::protobuf::internal::MapEntry SuperType; - GetWorkflowResponse_MetadataEntry_DoNotUse(); - GetWorkflowResponse_MetadataEntry_DoNotUse(::google::protobuf::Arena* arena); - void MergeFrom(const GetWorkflowResponse_MetadataEntry_DoNotUse& other); - static const GetWorkflowResponse_MetadataEntry_DoNotUse* internal_default_instance() { return reinterpret_cast(&_GetWorkflowResponse_MetadataEntry_DoNotUse_default_instance_); } - void MergeFrom(const ::google::protobuf::Message& other) final; - ::google::protobuf::Metadata GetMetadata() const; -}; - -// ------------------------------------------------------------------- - -class GetWorkflowResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.GetWorkflowResponse) */ { +class SubtleEncryptRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleEncryptRequest) */ { public: - GetWorkflowResponse(); - virtual ~GetWorkflowResponse(); + SubtleEncryptRequest(); + virtual ~SubtleEncryptRequest(); - GetWorkflowResponse(const GetWorkflowResponse& from); + SubtleEncryptRequest(const SubtleEncryptRequest& from); - inline GetWorkflowResponse& operator=(const GetWorkflowResponse& from) { + inline SubtleEncryptRequest& operator=(const SubtleEncryptRequest& from) { CopyFrom(from); return *this; } #if LANG_CXX11 - GetWorkflowResponse(GetWorkflowResponse&& from) noexcept - : GetWorkflowResponse() { + SubtleEncryptRequest(SubtleEncryptRequest&& from) noexcept + : SubtleEncryptRequest() { *this = ::std::move(from); } - inline GetWorkflowResponse& operator=(GetWorkflowResponse&& from) noexcept { + inline SubtleEncryptRequest& operator=(SubtleEncryptRequest&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { @@ -8801,34 +8968,34 @@ class GetWorkflowResponse : public ::google::protobuf::Message /* @@protoc_inser } #endif static const ::google::protobuf::Descriptor* descriptor(); - static const GetWorkflowResponse& default_instance(); + static const SubtleEncryptRequest& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY - static inline const GetWorkflowResponse* internal_default_instance() { - return reinterpret_cast( - &_GetWorkflowResponse_default_instance_); + static inline const SubtleEncryptRequest* internal_default_instance() { + return reinterpret_cast( + &_SubtleEncryptRequest_default_instance_); } static constexpr int kIndexInFileMessages = 82; - void Swap(GetWorkflowResponse* other); - friend void swap(GetWorkflowResponse& a, GetWorkflowResponse& b) { + void Swap(SubtleEncryptRequest* other); + friend void swap(SubtleEncryptRequest& a, SubtleEncryptRequest& b) { a.Swap(&b); } // implements Message ---------------------------------------------- - inline GetWorkflowResponse* New() const final { - return CreateMaybeMessage(NULL); + inline SubtleEncryptRequest* New() const final { + return CreateMaybeMessage(NULL); } - GetWorkflowResponse* New(::google::protobuf::Arena* arena) const final { - return CreateMaybeMessage(arena); + SubtleEncryptRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; - void CopyFrom(const GetWorkflowResponse& from); - void MergeFrom(const GetWorkflowResponse& from); + void CopyFrom(const SubtleEncryptRequest& from); + void MergeFrom(const SubtleEncryptRequest& from); void Clear() final; bool IsInitialized() const final; @@ -8845,7 +9012,7 @@ class GetWorkflowResponse : public ::google::protobuf::Message /* @@protoc_inser void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(GetWorkflowResponse* other); + void InternalSwap(SubtleEncryptRequest* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; @@ -8859,94 +9026,125 @@ class GetWorkflowResponse : public ::google::protobuf::Message /* @@protoc_inser // nested types ---------------------------------------------------- - // accessors ------------------------------------------------------- - // map metadata = 3; - int metadata_size() const; - void clear_metadata(); - static const int kMetadataFieldNumber = 3; - const ::google::protobuf::Map< ::std::string, ::std::string >& - metadata() const; - ::google::protobuf::Map< ::std::string, ::std::string >* - mutable_metadata(); - - // string instance_id = 1; - void clear_instance_id(); - static const int kInstanceIdFieldNumber = 1; - const ::std::string& instance_id() const; - void set_instance_id(const ::std::string& value); + // string component_name = 1[json_name = "componentName"]; + void clear_component_name(); + static const int kComponentNameFieldNumber = 1; + const ::std::string& component_name() const; + void set_component_name(const ::std::string& value); #if LANG_CXX11 - void set_instance_id(::std::string&& value); + void set_component_name(::std::string&& value); #endif - void set_instance_id(const char* value); - void set_instance_id(const char* value, size_t size); - ::std::string* mutable_instance_id(); - ::std::string* release_instance_id(); - void set_allocated_instance_id(::std::string* instance_id); - - // int64 start_time = 2; - void clear_start_time(); - static const int kStartTimeFieldNumber = 2; - ::google::protobuf::int64 start_time() const; - void set_start_time(::google::protobuf::int64 value); + void set_component_name(const char* value); + void set_component_name(const char* value, size_t size); + ::std::string* mutable_component_name(); + ::std::string* release_component_name(); + void set_allocated_component_name(::std::string* component_name); + + // bytes plaintext = 2; + void clear_plaintext(); + static const int kPlaintextFieldNumber = 2; + const ::std::string& plaintext() const; + void set_plaintext(const ::std::string& value); + #if LANG_CXX11 + void set_plaintext(::std::string&& value); + #endif + void set_plaintext(const char* value); + void set_plaintext(const void* value, size_t size); + ::std::string* mutable_plaintext(); + ::std::string* release_plaintext(); + void set_allocated_plaintext(::std::string* plaintext); + + // string algorithm = 3; + void clear_algorithm(); + static const int kAlgorithmFieldNumber = 3; + const ::std::string& algorithm() const; + void set_algorithm(const ::std::string& value); + #if LANG_CXX11 + void set_algorithm(::std::string&& value); + #endif + void set_algorithm(const char* value); + void set_algorithm(const char* value, size_t size); + ::std::string* mutable_algorithm(); + ::std::string* release_algorithm(); + void set_allocated_algorithm(::std::string* algorithm); + + // string key_name = 4[json_name = "keyName"]; + void clear_key_name(); + static const int kKeyNameFieldNumber = 4; + const ::std::string& key_name() const; + void set_key_name(const ::std::string& value); + #if LANG_CXX11 + void set_key_name(::std::string&& value); + #endif + void set_key_name(const char* value); + void set_key_name(const char* value, size_t size); + ::std::string* mutable_key_name(); + ::std::string* release_key_name(); + void set_allocated_key_name(::std::string* key_name); + + // bytes nonce = 5; + void clear_nonce(); + static const int kNonceFieldNumber = 5; + const ::std::string& nonce() const; + void set_nonce(const ::std::string& value); + #if LANG_CXX11 + void set_nonce(::std::string&& value); + #endif + void set_nonce(const char* value); + void set_nonce(const void* value, size_t size); + ::std::string* mutable_nonce(); + ::std::string* release_nonce(); + void set_allocated_nonce(::std::string* nonce); + + // bytes associated_data = 6[json_name = "associatedData"]; + void clear_associated_data(); + static const int kAssociatedDataFieldNumber = 6; + const ::std::string& associated_data() const; + void set_associated_data(const ::std::string& value); + #if LANG_CXX11 + void set_associated_data(::std::string&& value); + #endif + void set_associated_data(const char* value); + void set_associated_data(const void* value, size_t size); + ::std::string* mutable_associated_data(); + ::std::string* release_associated_data(); + void set_allocated_associated_data(::std::string* associated_data); - // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.GetWorkflowResponse) + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleEncryptRequest) private: ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; - ::google::protobuf::internal::MapField< - GetWorkflowResponse_MetadataEntry_DoNotUse, - ::std::string, ::std::string, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - 0 > metadata_; - ::google::protobuf::internal::ArenaStringPtr instance_id_; - ::google::protobuf::int64 start_time_; + ::google::protobuf::internal::ArenaStringPtr component_name_; + ::google::protobuf::internal::ArenaStringPtr plaintext_; + ::google::protobuf::internal::ArenaStringPtr algorithm_; + ::google::protobuf::internal::ArenaStringPtr key_name_; + ::google::protobuf::internal::ArenaStringPtr nonce_; + ::google::protobuf::internal::ArenaStringPtr associated_data_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; }; // ------------------------------------------------------------------- -class StartWorkflowRequest_OptionsEntry_DoNotUse : public ::google::protobuf::internal::MapEntry { -public: - typedef ::google::protobuf::internal::MapEntry SuperType; - StartWorkflowRequest_OptionsEntry_DoNotUse(); - StartWorkflowRequest_OptionsEntry_DoNotUse(::google::protobuf::Arena* arena); - void MergeFrom(const StartWorkflowRequest_OptionsEntry_DoNotUse& other); - static const StartWorkflowRequest_OptionsEntry_DoNotUse* internal_default_instance() { return reinterpret_cast(&_StartWorkflowRequest_OptionsEntry_DoNotUse_default_instance_); } - void MergeFrom(const ::google::protobuf::Message& other) final; - ::google::protobuf::Metadata GetMetadata() const; -}; - -// ------------------------------------------------------------------- - -class StartWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.StartWorkflowRequest) */ { +class SubtleEncryptResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleEncryptResponse) */ { public: - StartWorkflowRequest(); - virtual ~StartWorkflowRequest(); + SubtleEncryptResponse(); + virtual ~SubtleEncryptResponse(); - StartWorkflowRequest(const StartWorkflowRequest& from); + SubtleEncryptResponse(const SubtleEncryptResponse& from); - inline StartWorkflowRequest& operator=(const StartWorkflowRequest& from) { + inline SubtleEncryptResponse& operator=(const SubtleEncryptResponse& from) { CopyFrom(from); return *this; } #if LANG_CXX11 - StartWorkflowRequest(StartWorkflowRequest&& from) noexcept - : StartWorkflowRequest() { + SubtleEncryptResponse(SubtleEncryptResponse&& from) noexcept + : SubtleEncryptResponse() { *this = ::std::move(from); } - inline StartWorkflowRequest& operator=(StartWorkflowRequest&& from) noexcept { + inline SubtleEncryptResponse& operator=(SubtleEncryptResponse&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { @@ -8956,34 +9154,34 @@ class StartWorkflowRequest : public ::google::protobuf::Message /* @@protoc_inse } #endif static const ::google::protobuf::Descriptor* descriptor(); - static const StartWorkflowRequest& default_instance(); + static const SubtleEncryptResponse& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY - static inline const StartWorkflowRequest* internal_default_instance() { - return reinterpret_cast( - &_StartWorkflowRequest_default_instance_); + static inline const SubtleEncryptResponse* internal_default_instance() { + return reinterpret_cast( + &_SubtleEncryptResponse_default_instance_); } static constexpr int kIndexInFileMessages = - 84; + 83; - void Swap(StartWorkflowRequest* other); - friend void swap(StartWorkflowRequest& a, StartWorkflowRequest& b) { + void Swap(SubtleEncryptResponse* other); + friend void swap(SubtleEncryptResponse& a, SubtleEncryptResponse& b) { a.Swap(&b); } // implements Message ---------------------------------------------- - inline StartWorkflowRequest* New() const final { - return CreateMaybeMessage(NULL); + inline SubtleEncryptResponse* New() const final { + return CreateMaybeMessage(NULL); } - StartWorkflowRequest* New(::google::protobuf::Arena* arena) const final { - return CreateMaybeMessage(arena); + SubtleEncryptResponse* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; - void CopyFrom(const StartWorkflowRequest& from); - void MergeFrom(const StartWorkflowRequest& from); + void CopyFrom(const SubtleEncryptResponse& from); + void MergeFrom(const SubtleEncryptResponse& from); void Clear() final; bool IsInitialized() const final; @@ -9000,7 +9198,7 @@ class StartWorkflowRequest : public ::google::protobuf::Message /* @@protoc_inse void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(StartWorkflowRequest* other); + void InternalSwap(SubtleEncryptResponse* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; @@ -9014,111 +9212,266 @@ class StartWorkflowRequest : public ::google::protobuf::Message /* @@protoc_inse // nested types ---------------------------------------------------- - // accessors ------------------------------------------------------- - // map options = 4; - int options_size() const; - void clear_options(); - static const int kOptionsFieldNumber = 4; - const ::google::protobuf::Map< ::std::string, ::std::string >& - options() const; - ::google::protobuf::Map< ::std::string, ::std::string >* - mutable_options(); - - // string instance_id = 1; - void clear_instance_id(); - static const int kInstanceIdFieldNumber = 1; - const ::std::string& instance_id() const; - void set_instance_id(const ::std::string& value); + // bytes ciphertext = 1; + void clear_ciphertext(); + static const int kCiphertextFieldNumber = 1; + const ::std::string& ciphertext() const; + void set_ciphertext(const ::std::string& value); #if LANG_CXX11 - void set_instance_id(::std::string&& value); + void set_ciphertext(::std::string&& value); #endif - void set_instance_id(const char* value); - void set_instance_id(const char* value, size_t size); - ::std::string* mutable_instance_id(); - ::std::string* release_instance_id(); - void set_allocated_instance_id(::std::string* instance_id); - - // string workflow_component = 2; - void clear_workflow_component(); - static const int kWorkflowComponentFieldNumber = 2; - const ::std::string& workflow_component() const; - void set_workflow_component(const ::std::string& value); + void set_ciphertext(const char* value); + void set_ciphertext(const void* value, size_t size); + ::std::string* mutable_ciphertext(); + ::std::string* release_ciphertext(); + void set_allocated_ciphertext(::std::string* ciphertext); + + // bytes tag = 2; + void clear_tag(); + static const int kTagFieldNumber = 2; + const ::std::string& tag() const; + void set_tag(const ::std::string& value); #if LANG_CXX11 - void set_workflow_component(::std::string&& value); + void set_tag(::std::string&& value); #endif - void set_workflow_component(const char* value); - void set_workflow_component(const char* value, size_t size); - ::std::string* mutable_workflow_component(); - ::std::string* release_workflow_component(); - void set_allocated_workflow_component(::std::string* workflow_component); + void set_tag(const char* value); + void set_tag(const void* value, size_t size); + ::std::string* mutable_tag(); + ::std::string* release_tag(); + void set_allocated_tag(::std::string* tag); - // string workflow_name = 3; - void clear_workflow_name(); - static const int kWorkflowNameFieldNumber = 3; - const ::std::string& workflow_name() const; - void set_workflow_name(const ::std::string& value); + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleEncryptResponse) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr ciphertext_; + ::google::protobuf::internal::ArenaStringPtr tag_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class SubtleDecryptRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleDecryptRequest) */ { + public: + SubtleDecryptRequest(); + virtual ~SubtleDecryptRequest(); + + SubtleDecryptRequest(const SubtleDecryptRequest& from); + + inline SubtleDecryptRequest& operator=(const SubtleDecryptRequest& from) { + CopyFrom(from); + return *this; + } #if LANG_CXX11 - void set_workflow_name(::std::string&& value); + SubtleDecryptRequest(SubtleDecryptRequest&& from) noexcept + : SubtleDecryptRequest() { + *this = ::std::move(from); + } + + inline SubtleDecryptRequest& operator=(SubtleDecryptRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } #endif - void set_workflow_name(const char* value); - void set_workflow_name(const char* value, size_t size); - ::std::string* mutable_workflow_name(); - ::std::string* release_workflow_name(); - void set_allocated_workflow_name(::std::string* workflow_name); + static const ::google::protobuf::Descriptor* descriptor(); + static const SubtleDecryptRequest& default_instance(); - // bytes input = 5; - void clear_input(); - static const int kInputFieldNumber = 5; - const ::std::string& input() const; - void set_input(const ::std::string& value); + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const SubtleDecryptRequest* internal_default_instance() { + return reinterpret_cast( + &_SubtleDecryptRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 84; + + void Swap(SubtleDecryptRequest* other); + friend void swap(SubtleDecryptRequest& a, SubtleDecryptRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline SubtleDecryptRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + SubtleDecryptRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const SubtleDecryptRequest& from); + void MergeFrom(const SubtleDecryptRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(SubtleDecryptRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string component_name = 1[json_name = "componentName"]; + void clear_component_name(); + static const int kComponentNameFieldNumber = 1; + const ::std::string& component_name() const; + void set_component_name(const ::std::string& value); #if LANG_CXX11 - void set_input(::std::string&& value); + void set_component_name(::std::string&& value); #endif - void set_input(const char* value); - void set_input(const void* value, size_t size); - ::std::string* mutable_input(); - ::std::string* release_input(); - void set_allocated_input(::std::string* input); + void set_component_name(const char* value); + void set_component_name(const char* value, size_t size); + ::std::string* mutable_component_name(); + ::std::string* release_component_name(); + void set_allocated_component_name(::std::string* component_name); + + // bytes ciphertext = 2; + void clear_ciphertext(); + static const int kCiphertextFieldNumber = 2; + const ::std::string& ciphertext() const; + void set_ciphertext(const ::std::string& value); + #if LANG_CXX11 + void set_ciphertext(::std::string&& value); + #endif + void set_ciphertext(const char* value); + void set_ciphertext(const void* value, size_t size); + ::std::string* mutable_ciphertext(); + ::std::string* release_ciphertext(); + void set_allocated_ciphertext(::std::string* ciphertext); + + // string algorithm = 3; + void clear_algorithm(); + static const int kAlgorithmFieldNumber = 3; + const ::std::string& algorithm() const; + void set_algorithm(const ::std::string& value); + #if LANG_CXX11 + void set_algorithm(::std::string&& value); + #endif + void set_algorithm(const char* value); + void set_algorithm(const char* value, size_t size); + ::std::string* mutable_algorithm(); + ::std::string* release_algorithm(); + void set_allocated_algorithm(::std::string* algorithm); + + // string key_name = 4[json_name = "keyName"]; + void clear_key_name(); + static const int kKeyNameFieldNumber = 4; + const ::std::string& key_name() const; + void set_key_name(const ::std::string& value); + #if LANG_CXX11 + void set_key_name(::std::string&& value); + #endif + void set_key_name(const char* value); + void set_key_name(const char* value, size_t size); + ::std::string* mutable_key_name(); + ::std::string* release_key_name(); + void set_allocated_key_name(::std::string* key_name); + + // bytes nonce = 5; + void clear_nonce(); + static const int kNonceFieldNumber = 5; + const ::std::string& nonce() const; + void set_nonce(const ::std::string& value); + #if LANG_CXX11 + void set_nonce(::std::string&& value); + #endif + void set_nonce(const char* value); + void set_nonce(const void* value, size_t size); + ::std::string* mutable_nonce(); + ::std::string* release_nonce(); + void set_allocated_nonce(::std::string* nonce); + + // bytes tag = 6; + void clear_tag(); + static const int kTagFieldNumber = 6; + const ::std::string& tag() const; + void set_tag(const ::std::string& value); + #if LANG_CXX11 + void set_tag(::std::string&& value); + #endif + void set_tag(const char* value); + void set_tag(const void* value, size_t size); + ::std::string* mutable_tag(); + ::std::string* release_tag(); + void set_allocated_tag(::std::string* tag); + + // bytes associated_data = 7[json_name = "associatedData"]; + void clear_associated_data(); + static const int kAssociatedDataFieldNumber = 7; + const ::std::string& associated_data() const; + void set_associated_data(const ::std::string& value); + #if LANG_CXX11 + void set_associated_data(::std::string&& value); + #endif + void set_associated_data(const char* value); + void set_associated_data(const void* value, size_t size); + ::std::string* mutable_associated_data(); + ::std::string* release_associated_data(); + void set_allocated_associated_data(::std::string* associated_data); - // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.StartWorkflowRequest) + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleDecryptRequest) private: ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; - ::google::protobuf::internal::MapField< - StartWorkflowRequest_OptionsEntry_DoNotUse, - ::std::string, ::std::string, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - ::google::protobuf::internal::WireFormatLite::TYPE_STRING, - 0 > options_; - ::google::protobuf::internal::ArenaStringPtr instance_id_; - ::google::protobuf::internal::ArenaStringPtr workflow_component_; - ::google::protobuf::internal::ArenaStringPtr workflow_name_; - ::google::protobuf::internal::ArenaStringPtr input_; + ::google::protobuf::internal::ArenaStringPtr component_name_; + ::google::protobuf::internal::ArenaStringPtr ciphertext_; + ::google::protobuf::internal::ArenaStringPtr algorithm_; + ::google::protobuf::internal::ArenaStringPtr key_name_; + ::google::protobuf::internal::ArenaStringPtr nonce_; + ::google::protobuf::internal::ArenaStringPtr tag_; + ::google::protobuf::internal::ArenaStringPtr associated_data_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; }; // ------------------------------------------------------------------- -class TerminateWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.TerminateWorkflowRequest) */ { +class SubtleDecryptResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleDecryptResponse) */ { public: - TerminateWorkflowRequest(); - virtual ~TerminateWorkflowRequest(); + SubtleDecryptResponse(); + virtual ~SubtleDecryptResponse(); - TerminateWorkflowRequest(const TerminateWorkflowRequest& from); + SubtleDecryptResponse(const SubtleDecryptResponse& from); - inline TerminateWorkflowRequest& operator=(const TerminateWorkflowRequest& from) { + inline SubtleDecryptResponse& operator=(const SubtleDecryptResponse& from) { CopyFrom(from); return *this; } #if LANG_CXX11 - TerminateWorkflowRequest(TerminateWorkflowRequest&& from) noexcept - : TerminateWorkflowRequest() { + SubtleDecryptResponse(SubtleDecryptResponse&& from) noexcept + : SubtleDecryptResponse() { *this = ::std::move(from); } - inline TerminateWorkflowRequest& operator=(TerminateWorkflowRequest&& from) noexcept { + inline SubtleDecryptResponse& operator=(SubtleDecryptResponse&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { @@ -9128,34 +9481,34 @@ class TerminateWorkflowRequest : public ::google::protobuf::Message /* @@protoc_ } #endif static const ::google::protobuf::Descriptor* descriptor(); - static const TerminateWorkflowRequest& default_instance(); + static const SubtleDecryptResponse& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY - static inline const TerminateWorkflowRequest* internal_default_instance() { - return reinterpret_cast( - &_TerminateWorkflowRequest_default_instance_); + static inline const SubtleDecryptResponse* internal_default_instance() { + return reinterpret_cast( + &_SubtleDecryptResponse_default_instance_); } static constexpr int kIndexInFileMessages = 85; - void Swap(TerminateWorkflowRequest* other); - friend void swap(TerminateWorkflowRequest& a, TerminateWorkflowRequest& b) { + void Swap(SubtleDecryptResponse* other); + friend void swap(SubtleDecryptResponse& a, SubtleDecryptResponse& b) { a.Swap(&b); } // implements Message ---------------------------------------------- - inline TerminateWorkflowRequest* New() const final { - return CreateMaybeMessage(NULL); + inline SubtleDecryptResponse* New() const final { + return CreateMaybeMessage(NULL); } - TerminateWorkflowRequest* New(::google::protobuf::Arena* arena) const final { - return CreateMaybeMessage(arena); + SubtleDecryptResponse* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; - void CopyFrom(const TerminateWorkflowRequest& from); - void MergeFrom(const TerminateWorkflowRequest& from); + void CopyFrom(const SubtleDecryptResponse& from); + void MergeFrom(const SubtleDecryptResponse& from); void Clear() final; bool IsInitialized() const final; @@ -9172,7 +9525,7 @@ class TerminateWorkflowRequest : public ::google::protobuf::Message /* @@protoc_ void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(TerminateWorkflowRequest* other); + void InternalSwap(SubtleDecryptResponse* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; @@ -9188,63 +9541,48 @@ class TerminateWorkflowRequest : public ::google::protobuf::Message /* @@protoc_ // accessors ------------------------------------------------------- - // string instance_id = 1; - void clear_instance_id(); - static const int kInstanceIdFieldNumber = 1; - const ::std::string& instance_id() const; - void set_instance_id(const ::std::string& value); - #if LANG_CXX11 - void set_instance_id(::std::string&& value); - #endif - void set_instance_id(const char* value); - void set_instance_id(const char* value, size_t size); - ::std::string* mutable_instance_id(); - ::std::string* release_instance_id(); - void set_allocated_instance_id(::std::string* instance_id); - - // string workflow_component = 2; - void clear_workflow_component(); - static const int kWorkflowComponentFieldNumber = 2; - const ::std::string& workflow_component() const; - void set_workflow_component(const ::std::string& value); + // bytes plaintext = 1; + void clear_plaintext(); + static const int kPlaintextFieldNumber = 1; + const ::std::string& plaintext() const; + void set_plaintext(const ::std::string& value); #if LANG_CXX11 - void set_workflow_component(::std::string&& value); + void set_plaintext(::std::string&& value); #endif - void set_workflow_component(const char* value); - void set_workflow_component(const char* value, size_t size); - ::std::string* mutable_workflow_component(); - ::std::string* release_workflow_component(); - void set_allocated_workflow_component(::std::string* workflow_component); + void set_plaintext(const char* value); + void set_plaintext(const void* value, size_t size); + ::std::string* mutable_plaintext(); + ::std::string* release_plaintext(); + void set_allocated_plaintext(::std::string* plaintext); - // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.TerminateWorkflowRequest) + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleDecryptResponse) private: ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; - ::google::protobuf::internal::ArenaStringPtr instance_id_; - ::google::protobuf::internal::ArenaStringPtr workflow_component_; + ::google::protobuf::internal::ArenaStringPtr plaintext_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; }; // ------------------------------------------------------------------- -class TerminateWorkflowResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.TerminateWorkflowResponse) */ { +class SubtleWrapKeyRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleWrapKeyRequest) */ { public: - TerminateWorkflowResponse(); - virtual ~TerminateWorkflowResponse(); + SubtleWrapKeyRequest(); + virtual ~SubtleWrapKeyRequest(); - TerminateWorkflowResponse(const TerminateWorkflowResponse& from); + SubtleWrapKeyRequest(const SubtleWrapKeyRequest& from); - inline TerminateWorkflowResponse& operator=(const TerminateWorkflowResponse& from) { + inline SubtleWrapKeyRequest& operator=(const SubtleWrapKeyRequest& from) { CopyFrom(from); return *this; } #if LANG_CXX11 - TerminateWorkflowResponse(TerminateWorkflowResponse&& from) noexcept - : TerminateWorkflowResponse() { + SubtleWrapKeyRequest(SubtleWrapKeyRequest&& from) noexcept + : SubtleWrapKeyRequest() { *this = ::std::move(from); } - inline TerminateWorkflowResponse& operator=(TerminateWorkflowResponse&& from) noexcept { + inline SubtleWrapKeyRequest& operator=(SubtleWrapKeyRequest&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { @@ -9254,34 +9592,34 @@ class TerminateWorkflowResponse : public ::google::protobuf::Message /* @@protoc } #endif static const ::google::protobuf::Descriptor* descriptor(); - static const TerminateWorkflowResponse& default_instance(); + static const SubtleWrapKeyRequest& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY - static inline const TerminateWorkflowResponse* internal_default_instance() { - return reinterpret_cast( - &_TerminateWorkflowResponse_default_instance_); + static inline const SubtleWrapKeyRequest* internal_default_instance() { + return reinterpret_cast( + &_SubtleWrapKeyRequest_default_instance_); } static constexpr int kIndexInFileMessages = 86; - void Swap(TerminateWorkflowResponse* other); - friend void swap(TerminateWorkflowResponse& a, TerminateWorkflowResponse& b) { + void Swap(SubtleWrapKeyRequest* other); + friend void swap(SubtleWrapKeyRequest& a, SubtleWrapKeyRequest& b) { a.Swap(&b); } // implements Message ---------------------------------------------- - inline TerminateWorkflowResponse* New() const final { - return CreateMaybeMessage(NULL); + inline SubtleWrapKeyRequest* New() const final { + return CreateMaybeMessage(NULL); } - TerminateWorkflowResponse* New(::google::protobuf::Arena* arena) const final { - return CreateMaybeMessage(arena); + SubtleWrapKeyRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; - void CopyFrom(const TerminateWorkflowResponse& from); - void MergeFrom(const TerminateWorkflowResponse& from); + void CopyFrom(const SubtleWrapKeyRequest& from); + void MergeFrom(const SubtleWrapKeyRequest& from); void Clear() final; bool IsInitialized() const final; @@ -9298,7 +9636,7 @@ class TerminateWorkflowResponse : public ::google::protobuf::Message /* @@protoc void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(TerminateWorkflowResponse* other); + void InternalSwap(SubtleWrapKeyRequest* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; @@ -9314,7872 +9652,14931 @@ class TerminateWorkflowResponse : public ::google::protobuf::Message /* @@protoc // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.TerminateWorkflowResponse) + // string component_name = 1[json_name = "componentName"]; + void clear_component_name(); + static const int kComponentNameFieldNumber = 1; + const ::std::string& component_name() const; + void set_component_name(const ::std::string& value); + #if LANG_CXX11 + void set_component_name(::std::string&& value); + #endif + void set_component_name(const char* value); + void set_component_name(const char* value, size_t size); + ::std::string* mutable_component_name(); + ::std::string* release_component_name(); + void set_allocated_component_name(::std::string* component_name); + + // bytes plaintext_key = 2[json_name = "plaintextKey"]; + void clear_plaintext_key(); + static const int kPlaintextKeyFieldNumber = 2; + const ::std::string& plaintext_key() const; + void set_plaintext_key(const ::std::string& value); + #if LANG_CXX11 + void set_plaintext_key(::std::string&& value); + #endif + void set_plaintext_key(const char* value); + void set_plaintext_key(const void* value, size_t size); + ::std::string* mutable_plaintext_key(); + ::std::string* release_plaintext_key(); + void set_allocated_plaintext_key(::std::string* plaintext_key); + + // string algorithm = 3; + void clear_algorithm(); + static const int kAlgorithmFieldNumber = 3; + const ::std::string& algorithm() const; + void set_algorithm(const ::std::string& value); + #if LANG_CXX11 + void set_algorithm(::std::string&& value); + #endif + void set_algorithm(const char* value); + void set_algorithm(const char* value, size_t size); + ::std::string* mutable_algorithm(); + ::std::string* release_algorithm(); + void set_allocated_algorithm(::std::string* algorithm); + + // string key_name = 4[json_name = "keyName"]; + void clear_key_name(); + static const int kKeyNameFieldNumber = 4; + const ::std::string& key_name() const; + void set_key_name(const ::std::string& value); + #if LANG_CXX11 + void set_key_name(::std::string&& value); + #endif + void set_key_name(const char* value); + void set_key_name(const char* value, size_t size); + ::std::string* mutable_key_name(); + ::std::string* release_key_name(); + void set_allocated_key_name(::std::string* key_name); + + // bytes nonce = 5; + void clear_nonce(); + static const int kNonceFieldNumber = 5; + const ::std::string& nonce() const; + void set_nonce(const ::std::string& value); + #if LANG_CXX11 + void set_nonce(::std::string&& value); + #endif + void set_nonce(const char* value); + void set_nonce(const void* value, size_t size); + ::std::string* mutable_nonce(); + ::std::string* release_nonce(); + void set_allocated_nonce(::std::string* nonce); + + // bytes associated_data = 6[json_name = "associatedData"]; + void clear_associated_data(); + static const int kAssociatedDataFieldNumber = 6; + const ::std::string& associated_data() const; + void set_associated_data(const ::std::string& value); + #if LANG_CXX11 + void set_associated_data(::std::string&& value); + #endif + void set_associated_data(const char* value); + void set_associated_data(const void* value, size_t size); + ::std::string* mutable_associated_data(); + ::std::string* release_associated_data(); + void set_allocated_associated_data(::std::string* associated_data); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleWrapKeyRequest) private: ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr component_name_; + ::google::protobuf::internal::ArenaStringPtr plaintext_key_; + ::google::protobuf::internal::ArenaStringPtr algorithm_; + ::google::protobuf::internal::ArenaStringPtr key_name_; + ::google::protobuf::internal::ArenaStringPtr nonce_; + ::google::protobuf::internal::ArenaStringPtr associated_data_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; }; -// =================================================================== +// ------------------------------------------------------------------- +class SubtleWrapKeyResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleWrapKeyResponse) */ { + public: + SubtleWrapKeyResponse(); + virtual ~SubtleWrapKeyResponse(); -// =================================================================== + SubtleWrapKeyResponse(const SubtleWrapKeyResponse& from); -#ifdef __GNUC__ - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// InvokeServiceRequest + inline SubtleWrapKeyResponse& operator=(const SubtleWrapKeyResponse& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + SubtleWrapKeyResponse(SubtleWrapKeyResponse&& from) noexcept + : SubtleWrapKeyResponse() { + *this = ::std::move(from); + } -// string id = 1; -inline void InvokeServiceRequest::clear_id() { - id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline const ::std::string& InvokeServiceRequest::id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeServiceRequest.id) - return id_.GetNoArena(); -} -inline void InvokeServiceRequest::set_id(const ::std::string& value) { - - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeServiceRequest.id) -} -#if LANG_CXX11 -inline void InvokeServiceRequest::set_id(::std::string&& value) { - - id_.SetNoArena( - &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + inline SubtleWrapKeyResponse& operator=(SubtleWrapKeyResponse&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const SubtleWrapKeyResponse& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const SubtleWrapKeyResponse* internal_default_instance() { + return reinterpret_cast( + &_SubtleWrapKeyResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = + 87; + + void Swap(SubtleWrapKeyResponse* other); + friend void swap(SubtleWrapKeyResponse& a, SubtleWrapKeyResponse& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline SubtleWrapKeyResponse* New() const final { + return CreateMaybeMessage(NULL); + } + + SubtleWrapKeyResponse* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const SubtleWrapKeyResponse& from); + void MergeFrom(const SubtleWrapKeyResponse& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(SubtleWrapKeyResponse* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // bytes wrapped_key = 1[json_name = "wrappedKey"]; + void clear_wrapped_key(); + static const int kWrappedKeyFieldNumber = 1; + const ::std::string& wrapped_key() const; + void set_wrapped_key(const ::std::string& value); + #if LANG_CXX11 + void set_wrapped_key(::std::string&& value); + #endif + void set_wrapped_key(const char* value); + void set_wrapped_key(const void* value, size_t size); + ::std::string* mutable_wrapped_key(); + ::std::string* release_wrapped_key(); + void set_allocated_wrapped_key(::std::string* wrapped_key); + + // bytes tag = 2; + void clear_tag(); + static const int kTagFieldNumber = 2; + const ::std::string& tag() const; + void set_tag(const ::std::string& value); + #if LANG_CXX11 + void set_tag(::std::string&& value); + #endif + void set_tag(const char* value); + void set_tag(const void* value, size_t size); + ::std::string* mutable_tag(); + ::std::string* release_tag(); + void set_allocated_tag(::std::string* tag); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleWrapKeyResponse) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr wrapped_key_; + ::google::protobuf::internal::ArenaStringPtr tag_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class SubtleUnwrapKeyRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) */ { + public: + SubtleUnwrapKeyRequest(); + virtual ~SubtleUnwrapKeyRequest(); + + SubtleUnwrapKeyRequest(const SubtleUnwrapKeyRequest& from); + + inline SubtleUnwrapKeyRequest& operator=(const SubtleUnwrapKeyRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + SubtleUnwrapKeyRequest(SubtleUnwrapKeyRequest&& from) noexcept + : SubtleUnwrapKeyRequest() { + *this = ::std::move(from); + } + + inline SubtleUnwrapKeyRequest& operator=(SubtleUnwrapKeyRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const SubtleUnwrapKeyRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const SubtleUnwrapKeyRequest* internal_default_instance() { + return reinterpret_cast( + &_SubtleUnwrapKeyRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 88; + + void Swap(SubtleUnwrapKeyRequest* other); + friend void swap(SubtleUnwrapKeyRequest& a, SubtleUnwrapKeyRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline SubtleUnwrapKeyRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + SubtleUnwrapKeyRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const SubtleUnwrapKeyRequest& from); + void MergeFrom(const SubtleUnwrapKeyRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(SubtleUnwrapKeyRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string component_name = 1[json_name = "componentName"]; + void clear_component_name(); + static const int kComponentNameFieldNumber = 1; + const ::std::string& component_name() const; + void set_component_name(const ::std::string& value); + #if LANG_CXX11 + void set_component_name(::std::string&& value); + #endif + void set_component_name(const char* value); + void set_component_name(const char* value, size_t size); + ::std::string* mutable_component_name(); + ::std::string* release_component_name(); + void set_allocated_component_name(::std::string* component_name); + + // bytes wrapped_key = 2[json_name = "wrappedKey"]; + void clear_wrapped_key(); + static const int kWrappedKeyFieldNumber = 2; + const ::std::string& wrapped_key() const; + void set_wrapped_key(const ::std::string& value); + #if LANG_CXX11 + void set_wrapped_key(::std::string&& value); + #endif + void set_wrapped_key(const char* value); + void set_wrapped_key(const void* value, size_t size); + ::std::string* mutable_wrapped_key(); + ::std::string* release_wrapped_key(); + void set_allocated_wrapped_key(::std::string* wrapped_key); + + // string algorithm = 3; + void clear_algorithm(); + static const int kAlgorithmFieldNumber = 3; + const ::std::string& algorithm() const; + void set_algorithm(const ::std::string& value); + #if LANG_CXX11 + void set_algorithm(::std::string&& value); + #endif + void set_algorithm(const char* value); + void set_algorithm(const char* value, size_t size); + ::std::string* mutable_algorithm(); + ::std::string* release_algorithm(); + void set_allocated_algorithm(::std::string* algorithm); + + // string key_name = 4[json_name = "keyName"]; + void clear_key_name(); + static const int kKeyNameFieldNumber = 4; + const ::std::string& key_name() const; + void set_key_name(const ::std::string& value); + #if LANG_CXX11 + void set_key_name(::std::string&& value); + #endif + void set_key_name(const char* value); + void set_key_name(const char* value, size_t size); + ::std::string* mutable_key_name(); + ::std::string* release_key_name(); + void set_allocated_key_name(::std::string* key_name); + + // bytes nonce = 5; + void clear_nonce(); + static const int kNonceFieldNumber = 5; + const ::std::string& nonce() const; + void set_nonce(const ::std::string& value); + #if LANG_CXX11 + void set_nonce(::std::string&& value); + #endif + void set_nonce(const char* value); + void set_nonce(const void* value, size_t size); + ::std::string* mutable_nonce(); + ::std::string* release_nonce(); + void set_allocated_nonce(::std::string* nonce); + + // bytes tag = 6; + void clear_tag(); + static const int kTagFieldNumber = 6; + const ::std::string& tag() const; + void set_tag(const ::std::string& value); + #if LANG_CXX11 + void set_tag(::std::string&& value); + #endif + void set_tag(const char* value); + void set_tag(const void* value, size_t size); + ::std::string* mutable_tag(); + ::std::string* release_tag(); + void set_allocated_tag(::std::string* tag); + + // bytes associated_data = 7[json_name = "associatedData"]; + void clear_associated_data(); + static const int kAssociatedDataFieldNumber = 7; + const ::std::string& associated_data() const; + void set_associated_data(const ::std::string& value); + #if LANG_CXX11 + void set_associated_data(::std::string&& value); + #endif + void set_associated_data(const char* value); + void set_associated_data(const void* value, size_t size); + ::std::string* mutable_associated_data(); + ::std::string* release_associated_data(); + void set_allocated_associated_data(::std::string* associated_data); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr component_name_; + ::google::protobuf::internal::ArenaStringPtr wrapped_key_; + ::google::protobuf::internal::ArenaStringPtr algorithm_; + ::google::protobuf::internal::ArenaStringPtr key_name_; + ::google::protobuf::internal::ArenaStringPtr nonce_; + ::google::protobuf::internal::ArenaStringPtr tag_; + ::google::protobuf::internal::ArenaStringPtr associated_data_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class SubtleUnwrapKeyResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) */ { + public: + SubtleUnwrapKeyResponse(); + virtual ~SubtleUnwrapKeyResponse(); + + SubtleUnwrapKeyResponse(const SubtleUnwrapKeyResponse& from); + + inline SubtleUnwrapKeyResponse& operator=(const SubtleUnwrapKeyResponse& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + SubtleUnwrapKeyResponse(SubtleUnwrapKeyResponse&& from) noexcept + : SubtleUnwrapKeyResponse() { + *this = ::std::move(from); + } + + inline SubtleUnwrapKeyResponse& operator=(SubtleUnwrapKeyResponse&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const SubtleUnwrapKeyResponse& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const SubtleUnwrapKeyResponse* internal_default_instance() { + return reinterpret_cast( + &_SubtleUnwrapKeyResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = + 89; + + void Swap(SubtleUnwrapKeyResponse* other); + friend void swap(SubtleUnwrapKeyResponse& a, SubtleUnwrapKeyResponse& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline SubtleUnwrapKeyResponse* New() const final { + return CreateMaybeMessage(NULL); + } + + SubtleUnwrapKeyResponse* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const SubtleUnwrapKeyResponse& from); + void MergeFrom(const SubtleUnwrapKeyResponse& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(SubtleUnwrapKeyResponse* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // bytes plaintext_key = 1[json_name = "plaintextKey"]; + void clear_plaintext_key(); + static const int kPlaintextKeyFieldNumber = 1; + const ::std::string& plaintext_key() const; + void set_plaintext_key(const ::std::string& value); + #if LANG_CXX11 + void set_plaintext_key(::std::string&& value); + #endif + void set_plaintext_key(const char* value); + void set_plaintext_key(const void* value, size_t size); + ::std::string* mutable_plaintext_key(); + ::std::string* release_plaintext_key(); + void set_allocated_plaintext_key(::std::string* plaintext_key); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr plaintext_key_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class SubtleSignRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleSignRequest) */ { + public: + SubtleSignRequest(); + virtual ~SubtleSignRequest(); + + SubtleSignRequest(const SubtleSignRequest& from); + + inline SubtleSignRequest& operator=(const SubtleSignRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + SubtleSignRequest(SubtleSignRequest&& from) noexcept + : SubtleSignRequest() { + *this = ::std::move(from); + } + + inline SubtleSignRequest& operator=(SubtleSignRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const SubtleSignRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const SubtleSignRequest* internal_default_instance() { + return reinterpret_cast( + &_SubtleSignRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 90; + + void Swap(SubtleSignRequest* other); + friend void swap(SubtleSignRequest& a, SubtleSignRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline SubtleSignRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + SubtleSignRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const SubtleSignRequest& from); + void MergeFrom(const SubtleSignRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(SubtleSignRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string component_name = 1[json_name = "componentName"]; + void clear_component_name(); + static const int kComponentNameFieldNumber = 1; + const ::std::string& component_name() const; + void set_component_name(const ::std::string& value); + #if LANG_CXX11 + void set_component_name(::std::string&& value); + #endif + void set_component_name(const char* value); + void set_component_name(const char* value, size_t size); + ::std::string* mutable_component_name(); + ::std::string* release_component_name(); + void set_allocated_component_name(::std::string* component_name); + + // bytes digest = 2; + void clear_digest(); + static const int kDigestFieldNumber = 2; + const ::std::string& digest() const; + void set_digest(const ::std::string& value); + #if LANG_CXX11 + void set_digest(::std::string&& value); + #endif + void set_digest(const char* value); + void set_digest(const void* value, size_t size); + ::std::string* mutable_digest(); + ::std::string* release_digest(); + void set_allocated_digest(::std::string* digest); + + // string algorithm = 3; + void clear_algorithm(); + static const int kAlgorithmFieldNumber = 3; + const ::std::string& algorithm() const; + void set_algorithm(const ::std::string& value); + #if LANG_CXX11 + void set_algorithm(::std::string&& value); + #endif + void set_algorithm(const char* value); + void set_algorithm(const char* value, size_t size); + ::std::string* mutable_algorithm(); + ::std::string* release_algorithm(); + void set_allocated_algorithm(::std::string* algorithm); + + // string key_name = 4[json_name = "keyName"]; + void clear_key_name(); + static const int kKeyNameFieldNumber = 4; + const ::std::string& key_name() const; + void set_key_name(const ::std::string& value); + #if LANG_CXX11 + void set_key_name(::std::string&& value); + #endif + void set_key_name(const char* value); + void set_key_name(const char* value, size_t size); + ::std::string* mutable_key_name(); + ::std::string* release_key_name(); + void set_allocated_key_name(::std::string* key_name); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleSignRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr component_name_; + ::google::protobuf::internal::ArenaStringPtr digest_; + ::google::protobuf::internal::ArenaStringPtr algorithm_; + ::google::protobuf::internal::ArenaStringPtr key_name_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class SubtleSignResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleSignResponse) */ { + public: + SubtleSignResponse(); + virtual ~SubtleSignResponse(); + + SubtleSignResponse(const SubtleSignResponse& from); + + inline SubtleSignResponse& operator=(const SubtleSignResponse& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + SubtleSignResponse(SubtleSignResponse&& from) noexcept + : SubtleSignResponse() { + *this = ::std::move(from); + } + + inline SubtleSignResponse& operator=(SubtleSignResponse&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const SubtleSignResponse& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const SubtleSignResponse* internal_default_instance() { + return reinterpret_cast( + &_SubtleSignResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = + 91; + + void Swap(SubtleSignResponse* other); + friend void swap(SubtleSignResponse& a, SubtleSignResponse& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline SubtleSignResponse* New() const final { + return CreateMaybeMessage(NULL); + } + + SubtleSignResponse* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const SubtleSignResponse& from); + void MergeFrom(const SubtleSignResponse& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(SubtleSignResponse* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // bytes signature = 1; + void clear_signature(); + static const int kSignatureFieldNumber = 1; + const ::std::string& signature() const; + void set_signature(const ::std::string& value); + #if LANG_CXX11 + void set_signature(::std::string&& value); + #endif + void set_signature(const char* value); + void set_signature(const void* value, size_t size); + ::std::string* mutable_signature(); + ::std::string* release_signature(); + void set_allocated_signature(::std::string* signature); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleSignResponse) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr signature_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class SubtleVerifyRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleVerifyRequest) */ { + public: + SubtleVerifyRequest(); + virtual ~SubtleVerifyRequest(); + + SubtleVerifyRequest(const SubtleVerifyRequest& from); + + inline SubtleVerifyRequest& operator=(const SubtleVerifyRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + SubtleVerifyRequest(SubtleVerifyRequest&& from) noexcept + : SubtleVerifyRequest() { + *this = ::std::move(from); + } + + inline SubtleVerifyRequest& operator=(SubtleVerifyRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const SubtleVerifyRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const SubtleVerifyRequest* internal_default_instance() { + return reinterpret_cast( + &_SubtleVerifyRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 92; + + void Swap(SubtleVerifyRequest* other); + friend void swap(SubtleVerifyRequest& a, SubtleVerifyRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline SubtleVerifyRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + SubtleVerifyRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const SubtleVerifyRequest& from); + void MergeFrom(const SubtleVerifyRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(SubtleVerifyRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string component_name = 1[json_name = "componentName"]; + void clear_component_name(); + static const int kComponentNameFieldNumber = 1; + const ::std::string& component_name() const; + void set_component_name(const ::std::string& value); + #if LANG_CXX11 + void set_component_name(::std::string&& value); + #endif + void set_component_name(const char* value); + void set_component_name(const char* value, size_t size); + ::std::string* mutable_component_name(); + ::std::string* release_component_name(); + void set_allocated_component_name(::std::string* component_name); + + // bytes digest = 2; + void clear_digest(); + static const int kDigestFieldNumber = 2; + const ::std::string& digest() const; + void set_digest(const ::std::string& value); + #if LANG_CXX11 + void set_digest(::std::string&& value); + #endif + void set_digest(const char* value); + void set_digest(const void* value, size_t size); + ::std::string* mutable_digest(); + ::std::string* release_digest(); + void set_allocated_digest(::std::string* digest); + + // string algorithm = 3; + void clear_algorithm(); + static const int kAlgorithmFieldNumber = 3; + const ::std::string& algorithm() const; + void set_algorithm(const ::std::string& value); + #if LANG_CXX11 + void set_algorithm(::std::string&& value); + #endif + void set_algorithm(const char* value); + void set_algorithm(const char* value, size_t size); + ::std::string* mutable_algorithm(); + ::std::string* release_algorithm(); + void set_allocated_algorithm(::std::string* algorithm); + + // string key_name = 4[json_name = "keyName"]; + void clear_key_name(); + static const int kKeyNameFieldNumber = 4; + const ::std::string& key_name() const; + void set_key_name(const ::std::string& value); + #if LANG_CXX11 + void set_key_name(::std::string&& value); + #endif + void set_key_name(const char* value); + void set_key_name(const char* value, size_t size); + ::std::string* mutable_key_name(); + ::std::string* release_key_name(); + void set_allocated_key_name(::std::string* key_name); + + // bytes signature = 5; + void clear_signature(); + static const int kSignatureFieldNumber = 5; + const ::std::string& signature() const; + void set_signature(const ::std::string& value); + #if LANG_CXX11 + void set_signature(::std::string&& value); + #endif + void set_signature(const char* value); + void set_signature(const void* value, size_t size); + ::std::string* mutable_signature(); + ::std::string* release_signature(); + void set_allocated_signature(::std::string* signature); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleVerifyRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr component_name_; + ::google::protobuf::internal::ArenaStringPtr digest_; + ::google::protobuf::internal::ArenaStringPtr algorithm_; + ::google::protobuf::internal::ArenaStringPtr key_name_; + ::google::protobuf::internal::ArenaStringPtr signature_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class SubtleVerifyResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.SubtleVerifyResponse) */ { + public: + SubtleVerifyResponse(); + virtual ~SubtleVerifyResponse(); + + SubtleVerifyResponse(const SubtleVerifyResponse& from); + + inline SubtleVerifyResponse& operator=(const SubtleVerifyResponse& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + SubtleVerifyResponse(SubtleVerifyResponse&& from) noexcept + : SubtleVerifyResponse() { + *this = ::std::move(from); + } + + inline SubtleVerifyResponse& operator=(SubtleVerifyResponse&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const SubtleVerifyResponse& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const SubtleVerifyResponse* internal_default_instance() { + return reinterpret_cast( + &_SubtleVerifyResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = + 93; + + void Swap(SubtleVerifyResponse* other); + friend void swap(SubtleVerifyResponse& a, SubtleVerifyResponse& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline SubtleVerifyResponse* New() const final { + return CreateMaybeMessage(NULL); + } + + SubtleVerifyResponse* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const SubtleVerifyResponse& from); + void MergeFrom(const SubtleVerifyResponse& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(SubtleVerifyResponse* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // bool valid = 1; + void clear_valid(); + static const int kValidFieldNumber = 1; + bool valid() const; + void set_valid(bool value); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.SubtleVerifyResponse) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + bool valid_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class EncryptRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.EncryptRequest) */ { + public: + EncryptRequest(); + virtual ~EncryptRequest(); + + EncryptRequest(const EncryptRequest& from); + + inline EncryptRequest& operator=(const EncryptRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + EncryptRequest(EncryptRequest&& from) noexcept + : EncryptRequest() { + *this = ::std::move(from); + } + + inline EncryptRequest& operator=(EncryptRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const EncryptRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const EncryptRequest* internal_default_instance() { + return reinterpret_cast( + &_EncryptRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 94; + + void Swap(EncryptRequest* other); + friend void swap(EncryptRequest& a, EncryptRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline EncryptRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + EncryptRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const EncryptRequest& from); + void MergeFrom(const EncryptRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(EncryptRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // .dapr.proto.runtime.v1.EncryptRequestOptions options = 1; + bool has_options() const; + void clear_options(); + static const int kOptionsFieldNumber = 1; + private: + const ::dapr::proto::runtime::v1::EncryptRequestOptions& _internal_options() const; + public: + const ::dapr::proto::runtime::v1::EncryptRequestOptions& options() const; + ::dapr::proto::runtime::v1::EncryptRequestOptions* release_options(); + ::dapr::proto::runtime::v1::EncryptRequestOptions* mutable_options(); + void set_allocated_options(::dapr::proto::runtime::v1::EncryptRequestOptions* options); + + // .dapr.proto.common.v1.StreamPayload payload = 2; + bool has_payload() const; + void clear_payload(); + static const int kPayloadFieldNumber = 2; + private: + const ::dapr::proto::common::v1::StreamPayload& _internal_payload() const; + public: + const ::dapr::proto::common::v1::StreamPayload& payload() const; + ::dapr::proto::common::v1::StreamPayload* release_payload(); + ::dapr::proto::common::v1::StreamPayload* mutable_payload(); + void set_allocated_payload(::dapr::proto::common::v1::StreamPayload* payload); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.EncryptRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::dapr::proto::runtime::v1::EncryptRequestOptions* options_; + ::dapr::proto::common::v1::StreamPayload* payload_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class EncryptRequestOptions : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.EncryptRequestOptions) */ { + public: + EncryptRequestOptions(); + virtual ~EncryptRequestOptions(); + + EncryptRequestOptions(const EncryptRequestOptions& from); + + inline EncryptRequestOptions& operator=(const EncryptRequestOptions& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + EncryptRequestOptions(EncryptRequestOptions&& from) noexcept + : EncryptRequestOptions() { + *this = ::std::move(from); + } + + inline EncryptRequestOptions& operator=(EncryptRequestOptions&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const EncryptRequestOptions& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const EncryptRequestOptions* internal_default_instance() { + return reinterpret_cast( + &_EncryptRequestOptions_default_instance_); + } + static constexpr int kIndexInFileMessages = + 95; + + void Swap(EncryptRequestOptions* other); + friend void swap(EncryptRequestOptions& a, EncryptRequestOptions& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline EncryptRequestOptions* New() const final { + return CreateMaybeMessage(NULL); + } + + EncryptRequestOptions* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const EncryptRequestOptions& from); + void MergeFrom(const EncryptRequestOptions& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(EncryptRequestOptions* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string component_name = 1[json_name = "componentName"]; + void clear_component_name(); + static const int kComponentNameFieldNumber = 1; + const ::std::string& component_name() const; + void set_component_name(const ::std::string& value); + #if LANG_CXX11 + void set_component_name(::std::string&& value); + #endif + void set_component_name(const char* value); + void set_component_name(const char* value, size_t size); + ::std::string* mutable_component_name(); + ::std::string* release_component_name(); + void set_allocated_component_name(::std::string* component_name); + + // string key_name = 2[json_name = "keyName"]; + void clear_key_name(); + static const int kKeyNameFieldNumber = 2; + const ::std::string& key_name() const; + void set_key_name(const ::std::string& value); + #if LANG_CXX11 + void set_key_name(::std::string&& value); + #endif + void set_key_name(const char* value); + void set_key_name(const char* value, size_t size); + ::std::string* mutable_key_name(); + ::std::string* release_key_name(); + void set_allocated_key_name(::std::string* key_name); + + // string key_wrap_algorithm = 3; + void clear_key_wrap_algorithm(); + static const int kKeyWrapAlgorithmFieldNumber = 3; + const ::std::string& key_wrap_algorithm() const; + void set_key_wrap_algorithm(const ::std::string& value); + #if LANG_CXX11 + void set_key_wrap_algorithm(::std::string&& value); + #endif + void set_key_wrap_algorithm(const char* value); + void set_key_wrap_algorithm(const char* value, size_t size); + ::std::string* mutable_key_wrap_algorithm(); + ::std::string* release_key_wrap_algorithm(); + void set_allocated_key_wrap_algorithm(::std::string* key_wrap_algorithm); + + // string data_encryption_cipher = 10; + void clear_data_encryption_cipher(); + static const int kDataEncryptionCipherFieldNumber = 10; + const ::std::string& data_encryption_cipher() const; + void set_data_encryption_cipher(const ::std::string& value); + #if LANG_CXX11 + void set_data_encryption_cipher(::std::string&& value); + #endif + void set_data_encryption_cipher(const char* value); + void set_data_encryption_cipher(const char* value, size_t size); + ::std::string* mutable_data_encryption_cipher(); + ::std::string* release_data_encryption_cipher(); + void set_allocated_data_encryption_cipher(::std::string* data_encryption_cipher); + + // string decryption_key_name = 12[json_name = "decryptionKeyName"]; + void clear_decryption_key_name(); + static const int kDecryptionKeyNameFieldNumber = 12; + const ::std::string& decryption_key_name() const; + void set_decryption_key_name(const ::std::string& value); + #if LANG_CXX11 + void set_decryption_key_name(::std::string&& value); + #endif + void set_decryption_key_name(const char* value); + void set_decryption_key_name(const char* value, size_t size); + ::std::string* mutable_decryption_key_name(); + ::std::string* release_decryption_key_name(); + void set_allocated_decryption_key_name(::std::string* decryption_key_name); + + // bool omit_decryption_key_name = 11[json_name = "omitDecryptionKeyName"]; + void clear_omit_decryption_key_name(); + static const int kOmitDecryptionKeyNameFieldNumber = 11; + bool omit_decryption_key_name() const; + void set_omit_decryption_key_name(bool value); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.EncryptRequestOptions) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr component_name_; + ::google::protobuf::internal::ArenaStringPtr key_name_; + ::google::protobuf::internal::ArenaStringPtr key_wrap_algorithm_; + ::google::protobuf::internal::ArenaStringPtr data_encryption_cipher_; + ::google::protobuf::internal::ArenaStringPtr decryption_key_name_; + bool omit_decryption_key_name_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class EncryptResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.EncryptResponse) */ { + public: + EncryptResponse(); + virtual ~EncryptResponse(); + + EncryptResponse(const EncryptResponse& from); + + inline EncryptResponse& operator=(const EncryptResponse& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + EncryptResponse(EncryptResponse&& from) noexcept + : EncryptResponse() { + *this = ::std::move(from); + } + + inline EncryptResponse& operator=(EncryptResponse&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const EncryptResponse& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const EncryptResponse* internal_default_instance() { + return reinterpret_cast( + &_EncryptResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = + 96; + + void Swap(EncryptResponse* other); + friend void swap(EncryptResponse& a, EncryptResponse& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline EncryptResponse* New() const final { + return CreateMaybeMessage(NULL); + } + + EncryptResponse* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const EncryptResponse& from); + void MergeFrom(const EncryptResponse& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(EncryptResponse* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // .dapr.proto.common.v1.StreamPayload payload = 1; + bool has_payload() const; + void clear_payload(); + static const int kPayloadFieldNumber = 1; + private: + const ::dapr::proto::common::v1::StreamPayload& _internal_payload() const; + public: + const ::dapr::proto::common::v1::StreamPayload& payload() const; + ::dapr::proto::common::v1::StreamPayload* release_payload(); + ::dapr::proto::common::v1::StreamPayload* mutable_payload(); + void set_allocated_payload(::dapr::proto::common::v1::StreamPayload* payload); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.EncryptResponse) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::dapr::proto::common::v1::StreamPayload* payload_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class DecryptRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.DecryptRequest) */ { + public: + DecryptRequest(); + virtual ~DecryptRequest(); + + DecryptRequest(const DecryptRequest& from); + + inline DecryptRequest& operator=(const DecryptRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + DecryptRequest(DecryptRequest&& from) noexcept + : DecryptRequest() { + *this = ::std::move(from); + } + + inline DecryptRequest& operator=(DecryptRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const DecryptRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const DecryptRequest* internal_default_instance() { + return reinterpret_cast( + &_DecryptRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 97; + + void Swap(DecryptRequest* other); + friend void swap(DecryptRequest& a, DecryptRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline DecryptRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + DecryptRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const DecryptRequest& from); + void MergeFrom(const DecryptRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(DecryptRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // .dapr.proto.runtime.v1.DecryptRequestOptions options = 1; + bool has_options() const; + void clear_options(); + static const int kOptionsFieldNumber = 1; + private: + const ::dapr::proto::runtime::v1::DecryptRequestOptions& _internal_options() const; + public: + const ::dapr::proto::runtime::v1::DecryptRequestOptions& options() const; + ::dapr::proto::runtime::v1::DecryptRequestOptions* release_options(); + ::dapr::proto::runtime::v1::DecryptRequestOptions* mutable_options(); + void set_allocated_options(::dapr::proto::runtime::v1::DecryptRequestOptions* options); + + // .dapr.proto.common.v1.StreamPayload payload = 2; + bool has_payload() const; + void clear_payload(); + static const int kPayloadFieldNumber = 2; + private: + const ::dapr::proto::common::v1::StreamPayload& _internal_payload() const; + public: + const ::dapr::proto::common::v1::StreamPayload& payload() const; + ::dapr::proto::common::v1::StreamPayload* release_payload(); + ::dapr::proto::common::v1::StreamPayload* mutable_payload(); + void set_allocated_payload(::dapr::proto::common::v1::StreamPayload* payload); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.DecryptRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::dapr::proto::runtime::v1::DecryptRequestOptions* options_; + ::dapr::proto::common::v1::StreamPayload* payload_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class DecryptRequestOptions : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.DecryptRequestOptions) */ { + public: + DecryptRequestOptions(); + virtual ~DecryptRequestOptions(); + + DecryptRequestOptions(const DecryptRequestOptions& from); + + inline DecryptRequestOptions& operator=(const DecryptRequestOptions& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + DecryptRequestOptions(DecryptRequestOptions&& from) noexcept + : DecryptRequestOptions() { + *this = ::std::move(from); + } + + inline DecryptRequestOptions& operator=(DecryptRequestOptions&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const DecryptRequestOptions& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const DecryptRequestOptions* internal_default_instance() { + return reinterpret_cast( + &_DecryptRequestOptions_default_instance_); + } + static constexpr int kIndexInFileMessages = + 98; + + void Swap(DecryptRequestOptions* other); + friend void swap(DecryptRequestOptions& a, DecryptRequestOptions& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline DecryptRequestOptions* New() const final { + return CreateMaybeMessage(NULL); + } + + DecryptRequestOptions* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const DecryptRequestOptions& from); + void MergeFrom(const DecryptRequestOptions& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(DecryptRequestOptions* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string component_name = 1[json_name = "componentName"]; + void clear_component_name(); + static const int kComponentNameFieldNumber = 1; + const ::std::string& component_name() const; + void set_component_name(const ::std::string& value); + #if LANG_CXX11 + void set_component_name(::std::string&& value); + #endif + void set_component_name(const char* value); + void set_component_name(const char* value, size_t size); + ::std::string* mutable_component_name(); + ::std::string* release_component_name(); + void set_allocated_component_name(::std::string* component_name); + + // string key_name = 12[json_name = "keyName"]; + void clear_key_name(); + static const int kKeyNameFieldNumber = 12; + const ::std::string& key_name() const; + void set_key_name(const ::std::string& value); + #if LANG_CXX11 + void set_key_name(::std::string&& value); + #endif + void set_key_name(const char* value); + void set_key_name(const char* value, size_t size); + ::std::string* mutable_key_name(); + ::std::string* release_key_name(); + void set_allocated_key_name(::std::string* key_name); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.DecryptRequestOptions) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr component_name_; + ::google::protobuf::internal::ArenaStringPtr key_name_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class DecryptResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.DecryptResponse) */ { + public: + DecryptResponse(); + virtual ~DecryptResponse(); + + DecryptResponse(const DecryptResponse& from); + + inline DecryptResponse& operator=(const DecryptResponse& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + DecryptResponse(DecryptResponse&& from) noexcept + : DecryptResponse() { + *this = ::std::move(from); + } + + inline DecryptResponse& operator=(DecryptResponse&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const DecryptResponse& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const DecryptResponse* internal_default_instance() { + return reinterpret_cast( + &_DecryptResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = + 99; + + void Swap(DecryptResponse* other); + friend void swap(DecryptResponse& a, DecryptResponse& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline DecryptResponse* New() const final { + return CreateMaybeMessage(NULL); + } + + DecryptResponse* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const DecryptResponse& from); + void MergeFrom(const DecryptResponse& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(DecryptResponse* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // .dapr.proto.common.v1.StreamPayload payload = 1; + bool has_payload() const; + void clear_payload(); + static const int kPayloadFieldNumber = 1; + private: + const ::dapr::proto::common::v1::StreamPayload& _internal_payload() const; + public: + const ::dapr::proto::common::v1::StreamPayload& payload() const; + ::dapr::proto::common::v1::StreamPayload* release_payload(); + ::dapr::proto::common::v1::StreamPayload* mutable_payload(); + void set_allocated_payload(::dapr::proto::common::v1::StreamPayload* payload); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.DecryptResponse) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::dapr::proto::common::v1::StreamPayload* payload_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class GetWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.GetWorkflowRequest) */ { + public: + GetWorkflowRequest(); + virtual ~GetWorkflowRequest(); + + GetWorkflowRequest(const GetWorkflowRequest& from); + + inline GetWorkflowRequest& operator=(const GetWorkflowRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + GetWorkflowRequest(GetWorkflowRequest&& from) noexcept + : GetWorkflowRequest() { + *this = ::std::move(from); + } + + inline GetWorkflowRequest& operator=(GetWorkflowRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const GetWorkflowRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const GetWorkflowRequest* internal_default_instance() { + return reinterpret_cast( + &_GetWorkflowRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 100; + + void Swap(GetWorkflowRequest* other); + friend void swap(GetWorkflowRequest& a, GetWorkflowRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline GetWorkflowRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + GetWorkflowRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const GetWorkflowRequest& from); + void MergeFrom(const GetWorkflowRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(GetWorkflowRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string instance_id = 1[json_name = "instanceID"]; + void clear_instance_id(); + static const int kInstanceIdFieldNumber = 1; + const ::std::string& instance_id() const; + void set_instance_id(const ::std::string& value); + #if LANG_CXX11 + void set_instance_id(::std::string&& value); + #endif + void set_instance_id(const char* value); + void set_instance_id(const char* value, size_t size); + ::std::string* mutable_instance_id(); + ::std::string* release_instance_id(); + void set_allocated_instance_id(::std::string* instance_id); + + // string workflow_component = 2[json_name = "workflowComponent"]; + void clear_workflow_component(); + static const int kWorkflowComponentFieldNumber = 2; + const ::std::string& workflow_component() const; + void set_workflow_component(const ::std::string& value); + #if LANG_CXX11 + void set_workflow_component(::std::string&& value); + #endif + void set_workflow_component(const char* value); + void set_workflow_component(const char* value, size_t size); + ::std::string* mutable_workflow_component(); + ::std::string* release_workflow_component(); + void set_allocated_workflow_component(::std::string* workflow_component); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.GetWorkflowRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr instance_id_; + ::google::protobuf::internal::ArenaStringPtr workflow_component_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class GetWorkflowResponse_PropertiesEntry_DoNotUse : public ::google::protobuf::internal::MapEntry { +public: + typedef ::google::protobuf::internal::MapEntry SuperType; + GetWorkflowResponse_PropertiesEntry_DoNotUse(); + GetWorkflowResponse_PropertiesEntry_DoNotUse(::google::protobuf::Arena* arena); + void MergeFrom(const GetWorkflowResponse_PropertiesEntry_DoNotUse& other); + static const GetWorkflowResponse_PropertiesEntry_DoNotUse* internal_default_instance() { return reinterpret_cast(&_GetWorkflowResponse_PropertiesEntry_DoNotUse_default_instance_); } + void MergeFrom(const ::google::protobuf::Message& other) final; + ::google::protobuf::Metadata GetMetadata() const; +}; + +// ------------------------------------------------------------------- + +class GetWorkflowResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.GetWorkflowResponse) */ { + public: + GetWorkflowResponse(); + virtual ~GetWorkflowResponse(); + + GetWorkflowResponse(const GetWorkflowResponse& from); + + inline GetWorkflowResponse& operator=(const GetWorkflowResponse& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + GetWorkflowResponse(GetWorkflowResponse&& from) noexcept + : GetWorkflowResponse() { + *this = ::std::move(from); + } + + inline GetWorkflowResponse& operator=(GetWorkflowResponse&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const GetWorkflowResponse& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const GetWorkflowResponse* internal_default_instance() { + return reinterpret_cast( + &_GetWorkflowResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = + 102; + + void Swap(GetWorkflowResponse* other); + friend void swap(GetWorkflowResponse& a, GetWorkflowResponse& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline GetWorkflowResponse* New() const final { + return CreateMaybeMessage(NULL); + } + + GetWorkflowResponse* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const GetWorkflowResponse& from); + void MergeFrom(const GetWorkflowResponse& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(GetWorkflowResponse* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + + // accessors ------------------------------------------------------- + + // map properties = 6; + int properties_size() const; + void clear_properties(); + static const int kPropertiesFieldNumber = 6; + const ::google::protobuf::Map< ::std::string, ::std::string >& + properties() const; + ::google::protobuf::Map< ::std::string, ::std::string >* + mutable_properties(); + + // string instance_id = 1[json_name = "instanceID"]; + void clear_instance_id(); + static const int kInstanceIdFieldNumber = 1; + const ::std::string& instance_id() const; + void set_instance_id(const ::std::string& value); + #if LANG_CXX11 + void set_instance_id(::std::string&& value); + #endif + void set_instance_id(const char* value); + void set_instance_id(const char* value, size_t size); + ::std::string* mutable_instance_id(); + ::std::string* release_instance_id(); + void set_allocated_instance_id(::std::string* instance_id); + + // string workflow_name = 2[json_name = "workflowName"]; + void clear_workflow_name(); + static const int kWorkflowNameFieldNumber = 2; + const ::std::string& workflow_name() const; + void set_workflow_name(const ::std::string& value); + #if LANG_CXX11 + void set_workflow_name(::std::string&& value); + #endif + void set_workflow_name(const char* value); + void set_workflow_name(const char* value, size_t size); + ::std::string* mutable_workflow_name(); + ::std::string* release_workflow_name(); + void set_allocated_workflow_name(::std::string* workflow_name); + + // string runtime_status = 5[json_name = "runtimeStatus"]; + void clear_runtime_status(); + static const int kRuntimeStatusFieldNumber = 5; + const ::std::string& runtime_status() const; + void set_runtime_status(const ::std::string& value); + #if LANG_CXX11 + void set_runtime_status(::std::string&& value); + #endif + void set_runtime_status(const char* value); + void set_runtime_status(const char* value, size_t size); + ::std::string* mutable_runtime_status(); + ::std::string* release_runtime_status(); + void set_allocated_runtime_status(::std::string* runtime_status); + + // .google.protobuf.Timestamp created_at = 3[json_name = "createdAt"]; + bool has_created_at() const; + void clear_created_at(); + static const int kCreatedAtFieldNumber = 3; + private: + const ::google::protobuf::Timestamp& _internal_created_at() const; + public: + const ::google::protobuf::Timestamp& created_at() const; + ::google::protobuf::Timestamp* release_created_at(); + ::google::protobuf::Timestamp* mutable_created_at(); + void set_allocated_created_at(::google::protobuf::Timestamp* created_at); + + // .google.protobuf.Timestamp last_updated_at = 4[json_name = "lastUpdatedAt"]; + bool has_last_updated_at() const; + void clear_last_updated_at(); + static const int kLastUpdatedAtFieldNumber = 4; + private: + const ::google::protobuf::Timestamp& _internal_last_updated_at() const; + public: + const ::google::protobuf::Timestamp& last_updated_at() const; + ::google::protobuf::Timestamp* release_last_updated_at(); + ::google::protobuf::Timestamp* mutable_last_updated_at(); + void set_allocated_last_updated_at(::google::protobuf::Timestamp* last_updated_at); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.GetWorkflowResponse) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::MapField< + GetWorkflowResponse_PropertiesEntry_DoNotUse, + ::std::string, ::std::string, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + 0 > properties_; + ::google::protobuf::internal::ArenaStringPtr instance_id_; + ::google::protobuf::internal::ArenaStringPtr workflow_name_; + ::google::protobuf::internal::ArenaStringPtr runtime_status_; + ::google::protobuf::Timestamp* created_at_; + ::google::protobuf::Timestamp* last_updated_at_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class StartWorkflowRequest_OptionsEntry_DoNotUse : public ::google::protobuf::internal::MapEntry { +public: + typedef ::google::protobuf::internal::MapEntry SuperType; + StartWorkflowRequest_OptionsEntry_DoNotUse(); + StartWorkflowRequest_OptionsEntry_DoNotUse(::google::protobuf::Arena* arena); + void MergeFrom(const StartWorkflowRequest_OptionsEntry_DoNotUse& other); + static const StartWorkflowRequest_OptionsEntry_DoNotUse* internal_default_instance() { return reinterpret_cast(&_StartWorkflowRequest_OptionsEntry_DoNotUse_default_instance_); } + void MergeFrom(const ::google::protobuf::Message& other) final; + ::google::protobuf::Metadata GetMetadata() const; +}; + +// ------------------------------------------------------------------- + +class StartWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.StartWorkflowRequest) */ { + public: + StartWorkflowRequest(); + virtual ~StartWorkflowRequest(); + + StartWorkflowRequest(const StartWorkflowRequest& from); + + inline StartWorkflowRequest& operator=(const StartWorkflowRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + StartWorkflowRequest(StartWorkflowRequest&& from) noexcept + : StartWorkflowRequest() { + *this = ::std::move(from); + } + + inline StartWorkflowRequest& operator=(StartWorkflowRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const StartWorkflowRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const StartWorkflowRequest* internal_default_instance() { + return reinterpret_cast( + &_StartWorkflowRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 104; + + void Swap(StartWorkflowRequest* other); + friend void swap(StartWorkflowRequest& a, StartWorkflowRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline StartWorkflowRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + StartWorkflowRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const StartWorkflowRequest& from); + void MergeFrom(const StartWorkflowRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(StartWorkflowRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + + // accessors ------------------------------------------------------- + + // map options = 4; + int options_size() const; + void clear_options(); + static const int kOptionsFieldNumber = 4; + const ::google::protobuf::Map< ::std::string, ::std::string >& + options() const; + ::google::protobuf::Map< ::std::string, ::std::string >* + mutable_options(); + + // string instance_id = 1[json_name = "instanceID"]; + void clear_instance_id(); + static const int kInstanceIdFieldNumber = 1; + const ::std::string& instance_id() const; + void set_instance_id(const ::std::string& value); + #if LANG_CXX11 + void set_instance_id(::std::string&& value); + #endif + void set_instance_id(const char* value); + void set_instance_id(const char* value, size_t size); + ::std::string* mutable_instance_id(); + ::std::string* release_instance_id(); + void set_allocated_instance_id(::std::string* instance_id); + + // string workflow_component = 2[json_name = "workflowComponent"]; + void clear_workflow_component(); + static const int kWorkflowComponentFieldNumber = 2; + const ::std::string& workflow_component() const; + void set_workflow_component(const ::std::string& value); + #if LANG_CXX11 + void set_workflow_component(::std::string&& value); + #endif + void set_workflow_component(const char* value); + void set_workflow_component(const char* value, size_t size); + ::std::string* mutable_workflow_component(); + ::std::string* release_workflow_component(); + void set_allocated_workflow_component(::std::string* workflow_component); + + // string workflow_name = 3[json_name = "workflowName"]; + void clear_workflow_name(); + static const int kWorkflowNameFieldNumber = 3; + const ::std::string& workflow_name() const; + void set_workflow_name(const ::std::string& value); + #if LANG_CXX11 + void set_workflow_name(::std::string&& value); + #endif + void set_workflow_name(const char* value); + void set_workflow_name(const char* value, size_t size); + ::std::string* mutable_workflow_name(); + ::std::string* release_workflow_name(); + void set_allocated_workflow_name(::std::string* workflow_name); + + // bytes input = 5; + void clear_input(); + static const int kInputFieldNumber = 5; + const ::std::string& input() const; + void set_input(const ::std::string& value); + #if LANG_CXX11 + void set_input(::std::string&& value); + #endif + void set_input(const char* value); + void set_input(const void* value, size_t size); + ::std::string* mutable_input(); + ::std::string* release_input(); + void set_allocated_input(::std::string* input); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.StartWorkflowRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::MapField< + StartWorkflowRequest_OptionsEntry_DoNotUse, + ::std::string, ::std::string, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + ::google::protobuf::internal::WireFormatLite::TYPE_STRING, + 0 > options_; + ::google::protobuf::internal::ArenaStringPtr instance_id_; + ::google::protobuf::internal::ArenaStringPtr workflow_component_; + ::google::protobuf::internal::ArenaStringPtr workflow_name_; + ::google::protobuf::internal::ArenaStringPtr input_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class StartWorkflowResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.StartWorkflowResponse) */ { + public: + StartWorkflowResponse(); + virtual ~StartWorkflowResponse(); + + StartWorkflowResponse(const StartWorkflowResponse& from); + + inline StartWorkflowResponse& operator=(const StartWorkflowResponse& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + StartWorkflowResponse(StartWorkflowResponse&& from) noexcept + : StartWorkflowResponse() { + *this = ::std::move(from); + } + + inline StartWorkflowResponse& operator=(StartWorkflowResponse&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const StartWorkflowResponse& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const StartWorkflowResponse* internal_default_instance() { + return reinterpret_cast( + &_StartWorkflowResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = + 105; + + void Swap(StartWorkflowResponse* other); + friend void swap(StartWorkflowResponse& a, StartWorkflowResponse& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline StartWorkflowResponse* New() const final { + return CreateMaybeMessage(NULL); + } + + StartWorkflowResponse* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const StartWorkflowResponse& from); + void MergeFrom(const StartWorkflowResponse& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(StartWorkflowResponse* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string instance_id = 1[json_name = "instanceID"]; + void clear_instance_id(); + static const int kInstanceIdFieldNumber = 1; + const ::std::string& instance_id() const; + void set_instance_id(const ::std::string& value); + #if LANG_CXX11 + void set_instance_id(::std::string&& value); + #endif + void set_instance_id(const char* value); + void set_instance_id(const char* value, size_t size); + ::std::string* mutable_instance_id(); + ::std::string* release_instance_id(); + void set_allocated_instance_id(::std::string* instance_id); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.StartWorkflowResponse) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr instance_id_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class TerminateWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.TerminateWorkflowRequest) */ { + public: + TerminateWorkflowRequest(); + virtual ~TerminateWorkflowRequest(); + + TerminateWorkflowRequest(const TerminateWorkflowRequest& from); + + inline TerminateWorkflowRequest& operator=(const TerminateWorkflowRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + TerminateWorkflowRequest(TerminateWorkflowRequest&& from) noexcept + : TerminateWorkflowRequest() { + *this = ::std::move(from); + } + + inline TerminateWorkflowRequest& operator=(TerminateWorkflowRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const TerminateWorkflowRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const TerminateWorkflowRequest* internal_default_instance() { + return reinterpret_cast( + &_TerminateWorkflowRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 106; + + void Swap(TerminateWorkflowRequest* other); + friend void swap(TerminateWorkflowRequest& a, TerminateWorkflowRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline TerminateWorkflowRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + TerminateWorkflowRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const TerminateWorkflowRequest& from); + void MergeFrom(const TerminateWorkflowRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(TerminateWorkflowRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string instance_id = 1[json_name = "instanceID"]; + void clear_instance_id(); + static const int kInstanceIdFieldNumber = 1; + const ::std::string& instance_id() const; + void set_instance_id(const ::std::string& value); + #if LANG_CXX11 + void set_instance_id(::std::string&& value); + #endif + void set_instance_id(const char* value); + void set_instance_id(const char* value, size_t size); + ::std::string* mutable_instance_id(); + ::std::string* release_instance_id(); + void set_allocated_instance_id(::std::string* instance_id); + + // string workflow_component = 2[json_name = "workflowComponent"]; + void clear_workflow_component(); + static const int kWorkflowComponentFieldNumber = 2; + const ::std::string& workflow_component() const; + void set_workflow_component(const ::std::string& value); + #if LANG_CXX11 + void set_workflow_component(::std::string&& value); + #endif + void set_workflow_component(const char* value); + void set_workflow_component(const char* value, size_t size); + ::std::string* mutable_workflow_component(); + ::std::string* release_workflow_component(); + void set_allocated_workflow_component(::std::string* workflow_component); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.TerminateWorkflowRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr instance_id_; + ::google::protobuf::internal::ArenaStringPtr workflow_component_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class PauseWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.PauseWorkflowRequest) */ { + public: + PauseWorkflowRequest(); + virtual ~PauseWorkflowRequest(); + + PauseWorkflowRequest(const PauseWorkflowRequest& from); + + inline PauseWorkflowRequest& operator=(const PauseWorkflowRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + PauseWorkflowRequest(PauseWorkflowRequest&& from) noexcept + : PauseWorkflowRequest() { + *this = ::std::move(from); + } + + inline PauseWorkflowRequest& operator=(PauseWorkflowRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const PauseWorkflowRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const PauseWorkflowRequest* internal_default_instance() { + return reinterpret_cast( + &_PauseWorkflowRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 107; + + void Swap(PauseWorkflowRequest* other); + friend void swap(PauseWorkflowRequest& a, PauseWorkflowRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline PauseWorkflowRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + PauseWorkflowRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const PauseWorkflowRequest& from); + void MergeFrom(const PauseWorkflowRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(PauseWorkflowRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string instance_id = 1[json_name = "instanceID"]; + void clear_instance_id(); + static const int kInstanceIdFieldNumber = 1; + const ::std::string& instance_id() const; + void set_instance_id(const ::std::string& value); + #if LANG_CXX11 + void set_instance_id(::std::string&& value); + #endif + void set_instance_id(const char* value); + void set_instance_id(const char* value, size_t size); + ::std::string* mutable_instance_id(); + ::std::string* release_instance_id(); + void set_allocated_instance_id(::std::string* instance_id); + + // string workflow_component = 2[json_name = "workflowComponent"]; + void clear_workflow_component(); + static const int kWorkflowComponentFieldNumber = 2; + const ::std::string& workflow_component() const; + void set_workflow_component(const ::std::string& value); + #if LANG_CXX11 + void set_workflow_component(::std::string&& value); + #endif + void set_workflow_component(const char* value); + void set_workflow_component(const char* value, size_t size); + ::std::string* mutable_workflow_component(); + ::std::string* release_workflow_component(); + void set_allocated_workflow_component(::std::string* workflow_component); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.PauseWorkflowRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr instance_id_; + ::google::protobuf::internal::ArenaStringPtr workflow_component_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class ResumeWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.ResumeWorkflowRequest) */ { + public: + ResumeWorkflowRequest(); + virtual ~ResumeWorkflowRequest(); + + ResumeWorkflowRequest(const ResumeWorkflowRequest& from); + + inline ResumeWorkflowRequest& operator=(const ResumeWorkflowRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + ResumeWorkflowRequest(ResumeWorkflowRequest&& from) noexcept + : ResumeWorkflowRequest() { + *this = ::std::move(from); + } + + inline ResumeWorkflowRequest& operator=(ResumeWorkflowRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const ResumeWorkflowRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const ResumeWorkflowRequest* internal_default_instance() { + return reinterpret_cast( + &_ResumeWorkflowRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 108; + + void Swap(ResumeWorkflowRequest* other); + friend void swap(ResumeWorkflowRequest& a, ResumeWorkflowRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline ResumeWorkflowRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + ResumeWorkflowRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const ResumeWorkflowRequest& from); + void MergeFrom(const ResumeWorkflowRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(ResumeWorkflowRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string instance_id = 1[json_name = "instanceID"]; + void clear_instance_id(); + static const int kInstanceIdFieldNumber = 1; + const ::std::string& instance_id() const; + void set_instance_id(const ::std::string& value); + #if LANG_CXX11 + void set_instance_id(::std::string&& value); + #endif + void set_instance_id(const char* value); + void set_instance_id(const char* value, size_t size); + ::std::string* mutable_instance_id(); + ::std::string* release_instance_id(); + void set_allocated_instance_id(::std::string* instance_id); + + // string workflow_component = 2[json_name = "workflowComponent"]; + void clear_workflow_component(); + static const int kWorkflowComponentFieldNumber = 2; + const ::std::string& workflow_component() const; + void set_workflow_component(const ::std::string& value); + #if LANG_CXX11 + void set_workflow_component(::std::string&& value); + #endif + void set_workflow_component(const char* value); + void set_workflow_component(const char* value, size_t size); + ::std::string* mutable_workflow_component(); + ::std::string* release_workflow_component(); + void set_allocated_workflow_component(::std::string* workflow_component); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.ResumeWorkflowRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr instance_id_; + ::google::protobuf::internal::ArenaStringPtr workflow_component_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class RaiseEventWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) */ { + public: + RaiseEventWorkflowRequest(); + virtual ~RaiseEventWorkflowRequest(); + + RaiseEventWorkflowRequest(const RaiseEventWorkflowRequest& from); + + inline RaiseEventWorkflowRequest& operator=(const RaiseEventWorkflowRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + RaiseEventWorkflowRequest(RaiseEventWorkflowRequest&& from) noexcept + : RaiseEventWorkflowRequest() { + *this = ::std::move(from); + } + + inline RaiseEventWorkflowRequest& operator=(RaiseEventWorkflowRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const RaiseEventWorkflowRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const RaiseEventWorkflowRequest* internal_default_instance() { + return reinterpret_cast( + &_RaiseEventWorkflowRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 109; + + void Swap(RaiseEventWorkflowRequest* other); + friend void swap(RaiseEventWorkflowRequest& a, RaiseEventWorkflowRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline RaiseEventWorkflowRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + RaiseEventWorkflowRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const RaiseEventWorkflowRequest& from); + void MergeFrom(const RaiseEventWorkflowRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(RaiseEventWorkflowRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string instance_id = 1[json_name = "instanceID"]; + void clear_instance_id(); + static const int kInstanceIdFieldNumber = 1; + const ::std::string& instance_id() const; + void set_instance_id(const ::std::string& value); + #if LANG_CXX11 + void set_instance_id(::std::string&& value); + #endif + void set_instance_id(const char* value); + void set_instance_id(const char* value, size_t size); + ::std::string* mutable_instance_id(); + ::std::string* release_instance_id(); + void set_allocated_instance_id(::std::string* instance_id); + + // string workflow_component = 2[json_name = "workflowComponent"]; + void clear_workflow_component(); + static const int kWorkflowComponentFieldNumber = 2; + const ::std::string& workflow_component() const; + void set_workflow_component(const ::std::string& value); + #if LANG_CXX11 + void set_workflow_component(::std::string&& value); + #endif + void set_workflow_component(const char* value); + void set_workflow_component(const char* value, size_t size); + ::std::string* mutable_workflow_component(); + ::std::string* release_workflow_component(); + void set_allocated_workflow_component(::std::string* workflow_component); + + // string event_name = 3[json_name = "eventName"]; + void clear_event_name(); + static const int kEventNameFieldNumber = 3; + const ::std::string& event_name() const; + void set_event_name(const ::std::string& value); + #if LANG_CXX11 + void set_event_name(::std::string&& value); + #endif + void set_event_name(const char* value); + void set_event_name(const char* value, size_t size); + ::std::string* mutable_event_name(); + ::std::string* release_event_name(); + void set_allocated_event_name(::std::string* event_name); + + // bytes event_data = 4; + void clear_event_data(); + static const int kEventDataFieldNumber = 4; + const ::std::string& event_data() const; + void set_event_data(const ::std::string& value); + #if LANG_CXX11 + void set_event_data(::std::string&& value); + #endif + void set_event_data(const char* value); + void set_event_data(const void* value, size_t size); + ::std::string* mutable_event_data(); + ::std::string* release_event_data(); + void set_allocated_event_data(::std::string* event_data); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.RaiseEventWorkflowRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr instance_id_; + ::google::protobuf::internal::ArenaStringPtr workflow_component_; + ::google::protobuf::internal::ArenaStringPtr event_name_; + ::google::protobuf::internal::ArenaStringPtr event_data_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// ------------------------------------------------------------------- + +class PurgeWorkflowRequest : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:dapr.proto.runtime.v1.PurgeWorkflowRequest) */ { + public: + PurgeWorkflowRequest(); + virtual ~PurgeWorkflowRequest(); + + PurgeWorkflowRequest(const PurgeWorkflowRequest& from); + + inline PurgeWorkflowRequest& operator=(const PurgeWorkflowRequest& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + PurgeWorkflowRequest(PurgeWorkflowRequest&& from) noexcept + : PurgeWorkflowRequest() { + *this = ::std::move(from); + } + + inline PurgeWorkflowRequest& operator=(PurgeWorkflowRequest&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor(); + static const PurgeWorkflowRequest& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const PurgeWorkflowRequest* internal_default_instance() { + return reinterpret_cast( + &_PurgeWorkflowRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = + 110; + + void Swap(PurgeWorkflowRequest* other); + friend void swap(PurgeWorkflowRequest& a, PurgeWorkflowRequest& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline PurgeWorkflowRequest* New() const final { + return CreateMaybeMessage(NULL); + } + + PurgeWorkflowRequest* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const PurgeWorkflowRequest& from); + void MergeFrom(const PurgeWorkflowRequest& from); + void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + bool deterministic, ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(PurgeWorkflowRequest* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return NULL; + } + inline void* MaybeArenaPtr() const { + return NULL; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // string instance_id = 1[json_name = "instanceID"]; + void clear_instance_id(); + static const int kInstanceIdFieldNumber = 1; + const ::std::string& instance_id() const; + void set_instance_id(const ::std::string& value); + #if LANG_CXX11 + void set_instance_id(::std::string&& value); + #endif + void set_instance_id(const char* value); + void set_instance_id(const char* value, size_t size); + ::std::string* mutable_instance_id(); + ::std::string* release_instance_id(); + void set_allocated_instance_id(::std::string* instance_id); + + // string workflow_component = 2[json_name = "workflowComponent"]; + void clear_workflow_component(); + static const int kWorkflowComponentFieldNumber = 2; + const ::std::string& workflow_component() const; + void set_workflow_component(const ::std::string& value); + #if LANG_CXX11 + void set_workflow_component(::std::string&& value); + #endif + void set_workflow_component(const char* value); + void set_workflow_component(const char* value, size_t size); + ::std::string* mutable_workflow_component(); + ::std::string* release_workflow_component(); + void set_allocated_workflow_component(::std::string* workflow_component); + + // @@protoc_insertion_point(class_scope:dapr.proto.runtime.v1.PurgeWorkflowRequest) + private: + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::google::protobuf::internal::ArenaStringPtr instance_id_; + ::google::protobuf::internal::ArenaStringPtr workflow_component_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::protobuf_dapr_2fproto_2fruntime_2fv1_2fdapr_2eproto::TableStruct; +}; +// =================================================================== + + +// =================================================================== + +#ifdef __GNUC__ + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wstrict-aliasing" +#endif // __GNUC__ +// InvokeServiceRequest + +// string id = 1; +inline void InvokeServiceRequest::clear_id() { + id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& InvokeServiceRequest::id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeServiceRequest.id) + return id_.GetNoArena(); +} +inline void InvokeServiceRequest::set_id(const ::std::string& value) { + + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeServiceRequest.id) +} +#if LANG_CXX11 +inline void InvokeServiceRequest::set_id(::std::string&& value) { + + id_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeServiceRequest.id) } #endif -inline void InvokeServiceRequest::set_id(const char* value) { +inline void InvokeServiceRequest::set_id(const char* value) { + GOOGLE_DCHECK(value != NULL); + + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeServiceRequest.id) +} +inline void InvokeServiceRequest::set_id(const char* value, size_t size) { + + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeServiceRequest.id) +} +inline ::std::string* InvokeServiceRequest::mutable_id() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeServiceRequest.id) + return id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* InvokeServiceRequest::release_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeServiceRequest.id) + + return id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void InvokeServiceRequest::set_allocated_id(::std::string* id) { + if (id != NULL) { + + } else { + + } + id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeServiceRequest.id) +} + +// .dapr.proto.common.v1.InvokeRequest message = 3; +inline bool InvokeServiceRequest::has_message() const { + return this != internal_default_instance() && message_ != NULL; +} +inline const ::dapr::proto::common::v1::InvokeRequest& InvokeServiceRequest::_internal_message() const { + return *message_; +} +inline const ::dapr::proto::common::v1::InvokeRequest& InvokeServiceRequest::message() const { + const ::dapr::proto::common::v1::InvokeRequest* p = message_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeServiceRequest.message) + return p != NULL ? *p : *reinterpret_cast( + &::dapr::proto::common::v1::_InvokeRequest_default_instance_); +} +inline ::dapr::proto::common::v1::InvokeRequest* InvokeServiceRequest::release_message() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeServiceRequest.message) + + ::dapr::proto::common::v1::InvokeRequest* temp = message_; + message_ = NULL; + return temp; +} +inline ::dapr::proto::common::v1::InvokeRequest* InvokeServiceRequest::mutable_message() { + + if (message_ == NULL) { + auto* p = CreateMaybeMessage<::dapr::proto::common::v1::InvokeRequest>(GetArenaNoVirtual()); + message_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeServiceRequest.message) + return message_; +} +inline void InvokeServiceRequest::set_allocated_message(::dapr::proto::common::v1::InvokeRequest* message) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(message_); + } + if (message) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + message = ::google::protobuf::internal::GetOwnedMessage( + message_arena, message, submessage_arena); + } + + } else { + + } + message_ = message; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeServiceRequest.message) +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// GetStateRequest + +// string store_name = 1; +inline void GetStateRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& GetStateRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetStateRequest.store_name) + return store_name_.GetNoArena(); +} +inline void GetStateRequest::set_store_name(const ::std::string& value) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetStateRequest.store_name) +} +#if LANG_CXX11 +inline void GetStateRequest::set_store_name(::std::string&& value) { + + store_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetStateRequest.store_name) +} +#endif +inline void GetStateRequest::set_store_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetStateRequest.store_name) +} +inline void GetStateRequest::set_store_name(const char* value, size_t size) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetStateRequest.store_name) +} +inline ::std::string* GetStateRequest::mutable_store_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetStateRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* GetStateRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetStateRequest.store_name) + + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void GetStateRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { + + } else { + + } + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetStateRequest.store_name) +} + +// string key = 2; +inline void GetStateRequest::clear_key() { + key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& GetStateRequest::key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetStateRequest.key) + return key_.GetNoArena(); +} +inline void GetStateRequest::set_key(const ::std::string& value) { + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetStateRequest.key) +} +#if LANG_CXX11 +inline void GetStateRequest::set_key(::std::string&& value) { + + key_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetStateRequest.key) +} +#endif +inline void GetStateRequest::set_key(const char* value) { + GOOGLE_DCHECK(value != NULL); + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetStateRequest.key) +} +inline void GetStateRequest::set_key(const char* value, size_t size) { + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetStateRequest.key) +} +inline ::std::string* GetStateRequest::mutable_key() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetStateRequest.key) + return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* GetStateRequest::release_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetStateRequest.key) + + return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void GetStateRequest::set_allocated_key(::std::string* key) { + if (key != NULL) { + + } else { + + } + key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetStateRequest.key) +} + +// .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 3; +inline void GetStateRequest::clear_consistency() { + consistency_ = 0; +} +inline ::dapr::proto::common::v1::StateOptions_StateConsistency GetStateRequest::consistency() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetStateRequest.consistency) + return static_cast< ::dapr::proto::common::v1::StateOptions_StateConsistency >(consistency_); +} +inline void GetStateRequest::set_consistency(::dapr::proto::common::v1::StateOptions_StateConsistency value) { + + consistency_ = value; + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetStateRequest.consistency) +} + +// map metadata = 4; +inline int GetStateRequest::metadata_size() const { + return metadata_.size(); +} +inline void GetStateRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +GetStateRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetStateRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +GetStateRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetStateRequest.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// GetBulkStateRequest + +// string store_name = 1; +inline void GetBulkStateRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& GetBulkStateRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) + return store_name_.GetNoArena(); +} +inline void GetBulkStateRequest::set_store_name(const ::std::string& value) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) +} +#if LANG_CXX11 +inline void GetBulkStateRequest::set_store_name(::std::string&& value) { + + store_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) +} +#endif +inline void GetBulkStateRequest::set_store_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) +} +inline void GetBulkStateRequest::set_store_name(const char* value, size_t size) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) +} +inline ::std::string* GetBulkStateRequest::mutable_store_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* GetBulkStateRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) + + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void GetBulkStateRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { + + } else { + + } + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) +} + +// repeated string keys = 2; +inline int GetBulkStateRequest::keys_size() const { + return keys_.size(); +} +inline void GetBulkStateRequest::clear_keys() { + keys_.Clear(); +} +inline const ::std::string& GetBulkStateRequest::keys(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetBulkStateRequest.keys) + return keys_.Get(index); +} +inline ::std::string* GetBulkStateRequest::mutable_keys(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetBulkStateRequest.keys) + return keys_.Mutable(index); +} +inline void GetBulkStateRequest::set_keys(int index, const ::std::string& value) { + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetBulkStateRequest.keys) + keys_.Mutable(index)->assign(value); +} +#if LANG_CXX11 +inline void GetBulkStateRequest::set_keys(int index, ::std::string&& value) { + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetBulkStateRequest.keys) + keys_.Mutable(index)->assign(std::move(value)); +} +#endif +inline void GetBulkStateRequest::set_keys(int index, const char* value) { + GOOGLE_DCHECK(value != NULL); + keys_.Mutable(index)->assign(value); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetBulkStateRequest.keys) +} +inline void GetBulkStateRequest::set_keys(int index, const char* value, size_t size) { + keys_.Mutable(index)->assign( + reinterpret_cast(value), size); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetBulkStateRequest.keys) +} +inline ::std::string* GetBulkStateRequest::add_keys() { + // @@protoc_insertion_point(field_add_mutable:dapr.proto.runtime.v1.GetBulkStateRequest.keys) + return keys_.Add(); +} +inline void GetBulkStateRequest::add_keys(const ::std::string& value) { + keys_.Add()->assign(value); + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetBulkStateRequest.keys) +} +#if LANG_CXX11 +inline void GetBulkStateRequest::add_keys(::std::string&& value) { + keys_.Add(std::move(value)); + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetBulkStateRequest.keys) +} +#endif +inline void GetBulkStateRequest::add_keys(const char* value) { + GOOGLE_DCHECK(value != NULL); + keys_.Add()->assign(value); + // @@protoc_insertion_point(field_add_char:dapr.proto.runtime.v1.GetBulkStateRequest.keys) +} +inline void GetBulkStateRequest::add_keys(const char* value, size_t size) { + keys_.Add()->assign(reinterpret_cast(value), size); + // @@protoc_insertion_point(field_add_pointer:dapr.proto.runtime.v1.GetBulkStateRequest.keys) +} +inline const ::google::protobuf::RepeatedPtrField< ::std::string>& +GetBulkStateRequest::keys() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetBulkStateRequest.keys) + return keys_; +} +inline ::google::protobuf::RepeatedPtrField< ::std::string>* +GetBulkStateRequest::mutable_keys() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetBulkStateRequest.keys) + return &keys_; +} + +// int32 parallelism = 3; +inline void GetBulkStateRequest::clear_parallelism() { + parallelism_ = 0; +} +inline ::google::protobuf::int32 GetBulkStateRequest::parallelism() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetBulkStateRequest.parallelism) + return parallelism_; +} +inline void GetBulkStateRequest::set_parallelism(::google::protobuf::int32 value) { + + parallelism_ = value; + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetBulkStateRequest.parallelism) +} + +// map metadata = 4; +inline int GetBulkStateRequest::metadata_size() const { + return metadata_.size(); +} +inline void GetBulkStateRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +GetBulkStateRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetBulkStateRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +GetBulkStateRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetBulkStateRequest.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// GetBulkStateResponse + +// repeated .dapr.proto.runtime.v1.BulkStateItem items = 1; +inline int GetBulkStateResponse::items_size() const { + return items_.size(); +} +inline void GetBulkStateResponse::clear_items() { + items_.Clear(); +} +inline ::dapr::proto::runtime::v1::BulkStateItem* GetBulkStateResponse::mutable_items(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetBulkStateResponse.items) + return items_.Mutable(index); +} +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkStateItem >* +GetBulkStateResponse::mutable_items() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetBulkStateResponse.items) + return &items_; +} +inline const ::dapr::proto::runtime::v1::BulkStateItem& GetBulkStateResponse::items(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetBulkStateResponse.items) + return items_.Get(index); +} +inline ::dapr::proto::runtime::v1::BulkStateItem* GetBulkStateResponse::add_items() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetBulkStateResponse.items) + return items_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkStateItem >& +GetBulkStateResponse::items() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetBulkStateResponse.items) + return items_; +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// BulkStateItem + +// string key = 1; +inline void BulkStateItem::clear_key() { + key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& BulkStateItem::key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkStateItem.key) + return key_.GetNoArena(); +} +inline void BulkStateItem::set_key(const ::std::string& value) { + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkStateItem.key) +} +#if LANG_CXX11 +inline void BulkStateItem::set_key(::std::string&& value) { + + key_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkStateItem.key) +} +#endif +inline void BulkStateItem::set_key(const char* value) { + GOOGLE_DCHECK(value != NULL); + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkStateItem.key) +} +inline void BulkStateItem::set_key(const char* value, size_t size) { + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkStateItem.key) +} +inline ::std::string* BulkStateItem::mutable_key() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkStateItem.key) + return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* BulkStateItem::release_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkStateItem.key) + + return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void BulkStateItem::set_allocated_key(::std::string* key) { + if (key != NULL) { + + } else { + + } + key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkStateItem.key) +} + +// bytes data = 2; +inline void BulkStateItem::clear_data() { + data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& BulkStateItem::data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkStateItem.data) + return data_.GetNoArena(); +} +inline void BulkStateItem::set_data(const ::std::string& value) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkStateItem.data) +} +#if LANG_CXX11 +inline void BulkStateItem::set_data(::std::string&& value) { + + data_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkStateItem.data) +} +#endif +inline void BulkStateItem::set_data(const char* value) { + GOOGLE_DCHECK(value != NULL); + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkStateItem.data) +} +inline void BulkStateItem::set_data(const void* value, size_t size) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkStateItem.data) +} +inline ::std::string* BulkStateItem::mutable_data() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkStateItem.data) + return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* BulkStateItem::release_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkStateItem.data) + + return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void BulkStateItem::set_allocated_data(::std::string* data) { + if (data != NULL) { + + } else { + + } + data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkStateItem.data) +} + +// string etag = 3; +inline void BulkStateItem::clear_etag() { + etag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& BulkStateItem::etag() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkStateItem.etag) + return etag_.GetNoArena(); +} +inline void BulkStateItem::set_etag(const ::std::string& value) { + + etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkStateItem.etag) +} +#if LANG_CXX11 +inline void BulkStateItem::set_etag(::std::string&& value) { + + etag_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkStateItem.etag) +} +#endif +inline void BulkStateItem::set_etag(const char* value) { + GOOGLE_DCHECK(value != NULL); + + etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkStateItem.etag) +} +inline void BulkStateItem::set_etag(const char* value, size_t size) { + + etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkStateItem.etag) +} +inline ::std::string* BulkStateItem::mutable_etag() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkStateItem.etag) + return etag_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* BulkStateItem::release_etag() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkStateItem.etag) + + return etag_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void BulkStateItem::set_allocated_etag(::std::string* etag) { + if (etag != NULL) { + + } else { + + } + etag_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), etag); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkStateItem.etag) +} + +// string error = 4; +inline void BulkStateItem::clear_error() { + error_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& BulkStateItem::error() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkStateItem.error) + return error_.GetNoArena(); +} +inline void BulkStateItem::set_error(const ::std::string& value) { + + error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkStateItem.error) +} +#if LANG_CXX11 +inline void BulkStateItem::set_error(::std::string&& value) { + + error_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkStateItem.error) +} +#endif +inline void BulkStateItem::set_error(const char* value) { + GOOGLE_DCHECK(value != NULL); + + error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkStateItem.error) +} +inline void BulkStateItem::set_error(const char* value, size_t size) { + + error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkStateItem.error) +} +inline ::std::string* BulkStateItem::mutable_error() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkStateItem.error) + return error_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* BulkStateItem::release_error() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkStateItem.error) + + return error_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void BulkStateItem::set_allocated_error(::std::string* error) { + if (error != NULL) { + + } else { + + } + error_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), error); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkStateItem.error) +} + +// map metadata = 5; +inline int BulkStateItem::metadata_size() const { + return metadata_.size(); +} +inline void BulkStateItem::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +BulkStateItem::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.BulkStateItem.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +BulkStateItem::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.BulkStateItem.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// GetStateResponse + +// bytes data = 1; +inline void GetStateResponse::clear_data() { + data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& GetStateResponse::data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetStateResponse.data) + return data_.GetNoArena(); +} +inline void GetStateResponse::set_data(const ::std::string& value) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetStateResponse.data) +} +#if LANG_CXX11 +inline void GetStateResponse::set_data(::std::string&& value) { + + data_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetStateResponse.data) +} +#endif +inline void GetStateResponse::set_data(const char* value) { + GOOGLE_DCHECK(value != NULL); + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetStateResponse.data) +} +inline void GetStateResponse::set_data(const void* value, size_t size) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetStateResponse.data) +} +inline ::std::string* GetStateResponse::mutable_data() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetStateResponse.data) + return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* GetStateResponse::release_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetStateResponse.data) + + return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void GetStateResponse::set_allocated_data(::std::string* data) { + if (data != NULL) { + + } else { + + } + data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetStateResponse.data) +} + +// string etag = 2; +inline void GetStateResponse::clear_etag() { + etag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& GetStateResponse::etag() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetStateResponse.etag) + return etag_.GetNoArena(); +} +inline void GetStateResponse::set_etag(const ::std::string& value) { + + etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetStateResponse.etag) +} +#if LANG_CXX11 +inline void GetStateResponse::set_etag(::std::string&& value) { + + etag_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetStateResponse.etag) +} +#endif +inline void GetStateResponse::set_etag(const char* value) { + GOOGLE_DCHECK(value != NULL); + + etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetStateResponse.etag) +} +inline void GetStateResponse::set_etag(const char* value, size_t size) { + + etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetStateResponse.etag) +} +inline ::std::string* GetStateResponse::mutable_etag() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetStateResponse.etag) + return etag_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* GetStateResponse::release_etag() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetStateResponse.etag) + + return etag_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void GetStateResponse::set_allocated_etag(::std::string* etag) { + if (etag != NULL) { + + } else { + + } + etag_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), etag); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetStateResponse.etag) +} + +// map metadata = 3; +inline int GetStateResponse::metadata_size() const { + return metadata_.size(); +} +inline void GetStateResponse::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +GetStateResponse::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetStateResponse.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +GetStateResponse::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetStateResponse.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// DeleteStateRequest + +// string store_name = 1; +inline void DeleteStateRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& DeleteStateRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteStateRequest.store_name) + return store_name_.GetNoArena(); +} +inline void DeleteStateRequest::set_store_name(const ::std::string& value) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.DeleteStateRequest.store_name) +} +#if LANG_CXX11 +inline void DeleteStateRequest::set_store_name(::std::string&& value) { + + store_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.DeleteStateRequest.store_name) +} +#endif +inline void DeleteStateRequest::set_store_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.DeleteStateRequest.store_name) +} +inline void DeleteStateRequest::set_store_name(const char* value, size_t size) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.DeleteStateRequest.store_name) +} +inline ::std::string* DeleteStateRequest::mutable_store_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteStateRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* DeleteStateRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DeleteStateRequest.store_name) + + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void DeleteStateRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { + + } else { + + } + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DeleteStateRequest.store_name) +} + +// string key = 2; +inline void DeleteStateRequest::clear_key() { + key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& DeleteStateRequest::key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteStateRequest.key) + return key_.GetNoArena(); +} +inline void DeleteStateRequest::set_key(const ::std::string& value) { + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.DeleteStateRequest.key) +} +#if LANG_CXX11 +inline void DeleteStateRequest::set_key(::std::string&& value) { + + key_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.DeleteStateRequest.key) +} +#endif +inline void DeleteStateRequest::set_key(const char* value) { + GOOGLE_DCHECK(value != NULL); + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.DeleteStateRequest.key) +} +inline void DeleteStateRequest::set_key(const char* value, size_t size) { + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.DeleteStateRequest.key) +} +inline ::std::string* DeleteStateRequest::mutable_key() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteStateRequest.key) + return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* DeleteStateRequest::release_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DeleteStateRequest.key) + + return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void DeleteStateRequest::set_allocated_key(::std::string* key) { + if (key != NULL) { + + } else { + + } + key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DeleteStateRequest.key) +} + +// .dapr.proto.common.v1.Etag etag = 3; +inline bool DeleteStateRequest::has_etag() const { + return this != internal_default_instance() && etag_ != NULL; +} +inline const ::dapr::proto::common::v1::Etag& DeleteStateRequest::_internal_etag() const { + return *etag_; +} +inline const ::dapr::proto::common::v1::Etag& DeleteStateRequest::etag() const { + const ::dapr::proto::common::v1::Etag* p = etag_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteStateRequest.etag) + return p != NULL ? *p : *reinterpret_cast( + &::dapr::proto::common::v1::_Etag_default_instance_); +} +inline ::dapr::proto::common::v1::Etag* DeleteStateRequest::release_etag() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DeleteStateRequest.etag) + + ::dapr::proto::common::v1::Etag* temp = etag_; + etag_ = NULL; + return temp; +} +inline ::dapr::proto::common::v1::Etag* DeleteStateRequest::mutable_etag() { + + if (etag_ == NULL) { + auto* p = CreateMaybeMessage<::dapr::proto::common::v1::Etag>(GetArenaNoVirtual()); + etag_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteStateRequest.etag) + return etag_; +} +inline void DeleteStateRequest::set_allocated_etag(::dapr::proto::common::v1::Etag* etag) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(etag_); + } + if (etag) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + etag = ::google::protobuf::internal::GetOwnedMessage( + message_arena, etag, submessage_arena); + } + + } else { + + } + etag_ = etag; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DeleteStateRequest.etag) +} + +// .dapr.proto.common.v1.StateOptions options = 4; +inline bool DeleteStateRequest::has_options() const { + return this != internal_default_instance() && options_ != NULL; +} +inline const ::dapr::proto::common::v1::StateOptions& DeleteStateRequest::_internal_options() const { + return *options_; +} +inline const ::dapr::proto::common::v1::StateOptions& DeleteStateRequest::options() const { + const ::dapr::proto::common::v1::StateOptions* p = options_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteStateRequest.options) + return p != NULL ? *p : *reinterpret_cast( + &::dapr::proto::common::v1::_StateOptions_default_instance_); +} +inline ::dapr::proto::common::v1::StateOptions* DeleteStateRequest::release_options() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DeleteStateRequest.options) + + ::dapr::proto::common::v1::StateOptions* temp = options_; + options_ = NULL; + return temp; +} +inline ::dapr::proto::common::v1::StateOptions* DeleteStateRequest::mutable_options() { + + if (options_ == NULL) { + auto* p = CreateMaybeMessage<::dapr::proto::common::v1::StateOptions>(GetArenaNoVirtual()); + options_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteStateRequest.options) + return options_; +} +inline void DeleteStateRequest::set_allocated_options(::dapr::proto::common::v1::StateOptions* options) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(options_); + } + if (options) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + options = ::google::protobuf::internal::GetOwnedMessage( + message_arena, options, submessage_arena); + } + + } else { + + } + options_ = options; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DeleteStateRequest.options) +} + +// map metadata = 5; +inline int DeleteStateRequest::metadata_size() const { + return metadata_.size(); +} +inline void DeleteStateRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +DeleteStateRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.DeleteStateRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +DeleteStateRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.DeleteStateRequest.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// DeleteBulkStateRequest + +// string store_name = 1; +inline void DeleteBulkStateRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& DeleteBulkStateRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) + return store_name_.GetNoArena(); +} +inline void DeleteBulkStateRequest::set_store_name(const ::std::string& value) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) +} +#if LANG_CXX11 +inline void DeleteBulkStateRequest::set_store_name(::std::string&& value) { + + store_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) +} +#endif +inline void DeleteBulkStateRequest::set_store_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) +} +inline void DeleteBulkStateRequest::set_store_name(const char* value, size_t size) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) +} +inline ::std::string* DeleteBulkStateRequest::mutable_store_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* DeleteBulkStateRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) + + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void DeleteBulkStateRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { + + } else { + + } + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) +} + +// repeated .dapr.proto.common.v1.StateItem states = 2; +inline int DeleteBulkStateRequest::states_size() const { + return states_.size(); +} +inline ::dapr::proto::common::v1::StateItem* DeleteBulkStateRequest::mutable_states(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteBulkStateRequest.states) + return states_.Mutable(index); +} +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::common::v1::StateItem >* +DeleteBulkStateRequest::mutable_states() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.DeleteBulkStateRequest.states) + return &states_; +} +inline const ::dapr::proto::common::v1::StateItem& DeleteBulkStateRequest::states(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteBulkStateRequest.states) + return states_.Get(index); +} +inline ::dapr::proto::common::v1::StateItem* DeleteBulkStateRequest::add_states() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.DeleteBulkStateRequest.states) + return states_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::common::v1::StateItem >& +DeleteBulkStateRequest::states() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.DeleteBulkStateRequest.states) + return states_; +} + +// ------------------------------------------------------------------- + +// SaveStateRequest + +// string store_name = 1; +inline void SaveStateRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& SaveStateRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SaveStateRequest.store_name) + return store_name_.GetNoArena(); +} +inline void SaveStateRequest::set_store_name(const ::std::string& value) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SaveStateRequest.store_name) +} +#if LANG_CXX11 +inline void SaveStateRequest::set_store_name(::std::string&& value) { + + store_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SaveStateRequest.store_name) +} +#endif +inline void SaveStateRequest::set_store_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SaveStateRequest.store_name) +} +inline void SaveStateRequest::set_store_name(const char* value, size_t size) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SaveStateRequest.store_name) +} +inline ::std::string* SaveStateRequest::mutable_store_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SaveStateRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* SaveStateRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SaveStateRequest.store_name) + + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void SaveStateRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { + + } else { + + } + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SaveStateRequest.store_name) +} + +// repeated .dapr.proto.common.v1.StateItem states = 2; +inline int SaveStateRequest::states_size() const { + return states_.size(); +} +inline ::dapr::proto::common::v1::StateItem* SaveStateRequest::mutable_states(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SaveStateRequest.states) + return states_.Mutable(index); +} +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::common::v1::StateItem >* +SaveStateRequest::mutable_states() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.SaveStateRequest.states) + return &states_; +} +inline const ::dapr::proto::common::v1::StateItem& SaveStateRequest::states(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SaveStateRequest.states) + return states_.Get(index); +} +inline ::dapr::proto::common::v1::StateItem* SaveStateRequest::add_states() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.SaveStateRequest.states) + return states_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::common::v1::StateItem >& +SaveStateRequest::states() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.SaveStateRequest.states) + return states_; +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// QueryStateRequest + +// string store_name = 1[json_name = "storeName"]; +inline void QueryStateRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& QueryStateRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateRequest.store_name) + return store_name_.GetNoArena(); +} +inline void QueryStateRequest::set_store_name(const ::std::string& value) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateRequest.store_name) +} +#if LANG_CXX11 +inline void QueryStateRequest::set_store_name(::std::string&& value) { + + store_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateRequest.store_name) +} +#endif +inline void QueryStateRequest::set_store_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateRequest.store_name) +} +inline void QueryStateRequest::set_store_name(const char* value, size_t size) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateRequest.store_name) +} +inline ::std::string* QueryStateRequest::mutable_store_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* QueryStateRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateRequest.store_name) + + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void QueryStateRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { + + } else { + + } + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateRequest.store_name) +} + +// string query = 2; +inline void QueryStateRequest::clear_query() { + query_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& QueryStateRequest::query() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateRequest.query) + return query_.GetNoArena(); +} +inline void QueryStateRequest::set_query(const ::std::string& value) { + + query_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateRequest.query) +} +#if LANG_CXX11 +inline void QueryStateRequest::set_query(::std::string&& value) { + + query_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateRequest.query) +} +#endif +inline void QueryStateRequest::set_query(const char* value) { + GOOGLE_DCHECK(value != NULL); + + query_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateRequest.query) +} +inline void QueryStateRequest::set_query(const char* value, size_t size) { + + query_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateRequest.query) +} +inline ::std::string* QueryStateRequest::mutable_query() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateRequest.query) + return query_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* QueryStateRequest::release_query() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateRequest.query) + + return query_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void QueryStateRequest::set_allocated_query(::std::string* query) { + if (query != NULL) { + + } else { + + } + query_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), query); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateRequest.query) +} + +// map metadata = 3; +inline int QueryStateRequest::metadata_size() const { + return metadata_.size(); +} +inline void QueryStateRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +QueryStateRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.QueryStateRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +QueryStateRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.QueryStateRequest.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// QueryStateItem + +// string key = 1; +inline void QueryStateItem::clear_key() { + key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& QueryStateItem::key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateItem.key) + return key_.GetNoArena(); +} +inline void QueryStateItem::set_key(const ::std::string& value) { + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateItem.key) +} +#if LANG_CXX11 +inline void QueryStateItem::set_key(::std::string&& value) { + + key_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateItem.key) +} +#endif +inline void QueryStateItem::set_key(const char* value) { + GOOGLE_DCHECK(value != NULL); + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateItem.key) +} +inline void QueryStateItem::set_key(const char* value, size_t size) { + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateItem.key) +} +inline ::std::string* QueryStateItem::mutable_key() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateItem.key) + return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* QueryStateItem::release_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateItem.key) + + return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void QueryStateItem::set_allocated_key(::std::string* key) { + if (key != NULL) { + + } else { + + } + key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateItem.key) +} + +// bytes data = 2; +inline void QueryStateItem::clear_data() { + data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& QueryStateItem::data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateItem.data) + return data_.GetNoArena(); +} +inline void QueryStateItem::set_data(const ::std::string& value) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateItem.data) +} +#if LANG_CXX11 +inline void QueryStateItem::set_data(::std::string&& value) { + + data_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateItem.data) +} +#endif +inline void QueryStateItem::set_data(const char* value) { + GOOGLE_DCHECK(value != NULL); + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateItem.data) +} +inline void QueryStateItem::set_data(const void* value, size_t size) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateItem.data) +} +inline ::std::string* QueryStateItem::mutable_data() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateItem.data) + return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* QueryStateItem::release_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateItem.data) + + return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void QueryStateItem::set_allocated_data(::std::string* data) { + if (data != NULL) { + + } else { + + } + data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateItem.data) +} + +// string etag = 3; +inline void QueryStateItem::clear_etag() { + etag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& QueryStateItem::etag() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateItem.etag) + return etag_.GetNoArena(); +} +inline void QueryStateItem::set_etag(const ::std::string& value) { + + etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateItem.etag) +} +#if LANG_CXX11 +inline void QueryStateItem::set_etag(::std::string&& value) { + + etag_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateItem.etag) +} +#endif +inline void QueryStateItem::set_etag(const char* value) { + GOOGLE_DCHECK(value != NULL); + + etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateItem.etag) +} +inline void QueryStateItem::set_etag(const char* value, size_t size) { + + etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateItem.etag) +} +inline ::std::string* QueryStateItem::mutable_etag() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateItem.etag) + return etag_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* QueryStateItem::release_etag() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateItem.etag) + + return etag_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void QueryStateItem::set_allocated_etag(::std::string* etag) { + if (etag != NULL) { + + } else { + + } + etag_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), etag); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateItem.etag) +} + +// string error = 4; +inline void QueryStateItem::clear_error() { + error_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& QueryStateItem::error() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateItem.error) + return error_.GetNoArena(); +} +inline void QueryStateItem::set_error(const ::std::string& value) { + + error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateItem.error) +} +#if LANG_CXX11 +inline void QueryStateItem::set_error(::std::string&& value) { + + error_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateItem.error) +} +#endif +inline void QueryStateItem::set_error(const char* value) { + GOOGLE_DCHECK(value != NULL); + + error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateItem.error) +} +inline void QueryStateItem::set_error(const char* value, size_t size) { + + error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateItem.error) +} +inline ::std::string* QueryStateItem::mutable_error() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateItem.error) + return error_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* QueryStateItem::release_error() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateItem.error) + + return error_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void QueryStateItem::set_allocated_error(::std::string* error) { + if (error != NULL) { + + } else { + + } + error_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), error); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateItem.error) +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// QueryStateResponse + +// repeated .dapr.proto.runtime.v1.QueryStateItem results = 1; +inline int QueryStateResponse::results_size() const { + return results_.size(); +} +inline void QueryStateResponse::clear_results() { + results_.Clear(); +} +inline ::dapr::proto::runtime::v1::QueryStateItem* QueryStateResponse::mutable_results(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateResponse.results) + return results_.Mutable(index); +} +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::QueryStateItem >* +QueryStateResponse::mutable_results() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.QueryStateResponse.results) + return &results_; +} +inline const ::dapr::proto::runtime::v1::QueryStateItem& QueryStateResponse::results(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateResponse.results) + return results_.Get(index); +} +inline ::dapr::proto::runtime::v1::QueryStateItem* QueryStateResponse::add_results() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.QueryStateResponse.results) + return results_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::QueryStateItem >& +QueryStateResponse::results() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.QueryStateResponse.results) + return results_; +} + +// string token = 2; +inline void QueryStateResponse::clear_token() { + token_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& QueryStateResponse::token() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateResponse.token) + return token_.GetNoArena(); +} +inline void QueryStateResponse::set_token(const ::std::string& value) { + + token_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateResponse.token) +} +#if LANG_CXX11 +inline void QueryStateResponse::set_token(::std::string&& value) { + + token_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateResponse.token) +} +#endif +inline void QueryStateResponse::set_token(const char* value) { + GOOGLE_DCHECK(value != NULL); + + token_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateResponse.token) +} +inline void QueryStateResponse::set_token(const char* value, size_t size) { + + token_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateResponse.token) +} +inline ::std::string* QueryStateResponse::mutable_token() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateResponse.token) + return token_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* QueryStateResponse::release_token() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateResponse.token) + + return token_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void QueryStateResponse::set_allocated_token(::std::string* token) { + if (token != NULL) { + + } else { + + } + token_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), token); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateResponse.token) +} + +// map metadata = 3; +inline int QueryStateResponse::metadata_size() const { + return metadata_.size(); +} +inline void QueryStateResponse::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +QueryStateResponse::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.QueryStateResponse.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +QueryStateResponse::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.QueryStateResponse.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// PublishEventRequest + +// string pubsub_name = 1; +inline void PublishEventRequest::clear_pubsub_name() { + pubsub_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& PublishEventRequest::pubsub_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) + return pubsub_name_.GetNoArena(); +} +inline void PublishEventRequest::set_pubsub_name(const ::std::string& value) { + + pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) +} +#if LANG_CXX11 +inline void PublishEventRequest::set_pubsub_name(::std::string&& value) { + + pubsub_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) +} +#endif +inline void PublishEventRequest::set_pubsub_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) +} +inline void PublishEventRequest::set_pubsub_name(const char* value, size_t size) { + + pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) +} +inline ::std::string* PublishEventRequest::mutable_pubsub_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) + return pubsub_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* PublishEventRequest::release_pubsub_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) + + return pubsub_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void PublishEventRequest::set_allocated_pubsub_name(::std::string* pubsub_name) { + if (pubsub_name != NULL) { + + } else { + + } + pubsub_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), pubsub_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) +} + +// string topic = 2; +inline void PublishEventRequest::clear_topic() { + topic_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& PublishEventRequest::topic() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PublishEventRequest.topic) + return topic_.GetNoArena(); +} +inline void PublishEventRequest::set_topic(const ::std::string& value) { + + topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PublishEventRequest.topic) +} +#if LANG_CXX11 +inline void PublishEventRequest::set_topic(::std::string&& value) { + + topic_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PublishEventRequest.topic) +} +#endif +inline void PublishEventRequest::set_topic(const char* value) { + GOOGLE_DCHECK(value != NULL); + + topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PublishEventRequest.topic) +} +inline void PublishEventRequest::set_topic(const char* value, size_t size) { + + topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PublishEventRequest.topic) +} +inline ::std::string* PublishEventRequest::mutable_topic() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PublishEventRequest.topic) + return topic_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* PublishEventRequest::release_topic() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PublishEventRequest.topic) + + return topic_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void PublishEventRequest::set_allocated_topic(::std::string* topic) { + if (topic != NULL) { + + } else { + + } + topic_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), topic); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PublishEventRequest.topic) +} + +// bytes data = 3; +inline void PublishEventRequest::clear_data() { + data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& PublishEventRequest::data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PublishEventRequest.data) + return data_.GetNoArena(); +} +inline void PublishEventRequest::set_data(const ::std::string& value) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PublishEventRequest.data) +} +#if LANG_CXX11 +inline void PublishEventRequest::set_data(::std::string&& value) { + + data_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PublishEventRequest.data) +} +#endif +inline void PublishEventRequest::set_data(const char* value) { + GOOGLE_DCHECK(value != NULL); + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PublishEventRequest.data) +} +inline void PublishEventRequest::set_data(const void* value, size_t size) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PublishEventRequest.data) +} +inline ::std::string* PublishEventRequest::mutable_data() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PublishEventRequest.data) + return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* PublishEventRequest::release_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PublishEventRequest.data) + + return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void PublishEventRequest::set_allocated_data(::std::string* data) { + if (data != NULL) { + + } else { + + } + data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PublishEventRequest.data) +} + +// string data_content_type = 4; +inline void PublishEventRequest::clear_data_content_type() { + data_content_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& PublishEventRequest::data_content_type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) + return data_content_type_.GetNoArena(); +} +inline void PublishEventRequest::set_data_content_type(const ::std::string& value) { + + data_content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) +} +#if LANG_CXX11 +inline void PublishEventRequest::set_data_content_type(::std::string&& value) { + + data_content_type_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) +} +#endif +inline void PublishEventRequest::set_data_content_type(const char* value) { + GOOGLE_DCHECK(value != NULL); + + data_content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) +} +inline void PublishEventRequest::set_data_content_type(const char* value, size_t size) { + + data_content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) +} +inline ::std::string* PublishEventRequest::mutable_data_content_type() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) + return data_content_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* PublishEventRequest::release_data_content_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) + + return data_content_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void PublishEventRequest::set_allocated_data_content_type(::std::string* data_content_type) { + if (data_content_type != NULL) { + + } else { + + } + data_content_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data_content_type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) +} + +// map metadata = 5; +inline int PublishEventRequest::metadata_size() const { + return metadata_.size(); +} +inline void PublishEventRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +PublishEventRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.PublishEventRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +PublishEventRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.PublishEventRequest.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// BulkPublishRequest + +// string pubsub_name = 1; +inline void BulkPublishRequest::clear_pubsub_name() { + pubsub_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& BulkPublishRequest::pubsub_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) + return pubsub_name_.GetNoArena(); +} +inline void BulkPublishRequest::set_pubsub_name(const ::std::string& value) { + + pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) +} +#if LANG_CXX11 +inline void BulkPublishRequest::set_pubsub_name(::std::string&& value) { + + pubsub_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) +} +#endif +inline void BulkPublishRequest::set_pubsub_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) +} +inline void BulkPublishRequest::set_pubsub_name(const char* value, size_t size) { + + pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) +} +inline ::std::string* BulkPublishRequest::mutable_pubsub_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) + return pubsub_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* BulkPublishRequest::release_pubsub_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) + + return pubsub_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void BulkPublishRequest::set_allocated_pubsub_name(::std::string* pubsub_name) { + if (pubsub_name != NULL) { + + } else { + + } + pubsub_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), pubsub_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) +} + +// string topic = 2; +inline void BulkPublishRequest::clear_topic() { + topic_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& BulkPublishRequest::topic() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequest.topic) + return topic_.GetNoArena(); +} +inline void BulkPublishRequest::set_topic(const ::std::string& value) { + + topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishRequest.topic) +} +#if LANG_CXX11 +inline void BulkPublishRequest::set_topic(::std::string&& value) { + + topic_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishRequest.topic) +} +#endif +inline void BulkPublishRequest::set_topic(const char* value) { + GOOGLE_DCHECK(value != NULL); + + topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishRequest.topic) +} +inline void BulkPublishRequest::set_topic(const char* value, size_t size) { + + topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishRequest.topic) +} +inline ::std::string* BulkPublishRequest::mutable_topic() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequest.topic) + return topic_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* BulkPublishRequest::release_topic() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishRequest.topic) + + return topic_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void BulkPublishRequest::set_allocated_topic(::std::string* topic) { + if (topic != NULL) { + + } else { + + } + topic_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), topic); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishRequest.topic) +} + +// repeated .dapr.proto.runtime.v1.BulkPublishRequestEntry entries = 3; +inline int BulkPublishRequest::entries_size() const { + return entries_.size(); +} +inline void BulkPublishRequest::clear_entries() { + entries_.Clear(); +} +inline ::dapr::proto::runtime::v1::BulkPublishRequestEntry* BulkPublishRequest::mutable_entries(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequest.entries) + return entries_.Mutable(index); +} +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkPublishRequestEntry >* +BulkPublishRequest::mutable_entries() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.BulkPublishRequest.entries) + return &entries_; +} +inline const ::dapr::proto::runtime::v1::BulkPublishRequestEntry& BulkPublishRequest::entries(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequest.entries) + return entries_.Get(index); +} +inline ::dapr::proto::runtime::v1::BulkPublishRequestEntry* BulkPublishRequest::add_entries() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.BulkPublishRequest.entries) + return entries_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkPublishRequestEntry >& +BulkPublishRequest::entries() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.BulkPublishRequest.entries) + return entries_; +} + +// map metadata = 4; +inline int BulkPublishRequest::metadata_size() const { + return metadata_.size(); +} +inline void BulkPublishRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +BulkPublishRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.BulkPublishRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +BulkPublishRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.BulkPublishRequest.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// BulkPublishRequestEntry + +// string entry_id = 1; +inline void BulkPublishRequestEntry::clear_entry_id() { + entry_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& BulkPublishRequestEntry::entry_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) + return entry_id_.GetNoArena(); +} +inline void BulkPublishRequestEntry::set_entry_id(const ::std::string& value) { + + entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) +} +#if LANG_CXX11 +inline void BulkPublishRequestEntry::set_entry_id(::std::string&& value) { + + entry_id_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) +} +#endif +inline void BulkPublishRequestEntry::set_entry_id(const char* value) { + GOOGLE_DCHECK(value != NULL); + + entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) +} +inline void BulkPublishRequestEntry::set_entry_id(const char* value, size_t size) { + + entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) +} +inline ::std::string* BulkPublishRequestEntry::mutable_entry_id() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) + return entry_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* BulkPublishRequestEntry::release_entry_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) + + return entry_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void BulkPublishRequestEntry::set_allocated_entry_id(::std::string* entry_id) { + if (entry_id != NULL) { + + } else { + + } + entry_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), entry_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) +} + +// bytes event = 2; +inline void BulkPublishRequestEntry::clear_event() { + event_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& BulkPublishRequestEntry::event() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) + return event_.GetNoArena(); +} +inline void BulkPublishRequestEntry::set_event(const ::std::string& value) { + + event_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) +} +#if LANG_CXX11 +inline void BulkPublishRequestEntry::set_event(::std::string&& value) { + + event_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) +} +#endif +inline void BulkPublishRequestEntry::set_event(const char* value) { + GOOGLE_DCHECK(value != NULL); + + event_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) +} +inline void BulkPublishRequestEntry::set_event(const void* value, size_t size) { + + event_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) +} +inline ::std::string* BulkPublishRequestEntry::mutable_event() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) + return event_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* BulkPublishRequestEntry::release_event() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) + + return event_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void BulkPublishRequestEntry::set_allocated_event(::std::string* event) { + if (event != NULL) { + + } else { + + } + event_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), event); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) +} + +// string content_type = 3; +inline void BulkPublishRequestEntry::clear_content_type() { + content_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& BulkPublishRequestEntry::content_type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) + return content_type_.GetNoArena(); +} +inline void BulkPublishRequestEntry::set_content_type(const ::std::string& value) { + + content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) +} +#if LANG_CXX11 +inline void BulkPublishRequestEntry::set_content_type(::std::string&& value) { + + content_type_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) +} +#endif +inline void BulkPublishRequestEntry::set_content_type(const char* value) { + GOOGLE_DCHECK(value != NULL); + + content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) +} +inline void BulkPublishRequestEntry::set_content_type(const char* value, size_t size) { + + content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) +} +inline ::std::string* BulkPublishRequestEntry::mutable_content_type() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) + return content_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* BulkPublishRequestEntry::release_content_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) + + return content_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void BulkPublishRequestEntry::set_allocated_content_type(::std::string* content_type) { + if (content_type != NULL) { + + } else { + + } + content_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), content_type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) +} + +// map metadata = 4; +inline int BulkPublishRequestEntry::metadata_size() const { + return metadata_.size(); +} +inline void BulkPublishRequestEntry::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +BulkPublishRequestEntry::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.BulkPublishRequestEntry.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +BulkPublishRequestEntry::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.BulkPublishRequestEntry.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// BulkPublishResponse + +// repeated .dapr.proto.runtime.v1.BulkPublishResponseFailedEntry failedEntries = 1; +inline int BulkPublishResponse::failedentries_size() const { + return failedentries_.size(); +} +inline void BulkPublishResponse::clear_failedentries() { + failedentries_.Clear(); +} +inline ::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry* BulkPublishResponse::mutable_failedentries(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishResponse.failedEntries) + return failedentries_.Mutable(index); +} +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry >* +BulkPublishResponse::mutable_failedentries() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.BulkPublishResponse.failedEntries) + return &failedentries_; +} +inline const ::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry& BulkPublishResponse::failedentries(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishResponse.failedEntries) + return failedentries_.Get(index); +} +inline ::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry* BulkPublishResponse::add_failedentries() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.BulkPublishResponse.failedEntries) + return failedentries_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry >& +BulkPublishResponse::failedentries() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.BulkPublishResponse.failedEntries) + return failedentries_; +} + +// ------------------------------------------------------------------- + +// BulkPublishResponseFailedEntry + +// string entry_id = 1; +inline void BulkPublishResponseFailedEntry::clear_entry_id() { + entry_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& BulkPublishResponseFailedEntry::entry_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) + return entry_id_.GetNoArena(); +} +inline void BulkPublishResponseFailedEntry::set_entry_id(const ::std::string& value) { + + entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) +} +#if LANG_CXX11 +inline void BulkPublishResponseFailedEntry::set_entry_id(::std::string&& value) { + + entry_id_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) +} +#endif +inline void BulkPublishResponseFailedEntry::set_entry_id(const char* value) { + GOOGLE_DCHECK(value != NULL); + + entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) +} +inline void BulkPublishResponseFailedEntry::set_entry_id(const char* value, size_t size) { + + entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) +} +inline ::std::string* BulkPublishResponseFailedEntry::mutable_entry_id() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) + return entry_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* BulkPublishResponseFailedEntry::release_entry_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) + + return entry_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void BulkPublishResponseFailedEntry::set_allocated_entry_id(::std::string* entry_id) { + if (entry_id != NULL) { + + } else { + + } + entry_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), entry_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) +} + +// string error = 2; +inline void BulkPublishResponseFailedEntry::clear_error() { + error_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& BulkPublishResponseFailedEntry::error() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) + return error_.GetNoArena(); +} +inline void BulkPublishResponseFailedEntry::set_error(const ::std::string& value) { + + error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) +} +#if LANG_CXX11 +inline void BulkPublishResponseFailedEntry::set_error(::std::string&& value) { + + error_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) +} +#endif +inline void BulkPublishResponseFailedEntry::set_error(const char* value) { + GOOGLE_DCHECK(value != NULL); + + error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) +} +inline void BulkPublishResponseFailedEntry::set_error(const char* value, size_t size) { + + error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) +} +inline ::std::string* BulkPublishResponseFailedEntry::mutable_error() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) + return error_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* BulkPublishResponseFailedEntry::release_error() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) + + return error_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void BulkPublishResponseFailedEntry::set_allocated_error(::std::string* error) { + if (error != NULL) { + + } else { + + } + error_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), error); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// InvokeBindingRequest + +// string name = 1; +inline void InvokeBindingRequest::clear_name() { + name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& InvokeBindingRequest::name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeBindingRequest.name) + return name_.GetNoArena(); +} +inline void InvokeBindingRequest::set_name(const ::std::string& value) { + + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeBindingRequest.name) +} +#if LANG_CXX11 +inline void InvokeBindingRequest::set_name(::std::string&& value) { + + name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeBindingRequest.name) +} +#endif +inline void InvokeBindingRequest::set_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeBindingRequest.name) +} +inline void InvokeBindingRequest::set_name(const char* value, size_t size) { + + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeBindingRequest.name) +} +inline ::std::string* InvokeBindingRequest::mutable_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeBindingRequest.name) + return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* InvokeBindingRequest::release_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeBindingRequest.name) + + return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void InvokeBindingRequest::set_allocated_name(::std::string* name) { + if (name != NULL) { + + } else { + + } + name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeBindingRequest.name) +} + +// bytes data = 2; +inline void InvokeBindingRequest::clear_data() { + data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& InvokeBindingRequest::data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeBindingRequest.data) + return data_.GetNoArena(); +} +inline void InvokeBindingRequest::set_data(const ::std::string& value) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeBindingRequest.data) +} +#if LANG_CXX11 +inline void InvokeBindingRequest::set_data(::std::string&& value) { + + data_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeBindingRequest.data) +} +#endif +inline void InvokeBindingRequest::set_data(const char* value) { + GOOGLE_DCHECK(value != NULL); + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeBindingRequest.data) +} +inline void InvokeBindingRequest::set_data(const void* value, size_t size) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeBindingRequest.data) +} +inline ::std::string* InvokeBindingRequest::mutable_data() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeBindingRequest.data) + return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* InvokeBindingRequest::release_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeBindingRequest.data) + + return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void InvokeBindingRequest::set_allocated_data(::std::string* data) { + if (data != NULL) { + + } else { + + } + data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeBindingRequest.data) +} + +// map metadata = 3; +inline int InvokeBindingRequest::metadata_size() const { + return metadata_.size(); +} +inline void InvokeBindingRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +InvokeBindingRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.InvokeBindingRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +InvokeBindingRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.InvokeBindingRequest.metadata) + return metadata_.MutableMap(); +} + +// string operation = 4; +inline void InvokeBindingRequest::clear_operation() { + operation_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& InvokeBindingRequest::operation() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeBindingRequest.operation) + return operation_.GetNoArena(); +} +inline void InvokeBindingRequest::set_operation(const ::std::string& value) { + + operation_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeBindingRequest.operation) +} +#if LANG_CXX11 +inline void InvokeBindingRequest::set_operation(::std::string&& value) { + + operation_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeBindingRequest.operation) +} +#endif +inline void InvokeBindingRequest::set_operation(const char* value) { + GOOGLE_DCHECK(value != NULL); + + operation_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeBindingRequest.operation) +} +inline void InvokeBindingRequest::set_operation(const char* value, size_t size) { + + operation_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeBindingRequest.operation) +} +inline ::std::string* InvokeBindingRequest::mutable_operation() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeBindingRequest.operation) + return operation_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* InvokeBindingRequest::release_operation() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeBindingRequest.operation) + + return operation_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void InvokeBindingRequest::set_allocated_operation(::std::string* operation) { + if (operation != NULL) { + + } else { + + } + operation_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), operation); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeBindingRequest.operation) +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// InvokeBindingResponse + +// bytes data = 1; +inline void InvokeBindingResponse::clear_data() { + data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& InvokeBindingResponse::data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeBindingResponse.data) + return data_.GetNoArena(); +} +inline void InvokeBindingResponse::set_data(const ::std::string& value) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeBindingResponse.data) +} +#if LANG_CXX11 +inline void InvokeBindingResponse::set_data(::std::string&& value) { + + data_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeBindingResponse.data) +} +#endif +inline void InvokeBindingResponse::set_data(const char* value) { + GOOGLE_DCHECK(value != NULL); + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeBindingResponse.data) +} +inline void InvokeBindingResponse::set_data(const void* value, size_t size) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeBindingResponse.data) +} +inline ::std::string* InvokeBindingResponse::mutable_data() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeBindingResponse.data) + return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* InvokeBindingResponse::release_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeBindingResponse.data) + + return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void InvokeBindingResponse::set_allocated_data(::std::string* data) { + if (data != NULL) { + + } else { + + } + data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeBindingResponse.data) +} + +// map metadata = 2; +inline int InvokeBindingResponse::metadata_size() const { + return metadata_.size(); +} +inline void InvokeBindingResponse::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +InvokeBindingResponse::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.InvokeBindingResponse.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +InvokeBindingResponse::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.InvokeBindingResponse.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// GetSecretRequest + +// string store_name = 1[json_name = "storeName"]; +inline void GetSecretRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& GetSecretRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetSecretRequest.store_name) + return store_name_.GetNoArena(); +} +inline void GetSecretRequest::set_store_name(const ::std::string& value) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetSecretRequest.store_name) +} +#if LANG_CXX11 +inline void GetSecretRequest::set_store_name(::std::string&& value) { + + store_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetSecretRequest.store_name) +} +#endif +inline void GetSecretRequest::set_store_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetSecretRequest.store_name) +} +inline void GetSecretRequest::set_store_name(const char* value, size_t size) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetSecretRequest.store_name) +} +inline ::std::string* GetSecretRequest::mutable_store_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetSecretRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* GetSecretRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetSecretRequest.store_name) + + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void GetSecretRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { + + } else { + + } + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetSecretRequest.store_name) +} + +// string key = 2; +inline void GetSecretRequest::clear_key() { + key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& GetSecretRequest::key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetSecretRequest.key) + return key_.GetNoArena(); +} +inline void GetSecretRequest::set_key(const ::std::string& value) { + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetSecretRequest.key) +} +#if LANG_CXX11 +inline void GetSecretRequest::set_key(::std::string&& value) { + + key_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetSecretRequest.key) +} +#endif +inline void GetSecretRequest::set_key(const char* value) { + GOOGLE_DCHECK(value != NULL); + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetSecretRequest.key) +} +inline void GetSecretRequest::set_key(const char* value, size_t size) { + + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetSecretRequest.key) +} +inline ::std::string* GetSecretRequest::mutable_key() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetSecretRequest.key) + return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* GetSecretRequest::release_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetSecretRequest.key) + + return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void GetSecretRequest::set_allocated_key(::std::string* key) { + if (key != NULL) { + + } else { + + } + key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetSecretRequest.key) +} + +// map metadata = 3; +inline int GetSecretRequest::metadata_size() const { + return metadata_.size(); +} +inline void GetSecretRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +GetSecretRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetSecretRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +GetSecretRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetSecretRequest.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// GetSecretResponse + +// map data = 1; +inline int GetSecretResponse::data_size() const { + return data_.size(); +} +inline void GetSecretResponse::clear_data() { + data_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +GetSecretResponse::data() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetSecretResponse.data) + return data_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +GetSecretResponse::mutable_data() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetSecretResponse.data) + return data_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// GetBulkSecretRequest + +// string store_name = 1[json_name = "storeName"]; +inline void GetBulkSecretRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& GetBulkSecretRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) + return store_name_.GetNoArena(); +} +inline void GetBulkSecretRequest::set_store_name(const ::std::string& value) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) +} +#if LANG_CXX11 +inline void GetBulkSecretRequest::set_store_name(::std::string&& value) { + + store_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) +} +#endif +inline void GetBulkSecretRequest::set_store_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) +} +inline void GetBulkSecretRequest::set_store_name(const char* value, size_t size) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) +} +inline ::std::string* GetBulkSecretRequest::mutable_store_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* GetBulkSecretRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) + + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void GetBulkSecretRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { + + } else { + + } + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) +} + +// map metadata = 2; +inline int GetBulkSecretRequest::metadata_size() const { + return metadata_.size(); +} +inline void GetBulkSecretRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +GetBulkSecretRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetBulkSecretRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +GetBulkSecretRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetBulkSecretRequest.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// SecretResponse + +// map secrets = 1; +inline int SecretResponse::secrets_size() const { + return secrets_.size(); +} +inline void SecretResponse::clear_secrets() { + secrets_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +SecretResponse::secrets() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.SecretResponse.secrets) + return secrets_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +SecretResponse::mutable_secrets() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.SecretResponse.secrets) + return secrets_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// GetBulkSecretResponse + +// map data = 1; +inline int GetBulkSecretResponse::data_size() const { + return data_.size(); +} +inline void GetBulkSecretResponse::clear_data() { + data_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::dapr::proto::runtime::v1::SecretResponse >& +GetBulkSecretResponse::data() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetBulkSecretResponse.data) + return data_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::dapr::proto::runtime::v1::SecretResponse >* +GetBulkSecretResponse::mutable_data() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetBulkSecretResponse.data) + return data_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// TransactionalStateOperation + +// string operationType = 1; +inline void TransactionalStateOperation::clear_operationtype() { + operationtype_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& TransactionalStateOperation::operationtype() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) + return operationtype_.GetNoArena(); +} +inline void TransactionalStateOperation::set_operationtype(const ::std::string& value) { + + operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) +} +#if LANG_CXX11 +inline void TransactionalStateOperation::set_operationtype(::std::string&& value) { + + operationtype_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) +} +#endif +inline void TransactionalStateOperation::set_operationtype(const char* value) { + GOOGLE_DCHECK(value != NULL); + + operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) +} +inline void TransactionalStateOperation::set_operationtype(const char* value, size_t size) { + + operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) +} +inline ::std::string* TransactionalStateOperation::mutable_operationtype() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) + return operationtype_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* TransactionalStateOperation::release_operationtype() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) + + return operationtype_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void TransactionalStateOperation::set_allocated_operationtype(::std::string* operationtype) { + if (operationtype != NULL) { + + } else { + + } + operationtype_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), operationtype); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) +} + +// .dapr.proto.common.v1.StateItem request = 2; +inline bool TransactionalStateOperation::has_request() const { + return this != internal_default_instance() && request_ != NULL; +} +inline const ::dapr::proto::common::v1::StateItem& TransactionalStateOperation::_internal_request() const { + return *request_; +} +inline const ::dapr::proto::common::v1::StateItem& TransactionalStateOperation::request() const { + const ::dapr::proto::common::v1::StateItem* p = request_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TransactionalStateOperation.request) + return p != NULL ? *p : *reinterpret_cast( + &::dapr::proto::common::v1::_StateItem_default_instance_); +} +inline ::dapr::proto::common::v1::StateItem* TransactionalStateOperation::release_request() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TransactionalStateOperation.request) + + ::dapr::proto::common::v1::StateItem* temp = request_; + request_ = NULL; + return temp; +} +inline ::dapr::proto::common::v1::StateItem* TransactionalStateOperation::mutable_request() { + + if (request_ == NULL) { + auto* p = CreateMaybeMessage<::dapr::proto::common::v1::StateItem>(GetArenaNoVirtual()); + request_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TransactionalStateOperation.request) + return request_; +} +inline void TransactionalStateOperation::set_allocated_request(::dapr::proto::common::v1::StateItem* request) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(request_); + } + if (request) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + request = ::google::protobuf::internal::GetOwnedMessage( + message_arena, request, submessage_arena); + } + + } else { + + } + request_ = request; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TransactionalStateOperation.request) +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ExecuteStateTransactionRequest + +// string storeName = 1; +inline void ExecuteStateTransactionRequest::clear_storename() { + storename_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& ExecuteStateTransactionRequest::storename() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) + return storename_.GetNoArena(); +} +inline void ExecuteStateTransactionRequest::set_storename(const ::std::string& value) { + + storename_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) +} +#if LANG_CXX11 +inline void ExecuteStateTransactionRequest::set_storename(::std::string&& value) { + + storename_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) +} +#endif +inline void ExecuteStateTransactionRequest::set_storename(const char* value) { + GOOGLE_DCHECK(value != NULL); + + storename_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) +} +inline void ExecuteStateTransactionRequest::set_storename(const char* value, size_t size) { + + storename_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) +} +inline ::std::string* ExecuteStateTransactionRequest::mutable_storename() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) + return storename_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* ExecuteStateTransactionRequest::release_storename() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) + + return storename_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void ExecuteStateTransactionRequest::set_allocated_storename(::std::string* storename) { + if (storename != NULL) { + + } else { + + } + storename_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), storename); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) +} + +// repeated .dapr.proto.runtime.v1.TransactionalStateOperation operations = 2; +inline int ExecuteStateTransactionRequest::operations_size() const { + return operations_.size(); +} +inline void ExecuteStateTransactionRequest::clear_operations() { + operations_.Clear(); +} +inline ::dapr::proto::runtime::v1::TransactionalStateOperation* ExecuteStateTransactionRequest::mutable_operations(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.operations) + return operations_.Mutable(index); +} +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::TransactionalStateOperation >* +ExecuteStateTransactionRequest::mutable_operations() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.operations) + return &operations_; +} +inline const ::dapr::proto::runtime::v1::TransactionalStateOperation& ExecuteStateTransactionRequest::operations(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.operations) + return operations_.Get(index); +} +inline ::dapr::proto::runtime::v1::TransactionalStateOperation* ExecuteStateTransactionRequest::add_operations() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.operations) + return operations_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::TransactionalStateOperation >& +ExecuteStateTransactionRequest::operations() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.operations) + return operations_; +} + +// map metadata = 3; +inline int ExecuteStateTransactionRequest::metadata_size() const { + return metadata_.size(); +} +inline void ExecuteStateTransactionRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +ExecuteStateTransactionRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +ExecuteStateTransactionRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// RegisterActorTimerRequest + +// string actor_type = 1; +inline void RegisterActorTimerRequest::clear_actor_type() { + actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& RegisterActorTimerRequest::actor_type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) + return actor_type_.GetNoArena(); +} +inline void RegisterActorTimerRequest::set_actor_type(const ::std::string& value) { + + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) +} +#if LANG_CXX11 +inline void RegisterActorTimerRequest::set_actor_type(::std::string&& value) { + + actor_type_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) +} +#endif +inline void RegisterActorTimerRequest::set_actor_type(const char* value) { + GOOGLE_DCHECK(value != NULL); + + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) +} +inline void RegisterActorTimerRequest::set_actor_type(const char* value, size_t size) { + + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) +} +inline ::std::string* RegisterActorTimerRequest::mutable_actor_type() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) + return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* RegisterActorTimerRequest::release_actor_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) + + return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void RegisterActorTimerRequest::set_allocated_actor_type(::std::string* actor_type) { + if (actor_type != NULL) { + + } else { + + } + actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) +} + +// string actor_id = 2; +inline void RegisterActorTimerRequest::clear_actor_id() { + actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& RegisterActorTimerRequest::actor_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) + return actor_id_.GetNoArena(); +} +inline void RegisterActorTimerRequest::set_actor_id(const ::std::string& value) { + + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) +} +#if LANG_CXX11 +inline void RegisterActorTimerRequest::set_actor_id(::std::string&& value) { + + actor_id_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) +} +#endif +inline void RegisterActorTimerRequest::set_actor_id(const char* value) { + GOOGLE_DCHECK(value != NULL); + + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) +} +inline void RegisterActorTimerRequest::set_actor_id(const char* value, size_t size) { + + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) +} +inline ::std::string* RegisterActorTimerRequest::mutable_actor_id() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) + return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* RegisterActorTimerRequest::release_actor_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) + + return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void RegisterActorTimerRequest::set_allocated_actor_id(::std::string* actor_id) { + if (actor_id != NULL) { + + } else { + + } + actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) +} + +// string name = 3; +inline void RegisterActorTimerRequest::clear_name() { + name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& RegisterActorTimerRequest::name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) + return name_.GetNoArena(); +} +inline void RegisterActorTimerRequest::set_name(const ::std::string& value) { + + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) +} +#if LANG_CXX11 +inline void RegisterActorTimerRequest::set_name(::std::string&& value) { + + name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) +} +#endif +inline void RegisterActorTimerRequest::set_name(const char* value) { GOOGLE_DCHECK(value != NULL); - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeServiceRequest.id) + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) +} +inline void RegisterActorTimerRequest::set_name(const char* value, size_t size) { + + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) +} +inline ::std::string* RegisterActorTimerRequest::mutable_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) + return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* RegisterActorTimerRequest::release_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) + + return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void RegisterActorTimerRequest::set_allocated_name(::std::string* name) { + if (name != NULL) { + + } else { + + } + name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) +} + +// string due_time = 4; +inline void RegisterActorTimerRequest::clear_due_time() { + due_time_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& RegisterActorTimerRequest::due_time() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) + return due_time_.GetNoArena(); +} +inline void RegisterActorTimerRequest::set_due_time(const ::std::string& value) { + + due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) +} +#if LANG_CXX11 +inline void RegisterActorTimerRequest::set_due_time(::std::string&& value) { + + due_time_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) +} +#endif +inline void RegisterActorTimerRequest::set_due_time(const char* value) { + GOOGLE_DCHECK(value != NULL); + + due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) +} +inline void RegisterActorTimerRequest::set_due_time(const char* value, size_t size) { + + due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) +} +inline ::std::string* RegisterActorTimerRequest::mutable_due_time() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) + return due_time_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* RegisterActorTimerRequest::release_due_time() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) + + return due_time_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void RegisterActorTimerRequest::set_allocated_due_time(::std::string* due_time) { + if (due_time != NULL) { + + } else { + + } + due_time_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), due_time); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) +} + +// string period = 5; +inline void RegisterActorTimerRequest::clear_period() { + period_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& RegisterActorTimerRequest::period() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) + return period_.GetNoArena(); +} +inline void RegisterActorTimerRequest::set_period(const ::std::string& value) { + + period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) +} +#if LANG_CXX11 +inline void RegisterActorTimerRequest::set_period(::std::string&& value) { + + period_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) +} +#endif +inline void RegisterActorTimerRequest::set_period(const char* value) { + GOOGLE_DCHECK(value != NULL); + + period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) +} +inline void RegisterActorTimerRequest::set_period(const char* value, size_t size) { + + period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) +} +inline ::std::string* RegisterActorTimerRequest::mutable_period() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) + return period_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* RegisterActorTimerRequest::release_period() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) + + return period_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void RegisterActorTimerRequest::set_allocated_period(::std::string* period) { + if (period != NULL) { + + } else { + + } + period_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), period); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) +} + +// string callback = 6; +inline void RegisterActorTimerRequest::clear_callback() { + callback_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& RegisterActorTimerRequest::callback() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) + return callback_.GetNoArena(); +} +inline void RegisterActorTimerRequest::set_callback(const ::std::string& value) { + + callback_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) +} +#if LANG_CXX11 +inline void RegisterActorTimerRequest::set_callback(::std::string&& value) { + + callback_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) +} +#endif +inline void RegisterActorTimerRequest::set_callback(const char* value) { + GOOGLE_DCHECK(value != NULL); + + callback_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) +} +inline void RegisterActorTimerRequest::set_callback(const char* value, size_t size) { + + callback_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) +} +inline ::std::string* RegisterActorTimerRequest::mutable_callback() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) + return callback_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* RegisterActorTimerRequest::release_callback() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) + + return callback_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void RegisterActorTimerRequest::set_allocated_callback(::std::string* callback) { + if (callback != NULL) { + + } else { + + } + callback_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), callback); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) +} + +// bytes data = 7; +inline void RegisterActorTimerRequest::clear_data() { + data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& RegisterActorTimerRequest::data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) + return data_.GetNoArena(); +} +inline void RegisterActorTimerRequest::set_data(const ::std::string& value) { + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) +} +#if LANG_CXX11 +inline void RegisterActorTimerRequest::set_data(::std::string&& value) { + + data_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) +} +#endif +inline void RegisterActorTimerRequest::set_data(const char* value) { + GOOGLE_DCHECK(value != NULL); + + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) } -inline void InvokeServiceRequest::set_id(const char* value, size_t size) { +inline void RegisterActorTimerRequest::set_data(const void* value, size_t size) { - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeServiceRequest.id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) } -inline ::std::string* InvokeServiceRequest::mutable_id() { +inline ::std::string* RegisterActorTimerRequest::mutable_data() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeServiceRequest.id) - return id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) + return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* InvokeServiceRequest::release_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeServiceRequest.id) +inline ::std::string* RegisterActorTimerRequest::release_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) - return id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void InvokeServiceRequest::set_allocated_id(::std::string* id) { - if (id != NULL) { +inline void RegisterActorTimerRequest::set_allocated_data(::std::string* data) { + if (data != NULL) { } else { } - id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeServiceRequest.id) + data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) } -// .dapr.proto.common.v1.InvokeRequest message = 3; -inline bool InvokeServiceRequest::has_message() const { - return this != internal_default_instance() && message_ != NULL; +// string ttl = 8; +inline void RegisterActorTimerRequest::clear_ttl() { + ttl_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::dapr::proto::common::v1::InvokeRequest& InvokeServiceRequest::_internal_message() const { - return *message_; +inline const ::std::string& RegisterActorTimerRequest::ttl() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) + return ttl_.GetNoArena(); } -inline const ::dapr::proto::common::v1::InvokeRequest& InvokeServiceRequest::message() const { - const ::dapr::proto::common::v1::InvokeRequest* p = message_; - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeServiceRequest.message) - return p != NULL ? *p : *reinterpret_cast( - &::dapr::proto::common::v1::_InvokeRequest_default_instance_); +inline void RegisterActorTimerRequest::set_ttl(const ::std::string& value) { + + ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) } -inline ::dapr::proto::common::v1::InvokeRequest* InvokeServiceRequest::release_message() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeServiceRequest.message) +#if LANG_CXX11 +inline void RegisterActorTimerRequest::set_ttl(::std::string&& value) { - ::dapr::proto::common::v1::InvokeRequest* temp = message_; - message_ = NULL; - return temp; + ttl_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) } -inline ::dapr::proto::common::v1::InvokeRequest* InvokeServiceRequest::mutable_message() { +#endif +inline void RegisterActorTimerRequest::set_ttl(const char* value) { + GOOGLE_DCHECK(value != NULL); - if (message_ == NULL) { - auto* p = CreateMaybeMessage<::dapr::proto::common::v1::InvokeRequest>(GetArenaNoVirtual()); - message_ = p; - } - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeServiceRequest.message) - return message_; + ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) } -inline void InvokeServiceRequest::set_allocated_message(::dapr::proto::common::v1::InvokeRequest* message) { - ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); - if (message_arena == NULL) { - delete reinterpret_cast< ::google::protobuf::MessageLite*>(message_); - } - if (message) { - ::google::protobuf::Arena* submessage_arena = NULL; - if (message_arena != submessage_arena) { - message = ::google::protobuf::internal::GetOwnedMessage( - message_arena, message, submessage_arena); - } +inline void RegisterActorTimerRequest::set_ttl(const char* value, size_t size) { + + ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) +} +inline ::std::string* RegisterActorTimerRequest::mutable_ttl() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) + return ttl_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* RegisterActorTimerRequest::release_ttl() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) + + return ttl_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void RegisterActorTimerRequest::set_allocated_ttl(::std::string* ttl) { + if (ttl != NULL) { } else { } - message_ = message; - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeServiceRequest.message) + ttl_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ttl); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- +// UnregisterActorTimerRequest -// GetStateRequest +// string actor_type = 1; +inline void UnregisterActorTimerRequest::clear_actor_type() { + actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& UnregisterActorTimerRequest::actor_type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) + return actor_type_.GetNoArena(); +} +inline void UnregisterActorTimerRequest::set_actor_type(const ::std::string& value) { + + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) +} +#if LANG_CXX11 +inline void UnregisterActorTimerRequest::set_actor_type(::std::string&& value) { + + actor_type_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) +} +#endif +inline void UnregisterActorTimerRequest::set_actor_type(const char* value) { + GOOGLE_DCHECK(value != NULL); + + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) +} +inline void UnregisterActorTimerRequest::set_actor_type(const char* value, size_t size) { + + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) +} +inline ::std::string* UnregisterActorTimerRequest::mutable_actor_type() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) + return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* UnregisterActorTimerRequest::release_actor_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) + + return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void UnregisterActorTimerRequest::set_allocated_actor_type(::std::string* actor_type) { + if (actor_type != NULL) { + + } else { + + } + actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) +} -// string store_name = 1; -inline void GetStateRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string actor_id = 2; +inline void UnregisterActorTimerRequest::clear_actor_id() { + actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetStateRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetStateRequest.store_name) - return store_name_.GetNoArena(); +inline const ::std::string& UnregisterActorTimerRequest::actor_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) + return actor_id_.GetNoArena(); } -inline void GetStateRequest::set_store_name(const ::std::string& value) { +inline void UnregisterActorTimerRequest::set_actor_id(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetStateRequest.store_name) + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) } #if LANG_CXX11 -inline void GetStateRequest::set_store_name(::std::string&& value) { +inline void UnregisterActorTimerRequest::set_actor_id(::std::string&& value) { - store_name_.SetNoArena( + actor_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetStateRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) } #endif -inline void GetStateRequest::set_store_name(const char* value) { +inline void UnregisterActorTimerRequest::set_actor_id(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetStateRequest.store_name) + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) } -inline void GetStateRequest::set_store_name(const char* value, size_t size) { +inline void UnregisterActorTimerRequest::set_actor_id(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetStateRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) } -inline ::std::string* GetStateRequest::mutable_store_name() { +inline ::std::string* UnregisterActorTimerRequest::mutable_actor_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetStateRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) + return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetStateRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetStateRequest.store_name) +inline ::std::string* UnregisterActorTimerRequest::release_actor_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetStateRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void UnregisterActorTimerRequest::set_allocated_actor_id(::std::string* actor_id) { + if (actor_id != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetStateRequest.store_name) + actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) } -// string key = 2; -inline void GetStateRequest::clear_key() { - key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string name = 3; +inline void UnregisterActorTimerRequest::clear_name() { + name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetStateRequest::key() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetStateRequest.key) - return key_.GetNoArena(); +inline const ::std::string& UnregisterActorTimerRequest::name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) + return name_.GetNoArena(); } -inline void GetStateRequest::set_key(const ::std::string& value) { +inline void UnregisterActorTimerRequest::set_name(const ::std::string& value) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetStateRequest.key) + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) } #if LANG_CXX11 -inline void GetStateRequest::set_key(::std::string&& value) { +inline void UnregisterActorTimerRequest::set_name(::std::string&& value) { - key_.SetNoArena( + name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetStateRequest.key) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) } #endif -inline void GetStateRequest::set_key(const char* value) { +inline void UnregisterActorTimerRequest::set_name(const char* value) { GOOGLE_DCHECK(value != NULL); - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetStateRequest.key) + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) } -inline void GetStateRequest::set_key(const char* value, size_t size) { +inline void UnregisterActorTimerRequest::set_name(const char* value, size_t size) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetStateRequest.key) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) } -inline ::std::string* GetStateRequest::mutable_key() { +inline ::std::string* UnregisterActorTimerRequest::mutable_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetStateRequest.key) - return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) + return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetStateRequest::release_key() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetStateRequest.key) +inline ::std::string* UnregisterActorTimerRequest::release_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) - return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetStateRequest::set_allocated_key(::std::string* key) { - if (key != NULL) { +inline void UnregisterActorTimerRequest::set_allocated_name(::std::string* name) { + if (name != NULL) { } else { } - key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetStateRequest.key) -} - -// .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 3; -inline void GetStateRequest::clear_consistency() { - consistency_ = 0; -} -inline ::dapr::proto::common::v1::StateOptions_StateConsistency GetStateRequest::consistency() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetStateRequest.consistency) - return static_cast< ::dapr::proto::common::v1::StateOptions_StateConsistency >(consistency_); -} -inline void GetStateRequest::set_consistency(::dapr::proto::common::v1::StateOptions_StateConsistency value) { - - consistency_ = value; - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetStateRequest.consistency) -} - -// map metadata = 4; -inline int GetStateRequest::metadata_size() const { - return metadata_.size(); -} -inline void GetStateRequest::clear_metadata() { - metadata_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -GetStateRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetStateRequest.metadata) - return metadata_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -GetStateRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetStateRequest.metadata) - return metadata_.MutableMap(); + name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// GetBulkStateRequest +// RegisterActorReminderRequest -// string store_name = 1; -inline void GetBulkStateRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string actor_type = 1; +inline void RegisterActorReminderRequest::clear_actor_type() { + actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetBulkStateRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) - return store_name_.GetNoArena(); +inline const ::std::string& RegisterActorReminderRequest::actor_type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) + return actor_type_.GetNoArena(); } -inline void GetBulkStateRequest::set_store_name(const ::std::string& value) { +inline void RegisterActorReminderRequest::set_actor_type(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) } #if LANG_CXX11 -inline void GetBulkStateRequest::set_store_name(::std::string&& value) { +inline void RegisterActorReminderRequest::set_actor_type(::std::string&& value) { - store_name_.SetNoArena( + actor_type_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) } #endif -inline void GetBulkStateRequest::set_store_name(const char* value) { +inline void RegisterActorReminderRequest::set_actor_type(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) } -inline void GetBulkStateRequest::set_store_name(const char* value, size_t size) { +inline void RegisterActorReminderRequest::set_actor_type(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) } -inline ::std::string* GetBulkStateRequest::mutable_store_name() { +inline ::std::string* RegisterActorReminderRequest::mutable_actor_type() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) + return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetBulkStateRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) +inline ::std::string* RegisterActorReminderRequest::release_actor_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetBulkStateRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void RegisterActorReminderRequest::set_allocated_actor_type(::std::string* actor_type) { + if (actor_type != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetBulkStateRequest.store_name) + actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) } -// repeated string keys = 2; -inline int GetBulkStateRequest::keys_size() const { - return keys_.size(); -} -inline void GetBulkStateRequest::clear_keys() { - keys_.Clear(); -} -inline const ::std::string& GetBulkStateRequest::keys(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetBulkStateRequest.keys) - return keys_.Get(index); +// string actor_id = 2; +inline void RegisterActorReminderRequest::clear_actor_id() { + actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetBulkStateRequest::mutable_keys(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetBulkStateRequest.keys) - return keys_.Mutable(index); +inline const ::std::string& RegisterActorReminderRequest::actor_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) + return actor_id_.GetNoArena(); } -inline void GetBulkStateRequest::set_keys(int index, const ::std::string& value) { - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetBulkStateRequest.keys) - keys_.Mutable(index)->assign(value); +inline void RegisterActorReminderRequest::set_actor_id(const ::std::string& value) { + + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) } #if LANG_CXX11 -inline void GetBulkStateRequest::set_keys(int index, ::std::string&& value) { - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetBulkStateRequest.keys) - keys_.Mutable(index)->assign(std::move(value)); +inline void RegisterActorReminderRequest::set_actor_id(::std::string&& value) { + + actor_id_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) } #endif -inline void GetBulkStateRequest::set_keys(int index, const char* value) { +inline void RegisterActorReminderRequest::set_actor_id(const char* value) { GOOGLE_DCHECK(value != NULL); - keys_.Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetBulkStateRequest.keys) -} -inline void GetBulkStateRequest::set_keys(int index, const char* value, size_t size) { - keys_.Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetBulkStateRequest.keys) -} -inline ::std::string* GetBulkStateRequest::add_keys() { - // @@protoc_insertion_point(field_add_mutable:dapr.proto.runtime.v1.GetBulkStateRequest.keys) - return keys_.Add(); -} -inline void GetBulkStateRequest::add_keys(const ::std::string& value) { - keys_.Add()->assign(value); - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetBulkStateRequest.keys) -} -#if LANG_CXX11 -inline void GetBulkStateRequest::add_keys(::std::string&& value) { - keys_.Add(std::move(value)); - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetBulkStateRequest.keys) + + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) } -#endif -inline void GetBulkStateRequest::add_keys(const char* value) { - GOOGLE_DCHECK(value != NULL); - keys_.Add()->assign(value); - // @@protoc_insertion_point(field_add_char:dapr.proto.runtime.v1.GetBulkStateRequest.keys) +inline void RegisterActorReminderRequest::set_actor_id(const char* value, size_t size) { + + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) } -inline void GetBulkStateRequest::add_keys(const char* value, size_t size) { - keys_.Add()->assign(reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:dapr.proto.runtime.v1.GetBulkStateRequest.keys) +inline ::std::string* RegisterActorReminderRequest::mutable_actor_id() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) + return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::google::protobuf::RepeatedPtrField< ::std::string>& -GetBulkStateRequest::keys() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetBulkStateRequest.keys) - return keys_; +inline ::std::string* RegisterActorReminderRequest::release_actor_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) + + return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::google::protobuf::RepeatedPtrField< ::std::string>* -GetBulkStateRequest::mutable_keys() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetBulkStateRequest.keys) - return &keys_; +inline void RegisterActorReminderRequest::set_allocated_actor_id(::std::string* actor_id) { + if (actor_id != NULL) { + + } else { + + } + actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) } -// int32 parallelism = 3; -inline void GetBulkStateRequest::clear_parallelism() { - parallelism_ = 0; +// string name = 3; +inline void RegisterActorReminderRequest::clear_name() { + name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::google::protobuf::int32 GetBulkStateRequest::parallelism() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetBulkStateRequest.parallelism) - return parallelism_; +inline const ::std::string& RegisterActorReminderRequest::name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) + return name_.GetNoArena(); } -inline void GetBulkStateRequest::set_parallelism(::google::protobuf::int32 value) { +inline void RegisterActorReminderRequest::set_name(const ::std::string& value) { - parallelism_ = value; - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetBulkStateRequest.parallelism) -} - -// map metadata = 4; -inline int GetBulkStateRequest::metadata_size() const { - return metadata_.size(); -} -inline void GetBulkStateRequest::clear_metadata() { - metadata_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -GetBulkStateRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetBulkStateRequest.metadata) - return metadata_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -GetBulkStateRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetBulkStateRequest.metadata) - return metadata_.MutableMap(); -} - -// ------------------------------------------------------------------- - -// GetBulkStateResponse - -// repeated .dapr.proto.runtime.v1.BulkStateItem items = 1; -inline int GetBulkStateResponse::items_size() const { - return items_.size(); + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) } -inline void GetBulkStateResponse::clear_items() { - items_.Clear(); +#if LANG_CXX11 +inline void RegisterActorReminderRequest::set_name(::std::string&& value) { + + name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) } -inline ::dapr::proto::runtime::v1::BulkStateItem* GetBulkStateResponse::mutable_items(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetBulkStateResponse.items) - return items_.Mutable(index); +#endif +inline void RegisterActorReminderRequest::set_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) } -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkStateItem >* -GetBulkStateResponse::mutable_items() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetBulkStateResponse.items) - return &items_; +inline void RegisterActorReminderRequest::set_name(const char* value, size_t size) { + + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) } -inline const ::dapr::proto::runtime::v1::BulkStateItem& GetBulkStateResponse::items(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetBulkStateResponse.items) - return items_.Get(index); +inline ::std::string* RegisterActorReminderRequest::mutable_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) + return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::dapr::proto::runtime::v1::BulkStateItem* GetBulkStateResponse::add_items() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetBulkStateResponse.items) - return items_.Add(); +inline ::std::string* RegisterActorReminderRequest::release_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) + + return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkStateItem >& -GetBulkStateResponse::items() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetBulkStateResponse.items) - return items_; +inline void RegisterActorReminderRequest::set_allocated_name(::std::string* name) { + if (name != NULL) { + + } else { + + } + name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) } -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// BulkStateItem - -// string key = 1; -inline void BulkStateItem::clear_key() { - key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string due_time = 4; +inline void RegisterActorReminderRequest::clear_due_time() { + due_time_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& BulkStateItem::key() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkStateItem.key) - return key_.GetNoArena(); +inline const ::std::string& RegisterActorReminderRequest::due_time() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) + return due_time_.GetNoArena(); } -inline void BulkStateItem::set_key(const ::std::string& value) { +inline void RegisterActorReminderRequest::set_due_time(const ::std::string& value) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkStateItem.key) + due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) } #if LANG_CXX11 -inline void BulkStateItem::set_key(::std::string&& value) { +inline void RegisterActorReminderRequest::set_due_time(::std::string&& value) { - key_.SetNoArena( + due_time_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkStateItem.key) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) } #endif -inline void BulkStateItem::set_key(const char* value) { +inline void RegisterActorReminderRequest::set_due_time(const char* value) { GOOGLE_DCHECK(value != NULL); - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkStateItem.key) + due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) } -inline void BulkStateItem::set_key(const char* value, size_t size) { +inline void RegisterActorReminderRequest::set_due_time(const char* value, size_t size) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkStateItem.key) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) } -inline ::std::string* BulkStateItem::mutable_key() { +inline ::std::string* RegisterActorReminderRequest::mutable_due_time() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkStateItem.key) - return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) + return due_time_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* BulkStateItem::release_key() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkStateItem.key) +inline ::std::string* RegisterActorReminderRequest::release_due_time() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) - return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return due_time_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void BulkStateItem::set_allocated_key(::std::string* key) { - if (key != NULL) { +inline void RegisterActorReminderRequest::set_allocated_due_time(::std::string* due_time) { + if (due_time != NULL) { } else { } - key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkStateItem.key) + due_time_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), due_time); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) } -// bytes data = 2; -inline void BulkStateItem::clear_data() { - data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string period = 5; +inline void RegisterActorReminderRequest::clear_period() { + period_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& BulkStateItem::data() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkStateItem.data) - return data_.GetNoArena(); +inline const ::std::string& RegisterActorReminderRequest::period() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) + return period_.GetNoArena(); } -inline void BulkStateItem::set_data(const ::std::string& value) { +inline void RegisterActorReminderRequest::set_period(const ::std::string& value) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkStateItem.data) + period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) } #if LANG_CXX11 -inline void BulkStateItem::set_data(::std::string&& value) { +inline void RegisterActorReminderRequest::set_period(::std::string&& value) { - data_.SetNoArena( + period_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkStateItem.data) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) } #endif -inline void BulkStateItem::set_data(const char* value) { +inline void RegisterActorReminderRequest::set_period(const char* value) { GOOGLE_DCHECK(value != NULL); - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkStateItem.data) + period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) } -inline void BulkStateItem::set_data(const void* value, size_t size) { +inline void RegisterActorReminderRequest::set_period(const char* value, size_t size) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkStateItem.data) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) } -inline ::std::string* BulkStateItem::mutable_data() { +inline ::std::string* RegisterActorReminderRequest::mutable_period() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkStateItem.data) - return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) + return period_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* BulkStateItem::release_data() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkStateItem.data) +inline ::std::string* RegisterActorReminderRequest::release_period() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) - return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return period_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void BulkStateItem::set_allocated_data(::std::string* data) { - if (data != NULL) { +inline void RegisterActorReminderRequest::set_allocated_period(::std::string* period) { + if (period != NULL) { } else { } - data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkStateItem.data) + period_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), period); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) } -// string etag = 3; -inline void BulkStateItem::clear_etag() { - etag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes data = 6; +inline void RegisterActorReminderRequest::clear_data() { + data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& BulkStateItem::etag() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkStateItem.etag) - return etag_.GetNoArena(); +inline const ::std::string& RegisterActorReminderRequest::data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) + return data_.GetNoArena(); } -inline void BulkStateItem::set_etag(const ::std::string& value) { +inline void RegisterActorReminderRequest::set_data(const ::std::string& value) { - etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkStateItem.etag) + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) } #if LANG_CXX11 -inline void BulkStateItem::set_etag(::std::string&& value) { +inline void RegisterActorReminderRequest::set_data(::std::string&& value) { - etag_.SetNoArena( + data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkStateItem.etag) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) } #endif -inline void BulkStateItem::set_etag(const char* value) { +inline void RegisterActorReminderRequest::set_data(const char* value) { GOOGLE_DCHECK(value != NULL); - etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkStateItem.etag) + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) } -inline void BulkStateItem::set_etag(const char* value, size_t size) { +inline void RegisterActorReminderRequest::set_data(const void* value, size_t size) { - etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkStateItem.etag) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) } -inline ::std::string* BulkStateItem::mutable_etag() { +inline ::std::string* RegisterActorReminderRequest::mutable_data() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkStateItem.etag) - return etag_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) + return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* BulkStateItem::release_etag() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkStateItem.etag) +inline ::std::string* RegisterActorReminderRequest::release_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) - return etag_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void BulkStateItem::set_allocated_etag(::std::string* etag) { - if (etag != NULL) { +inline void RegisterActorReminderRequest::set_allocated_data(::std::string* data) { + if (data != NULL) { } else { } - etag_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), etag); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkStateItem.etag) + data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) } -// string error = 4; -inline void BulkStateItem::clear_error() { - error_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string ttl = 7; +inline void RegisterActorReminderRequest::clear_ttl() { + ttl_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& BulkStateItem::error() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkStateItem.error) - return error_.GetNoArena(); +inline const ::std::string& RegisterActorReminderRequest::ttl() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) + return ttl_.GetNoArena(); } -inline void BulkStateItem::set_error(const ::std::string& value) { +inline void RegisterActorReminderRequest::set_ttl(const ::std::string& value) { - error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkStateItem.error) + ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) } #if LANG_CXX11 -inline void BulkStateItem::set_error(::std::string&& value) { +inline void RegisterActorReminderRequest::set_ttl(::std::string&& value) { - error_.SetNoArena( + ttl_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkStateItem.error) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) } #endif -inline void BulkStateItem::set_error(const char* value) { +inline void RegisterActorReminderRequest::set_ttl(const char* value) { GOOGLE_DCHECK(value != NULL); - error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkStateItem.error) + ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) } -inline void BulkStateItem::set_error(const char* value, size_t size) { +inline void RegisterActorReminderRequest::set_ttl(const char* value, size_t size) { - error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkStateItem.error) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) } -inline ::std::string* BulkStateItem::mutable_error() { +inline ::std::string* RegisterActorReminderRequest::mutable_ttl() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkStateItem.error) - return error_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) + return ttl_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* BulkStateItem::release_error() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkStateItem.error) +inline ::std::string* RegisterActorReminderRequest::release_ttl() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) - return error_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return ttl_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void BulkStateItem::set_allocated_error(::std::string* error) { - if (error != NULL) { +inline void RegisterActorReminderRequest::set_allocated_ttl(::std::string* ttl) { + if (ttl != NULL) { } else { } - error_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), error); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkStateItem.error) -} - -// map metadata = 5; -inline int BulkStateItem::metadata_size() const { - return metadata_.size(); -} -inline void BulkStateItem::clear_metadata() { - metadata_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -BulkStateItem::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.BulkStateItem.metadata) - return metadata_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -BulkStateItem::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.BulkStateItem.metadata) - return metadata_.MutableMap(); + ttl_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ttl); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// GetStateResponse +// UnregisterActorReminderRequest -// bytes data = 1; -inline void GetStateResponse::clear_data() { - data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string actor_type = 1; +inline void UnregisterActorReminderRequest::clear_actor_type() { + actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetStateResponse::data() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetStateResponse.data) - return data_.GetNoArena(); +inline const ::std::string& UnregisterActorReminderRequest::actor_type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) + return actor_type_.GetNoArena(); } -inline void GetStateResponse::set_data(const ::std::string& value) { +inline void UnregisterActorReminderRequest::set_actor_type(const ::std::string& value) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetStateResponse.data) + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) } #if LANG_CXX11 -inline void GetStateResponse::set_data(::std::string&& value) { +inline void UnregisterActorReminderRequest::set_actor_type(::std::string&& value) { - data_.SetNoArena( + actor_type_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetStateResponse.data) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) } #endif -inline void GetStateResponse::set_data(const char* value) { +inline void UnregisterActorReminderRequest::set_actor_type(const char* value) { GOOGLE_DCHECK(value != NULL); - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetStateResponse.data) + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) } -inline void GetStateResponse::set_data(const void* value, size_t size) { +inline void UnregisterActorReminderRequest::set_actor_type(const char* value, size_t size) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetStateResponse.data) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) } -inline ::std::string* GetStateResponse::mutable_data() { +inline ::std::string* UnregisterActorReminderRequest::mutable_actor_type() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetStateResponse.data) - return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) + return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetStateResponse::release_data() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetStateResponse.data) +inline ::std::string* UnregisterActorReminderRequest::release_actor_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) - return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetStateResponse::set_allocated_data(::std::string* data) { - if (data != NULL) { +inline void UnregisterActorReminderRequest::set_allocated_actor_type(::std::string* actor_type) { + if (actor_type != NULL) { } else { } - data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetStateResponse.data) + actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) } -// string etag = 2; -inline void GetStateResponse::clear_etag() { - etag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string actor_id = 2; +inline void UnregisterActorReminderRequest::clear_actor_id() { + actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetStateResponse::etag() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetStateResponse.etag) - return etag_.GetNoArena(); +inline const ::std::string& UnregisterActorReminderRequest::actor_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) + return actor_id_.GetNoArena(); } -inline void GetStateResponse::set_etag(const ::std::string& value) { +inline void UnregisterActorReminderRequest::set_actor_id(const ::std::string& value) { - etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetStateResponse.etag) + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) } #if LANG_CXX11 -inline void GetStateResponse::set_etag(::std::string&& value) { +inline void UnregisterActorReminderRequest::set_actor_id(::std::string&& value) { - etag_.SetNoArena( + actor_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetStateResponse.etag) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) } #endif -inline void GetStateResponse::set_etag(const char* value) { +inline void UnregisterActorReminderRequest::set_actor_id(const char* value) { GOOGLE_DCHECK(value != NULL); - etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetStateResponse.etag) + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) } -inline void GetStateResponse::set_etag(const char* value, size_t size) { +inline void UnregisterActorReminderRequest::set_actor_id(const char* value, size_t size) { - etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetStateResponse.etag) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) } -inline ::std::string* GetStateResponse::mutable_etag() { +inline ::std::string* UnregisterActorReminderRequest::mutable_actor_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetStateResponse.etag) - return etag_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) + return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetStateResponse::release_etag() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetStateResponse.etag) +inline ::std::string* UnregisterActorReminderRequest::release_actor_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) - return etag_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetStateResponse::set_allocated_etag(::std::string* etag) { - if (etag != NULL) { +inline void UnregisterActorReminderRequest::set_allocated_actor_id(::std::string* actor_id) { + if (actor_id != NULL) { } else { } - etag_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), etag); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetStateResponse.etag) -} - -// map metadata = 3; -inline int GetStateResponse::metadata_size() const { - return metadata_.size(); -} -inline void GetStateResponse::clear_metadata() { - metadata_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -GetStateResponse::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetStateResponse.metadata) - return metadata_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -GetStateResponse::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetStateResponse.metadata) - return metadata_.MutableMap(); + actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) } -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// DeleteStateRequest - -// string store_name = 1; -inline void DeleteStateRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string name = 3; +inline void UnregisterActorReminderRequest::clear_name() { + name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& DeleteStateRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteStateRequest.store_name) - return store_name_.GetNoArena(); +inline const ::std::string& UnregisterActorReminderRequest::name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) + return name_.GetNoArena(); } -inline void DeleteStateRequest::set_store_name(const ::std::string& value) { +inline void UnregisterActorReminderRequest::set_name(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.DeleteStateRequest.store_name) + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) } #if LANG_CXX11 -inline void DeleteStateRequest::set_store_name(::std::string&& value) { +inline void UnregisterActorReminderRequest::set_name(::std::string&& value) { - store_name_.SetNoArena( + name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.DeleteStateRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) } #endif -inline void DeleteStateRequest::set_store_name(const char* value) { +inline void UnregisterActorReminderRequest::set_name(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.DeleteStateRequest.store_name) + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) } -inline void DeleteStateRequest::set_store_name(const char* value, size_t size) { +inline void UnregisterActorReminderRequest::set_name(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.DeleteStateRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) } -inline ::std::string* DeleteStateRequest::mutable_store_name() { +inline ::std::string* UnregisterActorReminderRequest::mutable_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteStateRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) + return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* DeleteStateRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DeleteStateRequest.store_name) +inline ::std::string* UnregisterActorReminderRequest::release_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void DeleteStateRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void UnregisterActorReminderRequest::set_allocated_name(::std::string* name) { + if (name != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DeleteStateRequest.store_name) + name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) } -// string key = 2; -inline void DeleteStateRequest::clear_key() { - key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// RenameActorReminderRequest + +// string actor_type = 1; +inline void RenameActorReminderRequest::clear_actor_type() { + actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& DeleteStateRequest::key() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteStateRequest.key) - return key_.GetNoArena(); +inline const ::std::string& RenameActorReminderRequest::actor_type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) + return actor_type_.GetNoArena(); } -inline void DeleteStateRequest::set_key(const ::std::string& value) { +inline void RenameActorReminderRequest::set_actor_type(const ::std::string& value) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.DeleteStateRequest.key) + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) } #if LANG_CXX11 -inline void DeleteStateRequest::set_key(::std::string&& value) { +inline void RenameActorReminderRequest::set_actor_type(::std::string&& value) { - key_.SetNoArena( + actor_type_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.DeleteStateRequest.key) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) } #endif -inline void DeleteStateRequest::set_key(const char* value) { +inline void RenameActorReminderRequest::set_actor_type(const char* value) { GOOGLE_DCHECK(value != NULL); - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.DeleteStateRequest.key) + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) } -inline void DeleteStateRequest::set_key(const char* value, size_t size) { +inline void RenameActorReminderRequest::set_actor_type(const char* value, size_t size) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.DeleteStateRequest.key) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) } -inline ::std::string* DeleteStateRequest::mutable_key() { +inline ::std::string* RenameActorReminderRequest::mutable_actor_type() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteStateRequest.key) - return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) + return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* DeleteStateRequest::release_key() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DeleteStateRequest.key) +inline ::std::string* RenameActorReminderRequest::release_actor_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) - return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void DeleteStateRequest::set_allocated_key(::std::string* key) { - if (key != NULL) { +inline void RenameActorReminderRequest::set_allocated_actor_type(::std::string* actor_type) { + if (actor_type != NULL) { } else { } - key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DeleteStateRequest.key) + actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) } -// .dapr.proto.common.v1.Etag etag = 3; -inline bool DeleteStateRequest::has_etag() const { - return this != internal_default_instance() && etag_ != NULL; -} -inline const ::dapr::proto::common::v1::Etag& DeleteStateRequest::_internal_etag() const { - return *etag_; +// string actor_id = 2; +inline void RenameActorReminderRequest::clear_actor_id() { + actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::dapr::proto::common::v1::Etag& DeleteStateRequest::etag() const { - const ::dapr::proto::common::v1::Etag* p = etag_; - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteStateRequest.etag) - return p != NULL ? *p : *reinterpret_cast( - &::dapr::proto::common::v1::_Etag_default_instance_); +inline const ::std::string& RenameActorReminderRequest::actor_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) + return actor_id_.GetNoArena(); } -inline ::dapr::proto::common::v1::Etag* DeleteStateRequest::release_etag() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DeleteStateRequest.etag) +inline void RenameActorReminderRequest::set_actor_id(const ::std::string& value) { - ::dapr::proto::common::v1::Etag* temp = etag_; - etag_ = NULL; - return temp; + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) } -inline ::dapr::proto::common::v1::Etag* DeleteStateRequest::mutable_etag() { +#if LANG_CXX11 +inline void RenameActorReminderRequest::set_actor_id(::std::string&& value) { - if (etag_ == NULL) { - auto* p = CreateMaybeMessage<::dapr::proto::common::v1::Etag>(GetArenaNoVirtual()); - etag_ = p; - } - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteStateRequest.etag) - return etag_; -} -inline void DeleteStateRequest::set_allocated_etag(::dapr::proto::common::v1::Etag* etag) { - ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); - if (message_arena == NULL) { - delete reinterpret_cast< ::google::protobuf::MessageLite*>(etag_); - } - if (etag) { - ::google::protobuf::Arena* submessage_arena = NULL; - if (message_arena != submessage_arena) { - etag = ::google::protobuf::internal::GetOwnedMessage( - message_arena, etag, submessage_arena); - } - - } else { - - } - etag_ = etag; - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DeleteStateRequest.etag) -} - -// .dapr.proto.common.v1.StateOptions options = 4; -inline bool DeleteStateRequest::has_options() const { - return this != internal_default_instance() && options_ != NULL; + actor_id_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) } -inline const ::dapr::proto::common::v1::StateOptions& DeleteStateRequest::_internal_options() const { - return *options_; +#endif +inline void RenameActorReminderRequest::set_actor_id(const char* value) { + GOOGLE_DCHECK(value != NULL); + + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) } -inline const ::dapr::proto::common::v1::StateOptions& DeleteStateRequest::options() const { - const ::dapr::proto::common::v1::StateOptions* p = options_; - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteStateRequest.options) - return p != NULL ? *p : *reinterpret_cast( - &::dapr::proto::common::v1::_StateOptions_default_instance_); +inline void RenameActorReminderRequest::set_actor_id(const char* value, size_t size) { + + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) } -inline ::dapr::proto::common::v1::StateOptions* DeleteStateRequest::release_options() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DeleteStateRequest.options) +inline ::std::string* RenameActorReminderRequest::mutable_actor_id() { - ::dapr::proto::common::v1::StateOptions* temp = options_; - options_ = NULL; - return temp; + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) + return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::dapr::proto::common::v1::StateOptions* DeleteStateRequest::mutable_options() { +inline ::std::string* RenameActorReminderRequest::release_actor_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) - if (options_ == NULL) { - auto* p = CreateMaybeMessage<::dapr::proto::common::v1::StateOptions>(GetArenaNoVirtual()); - options_ = p; - } - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteStateRequest.options) - return options_; + return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void DeleteStateRequest::set_allocated_options(::dapr::proto::common::v1::StateOptions* options) { - ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); - if (message_arena == NULL) { - delete reinterpret_cast< ::google::protobuf::MessageLite*>(options_); - } - if (options) { - ::google::protobuf::Arena* submessage_arena = NULL; - if (message_arena != submessage_arena) { - options = ::google::protobuf::internal::GetOwnedMessage( - message_arena, options, submessage_arena); - } +inline void RenameActorReminderRequest::set_allocated_actor_id(::std::string* actor_id) { + if (actor_id != NULL) { } else { } - options_ = options; - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DeleteStateRequest.options) -} - -// map metadata = 5; -inline int DeleteStateRequest::metadata_size() const { - return metadata_.size(); -} -inline void DeleteStateRequest::clear_metadata() { - metadata_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -DeleteStateRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.DeleteStateRequest.metadata) - return metadata_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -DeleteStateRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.DeleteStateRequest.metadata) - return metadata_.MutableMap(); + actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) } -// ------------------------------------------------------------------- - -// DeleteBulkStateRequest - -// string store_name = 1; -inline void DeleteBulkStateRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string old_name = 3; +inline void RenameActorReminderRequest::clear_old_name() { + old_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& DeleteBulkStateRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) - return store_name_.GetNoArena(); +inline const ::std::string& RenameActorReminderRequest::old_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) + return old_name_.GetNoArena(); } -inline void DeleteBulkStateRequest::set_store_name(const ::std::string& value) { +inline void RenameActorReminderRequest::set_old_name(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) + old_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) } #if LANG_CXX11 -inline void DeleteBulkStateRequest::set_store_name(::std::string&& value) { +inline void RenameActorReminderRequest::set_old_name(::std::string&& value) { - store_name_.SetNoArena( + old_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) } #endif -inline void DeleteBulkStateRequest::set_store_name(const char* value) { +inline void RenameActorReminderRequest::set_old_name(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) + old_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) } -inline void DeleteBulkStateRequest::set_store_name(const char* value, size_t size) { +inline void RenameActorReminderRequest::set_old_name(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + old_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) } -inline ::std::string* DeleteBulkStateRequest::mutable_store_name() { +inline ::std::string* RenameActorReminderRequest::mutable_old_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) + return old_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* DeleteBulkStateRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) +inline ::std::string* RenameActorReminderRequest::release_old_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline void DeleteBulkStateRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { - - } else { - - } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DeleteBulkStateRequest.store_name) -} - -// repeated .dapr.proto.common.v1.StateItem states = 2; -inline int DeleteBulkStateRequest::states_size() const { - return states_.size(); -} -inline ::dapr::proto::common::v1::StateItem* DeleteBulkStateRequest::mutable_states(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DeleteBulkStateRequest.states) - return states_.Mutable(index); -} -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::common::v1::StateItem >* -DeleteBulkStateRequest::mutable_states() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.DeleteBulkStateRequest.states) - return &states_; -} -inline const ::dapr::proto::common::v1::StateItem& DeleteBulkStateRequest::states(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DeleteBulkStateRequest.states) - return states_.Get(index); -} -inline ::dapr::proto::common::v1::StateItem* DeleteBulkStateRequest::add_states() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.DeleteBulkStateRequest.states) - return states_.Add(); + return old_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::common::v1::StateItem >& -DeleteBulkStateRequest::states() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.DeleteBulkStateRequest.states) - return states_; +inline void RenameActorReminderRequest::set_allocated_old_name(::std::string* old_name) { + if (old_name != NULL) { + + } else { + + } + old_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), old_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) } -// ------------------------------------------------------------------- - -// SaveStateRequest - -// string store_name = 1; -inline void SaveStateRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string new_name = 4; +inline void RenameActorReminderRequest::clear_new_name() { + new_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& SaveStateRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SaveStateRequest.store_name) - return store_name_.GetNoArena(); +inline const ::std::string& RenameActorReminderRequest::new_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) + return new_name_.GetNoArena(); } -inline void SaveStateRequest::set_store_name(const ::std::string& value) { +inline void RenameActorReminderRequest::set_new_name(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SaveStateRequest.store_name) + new_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) } #if LANG_CXX11 -inline void SaveStateRequest::set_store_name(::std::string&& value) { +inline void RenameActorReminderRequest::set_new_name(::std::string&& value) { - store_name_.SetNoArena( + new_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SaveStateRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) } #endif -inline void SaveStateRequest::set_store_name(const char* value) { +inline void RenameActorReminderRequest::set_new_name(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SaveStateRequest.store_name) + new_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) } -inline void SaveStateRequest::set_store_name(const char* value, size_t size) { +inline void RenameActorReminderRequest::set_new_name(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + new_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SaveStateRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) } -inline ::std::string* SaveStateRequest::mutable_store_name() { +inline ::std::string* RenameActorReminderRequest::mutable_new_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SaveStateRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) + return new_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* SaveStateRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SaveStateRequest.store_name) +inline ::std::string* RenameActorReminderRequest::release_new_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return new_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void SaveStateRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void RenameActorReminderRequest::set_allocated_new_name(::std::string* new_name) { + if (new_name != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SaveStateRequest.store_name) -} - -// repeated .dapr.proto.common.v1.StateItem states = 2; -inline int SaveStateRequest::states_size() const { - return states_.size(); -} -inline ::dapr::proto::common::v1::StateItem* SaveStateRequest::mutable_states(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SaveStateRequest.states) - return states_.Mutable(index); -} -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::common::v1::StateItem >* -SaveStateRequest::mutable_states() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.SaveStateRequest.states) - return &states_; -} -inline const ::dapr::proto::common::v1::StateItem& SaveStateRequest::states(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SaveStateRequest.states) - return states_.Get(index); -} -inline ::dapr::proto::common::v1::StateItem* SaveStateRequest::add_states() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.SaveStateRequest.states) - return states_.Add(); -} -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::common::v1::StateItem >& -SaveStateRequest::states() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.SaveStateRequest.states) - return states_; + new_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), new_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// QueryStateRequest +// GetActorStateRequest -// string store_name = 1; -inline void QueryStateRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string actor_type = 1; +inline void GetActorStateRequest::clear_actor_type() { + actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& QueryStateRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateRequest.store_name) - return store_name_.GetNoArena(); +inline const ::std::string& GetActorStateRequest::actor_type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) + return actor_type_.GetNoArena(); } -inline void QueryStateRequest::set_store_name(const ::std::string& value) { +inline void GetActorStateRequest::set_actor_type(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateRequest.store_name) + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) } #if LANG_CXX11 -inline void QueryStateRequest::set_store_name(::std::string&& value) { +inline void GetActorStateRequest::set_actor_type(::std::string&& value) { - store_name_.SetNoArena( + actor_type_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) } #endif -inline void QueryStateRequest::set_store_name(const char* value) { +inline void GetActorStateRequest::set_actor_type(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateRequest.store_name) + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) } -inline void QueryStateRequest::set_store_name(const char* value, size_t size) { +inline void GetActorStateRequest::set_actor_type(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) } -inline ::std::string* QueryStateRequest::mutable_store_name() { +inline ::std::string* GetActorStateRequest::mutable_actor_type() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) + return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* QueryStateRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateRequest.store_name) +inline ::std::string* GetActorStateRequest::release_actor_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void QueryStateRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void GetActorStateRequest::set_allocated_actor_type(::std::string* actor_type) { + if (actor_type != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateRequest.store_name) + actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) } -// string query = 2; -inline void QueryStateRequest::clear_query() { - query_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string actor_id = 2; +inline void GetActorStateRequest::clear_actor_id() { + actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& QueryStateRequest::query() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateRequest.query) - return query_.GetNoArena(); +inline const ::std::string& GetActorStateRequest::actor_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) + return actor_id_.GetNoArena(); } -inline void QueryStateRequest::set_query(const ::std::string& value) { +inline void GetActorStateRequest::set_actor_id(const ::std::string& value) { - query_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateRequest.query) + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) } #if LANG_CXX11 -inline void QueryStateRequest::set_query(::std::string&& value) { +inline void GetActorStateRequest::set_actor_id(::std::string&& value) { - query_.SetNoArena( + actor_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateRequest.query) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) } #endif -inline void QueryStateRequest::set_query(const char* value) { +inline void GetActorStateRequest::set_actor_id(const char* value) { GOOGLE_DCHECK(value != NULL); - query_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateRequest.query) + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) } -inline void QueryStateRequest::set_query(const char* value, size_t size) { +inline void GetActorStateRequest::set_actor_id(const char* value, size_t size) { - query_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateRequest.query) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) } -inline ::std::string* QueryStateRequest::mutable_query() { +inline ::std::string* GetActorStateRequest::mutable_actor_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateRequest.query) - return query_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) + return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* QueryStateRequest::release_query() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateRequest.query) +inline ::std::string* GetActorStateRequest::release_actor_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) - return query_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void QueryStateRequest::set_allocated_query(::std::string* query) { - if (query != NULL) { +inline void GetActorStateRequest::set_allocated_actor_id(::std::string* actor_id) { + if (actor_id != NULL) { } else { } - query_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), query); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateRequest.query) -} - -// map metadata = 3; -inline int QueryStateRequest::metadata_size() const { - return metadata_.size(); -} -inline void QueryStateRequest::clear_metadata() { - metadata_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -QueryStateRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.QueryStateRequest.metadata) - return metadata_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -QueryStateRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.QueryStateRequest.metadata) - return metadata_.MutableMap(); + actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) } -// ------------------------------------------------------------------- - -// QueryStateItem - -// string key = 1; -inline void QueryStateItem::clear_key() { +// string key = 3; +inline void GetActorStateRequest::clear_key() { key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& QueryStateItem::key() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateItem.key) +inline const ::std::string& GetActorStateRequest::key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetActorStateRequest.key) return key_.GetNoArena(); } -inline void QueryStateItem::set_key(const ::std::string& value) { +inline void GetActorStateRequest::set_key(const ::std::string& value) { key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateItem.key) + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetActorStateRequest.key) } #if LANG_CXX11 -inline void QueryStateItem::set_key(::std::string&& value) { +inline void GetActorStateRequest::set_key(::std::string&& value) { key_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateItem.key) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetActorStateRequest.key) } #endif -inline void QueryStateItem::set_key(const char* value) { +inline void GetActorStateRequest::set_key(const char* value) { GOOGLE_DCHECK(value != NULL); key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateItem.key) + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetActorStateRequest.key) } -inline void QueryStateItem::set_key(const char* value, size_t size) { +inline void GetActorStateRequest::set_key(const char* value, size_t size) { key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateItem.key) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetActorStateRequest.key) } -inline ::std::string* QueryStateItem::mutable_key() { +inline ::std::string* GetActorStateRequest::mutable_key() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateItem.key) + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetActorStateRequest.key) return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* QueryStateItem::release_key() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateItem.key) +inline ::std::string* GetActorStateRequest::release_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetActorStateRequest.key) return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void QueryStateItem::set_allocated_key(::std::string* key) { +inline void GetActorStateRequest::set_allocated_key(::std::string* key) { if (key != NULL) { } else { } key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateItem.key) + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetActorStateRequest.key) } -// bytes data = 2; -inline void QueryStateItem::clear_data() { +// ------------------------------------------------------------------- + +// GetActorStateResponse + +// bytes data = 1; +inline void GetActorStateResponse::clear_data() { data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& QueryStateItem::data() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateItem.data) +inline const ::std::string& GetActorStateResponse::data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetActorStateResponse.data) return data_.GetNoArena(); } -inline void QueryStateItem::set_data(const ::std::string& value) { +inline void GetActorStateResponse::set_data(const ::std::string& value) { data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateItem.data) + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetActorStateResponse.data) } #if LANG_CXX11 -inline void QueryStateItem::set_data(::std::string&& value) { +inline void GetActorStateResponse::set_data(::std::string&& value) { data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateItem.data) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetActorStateResponse.data) } #endif -inline void QueryStateItem::set_data(const char* value) { +inline void GetActorStateResponse::set_data(const char* value) { GOOGLE_DCHECK(value != NULL); data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateItem.data) + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetActorStateResponse.data) } -inline void QueryStateItem::set_data(const void* value, size_t size) { +inline void GetActorStateResponse::set_data(const void* value, size_t size) { data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateItem.data) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetActorStateResponse.data) } -inline ::std::string* QueryStateItem::mutable_data() { +inline ::std::string* GetActorStateResponse::mutable_data() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateItem.data) + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetActorStateResponse.data) return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* QueryStateItem::release_data() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateItem.data) +inline ::std::string* GetActorStateResponse::release_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetActorStateResponse.data) return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void QueryStateItem::set_allocated_data(::std::string* data) { +inline void GetActorStateResponse::set_allocated_data(::std::string* data) { if (data != NULL) { } else { } data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateItem.data) + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetActorStateResponse.data) } -// string etag = 3; -inline void QueryStateItem::clear_etag() { - etag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// ExecuteActorStateTransactionRequest + +// string actor_type = 1; +inline void ExecuteActorStateTransactionRequest::clear_actor_type() { + actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& QueryStateItem::etag() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateItem.etag) - return etag_.GetNoArena(); +inline const ::std::string& ExecuteActorStateTransactionRequest::actor_type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) + return actor_type_.GetNoArena(); } -inline void QueryStateItem::set_etag(const ::std::string& value) { +inline void ExecuteActorStateTransactionRequest::set_actor_type(const ::std::string& value) { - etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateItem.etag) + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) } #if LANG_CXX11 -inline void QueryStateItem::set_etag(::std::string&& value) { +inline void ExecuteActorStateTransactionRequest::set_actor_type(::std::string&& value) { - etag_.SetNoArena( + actor_type_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateItem.etag) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) } #endif -inline void QueryStateItem::set_etag(const char* value) { +inline void ExecuteActorStateTransactionRequest::set_actor_type(const char* value) { GOOGLE_DCHECK(value != NULL); - etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateItem.etag) + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) } -inline void QueryStateItem::set_etag(const char* value, size_t size) { +inline void ExecuteActorStateTransactionRequest::set_actor_type(const char* value, size_t size) { - etag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateItem.etag) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) } -inline ::std::string* QueryStateItem::mutable_etag() { +inline ::std::string* ExecuteActorStateTransactionRequest::mutable_actor_type() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateItem.etag) - return etag_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) + return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* QueryStateItem::release_etag() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateItem.etag) +inline ::std::string* ExecuteActorStateTransactionRequest::release_actor_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) - return etag_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void QueryStateItem::set_allocated_etag(::std::string* etag) { - if (etag != NULL) { +inline void ExecuteActorStateTransactionRequest::set_allocated_actor_type(::std::string* actor_type) { + if (actor_type != NULL) { } else { } - etag_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), etag); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateItem.etag) + actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) } -// string error = 4; -inline void QueryStateItem::clear_error() { - error_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string actor_id = 2; +inline void ExecuteActorStateTransactionRequest::clear_actor_id() { + actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& QueryStateItem::error() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateItem.error) - return error_.GetNoArena(); +inline const ::std::string& ExecuteActorStateTransactionRequest::actor_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) + return actor_id_.GetNoArena(); } -inline void QueryStateItem::set_error(const ::std::string& value) { +inline void ExecuteActorStateTransactionRequest::set_actor_id(const ::std::string& value) { - error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateItem.error) + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) } #if LANG_CXX11 -inline void QueryStateItem::set_error(::std::string&& value) { +inline void ExecuteActorStateTransactionRequest::set_actor_id(::std::string&& value) { - error_.SetNoArena( + actor_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateItem.error) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) } #endif -inline void QueryStateItem::set_error(const char* value) { +inline void ExecuteActorStateTransactionRequest::set_actor_id(const char* value) { GOOGLE_DCHECK(value != NULL); - error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateItem.error) + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) } -inline void QueryStateItem::set_error(const char* value, size_t size) { +inline void ExecuteActorStateTransactionRequest::set_actor_id(const char* value, size_t size) { - error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateItem.error) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) } -inline ::std::string* QueryStateItem::mutable_error() { +inline ::std::string* ExecuteActorStateTransactionRequest::mutable_actor_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateItem.error) - return error_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) + return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* QueryStateItem::release_error() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateItem.error) +inline ::std::string* ExecuteActorStateTransactionRequest::release_actor_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) - return error_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void QueryStateItem::set_allocated_error(::std::string* error) { - if (error != NULL) { +inline void ExecuteActorStateTransactionRequest::set_allocated_actor_id(::std::string* actor_id) { + if (actor_id != NULL) { } else { } - error_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), error); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateItem.error) -} - -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// QueryStateResponse - -// repeated .dapr.proto.runtime.v1.QueryStateItem results = 1; -inline int QueryStateResponse::results_size() const { - return results_.size(); -} -inline void QueryStateResponse::clear_results() { - results_.Clear(); -} -inline ::dapr::proto::runtime::v1::QueryStateItem* QueryStateResponse::mutable_results(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateResponse.results) - return results_.Mutable(index); -} -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::QueryStateItem >* -QueryStateResponse::mutable_results() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.QueryStateResponse.results) - return &results_; -} -inline const ::dapr::proto::runtime::v1::QueryStateItem& QueryStateResponse::results(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateResponse.results) - return results_.Get(index); -} -inline ::dapr::proto::runtime::v1::QueryStateItem* QueryStateResponse::add_results() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.QueryStateResponse.results) - return results_.Add(); -} -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::QueryStateItem >& -QueryStateResponse::results() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.QueryStateResponse.results) - return results_; + actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) } -// string token = 2; -inline void QueryStateResponse::clear_token() { - token_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline const ::std::string& QueryStateResponse::token() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.QueryStateResponse.token) - return token_.GetNoArena(); -} -inline void QueryStateResponse::set_token(const ::std::string& value) { - - token_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.QueryStateResponse.token) -} -#if LANG_CXX11 -inline void QueryStateResponse::set_token(::std::string&& value) { - - token_.SetNoArena( - &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.QueryStateResponse.token) -} -#endif -inline void QueryStateResponse::set_token(const char* value) { - GOOGLE_DCHECK(value != NULL); - - token_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.QueryStateResponse.token) -} -inline void QueryStateResponse::set_token(const char* value, size_t size) { - - token_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), - ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.QueryStateResponse.token) -} -inline ::std::string* QueryStateResponse::mutable_token() { - - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.QueryStateResponse.token) - return token_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline ::std::string* QueryStateResponse::release_token() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.QueryStateResponse.token) - - return token_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline void QueryStateResponse::set_allocated_token(::std::string* token) { - if (token != NULL) { - - } else { - - } - token_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), token); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.QueryStateResponse.token) +// repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3; +inline int ExecuteActorStateTransactionRequest::operations_size() const { + return operations_.size(); } - -// map metadata = 3; -inline int QueryStateResponse::metadata_size() const { - return metadata_.size(); +inline void ExecuteActorStateTransactionRequest::clear_operations() { + operations_.Clear(); } -inline void QueryStateResponse::clear_metadata() { - metadata_.Clear(); +inline ::dapr::proto::runtime::v1::TransactionalActorStateOperation* ExecuteActorStateTransactionRequest::mutable_operations(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.operations) + return operations_.Mutable(index); } -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -QueryStateResponse::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.QueryStateResponse.metadata) - return metadata_.GetMap(); +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::TransactionalActorStateOperation >* +ExecuteActorStateTransactionRequest::mutable_operations() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.operations) + return &operations_; } -inline ::google::protobuf::Map< ::std::string, ::std::string >* -QueryStateResponse::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.QueryStateResponse.metadata) - return metadata_.MutableMap(); +inline const ::dapr::proto::runtime::v1::TransactionalActorStateOperation& ExecuteActorStateTransactionRequest::operations(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.operations) + return operations_.Get(index); +} +inline ::dapr::proto::runtime::v1::TransactionalActorStateOperation* ExecuteActorStateTransactionRequest::add_operations() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.operations) + return operations_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::TransactionalActorStateOperation >& +ExecuteActorStateTransactionRequest::operations() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.operations) + return operations_; } // ------------------------------------------------------------------- // ------------------------------------------------------------------- -// PublishEventRequest +// TransactionalActorStateOperation -// string pubsub_name = 1; -inline void PublishEventRequest::clear_pubsub_name() { - pubsub_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string operationType = 1; +inline void TransactionalActorStateOperation::clear_operationtype() { + operationtype_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& PublishEventRequest::pubsub_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) - return pubsub_name_.GetNoArena(); +inline const ::std::string& TransactionalActorStateOperation::operationtype() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) + return operationtype_.GetNoArena(); } -inline void PublishEventRequest::set_pubsub_name(const ::std::string& value) { +inline void TransactionalActorStateOperation::set_operationtype(const ::std::string& value) { - pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) + operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) } #if LANG_CXX11 -inline void PublishEventRequest::set_pubsub_name(::std::string&& value) { +inline void TransactionalActorStateOperation::set_operationtype(::std::string&& value) { - pubsub_name_.SetNoArena( + operationtype_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) } #endif -inline void PublishEventRequest::set_pubsub_name(const char* value) { +inline void TransactionalActorStateOperation::set_operationtype(const char* value) { GOOGLE_DCHECK(value != NULL); - pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) + operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) } -inline void PublishEventRequest::set_pubsub_name(const char* value, size_t size) { +inline void TransactionalActorStateOperation::set_operationtype(const char* value, size_t size) { - pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) } -inline ::std::string* PublishEventRequest::mutable_pubsub_name() { +inline ::std::string* TransactionalActorStateOperation::mutable_operationtype() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) - return pubsub_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) + return operationtype_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* PublishEventRequest::release_pubsub_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) +inline ::std::string* TransactionalActorStateOperation::release_operationtype() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) - return pubsub_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return operationtype_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void PublishEventRequest::set_allocated_pubsub_name(::std::string* pubsub_name) { - if (pubsub_name != NULL) { +inline void TransactionalActorStateOperation::set_allocated_operationtype(::std::string* operationtype) { + if (operationtype != NULL) { } else { } - pubsub_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), pubsub_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PublishEventRequest.pubsub_name) + operationtype_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), operationtype); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) } -// string topic = 2; -inline void PublishEventRequest::clear_topic() { - topic_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string key = 2; +inline void TransactionalActorStateOperation::clear_key() { + key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& PublishEventRequest::topic() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PublishEventRequest.topic) - return topic_.GetNoArena(); +inline const ::std::string& TransactionalActorStateOperation::key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) + return key_.GetNoArena(); } -inline void PublishEventRequest::set_topic(const ::std::string& value) { +inline void TransactionalActorStateOperation::set_key(const ::std::string& value) { - topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PublishEventRequest.topic) + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) } #if LANG_CXX11 -inline void PublishEventRequest::set_topic(::std::string&& value) { +inline void TransactionalActorStateOperation::set_key(::std::string&& value) { - topic_.SetNoArena( + key_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PublishEventRequest.topic) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) } #endif -inline void PublishEventRequest::set_topic(const char* value) { +inline void TransactionalActorStateOperation::set_key(const char* value) { GOOGLE_DCHECK(value != NULL); - topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PublishEventRequest.topic) + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) } -inline void PublishEventRequest::set_topic(const char* value, size_t size) { +inline void TransactionalActorStateOperation::set_key(const char* value, size_t size) { - topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PublishEventRequest.topic) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) } -inline ::std::string* PublishEventRequest::mutable_topic() { +inline ::std::string* TransactionalActorStateOperation::mutable_key() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PublishEventRequest.topic) - return topic_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) + return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* PublishEventRequest::release_topic() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PublishEventRequest.topic) +inline ::std::string* TransactionalActorStateOperation::release_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) - return topic_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void PublishEventRequest::set_allocated_topic(::std::string* topic) { - if (topic != NULL) { +inline void TransactionalActorStateOperation::set_allocated_key(::std::string* key) { + if (key != NULL) { } else { } - topic_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), topic); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PublishEventRequest.topic) + key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) } -// bytes data = 3; -inline void PublishEventRequest::clear_data() { - data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// .google.protobuf.Any value = 3; +inline bool TransactionalActorStateOperation::has_value() const { + return this != internal_default_instance() && value_ != NULL; } -inline const ::std::string& PublishEventRequest::data() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PublishEventRequest.data) - return data_.GetNoArena(); +inline const ::google::protobuf::Any& TransactionalActorStateOperation::_internal_value() const { + return *value_; } -inline void PublishEventRequest::set_data(const ::std::string& value) { +inline const ::google::protobuf::Any& TransactionalActorStateOperation::value() const { + const ::google::protobuf::Any* p = value_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TransactionalActorStateOperation.value) + return p != NULL ? *p : *reinterpret_cast( + &::google::protobuf::_Any_default_instance_); +} +inline ::google::protobuf::Any* TransactionalActorStateOperation::release_value() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TransactionalActorStateOperation.value) - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PublishEventRequest.data) + ::google::protobuf::Any* temp = value_; + value_ = NULL; + return temp; +} +inline ::google::protobuf::Any* TransactionalActorStateOperation::mutable_value() { + + if (value_ == NULL) { + auto* p = CreateMaybeMessage<::google::protobuf::Any>(GetArenaNoVirtual()); + value_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TransactionalActorStateOperation.value) + return value_; +} +inline void TransactionalActorStateOperation::set_allocated_value(::google::protobuf::Any* value) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(value_); + } + if (value) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + value = ::google::protobuf::internal::GetOwnedMessage( + message_arena, value, submessage_arena); + } + + } else { + + } + value_ = value; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TransactionalActorStateOperation.value) +} + +// map metadata = 4; +inline int TransactionalActorStateOperation::metadata_size() const { + return metadata_.size(); +} +inline void TransactionalActorStateOperation::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +TransactionalActorStateOperation::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.TransactionalActorStateOperation.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +TransactionalActorStateOperation::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.TransactionalActorStateOperation.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// InvokeActorRequest + +// string actor_type = 1; +inline void InvokeActorRequest::clear_actor_type() { + actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& InvokeActorRequest::actor_type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) + return actor_type_.GetNoArena(); +} +inline void InvokeActorRequest::set_actor_type(const ::std::string& value) { + + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) } #if LANG_CXX11 -inline void PublishEventRequest::set_data(::std::string&& value) { +inline void InvokeActorRequest::set_actor_type(::std::string&& value) { - data_.SetNoArena( + actor_type_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PublishEventRequest.data) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) } #endif -inline void PublishEventRequest::set_data(const char* value) { +inline void InvokeActorRequest::set_actor_type(const char* value) { GOOGLE_DCHECK(value != NULL); - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PublishEventRequest.data) + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) } -inline void PublishEventRequest::set_data(const void* value, size_t size) { +inline void InvokeActorRequest::set_actor_type(const char* value, size_t size) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PublishEventRequest.data) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) } -inline ::std::string* PublishEventRequest::mutable_data() { +inline ::std::string* InvokeActorRequest::mutable_actor_type() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PublishEventRequest.data) - return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) + return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* PublishEventRequest::release_data() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PublishEventRequest.data) +inline ::std::string* InvokeActorRequest::release_actor_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) - return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void PublishEventRequest::set_allocated_data(::std::string* data) { - if (data != NULL) { +inline void InvokeActorRequest::set_allocated_actor_type(::std::string* actor_type) { + if (actor_type != NULL) { } else { } - data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PublishEventRequest.data) + actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) } -// string data_content_type = 4; -inline void PublishEventRequest::clear_data_content_type() { - data_content_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string actor_id = 2; +inline void InvokeActorRequest::clear_actor_id() { + actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& PublishEventRequest::data_content_type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) - return data_content_type_.GetNoArena(); +inline const ::std::string& InvokeActorRequest::actor_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) + return actor_id_.GetNoArena(); } -inline void PublishEventRequest::set_data_content_type(const ::std::string& value) { +inline void InvokeActorRequest::set_actor_id(const ::std::string& value) { - data_content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) } #if LANG_CXX11 -inline void PublishEventRequest::set_data_content_type(::std::string&& value) { +inline void InvokeActorRequest::set_actor_id(::std::string&& value) { - data_content_type_.SetNoArena( + actor_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) } #endif -inline void PublishEventRequest::set_data_content_type(const char* value) { +inline void InvokeActorRequest::set_actor_id(const char* value) { GOOGLE_DCHECK(value != NULL); - data_content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) } -inline void PublishEventRequest::set_data_content_type(const char* value, size_t size) { +inline void InvokeActorRequest::set_actor_id(const char* value, size_t size) { - data_content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) } -inline ::std::string* PublishEventRequest::mutable_data_content_type() { +inline ::std::string* InvokeActorRequest::mutable_actor_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) - return data_content_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) + return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* PublishEventRequest::release_data_content_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) +inline ::std::string* InvokeActorRequest::release_actor_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) - return data_content_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void PublishEventRequest::set_allocated_data_content_type(::std::string* data_content_type) { - if (data_content_type != NULL) { +inline void InvokeActorRequest::set_allocated_actor_id(::std::string* actor_id) { + if (actor_id != NULL) { } else { } - data_content_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data_content_type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PublishEventRequest.data_content_type) -} - -// map metadata = 5; -inline int PublishEventRequest::metadata_size() const { - return metadata_.size(); -} -inline void PublishEventRequest::clear_metadata() { - metadata_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -PublishEventRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.PublishEventRequest.metadata) - return metadata_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -PublishEventRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.PublishEventRequest.metadata) - return metadata_.MutableMap(); + actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) } -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// BulkPublishRequest - -// string pubsub_name = 1; -inline void BulkPublishRequest::clear_pubsub_name() { - pubsub_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string method = 3; +inline void InvokeActorRequest::clear_method() { + method_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& BulkPublishRequest::pubsub_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) - return pubsub_name_.GetNoArena(); +inline const ::std::string& InvokeActorRequest::method() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeActorRequest.method) + return method_.GetNoArena(); } -inline void BulkPublishRequest::set_pubsub_name(const ::std::string& value) { +inline void InvokeActorRequest::set_method(const ::std::string& value) { - pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) + method_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeActorRequest.method) } #if LANG_CXX11 -inline void BulkPublishRequest::set_pubsub_name(::std::string&& value) { +inline void InvokeActorRequest::set_method(::std::string&& value) { - pubsub_name_.SetNoArena( + method_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeActorRequest.method) } #endif -inline void BulkPublishRequest::set_pubsub_name(const char* value) { +inline void InvokeActorRequest::set_method(const char* value) { GOOGLE_DCHECK(value != NULL); - pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) + method_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeActorRequest.method) } -inline void BulkPublishRequest::set_pubsub_name(const char* value, size_t size) { +inline void InvokeActorRequest::set_method(const char* value, size_t size) { - pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + method_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeActorRequest.method) } -inline ::std::string* BulkPublishRequest::mutable_pubsub_name() { +inline ::std::string* InvokeActorRequest::mutable_method() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) - return pubsub_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeActorRequest.method) + return method_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* BulkPublishRequest::release_pubsub_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) +inline ::std::string* InvokeActorRequest::release_method() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeActorRequest.method) - return pubsub_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return method_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void BulkPublishRequest::set_allocated_pubsub_name(::std::string* pubsub_name) { - if (pubsub_name != NULL) { +inline void InvokeActorRequest::set_allocated_method(::std::string* method) { + if (method != NULL) { } else { } - pubsub_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), pubsub_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishRequest.pubsub_name) + method_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), method); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeActorRequest.method) } -// string topic = 2; -inline void BulkPublishRequest::clear_topic() { - topic_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes data = 4; +inline void InvokeActorRequest::clear_data() { + data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& BulkPublishRequest::topic() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequest.topic) - return topic_.GetNoArena(); +inline const ::std::string& InvokeActorRequest::data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeActorRequest.data) + return data_.GetNoArena(); } -inline void BulkPublishRequest::set_topic(const ::std::string& value) { +inline void InvokeActorRequest::set_data(const ::std::string& value) { - topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishRequest.topic) + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeActorRequest.data) } #if LANG_CXX11 -inline void BulkPublishRequest::set_topic(::std::string&& value) { +inline void InvokeActorRequest::set_data(::std::string&& value) { - topic_.SetNoArena( + data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishRequest.topic) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeActorRequest.data) } #endif -inline void BulkPublishRequest::set_topic(const char* value) { +inline void InvokeActorRequest::set_data(const char* value) { GOOGLE_DCHECK(value != NULL); - topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishRequest.topic) + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeActorRequest.data) } -inline void BulkPublishRequest::set_topic(const char* value, size_t size) { +inline void InvokeActorRequest::set_data(const void* value, size_t size) { - topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishRequest.topic) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeActorRequest.data) } -inline ::std::string* BulkPublishRequest::mutable_topic() { +inline ::std::string* InvokeActorRequest::mutable_data() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequest.topic) - return topic_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeActorRequest.data) + return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* BulkPublishRequest::release_topic() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishRequest.topic) +inline ::std::string* InvokeActorRequest::release_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeActorRequest.data) - return topic_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void BulkPublishRequest::set_allocated_topic(::std::string* topic) { - if (topic != NULL) { +inline void InvokeActorRequest::set_allocated_data(::std::string* data) { + if (data != NULL) { } else { } - topic_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), topic); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishRequest.topic) -} - -// repeated .dapr.proto.runtime.v1.BulkPublishRequestEntry entries = 3; -inline int BulkPublishRequest::entries_size() const { - return entries_.size(); -} -inline void BulkPublishRequest::clear_entries() { - entries_.Clear(); -} -inline ::dapr::proto::runtime::v1::BulkPublishRequestEntry* BulkPublishRequest::mutable_entries(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequest.entries) - return entries_.Mutable(index); -} -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkPublishRequestEntry >* -BulkPublishRequest::mutable_entries() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.BulkPublishRequest.entries) - return &entries_; -} -inline const ::dapr::proto::runtime::v1::BulkPublishRequestEntry& BulkPublishRequest::entries(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequest.entries) - return entries_.Get(index); -} -inline ::dapr::proto::runtime::v1::BulkPublishRequestEntry* BulkPublishRequest::add_entries() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.BulkPublishRequest.entries) - return entries_.Add(); -} -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkPublishRequestEntry >& -BulkPublishRequest::entries() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.BulkPublishRequest.entries) - return entries_; + data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeActorRequest.data) } -// map metadata = 4; -inline int BulkPublishRequest::metadata_size() const { +// map metadata = 5; +inline int InvokeActorRequest::metadata_size() const { return metadata_.size(); } -inline void BulkPublishRequest::clear_metadata() { +inline void InvokeActorRequest::clear_metadata() { metadata_.Clear(); } inline const ::google::protobuf::Map< ::std::string, ::std::string >& -BulkPublishRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.BulkPublishRequest.metadata) +InvokeActorRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.InvokeActorRequest.metadata) return metadata_.GetMap(); } inline ::google::protobuf::Map< ::std::string, ::std::string >* -BulkPublishRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.BulkPublishRequest.metadata) +InvokeActorRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.InvokeActorRequest.metadata) return metadata_.MutableMap(); } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// BulkPublishRequestEntry +// InvokeActorResponse -// string entry_id = 1; -inline void BulkPublishRequestEntry::clear_entry_id() { - entry_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes data = 1; +inline void InvokeActorResponse::clear_data() { + data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& BulkPublishRequestEntry::entry_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) - return entry_id_.GetNoArena(); +inline const ::std::string& InvokeActorResponse::data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeActorResponse.data) + return data_.GetNoArena(); } -inline void BulkPublishRequestEntry::set_entry_id(const ::std::string& value) { +inline void InvokeActorResponse::set_data(const ::std::string& value) { - entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeActorResponse.data) } #if LANG_CXX11 -inline void BulkPublishRequestEntry::set_entry_id(::std::string&& value) { +inline void InvokeActorResponse::set_data(::std::string&& value) { - entry_id_.SetNoArena( + data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeActorResponse.data) } #endif -inline void BulkPublishRequestEntry::set_entry_id(const char* value) { +inline void InvokeActorResponse::set_data(const char* value) { GOOGLE_DCHECK(value != NULL); - entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeActorResponse.data) } -inline void BulkPublishRequestEntry::set_entry_id(const char* value, size_t size) { +inline void InvokeActorResponse::set_data(const void* value, size_t size) { - entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeActorResponse.data) } -inline ::std::string* BulkPublishRequestEntry::mutable_entry_id() { +inline ::std::string* InvokeActorResponse::mutable_data() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) - return entry_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeActorResponse.data) + return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* BulkPublishRequestEntry::release_entry_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) +inline ::std::string* InvokeActorResponse::release_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeActorResponse.data) - return entry_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void BulkPublishRequestEntry::set_allocated_entry_id(::std::string* entry_id) { - if (entry_id != NULL) { +inline void InvokeActorResponse::set_allocated_data(::std::string* data) { + if (data != NULL) { } else { } - entry_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), entry_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishRequestEntry.entry_id) + data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeActorResponse.data) } -// bytes event = 2; -inline void BulkPublishRequestEntry::clear_event() { - event_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// GetMetadataResponse + +// string id = 1; +inline void GetMetadataResponse::clear_id() { + id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& BulkPublishRequestEntry::event() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) - return event_.GetNoArena(); +inline const ::std::string& GetMetadataResponse::id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetMetadataResponse.id) + return id_.GetNoArena(); } -inline void BulkPublishRequestEntry::set_event(const ::std::string& value) { +inline void GetMetadataResponse::set_id(const ::std::string& value) { - event_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetMetadataResponse.id) } #if LANG_CXX11 -inline void BulkPublishRequestEntry::set_event(::std::string&& value) { +inline void GetMetadataResponse::set_id(::std::string&& value) { - event_.SetNoArena( + id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetMetadataResponse.id) } #endif -inline void BulkPublishRequestEntry::set_event(const char* value) { +inline void GetMetadataResponse::set_id(const char* value) { GOOGLE_DCHECK(value != NULL); - event_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetMetadataResponse.id) } -inline void BulkPublishRequestEntry::set_event(const void* value, size_t size) { +inline void GetMetadataResponse::set_id(const char* value, size_t size) { - event_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetMetadataResponse.id) } -inline ::std::string* BulkPublishRequestEntry::mutable_event() { +inline ::std::string* GetMetadataResponse::mutable_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) - return event_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetMetadataResponse.id) + return id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* BulkPublishRequestEntry::release_event() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) +inline ::std::string* GetMetadataResponse::release_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetMetadataResponse.id) - return event_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void BulkPublishRequestEntry::set_allocated_event(::std::string* event) { - if (event != NULL) { +inline void GetMetadataResponse::set_allocated_id(::std::string* id) { + if (id != NULL) { } else { } - event_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), event); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishRequestEntry.event) + id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetMetadataResponse.id) } -// string content_type = 3; -inline void BulkPublishRequestEntry::clear_content_type() { - content_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2; +inline int GetMetadataResponse::active_actors_count_size() const { + return active_actors_count_.size(); } -inline const ::std::string& BulkPublishRequestEntry::content_type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) - return content_type_.GetNoArena(); +inline void GetMetadataResponse::clear_active_actors_count() { + active_actors_count_.Clear(); } -inline void BulkPublishRequestEntry::set_content_type(const ::std::string& value) { - - content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) +inline ::dapr::proto::runtime::v1::ActiveActorsCount* GetMetadataResponse::mutable_active_actors_count(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetMetadataResponse.active_actors_count) + return active_actors_count_.Mutable(index); } -#if LANG_CXX11 -inline void BulkPublishRequestEntry::set_content_type(::std::string&& value) { - - content_type_.SetNoArena( - &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::ActiveActorsCount >* +GetMetadataResponse::mutable_active_actors_count() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetMetadataResponse.active_actors_count) + return &active_actors_count_; } -#endif -inline void BulkPublishRequestEntry::set_content_type(const char* value) { - GOOGLE_DCHECK(value != NULL); - - content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) +inline const ::dapr::proto::runtime::v1::ActiveActorsCount& GetMetadataResponse::active_actors_count(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetMetadataResponse.active_actors_count) + return active_actors_count_.Get(index); } -inline void BulkPublishRequestEntry::set_content_type(const char* value, size_t size) { - - content_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), - ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) +inline ::dapr::proto::runtime::v1::ActiveActorsCount* GetMetadataResponse::add_active_actors_count() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetMetadataResponse.active_actors_count) + return active_actors_count_.Add(); } -inline ::std::string* BulkPublishRequestEntry::mutable_content_type() { - - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) - return content_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::ActiveActorsCount >& +GetMetadataResponse::active_actors_count() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetMetadataResponse.active_actors_count) + return active_actors_count_; } -inline ::std::string* BulkPublishRequestEntry::release_content_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) - - return content_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + +// repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3; +inline int GetMetadataResponse::registered_components_size() const { + return registered_components_.size(); } -inline void BulkPublishRequestEntry::set_allocated_content_type(::std::string* content_type) { - if (content_type != NULL) { - - } else { - - } - content_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), content_type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishRequestEntry.content_type) +inline void GetMetadataResponse::clear_registered_components() { + registered_components_.Clear(); +} +inline ::dapr::proto::runtime::v1::RegisteredComponents* GetMetadataResponse::mutable_registered_components(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetMetadataResponse.registered_components) + return registered_components_.Mutable(index); +} +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::RegisteredComponents >* +GetMetadataResponse::mutable_registered_components() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetMetadataResponse.registered_components) + return ®istered_components_; +} +inline const ::dapr::proto::runtime::v1::RegisteredComponents& GetMetadataResponse::registered_components(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetMetadataResponse.registered_components) + return registered_components_.Get(index); +} +inline ::dapr::proto::runtime::v1::RegisteredComponents* GetMetadataResponse::add_registered_components() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetMetadataResponse.registered_components) + return registered_components_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::RegisteredComponents >& +GetMetadataResponse::registered_components() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetMetadataResponse.registered_components) + return registered_components_; } -// map metadata = 4; -inline int BulkPublishRequestEntry::metadata_size() const { - return metadata_.size(); +// map extended_metadata = 4; +inline int GetMetadataResponse::extended_metadata_size() const { + return extended_metadata_.size(); } -inline void BulkPublishRequestEntry::clear_metadata() { - metadata_.Clear(); +inline void GetMetadataResponse::clear_extended_metadata() { + extended_metadata_.Clear(); } inline const ::google::protobuf::Map< ::std::string, ::std::string >& -BulkPublishRequestEntry::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.BulkPublishRequestEntry.metadata) - return metadata_.GetMap(); +GetMetadataResponse::extended_metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetMetadataResponse.extended_metadata) + return extended_metadata_.GetMap(); } inline ::google::protobuf::Map< ::std::string, ::std::string >* -BulkPublishRequestEntry::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.BulkPublishRequestEntry.metadata) - return metadata_.MutableMap(); +GetMetadataResponse::mutable_extended_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetMetadataResponse.extended_metadata) + return extended_metadata_.MutableMap(); } -// ------------------------------------------------------------------- - -// BulkPublishResponse - -// repeated .dapr.proto.runtime.v1.BulkPublishResponseFailedEntry failedEntries = 1; -inline int BulkPublishResponse::failedentries_size() const { - return failedentries_.size(); -} -inline void BulkPublishResponse::clear_failedentries() { - failedentries_.Clear(); +// repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5; +inline int GetMetadataResponse::subscriptions_size() const { + return subscriptions_.size(); } -inline ::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry* BulkPublishResponse::mutable_failedentries(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishResponse.failedEntries) - return failedentries_.Mutable(index); +inline void GetMetadataResponse::clear_subscriptions() { + subscriptions_.Clear(); } -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry >* -BulkPublishResponse::mutable_failedentries() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.BulkPublishResponse.failedEntries) - return &failedentries_; +inline ::dapr::proto::runtime::v1::PubsubSubscription* GetMetadataResponse::mutable_subscriptions(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetMetadataResponse.subscriptions) + return subscriptions_.Mutable(index); } -inline const ::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry& BulkPublishResponse::failedentries(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishResponse.failedEntries) - return failedentries_.Get(index); +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::PubsubSubscription >* +GetMetadataResponse::mutable_subscriptions() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetMetadataResponse.subscriptions) + return &subscriptions_; } -inline ::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry* BulkPublishResponse::add_failedentries() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.BulkPublishResponse.failedEntries) - return failedentries_.Add(); +inline const ::dapr::proto::runtime::v1::PubsubSubscription& GetMetadataResponse::subscriptions(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetMetadataResponse.subscriptions) + return subscriptions_.Get(index); } -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::BulkPublishResponseFailedEntry >& -BulkPublishResponse::failedentries() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.BulkPublishResponse.failedEntries) - return failedentries_; +inline ::dapr::proto::runtime::v1::PubsubSubscription* GetMetadataResponse::add_subscriptions() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetMetadataResponse.subscriptions) + return subscriptions_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::PubsubSubscription >& +GetMetadataResponse::subscriptions() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetMetadataResponse.subscriptions) + return subscriptions_; } // ------------------------------------------------------------------- -// BulkPublishResponseFailedEntry +// ActiveActorsCount -// string entry_id = 1; -inline void BulkPublishResponseFailedEntry::clear_entry_id() { - entry_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string type = 1; +inline void ActiveActorsCount::clear_type() { + type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& BulkPublishResponseFailedEntry::entry_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) - return entry_id_.GetNoArena(); +inline const ::std::string& ActiveActorsCount::type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ActiveActorsCount.type) + return type_.GetNoArena(); } -inline void BulkPublishResponseFailedEntry::set_entry_id(const ::std::string& value) { +inline void ActiveActorsCount::set_type(const ::std::string& value) { - entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) + type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ActiveActorsCount.type) } #if LANG_CXX11 -inline void BulkPublishResponseFailedEntry::set_entry_id(::std::string&& value) { +inline void ActiveActorsCount::set_type(::std::string&& value) { - entry_id_.SetNoArena( + type_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.ActiveActorsCount.type) } #endif -inline void BulkPublishResponseFailedEntry::set_entry_id(const char* value) { +inline void ActiveActorsCount::set_type(const char* value) { GOOGLE_DCHECK(value != NULL); - entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) + type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.ActiveActorsCount.type) } -inline void BulkPublishResponseFailedEntry::set_entry_id(const char* value, size_t size) { +inline void ActiveActorsCount::set_type(const char* value, size_t size) { - entry_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.ActiveActorsCount.type) } -inline ::std::string* BulkPublishResponseFailedEntry::mutable_entry_id() { +inline ::std::string* ActiveActorsCount::mutable_type() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) - return entry_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ActiveActorsCount.type) + return type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* BulkPublishResponseFailedEntry::release_entry_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) +inline ::std::string* ActiveActorsCount::release_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.ActiveActorsCount.type) - return entry_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void BulkPublishResponseFailedEntry::set_allocated_entry_id(::std::string* entry_id) { - if (entry_id != NULL) { +inline void ActiveActorsCount::set_allocated_type(::std::string* type) { + if (type != NULL) { } else { } - entry_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), entry_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.entry_id) + type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.ActiveActorsCount.type) } -// string error = 2; -inline void BulkPublishResponseFailedEntry::clear_error() { - error_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline const ::std::string& BulkPublishResponseFailedEntry::error() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) - return error_.GetNoArena(); -} -inline void BulkPublishResponseFailedEntry::set_error(const ::std::string& value) { - - error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) -} -#if LANG_CXX11 -inline void BulkPublishResponseFailedEntry::set_error(::std::string&& value) { - - error_.SetNoArena( - &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) -} -#endif -inline void BulkPublishResponseFailedEntry::set_error(const char* value) { - GOOGLE_DCHECK(value != NULL); - - error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) -} -inline void BulkPublishResponseFailedEntry::set_error(const char* value, size_t size) { - - error_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), - ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) +// int32 count = 2; +inline void ActiveActorsCount::clear_count() { + count_ = 0; } -inline ::std::string* BulkPublishResponseFailedEntry::mutable_error() { - - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) - return error_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +inline ::google::protobuf::int32 ActiveActorsCount::count() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ActiveActorsCount.count) + return count_; } -inline ::std::string* BulkPublishResponseFailedEntry::release_error() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) +inline void ActiveActorsCount::set_count(::google::protobuf::int32 value) { - return error_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline void BulkPublishResponseFailedEntry::set_allocated_error(::std::string* error) { - if (error != NULL) { - - } else { - - } - error_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), error); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.BulkPublishResponseFailedEntry.error) + count_ = value; + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ActiveActorsCount.count) } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// InvokeBindingRequest +// RegisteredComponents // string name = 1; -inline void InvokeBindingRequest::clear_name() { +inline void RegisteredComponents::clear_name() { name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& InvokeBindingRequest::name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeBindingRequest.name) +inline const ::std::string& RegisteredComponents::name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisteredComponents.name) return name_.GetNoArena(); } -inline void InvokeBindingRequest::set_name(const ::std::string& value) { +inline void RegisteredComponents::set_name(const ::std::string& value) { name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeBindingRequest.name) + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisteredComponents.name) } #if LANG_CXX11 -inline void InvokeBindingRequest::set_name(::std::string&& value) { +inline void RegisteredComponents::set_name(::std::string&& value) { name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeBindingRequest.name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisteredComponents.name) } #endif -inline void InvokeBindingRequest::set_name(const char* value) { +inline void RegisteredComponents::set_name(const char* value) { GOOGLE_DCHECK(value != NULL); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeBindingRequest.name) + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisteredComponents.name) } -inline void InvokeBindingRequest::set_name(const char* value, size_t size) { +inline void RegisteredComponents::set_name(const char* value, size_t size) { name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeBindingRequest.name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisteredComponents.name) } -inline ::std::string* InvokeBindingRequest::mutable_name() { +inline ::std::string* RegisteredComponents::mutable_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeBindingRequest.name) + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisteredComponents.name) return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* InvokeBindingRequest::release_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeBindingRequest.name) +inline ::std::string* RegisteredComponents::release_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisteredComponents.name) return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void InvokeBindingRequest::set_allocated_name(::std::string* name) { - if (name != NULL) { - - } else { - - } - name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeBindingRequest.name) -} - -// bytes data = 2; -inline void InvokeBindingRequest::clear_data() { - data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline const ::std::string& InvokeBindingRequest::data() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeBindingRequest.data) - return data_.GetNoArena(); -} -inline void InvokeBindingRequest::set_data(const ::std::string& value) { - - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeBindingRequest.data) -} -#if LANG_CXX11 -inline void InvokeBindingRequest::set_data(::std::string&& value) { - - data_.SetNoArena( - &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeBindingRequest.data) -} -#endif -inline void InvokeBindingRequest::set_data(const char* value) { - GOOGLE_DCHECK(value != NULL); - - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeBindingRequest.data) -} -inline void InvokeBindingRequest::set_data(const void* value, size_t size) { - - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), - ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeBindingRequest.data) -} -inline ::std::string* InvokeBindingRequest::mutable_data() { - - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeBindingRequest.data) - return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline ::std::string* InvokeBindingRequest::release_data() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeBindingRequest.data) - - return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline void InvokeBindingRequest::set_allocated_data(::std::string* data) { - if (data != NULL) { - - } else { - - } - data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeBindingRequest.data) -} - -// map metadata = 3; -inline int InvokeBindingRequest::metadata_size() const { - return metadata_.size(); -} -inline void InvokeBindingRequest::clear_metadata() { - metadata_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -InvokeBindingRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.InvokeBindingRequest.metadata) - return metadata_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -InvokeBindingRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.InvokeBindingRequest.metadata) - return metadata_.MutableMap(); +inline void RegisteredComponents::set_allocated_name(::std::string* name) { + if (name != NULL) { + + } else { + + } + name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisteredComponents.name) } -// string operation = 4; -inline void InvokeBindingRequest::clear_operation() { - operation_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string type = 2; +inline void RegisteredComponents::clear_type() { + type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& InvokeBindingRequest::operation() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeBindingRequest.operation) - return operation_.GetNoArena(); +inline const ::std::string& RegisteredComponents::type() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisteredComponents.type) + return type_.GetNoArena(); } -inline void InvokeBindingRequest::set_operation(const ::std::string& value) { +inline void RegisteredComponents::set_type(const ::std::string& value) { - operation_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeBindingRequest.operation) + type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisteredComponents.type) } #if LANG_CXX11 -inline void InvokeBindingRequest::set_operation(::std::string&& value) { +inline void RegisteredComponents::set_type(::std::string&& value) { - operation_.SetNoArena( + type_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeBindingRequest.operation) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisteredComponents.type) } #endif -inline void InvokeBindingRequest::set_operation(const char* value) { +inline void RegisteredComponents::set_type(const char* value) { GOOGLE_DCHECK(value != NULL); - operation_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeBindingRequest.operation) + type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisteredComponents.type) } -inline void InvokeBindingRequest::set_operation(const char* value, size_t size) { +inline void RegisteredComponents::set_type(const char* value, size_t size) { - operation_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeBindingRequest.operation) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisteredComponents.type) } -inline ::std::string* InvokeBindingRequest::mutable_operation() { +inline ::std::string* RegisteredComponents::mutable_type() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeBindingRequest.operation) - return operation_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisteredComponents.type) + return type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* InvokeBindingRequest::release_operation() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeBindingRequest.operation) +inline ::std::string* RegisteredComponents::release_type() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisteredComponents.type) - return operation_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void InvokeBindingRequest::set_allocated_operation(::std::string* operation) { - if (operation != NULL) { +inline void RegisteredComponents::set_allocated_type(::std::string* type) { + if (type != NULL) { } else { } - operation_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), operation); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeBindingRequest.operation) + type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), type); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisteredComponents.type) } -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// InvokeBindingResponse - -// bytes data = 1; -inline void InvokeBindingResponse::clear_data() { - data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string version = 3; +inline void RegisteredComponents::clear_version() { + version_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& InvokeBindingResponse::data() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeBindingResponse.data) - return data_.GetNoArena(); +inline const ::std::string& RegisteredComponents::version() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisteredComponents.version) + return version_.GetNoArena(); } -inline void InvokeBindingResponse::set_data(const ::std::string& value) { +inline void RegisteredComponents::set_version(const ::std::string& value) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeBindingResponse.data) + version_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisteredComponents.version) } #if LANG_CXX11 -inline void InvokeBindingResponse::set_data(::std::string&& value) { +inline void RegisteredComponents::set_version(::std::string&& value) { - data_.SetNoArena( + version_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeBindingResponse.data) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisteredComponents.version) } #endif -inline void InvokeBindingResponse::set_data(const char* value) { +inline void RegisteredComponents::set_version(const char* value) { GOOGLE_DCHECK(value != NULL); - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeBindingResponse.data) + version_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisteredComponents.version) } -inline void InvokeBindingResponse::set_data(const void* value, size_t size) { +inline void RegisteredComponents::set_version(const char* value, size_t size) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + version_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeBindingResponse.data) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisteredComponents.version) } -inline ::std::string* InvokeBindingResponse::mutable_data() { +inline ::std::string* RegisteredComponents::mutable_version() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeBindingResponse.data) - return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisteredComponents.version) + return version_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* InvokeBindingResponse::release_data() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeBindingResponse.data) +inline ::std::string* RegisteredComponents::release_version() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisteredComponents.version) - return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return version_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void InvokeBindingResponse::set_allocated_data(::std::string* data) { - if (data != NULL) { +inline void RegisteredComponents::set_allocated_version(::std::string* version) { + if (version != NULL) { } else { } - data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeBindingResponse.data) + version_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), version); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisteredComponents.version) } -// map metadata = 2; -inline int InvokeBindingResponse::metadata_size() const { - return metadata_.size(); +// repeated string capabilities = 4; +inline int RegisteredComponents::capabilities_size() const { + return capabilities_.size(); } -inline void InvokeBindingResponse::clear_metadata() { - metadata_.Clear(); +inline void RegisteredComponents::clear_capabilities() { + capabilities_.Clear(); } -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -InvokeBindingResponse::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.InvokeBindingResponse.metadata) - return metadata_.GetMap(); +inline const ::std::string& RegisteredComponents::capabilities(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisteredComponents.capabilities) + return capabilities_.Get(index); } -inline ::google::protobuf::Map< ::std::string, ::std::string >* -InvokeBindingResponse::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.InvokeBindingResponse.metadata) - return metadata_.MutableMap(); +inline ::std::string* RegisteredComponents::mutable_capabilities(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisteredComponents.capabilities) + return capabilities_.Mutable(index); +} +inline void RegisteredComponents::set_capabilities(int index, const ::std::string& value) { + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisteredComponents.capabilities) + capabilities_.Mutable(index)->assign(value); +} +#if LANG_CXX11 +inline void RegisteredComponents::set_capabilities(int index, ::std::string&& value) { + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisteredComponents.capabilities) + capabilities_.Mutable(index)->assign(std::move(value)); +} +#endif +inline void RegisteredComponents::set_capabilities(int index, const char* value) { + GOOGLE_DCHECK(value != NULL); + capabilities_.Mutable(index)->assign(value); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisteredComponents.capabilities) +} +inline void RegisteredComponents::set_capabilities(int index, const char* value, size_t size) { + capabilities_.Mutable(index)->assign( + reinterpret_cast(value), size); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisteredComponents.capabilities) +} +inline ::std::string* RegisteredComponents::add_capabilities() { + // @@protoc_insertion_point(field_add_mutable:dapr.proto.runtime.v1.RegisteredComponents.capabilities) + return capabilities_.Add(); +} +inline void RegisteredComponents::add_capabilities(const ::std::string& value) { + capabilities_.Add()->assign(value); + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.RegisteredComponents.capabilities) +} +#if LANG_CXX11 +inline void RegisteredComponents::add_capabilities(::std::string&& value) { + capabilities_.Add(std::move(value)); + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.RegisteredComponents.capabilities) +} +#endif +inline void RegisteredComponents::add_capabilities(const char* value) { + GOOGLE_DCHECK(value != NULL); + capabilities_.Add()->assign(value); + // @@protoc_insertion_point(field_add_char:dapr.proto.runtime.v1.RegisteredComponents.capabilities) +} +inline void RegisteredComponents::add_capabilities(const char* value, size_t size) { + capabilities_.Add()->assign(reinterpret_cast(value), size); + // @@protoc_insertion_point(field_add_pointer:dapr.proto.runtime.v1.RegisteredComponents.capabilities) +} +inline const ::google::protobuf::RepeatedPtrField< ::std::string>& +RegisteredComponents::capabilities() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.RegisteredComponents.capabilities) + return capabilities_; +} +inline ::google::protobuf::RepeatedPtrField< ::std::string>* +RegisteredComponents::mutable_capabilities() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.RegisteredComponents.capabilities) + return &capabilities_; } // ------------------------------------------------------------------- // ------------------------------------------------------------------- -// GetSecretRequest +// PubsubSubscription -// string store_name = 1; -inline void GetSecretRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string pubsub_name = 1; +inline void PubsubSubscription::clear_pubsub_name() { + pubsub_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetSecretRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetSecretRequest.store_name) - return store_name_.GetNoArena(); +inline const ::std::string& PubsubSubscription::pubsub_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) + return pubsub_name_.GetNoArena(); } -inline void GetSecretRequest::set_store_name(const ::std::string& value) { +inline void PubsubSubscription::set_pubsub_name(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetSecretRequest.store_name) + pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) } #if LANG_CXX11 -inline void GetSecretRequest::set_store_name(::std::string&& value) { +inline void PubsubSubscription::set_pubsub_name(::std::string&& value) { - store_name_.SetNoArena( + pubsub_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetSecretRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) } #endif -inline void GetSecretRequest::set_store_name(const char* value) { +inline void PubsubSubscription::set_pubsub_name(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetSecretRequest.store_name) + pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) } -inline void GetSecretRequest::set_store_name(const char* value, size_t size) { +inline void PubsubSubscription::set_pubsub_name(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetSecretRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) } -inline ::std::string* GetSecretRequest::mutable_store_name() { +inline ::std::string* PubsubSubscription::mutable_pubsub_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetSecretRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) + return pubsub_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetSecretRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetSecretRequest.store_name) +inline ::std::string* PubsubSubscription::release_pubsub_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return pubsub_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetSecretRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void PubsubSubscription::set_allocated_pubsub_name(::std::string* pubsub_name) { + if (pubsub_name != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetSecretRequest.store_name) + pubsub_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), pubsub_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) } -// string key = 2; -inline void GetSecretRequest::clear_key() { - key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string topic = 2; +inline void PubsubSubscription::clear_topic() { + topic_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetSecretRequest::key() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetSecretRequest.key) - return key_.GetNoArena(); +inline const ::std::string& PubsubSubscription::topic() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscription.topic) + return topic_.GetNoArena(); } -inline void GetSecretRequest::set_key(const ::std::string& value) { +inline void PubsubSubscription::set_topic(const ::std::string& value) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetSecretRequest.key) + topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PubsubSubscription.topic) } #if LANG_CXX11 -inline void GetSecretRequest::set_key(::std::string&& value) { +inline void PubsubSubscription::set_topic(::std::string&& value) { - key_.SetNoArena( + topic_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetSecretRequest.key) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PubsubSubscription.topic) } #endif -inline void GetSecretRequest::set_key(const char* value) { +inline void PubsubSubscription::set_topic(const char* value) { GOOGLE_DCHECK(value != NULL); - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetSecretRequest.key) + topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PubsubSubscription.topic) } -inline void GetSecretRequest::set_key(const char* value, size_t size) { +inline void PubsubSubscription::set_topic(const char* value, size_t size) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetSecretRequest.key) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PubsubSubscription.topic) } -inline ::std::string* GetSecretRequest::mutable_key() { +inline ::std::string* PubsubSubscription::mutable_topic() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetSecretRequest.key) - return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscription.topic) + return topic_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetSecretRequest::release_key() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetSecretRequest.key) +inline ::std::string* PubsubSubscription::release_topic() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscription.topic) - return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return topic_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetSecretRequest::set_allocated_key(::std::string* key) { - if (key != NULL) { +inline void PubsubSubscription::set_allocated_topic(::std::string* topic) { + if (topic != NULL) { } else { } - key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetSecretRequest.key) + topic_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), topic); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscription.topic) } // map metadata = 3; -inline int GetSecretRequest::metadata_size() const { +inline int PubsubSubscription::metadata_size() const { return metadata_.size(); } -inline void GetSecretRequest::clear_metadata() { +inline void PubsubSubscription::clear_metadata() { metadata_.Clear(); } inline const ::google::protobuf::Map< ::std::string, ::std::string >& -GetSecretRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetSecretRequest.metadata) +PubsubSubscription::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.PubsubSubscription.metadata) return metadata_.GetMap(); } inline ::google::protobuf::Map< ::std::string, ::std::string >* -GetSecretRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetSecretRequest.metadata) +PubsubSubscription::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.PubsubSubscription.metadata) return metadata_.MutableMap(); } -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// GetSecretResponse - -// map data = 1; -inline int GetSecretResponse::data_size() const { - return data_.size(); +// .dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4; +inline bool PubsubSubscription::has_rules() const { + return this != internal_default_instance() && rules_ != NULL; } -inline void GetSecretResponse::clear_data() { - data_.Clear(); +inline void PubsubSubscription::clear_rules() { + if (GetArenaNoVirtual() == NULL && rules_ != NULL) { + delete rules_; + } + rules_ = NULL; } -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -GetSecretResponse::data() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetSecretResponse.data) - return data_.GetMap(); +inline const ::dapr::proto::runtime::v1::PubsubSubscriptionRules& PubsubSubscription::_internal_rules() const { + return *rules_; } -inline ::google::protobuf::Map< ::std::string, ::std::string >* -GetSecretResponse::mutable_data() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetSecretResponse.data) - return data_.MutableMap(); +inline const ::dapr::proto::runtime::v1::PubsubSubscriptionRules& PubsubSubscription::rules() const { + const ::dapr::proto::runtime::v1::PubsubSubscriptionRules* p = rules_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscription.rules) + return p != NULL ? *p : *reinterpret_cast( + &::dapr::proto::runtime::v1::_PubsubSubscriptionRules_default_instance_); +} +inline ::dapr::proto::runtime::v1::PubsubSubscriptionRules* PubsubSubscription::release_rules() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscription.rules) + + ::dapr::proto::runtime::v1::PubsubSubscriptionRules* temp = rules_; + rules_ = NULL; + return temp; +} +inline ::dapr::proto::runtime::v1::PubsubSubscriptionRules* PubsubSubscription::mutable_rules() { + + if (rules_ == NULL) { + auto* p = CreateMaybeMessage<::dapr::proto::runtime::v1::PubsubSubscriptionRules>(GetArenaNoVirtual()); + rules_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscription.rules) + return rules_; +} +inline void PubsubSubscription::set_allocated_rules(::dapr::proto::runtime::v1::PubsubSubscriptionRules* rules) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete rules_; + } + if (rules) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + rules = ::google::protobuf::internal::GetOwnedMessage( + message_arena, rules, submessage_arena); + } + + } else { + + } + rules_ = rules; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscription.rules) } -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// GetBulkSecretRequest - -// string store_name = 1; -inline void GetBulkSecretRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string dead_letter_topic = 5; +inline void PubsubSubscription::clear_dead_letter_topic() { + dead_letter_topic_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetBulkSecretRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) - return store_name_.GetNoArena(); +inline const ::std::string& PubsubSubscription::dead_letter_topic() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) + return dead_letter_topic_.GetNoArena(); } -inline void GetBulkSecretRequest::set_store_name(const ::std::string& value) { +inline void PubsubSubscription::set_dead_letter_topic(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) + dead_letter_topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) } #if LANG_CXX11 -inline void GetBulkSecretRequest::set_store_name(::std::string&& value) { +inline void PubsubSubscription::set_dead_letter_topic(::std::string&& value) { - store_name_.SetNoArena( + dead_letter_topic_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) } #endif -inline void GetBulkSecretRequest::set_store_name(const char* value) { +inline void PubsubSubscription::set_dead_letter_topic(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) + dead_letter_topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) } -inline void GetBulkSecretRequest::set_store_name(const char* value, size_t size) { +inline void PubsubSubscription::set_dead_letter_topic(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + dead_letter_topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) } -inline ::std::string* GetBulkSecretRequest::mutable_store_name() { +inline ::std::string* PubsubSubscription::mutable_dead_letter_topic() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) + return dead_letter_topic_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetBulkSecretRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) +inline ::std::string* PubsubSubscription::release_dead_letter_topic() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return dead_letter_topic_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetBulkSecretRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void PubsubSubscription::set_allocated_dead_letter_topic(::std::string* dead_letter_topic) { + if (dead_letter_topic != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetBulkSecretRequest.store_name) -} - -// map metadata = 2; -inline int GetBulkSecretRequest::metadata_size() const { - return metadata_.size(); -} -inline void GetBulkSecretRequest::clear_metadata() { - metadata_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -GetBulkSecretRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetBulkSecretRequest.metadata) - return metadata_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -GetBulkSecretRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetBulkSecretRequest.metadata) - return metadata_.MutableMap(); + dead_letter_topic_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), dead_letter_topic); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// SecretResponse +// PubsubSubscriptionRules -// map secrets = 1; -inline int SecretResponse::secrets_size() const { - return secrets_.size(); -} -inline void SecretResponse::clear_secrets() { - secrets_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -SecretResponse::secrets() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.SecretResponse.secrets) - return secrets_.GetMap(); +// repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1; +inline int PubsubSubscriptionRules::rules_size() const { + return rules_.size(); } -inline ::google::protobuf::Map< ::std::string, ::std::string >* -SecretResponse::mutable_secrets() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.SecretResponse.secrets) - return secrets_.MutableMap(); +inline void PubsubSubscriptionRules::clear_rules() { + rules_.Clear(); } - -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// GetBulkSecretResponse - -// map data = 1; -inline int GetBulkSecretResponse::data_size() const { - return data_.size(); +inline ::dapr::proto::runtime::v1::PubsubSubscriptionRule* PubsubSubscriptionRules::mutable_rules(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscriptionRules.rules) + return rules_.Mutable(index); } -inline void GetBulkSecretResponse::clear_data() { - data_.Clear(); +inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::PubsubSubscriptionRule >* +PubsubSubscriptionRules::mutable_rules() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.PubsubSubscriptionRules.rules) + return &rules_; } -inline const ::google::protobuf::Map< ::std::string, ::dapr::proto::runtime::v1::SecretResponse >& -GetBulkSecretResponse::data() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetBulkSecretResponse.data) - return data_.GetMap(); +inline const ::dapr::proto::runtime::v1::PubsubSubscriptionRule& PubsubSubscriptionRules::rules(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscriptionRules.rules) + return rules_.Get(index); } -inline ::google::protobuf::Map< ::std::string, ::dapr::proto::runtime::v1::SecretResponse >* -GetBulkSecretResponse::mutable_data() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetBulkSecretResponse.data) - return data_.MutableMap(); +inline ::dapr::proto::runtime::v1::PubsubSubscriptionRule* PubsubSubscriptionRules::add_rules() { + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.PubsubSubscriptionRules.rules) + return rules_.Add(); +} +inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::PubsubSubscriptionRule >& +PubsubSubscriptionRules::rules() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.PubsubSubscriptionRules.rules) + return rules_; } // ------------------------------------------------------------------- -// TransactionalStateOperation +// PubsubSubscriptionRule -// string operationType = 1; -inline void TransactionalStateOperation::clear_operationtype() { - operationtype_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string match = 1; +inline void PubsubSubscriptionRule::clear_match() { + match_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& TransactionalStateOperation::operationtype() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) - return operationtype_.GetNoArena(); +inline const ::std::string& PubsubSubscriptionRule::match() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) + return match_.GetNoArena(); } -inline void TransactionalStateOperation::set_operationtype(const ::std::string& value) { +inline void PubsubSubscriptionRule::set_match(const ::std::string& value) { - operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) + match_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) } #if LANG_CXX11 -inline void TransactionalStateOperation::set_operationtype(::std::string&& value) { +inline void PubsubSubscriptionRule::set_match(::std::string&& value) { - operationtype_.SetNoArena( + match_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) } #endif -inline void TransactionalStateOperation::set_operationtype(const char* value) { +inline void PubsubSubscriptionRule::set_match(const char* value) { GOOGLE_DCHECK(value != NULL); - operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) + match_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) } -inline void TransactionalStateOperation::set_operationtype(const char* value, size_t size) { +inline void PubsubSubscriptionRule::set_match(const char* value, size_t size) { - operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + match_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) } -inline ::std::string* TransactionalStateOperation::mutable_operationtype() { +inline ::std::string* PubsubSubscriptionRule::mutable_match() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) - return operationtype_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) + return match_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* TransactionalStateOperation::release_operationtype() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) +inline ::std::string* PubsubSubscriptionRule::release_match() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) - return operationtype_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return match_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void TransactionalStateOperation::set_allocated_operationtype(::std::string* operationtype) { - if (operationtype != NULL) { +inline void PubsubSubscriptionRule::set_allocated_match(::std::string* match) { + if (match != NULL) { } else { } - operationtype_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), operationtype); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TransactionalStateOperation.operationType) + match_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), match); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) } -// .dapr.proto.common.v1.StateItem request = 2; -inline bool TransactionalStateOperation::has_request() const { - return this != internal_default_instance() && request_ != NULL; +// string path = 2; +inline void PubsubSubscriptionRule::clear_path() { + path_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::dapr::proto::common::v1::StateItem& TransactionalStateOperation::_internal_request() const { - return *request_; +inline const ::std::string& PubsubSubscriptionRule::path() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) + return path_.GetNoArena(); } -inline const ::dapr::proto::common::v1::StateItem& TransactionalStateOperation::request() const { - const ::dapr::proto::common::v1::StateItem* p = request_; - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TransactionalStateOperation.request) - return p != NULL ? *p : *reinterpret_cast( - &::dapr::proto::common::v1::_StateItem_default_instance_); +inline void PubsubSubscriptionRule::set_path(const ::std::string& value) { + + path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) } -inline ::dapr::proto::common::v1::StateItem* TransactionalStateOperation::release_request() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TransactionalStateOperation.request) +#if LANG_CXX11 +inline void PubsubSubscriptionRule::set_path(::std::string&& value) { - ::dapr::proto::common::v1::StateItem* temp = request_; - request_ = NULL; - return temp; + path_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) } -inline ::dapr::proto::common::v1::StateItem* TransactionalStateOperation::mutable_request() { +#endif +inline void PubsubSubscriptionRule::set_path(const char* value) { + GOOGLE_DCHECK(value != NULL); - if (request_ == NULL) { - auto* p = CreateMaybeMessage<::dapr::proto::common::v1::StateItem>(GetArenaNoVirtual()); - request_ = p; - } - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TransactionalStateOperation.request) - return request_; + path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) } -inline void TransactionalStateOperation::set_allocated_request(::dapr::proto::common::v1::StateItem* request) { - ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); - if (message_arena == NULL) { - delete reinterpret_cast< ::google::protobuf::MessageLite*>(request_); - } - if (request) { - ::google::protobuf::Arena* submessage_arena = NULL; - if (message_arena != submessage_arena) { - request = ::google::protobuf::internal::GetOwnedMessage( - message_arena, request, submessage_arena); - } +inline void PubsubSubscriptionRule::set_path(const char* value, size_t size) { + + path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) +} +inline ::std::string* PubsubSubscriptionRule::mutable_path() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) + return path_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* PubsubSubscriptionRule::release_path() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) + + return path_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void PubsubSubscriptionRule::set_allocated_path(::std::string* path) { + if (path != NULL) { } else { } - request_ = request; - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TransactionalStateOperation.request) + path_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), path); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// ExecuteStateTransactionRequest +// SetMetadataRequest -// string storeName = 1; -inline void ExecuteStateTransactionRequest::clear_storename() { - storename_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string key = 1; +inline void SetMetadataRequest::clear_key() { + key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& ExecuteStateTransactionRequest::storename() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) - return storename_.GetNoArena(); +inline const ::std::string& SetMetadataRequest::key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SetMetadataRequest.key) + return key_.GetNoArena(); } -inline void ExecuteStateTransactionRequest::set_storename(const ::std::string& value) { +inline void SetMetadataRequest::set_key(const ::std::string& value) { - storename_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SetMetadataRequest.key) } #if LANG_CXX11 -inline void ExecuteStateTransactionRequest::set_storename(::std::string&& value) { +inline void SetMetadataRequest::set_key(::std::string&& value) { - storename_.SetNoArena( + key_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SetMetadataRequest.key) } #endif -inline void ExecuteStateTransactionRequest::set_storename(const char* value) { +inline void SetMetadataRequest::set_key(const char* value) { GOOGLE_DCHECK(value != NULL); - storename_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SetMetadataRequest.key) } -inline void ExecuteStateTransactionRequest::set_storename(const char* value, size_t size) { +inline void SetMetadataRequest::set_key(const char* value, size_t size) { - storename_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) -} -inline ::std::string* ExecuteStateTransactionRequest::mutable_storename() { - - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) - return storename_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SetMetadataRequest.key) } -inline ::std::string* ExecuteStateTransactionRequest::release_storename() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) +inline ::std::string* SetMetadataRequest::mutable_key() { - return storename_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline void ExecuteStateTransactionRequest::set_allocated_storename(::std::string* storename) { - if (storename != NULL) { - - } else { - - } - storename_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), storename); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.storeName) -} - -// repeated .dapr.proto.runtime.v1.TransactionalStateOperation operations = 2; -inline int ExecuteStateTransactionRequest::operations_size() const { - return operations_.size(); -} -inline void ExecuteStateTransactionRequest::clear_operations() { - operations_.Clear(); -} -inline ::dapr::proto::runtime::v1::TransactionalStateOperation* ExecuteStateTransactionRequest::mutable_operations(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.operations) - return operations_.Mutable(index); -} -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::TransactionalStateOperation >* -ExecuteStateTransactionRequest::mutable_operations() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.operations) - return &operations_; -} -inline const ::dapr::proto::runtime::v1::TransactionalStateOperation& ExecuteStateTransactionRequest::operations(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.operations) - return operations_.Get(index); -} -inline ::dapr::proto::runtime::v1::TransactionalStateOperation* ExecuteStateTransactionRequest::add_operations() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.operations) - return operations_.Add(); -} -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::TransactionalStateOperation >& -ExecuteStateTransactionRequest::operations() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.operations) - return operations_; -} - -// map metadata = 3; -inline int ExecuteStateTransactionRequest::metadata_size() const { - return metadata_.size(); -} -inline void ExecuteStateTransactionRequest::clear_metadata() { - metadata_.Clear(); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SetMetadataRequest.key) + return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -ExecuteStateTransactionRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.metadata) - return metadata_.GetMap(); +inline ::std::string* SetMetadataRequest::release_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SetMetadataRequest.key) + + return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::google::protobuf::Map< ::std::string, ::std::string >* -ExecuteStateTransactionRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.ExecuteStateTransactionRequest.metadata) - return metadata_.MutableMap(); +inline void SetMetadataRequest::set_allocated_key(::std::string* key) { + if (key != NULL) { + + } else { + + } + key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SetMetadataRequest.key) } -// ------------------------------------------------------------------- - -// RegisterActorTimerRequest - -// string actor_type = 1; -inline void RegisterActorTimerRequest::clear_actor_type() { - actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string value = 2; +inline void SetMetadataRequest::clear_value() { + value_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisterActorTimerRequest::actor_type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) - return actor_type_.GetNoArena(); +inline const ::std::string& SetMetadataRequest::value() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SetMetadataRequest.value) + return value_.GetNoArena(); } -inline void RegisterActorTimerRequest::set_actor_type(const ::std::string& value) { +inline void SetMetadataRequest::set_value(const ::std::string& value) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) + value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SetMetadataRequest.value) } #if LANG_CXX11 -inline void RegisterActorTimerRequest::set_actor_type(::std::string&& value) { +inline void SetMetadataRequest::set_value(::std::string&& value) { - actor_type_.SetNoArena( + value_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SetMetadataRequest.value) } #endif -inline void RegisterActorTimerRequest::set_actor_type(const char* value) { +inline void SetMetadataRequest::set_value(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) + value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SetMetadataRequest.value) } -inline void RegisterActorTimerRequest::set_actor_type(const char* value, size_t size) { +inline void SetMetadataRequest::set_value(const char* value, size_t size) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SetMetadataRequest.value) } -inline ::std::string* RegisterActorTimerRequest::mutable_actor_type() { +inline ::std::string* SetMetadataRequest::mutable_value() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) - return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SetMetadataRequest.value) + return value_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorTimerRequest::release_actor_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) +inline ::std::string* SetMetadataRequest::release_value() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SetMetadataRequest.value) - return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return value_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorTimerRequest::set_allocated_actor_type(::std::string* actor_type) { - if (actor_type != NULL) { +inline void SetMetadataRequest::set_allocated_value(::std::string* value) { + if (value != NULL) { } else { } - actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_type) + value_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SetMetadataRequest.value) } -// string actor_id = 2; -inline void RegisterActorTimerRequest::clear_actor_id() { - actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// GetConfigurationRequest + +// string store_name = 1; +inline void GetConfigurationRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisterActorTimerRequest::actor_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) - return actor_id_.GetNoArena(); +inline const ::std::string& GetConfigurationRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) + return store_name_.GetNoArena(); } -inline void RegisterActorTimerRequest::set_actor_id(const ::std::string& value) { +inline void GetConfigurationRequest::set_store_name(const ::std::string& value) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) } #if LANG_CXX11 -inline void RegisterActorTimerRequest::set_actor_id(::std::string&& value) { +inline void GetConfigurationRequest::set_store_name(::std::string&& value) { - actor_id_.SetNoArena( + store_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) } #endif -inline void RegisterActorTimerRequest::set_actor_id(const char* value) { +inline void GetConfigurationRequest::set_store_name(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) } -inline void RegisterActorTimerRequest::set_actor_id(const char* value, size_t size) { +inline void GetConfigurationRequest::set_store_name(const char* value, size_t size) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) } -inline ::std::string* RegisterActorTimerRequest::mutable_actor_id() { +inline ::std::string* GetConfigurationRequest::mutable_store_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) - return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorTimerRequest::release_actor_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) +inline ::std::string* GetConfigurationRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) - return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorTimerRequest::set_allocated_actor_id(::std::string* actor_id) { - if (actor_id != NULL) { +inline void GetConfigurationRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { } else { } - actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.actor_id) + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) +} + +// repeated string keys = 2; +inline int GetConfigurationRequest::keys_size() const { + return keys_.size(); +} +inline void GetConfigurationRequest::clear_keys() { + keys_.Clear(); +} +inline const ::std::string& GetConfigurationRequest::keys(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetConfigurationRequest.keys) + return keys_.Get(index); +} +inline ::std::string* GetConfigurationRequest::mutable_keys(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetConfigurationRequest.keys) + return keys_.Mutable(index); +} +inline void GetConfigurationRequest::set_keys(int index, const ::std::string& value) { + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetConfigurationRequest.keys) + keys_.Mutable(index)->assign(value); +} +#if LANG_CXX11 +inline void GetConfigurationRequest::set_keys(int index, ::std::string&& value) { + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetConfigurationRequest.keys) + keys_.Mutable(index)->assign(std::move(value)); +} +#endif +inline void GetConfigurationRequest::set_keys(int index, const char* value) { + GOOGLE_DCHECK(value != NULL); + keys_.Mutable(index)->assign(value); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetConfigurationRequest.keys) +} +inline void GetConfigurationRequest::set_keys(int index, const char* value, size_t size) { + keys_.Mutable(index)->assign( + reinterpret_cast(value), size); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetConfigurationRequest.keys) +} +inline ::std::string* GetConfigurationRequest::add_keys() { + // @@protoc_insertion_point(field_add_mutable:dapr.proto.runtime.v1.GetConfigurationRequest.keys) + return keys_.Add(); +} +inline void GetConfigurationRequest::add_keys(const ::std::string& value) { + keys_.Add()->assign(value); + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetConfigurationRequest.keys) +} +#if LANG_CXX11 +inline void GetConfigurationRequest::add_keys(::std::string&& value) { + keys_.Add(std::move(value)); + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetConfigurationRequest.keys) } +#endif +inline void GetConfigurationRequest::add_keys(const char* value) { + GOOGLE_DCHECK(value != NULL); + keys_.Add()->assign(value); + // @@protoc_insertion_point(field_add_char:dapr.proto.runtime.v1.GetConfigurationRequest.keys) +} +inline void GetConfigurationRequest::add_keys(const char* value, size_t size) { + keys_.Add()->assign(reinterpret_cast(value), size); + // @@protoc_insertion_point(field_add_pointer:dapr.proto.runtime.v1.GetConfigurationRequest.keys) +} +inline const ::google::protobuf::RepeatedPtrField< ::std::string>& +GetConfigurationRequest::keys() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetConfigurationRequest.keys) + return keys_; +} +inline ::google::protobuf::RepeatedPtrField< ::std::string>* +GetConfigurationRequest::mutable_keys() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetConfigurationRequest.keys) + return &keys_; +} + +// map metadata = 3; +inline int GetConfigurationRequest::metadata_size() const { + return metadata_.size(); +} +inline void GetConfigurationRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +GetConfigurationRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetConfigurationRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +GetConfigurationRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetConfigurationRequest.metadata) + return metadata_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// GetConfigurationResponse + +// map items = 1; +inline int GetConfigurationResponse::items_size() const { + return items_.size(); +} +inline const ::google::protobuf::Map< ::std::string, ::dapr::proto::common::v1::ConfigurationItem >& +GetConfigurationResponse::items() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetConfigurationResponse.items) + return items_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::dapr::proto::common::v1::ConfigurationItem >* +GetConfigurationResponse::mutable_items() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetConfigurationResponse.items) + return items_.MutableMap(); +} + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// SubscribeConfigurationRequest -// string name = 3; -inline void RegisterActorTimerRequest::clear_name() { - name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string store_name = 1; +inline void SubscribeConfigurationRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisterActorTimerRequest::name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) - return name_.GetNoArena(); +inline const ::std::string& SubscribeConfigurationRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) + return store_name_.GetNoArena(); } -inline void RegisterActorTimerRequest::set_name(const ::std::string& value) { +inline void SubscribeConfigurationRequest::set_store_name(const ::std::string& value) { - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) } #if LANG_CXX11 -inline void RegisterActorTimerRequest::set_name(::std::string&& value) { +inline void SubscribeConfigurationRequest::set_store_name(::std::string&& value) { - name_.SetNoArena( + store_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) } #endif -inline void RegisterActorTimerRequest::set_name(const char* value) { +inline void SubscribeConfigurationRequest::set_store_name(const char* value) { GOOGLE_DCHECK(value != NULL); - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) } -inline void RegisterActorTimerRequest::set_name(const char* value, size_t size) { +inline void SubscribeConfigurationRequest::set_store_name(const char* value, size_t size) { - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) } -inline ::std::string* RegisterActorTimerRequest::mutable_name() { +inline ::std::string* SubscribeConfigurationRequest::mutable_store_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) - return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorTimerRequest::release_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) +inline ::std::string* SubscribeConfigurationRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) - return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorTimerRequest::set_allocated_name(::std::string* name) { - if (name != NULL) { +inline void SubscribeConfigurationRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { } else { } - name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.name) + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) } -// string due_time = 4; -inline void RegisterActorTimerRequest::clear_due_time() { - due_time_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// repeated string keys = 2; +inline int SubscribeConfigurationRequest::keys_size() const { + return keys_.size(); } -inline const ::std::string& RegisterActorTimerRequest::due_time() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) - return due_time_.GetNoArena(); +inline void SubscribeConfigurationRequest::clear_keys() { + keys_.Clear(); } -inline void RegisterActorTimerRequest::set_due_time(const ::std::string& value) { - - due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) +inline const ::std::string& SubscribeConfigurationRequest::keys(int index) const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) + return keys_.Get(index); +} +inline ::std::string* SubscribeConfigurationRequest::mutable_keys(int index) { + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) + return keys_.Mutable(index); +} +inline void SubscribeConfigurationRequest::set_keys(int index, const ::std::string& value) { + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) + keys_.Mutable(index)->assign(value); } #if LANG_CXX11 -inline void RegisterActorTimerRequest::set_due_time(::std::string&& value) { - - due_time_.SetNoArena( - &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) +inline void SubscribeConfigurationRequest::set_keys(int index, ::std::string&& value) { + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) + keys_.Mutable(index)->assign(std::move(value)); } #endif -inline void RegisterActorTimerRequest::set_due_time(const char* value) { +inline void SubscribeConfigurationRequest::set_keys(int index, const char* value) { GOOGLE_DCHECK(value != NULL); - - due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) -} -inline void RegisterActorTimerRequest::set_due_time(const char* value, size_t size) { - - due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), - ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) -} -inline ::std::string* RegisterActorTimerRequest::mutable_due_time() { - - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) - return due_time_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline ::std::string* RegisterActorTimerRequest::release_due_time() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) - - return due_time_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline void RegisterActorTimerRequest::set_allocated_due_time(::std::string* due_time) { - if (due_time != NULL) { - - } else { - - } - due_time_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), due_time); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.due_time) + keys_.Mutable(index)->assign(value); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) } - -// string period = 5; -inline void RegisterActorTimerRequest::clear_period() { - period_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +inline void SubscribeConfigurationRequest::set_keys(int index, const char* value, size_t size) { + keys_.Mutable(index)->assign( + reinterpret_cast(value), size); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) } -inline const ::std::string& RegisterActorTimerRequest::period() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) - return period_.GetNoArena(); +inline ::std::string* SubscribeConfigurationRequest::add_keys() { + // @@protoc_insertion_point(field_add_mutable:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) + return keys_.Add(); } -inline void RegisterActorTimerRequest::set_period(const ::std::string& value) { - - period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) +inline void SubscribeConfigurationRequest::add_keys(const ::std::string& value) { + keys_.Add()->assign(value); + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) } #if LANG_CXX11 -inline void RegisterActorTimerRequest::set_period(::std::string&& value) { - - period_.SetNoArena( - &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) +inline void SubscribeConfigurationRequest::add_keys(::std::string&& value) { + keys_.Add(std::move(value)); + // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) } #endif -inline void RegisterActorTimerRequest::set_period(const char* value) { +inline void SubscribeConfigurationRequest::add_keys(const char* value) { GOOGLE_DCHECK(value != NULL); - - period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) + keys_.Add()->assign(value); + // @@protoc_insertion_point(field_add_char:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) } -inline void RegisterActorTimerRequest::set_period(const char* value, size_t size) { - - period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), - ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) +inline void SubscribeConfigurationRequest::add_keys(const char* value, size_t size) { + keys_.Add()->assign(reinterpret_cast(value), size); + // @@protoc_insertion_point(field_add_pointer:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) } -inline ::std::string* RegisterActorTimerRequest::mutable_period() { - - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) - return period_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +inline const ::google::protobuf::RepeatedPtrField< ::std::string>& +SubscribeConfigurationRequest::keys() const { + // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) + return keys_; } -inline ::std::string* RegisterActorTimerRequest::release_period() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) - - return period_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +inline ::google::protobuf::RepeatedPtrField< ::std::string>* +SubscribeConfigurationRequest::mutable_keys() { + // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) + return &keys_; } -inline void RegisterActorTimerRequest::set_allocated_period(::std::string* period) { - if (period != NULL) { - - } else { - - } - period_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), period); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.period) + +// map metadata = 3; +inline int SubscribeConfigurationRequest::metadata_size() const { + return metadata_.size(); +} +inline void SubscribeConfigurationRequest::clear_metadata() { + metadata_.Clear(); +} +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +SubscribeConfigurationRequest::metadata() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.SubscribeConfigurationRequest.metadata) + return metadata_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +SubscribeConfigurationRequest::mutable_metadata() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.SubscribeConfigurationRequest.metadata) + return metadata_.MutableMap(); } -// string callback = 6; -inline void RegisterActorTimerRequest::clear_callback() { - callback_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// UnsubscribeConfigurationRequest + +// string store_name = 1; +inline void UnsubscribeConfigurationRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisterActorTimerRequest::callback() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) - return callback_.GetNoArena(); +inline const ::std::string& UnsubscribeConfigurationRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) + return store_name_.GetNoArena(); } -inline void RegisterActorTimerRequest::set_callback(const ::std::string& value) { +inline void UnsubscribeConfigurationRequest::set_store_name(const ::std::string& value) { - callback_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) } #if LANG_CXX11 -inline void RegisterActorTimerRequest::set_callback(::std::string&& value) { +inline void UnsubscribeConfigurationRequest::set_store_name(::std::string&& value) { - callback_.SetNoArena( + store_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) } #endif -inline void RegisterActorTimerRequest::set_callback(const char* value) { +inline void UnsubscribeConfigurationRequest::set_store_name(const char* value) { GOOGLE_DCHECK(value != NULL); - callback_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) } -inline void RegisterActorTimerRequest::set_callback(const char* value, size_t size) { +inline void UnsubscribeConfigurationRequest::set_store_name(const char* value, size_t size) { - callback_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) } -inline ::std::string* RegisterActorTimerRequest::mutable_callback() { +inline ::std::string* UnsubscribeConfigurationRequest::mutable_store_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) - return callback_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorTimerRequest::release_callback() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) +inline ::std::string* UnsubscribeConfigurationRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) - return callback_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorTimerRequest::set_allocated_callback(::std::string* callback) { - if (callback != NULL) { +inline void UnsubscribeConfigurationRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { } else { } - callback_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), callback); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.callback) + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) } -// bytes data = 7; -inline void RegisterActorTimerRequest::clear_data() { - data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string id = 2; +inline void UnsubscribeConfigurationRequest::clear_id() { + id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisterActorTimerRequest::data() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) - return data_.GetNoArena(); +inline const ::std::string& UnsubscribeConfigurationRequest::id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) + return id_.GetNoArena(); } -inline void RegisterActorTimerRequest::set_data(const ::std::string& value) { +inline void UnsubscribeConfigurationRequest::set_id(const ::std::string& value) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) } #if LANG_CXX11 -inline void RegisterActorTimerRequest::set_data(::std::string&& value) { +inline void UnsubscribeConfigurationRequest::set_id(::std::string&& value) { - data_.SetNoArena( + id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) } #endif -inline void RegisterActorTimerRequest::set_data(const char* value) { +inline void UnsubscribeConfigurationRequest::set_id(const char* value) { GOOGLE_DCHECK(value != NULL); - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) } -inline void RegisterActorTimerRequest::set_data(const void* value, size_t size) { +inline void UnsubscribeConfigurationRequest::set_id(const char* value, size_t size) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) } -inline ::std::string* RegisterActorTimerRequest::mutable_data() { +inline ::std::string* UnsubscribeConfigurationRequest::mutable_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) - return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) + return id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorTimerRequest::release_data() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) +inline ::std::string* UnsubscribeConfigurationRequest::release_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) - return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorTimerRequest::set_allocated_data(::std::string* data) { - if (data != NULL) { +inline void UnsubscribeConfigurationRequest::set_allocated_id(::std::string* id) { + if (id != NULL) { } else { } - data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.data) + id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) } -// string ttl = 8; -inline void RegisterActorTimerRequest::clear_ttl() { - ttl_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// SubscribeConfigurationResponse + +// string id = 1; +inline void SubscribeConfigurationResponse::clear_id() { + id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisterActorTimerRequest::ttl() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) - return ttl_.GetNoArena(); +inline const ::std::string& SubscribeConfigurationResponse::id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) + return id_.GetNoArena(); } -inline void RegisterActorTimerRequest::set_ttl(const ::std::string& value) { +inline void SubscribeConfigurationResponse::set_id(const ::std::string& value) { - ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) } #if LANG_CXX11 -inline void RegisterActorTimerRequest::set_ttl(::std::string&& value) { +inline void SubscribeConfigurationResponse::set_id(::std::string&& value) { - ttl_.SetNoArena( + id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) } #endif -inline void RegisterActorTimerRequest::set_ttl(const char* value) { +inline void SubscribeConfigurationResponse::set_id(const char* value) { GOOGLE_DCHECK(value != NULL); - ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) } -inline void RegisterActorTimerRequest::set_ttl(const char* value, size_t size) { +inline void SubscribeConfigurationResponse::set_id(const char* value, size_t size) { - ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) } -inline ::std::string* RegisterActorTimerRequest::mutable_ttl() { +inline ::std::string* SubscribeConfigurationResponse::mutable_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) - return ttl_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) + return id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorTimerRequest::release_ttl() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) +inline ::std::string* SubscribeConfigurationResponse::release_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) - return ttl_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorTimerRequest::set_allocated_ttl(::std::string* ttl) { - if (ttl != NULL) { +inline void SubscribeConfigurationResponse::set_allocated_id(::std::string* id) { + if (id != NULL) { } else { } - ttl_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ttl); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorTimerRequest.ttl) + id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) +} + +// map items = 2; +inline int SubscribeConfigurationResponse::items_size() const { + return items_.size(); +} +inline const ::google::protobuf::Map< ::std::string, ::dapr::proto::common::v1::ConfigurationItem >& +SubscribeConfigurationResponse::items() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.SubscribeConfigurationResponse.items) + return items_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::dapr::proto::common::v1::ConfigurationItem >* +SubscribeConfigurationResponse::mutable_items() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.SubscribeConfigurationResponse.items) + return items_.MutableMap(); } // ------------------------------------------------------------------- -// UnregisterActorTimerRequest +// UnsubscribeConfigurationResponse -// string actor_type = 1; -inline void UnregisterActorTimerRequest::clear_actor_type() { - actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bool ok = 1; +inline void UnsubscribeConfigurationResponse::clear_ok() { + ok_ = false; } -inline const ::std::string& UnregisterActorTimerRequest::actor_type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) - return actor_type_.GetNoArena(); +inline bool UnsubscribeConfigurationResponse::ok() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.ok) + return ok_; } -inline void UnregisterActorTimerRequest::set_actor_type(const ::std::string& value) { +inline void UnsubscribeConfigurationResponse::set_ok(bool value) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) + ok_ = value; + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.ok) +} + +// string message = 2; +inline void UnsubscribeConfigurationResponse::clear_message() { + message_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& UnsubscribeConfigurationResponse::message() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) + return message_.GetNoArena(); +} +inline void UnsubscribeConfigurationResponse::set_message(const ::std::string& value) { + + message_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) } #if LANG_CXX11 -inline void UnregisterActorTimerRequest::set_actor_type(::std::string&& value) { +inline void UnsubscribeConfigurationResponse::set_message(::std::string&& value) { - actor_type_.SetNoArena( + message_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) } #endif -inline void UnregisterActorTimerRequest::set_actor_type(const char* value) { +inline void UnsubscribeConfigurationResponse::set_message(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) + message_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) } -inline void UnregisterActorTimerRequest::set_actor_type(const char* value, size_t size) { +inline void UnsubscribeConfigurationResponse::set_message(const char* value, size_t size) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + message_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) } -inline ::std::string* UnregisterActorTimerRequest::mutable_actor_type() { +inline ::std::string* UnsubscribeConfigurationResponse::mutable_message() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) - return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) + return message_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnregisterActorTimerRequest::release_actor_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) +inline ::std::string* UnsubscribeConfigurationResponse::release_message() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) - return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return message_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnregisterActorTimerRequest::set_allocated_actor_type(::std::string* actor_type) { - if (actor_type != NULL) { +inline void UnsubscribeConfigurationResponse::set_allocated_message(::std::string* message) { + if (message != NULL) { } else { } - actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_type) + message_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), message); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) } -// string actor_id = 2; -inline void UnregisterActorTimerRequest::clear_actor_id() { - actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// TryLockRequest + +// string store_name = 1[json_name = "storeName"]; +inline void TryLockRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& UnregisterActorTimerRequest::actor_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) - return actor_id_.GetNoArena(); +inline const ::std::string& TryLockRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TryLockRequest.store_name) + return store_name_.GetNoArena(); } -inline void UnregisterActorTimerRequest::set_actor_id(const ::std::string& value) { +inline void TryLockRequest::set_store_name(const ::std::string& value) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TryLockRequest.store_name) } #if LANG_CXX11 -inline void UnregisterActorTimerRequest::set_actor_id(::std::string&& value) { +inline void TryLockRequest::set_store_name(::std::string&& value) { - actor_id_.SetNoArena( + store_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TryLockRequest.store_name) } #endif -inline void UnregisterActorTimerRequest::set_actor_id(const char* value) { +inline void TryLockRequest::set_store_name(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TryLockRequest.store_name) } -inline void UnregisterActorTimerRequest::set_actor_id(const char* value, size_t size) { +inline void TryLockRequest::set_store_name(const char* value, size_t size) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TryLockRequest.store_name) } -inline ::std::string* UnregisterActorTimerRequest::mutable_actor_id() { +inline ::std::string* TryLockRequest::mutable_store_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) - return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TryLockRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnregisterActorTimerRequest::release_actor_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) +inline ::std::string* TryLockRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TryLockRequest.store_name) - return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnregisterActorTimerRequest::set_allocated_actor_id(::std::string* actor_id) { - if (actor_id != NULL) { +inline void TryLockRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { } else { } - actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorTimerRequest.actor_id) + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TryLockRequest.store_name) } -// string name = 3; -inline void UnregisterActorTimerRequest::clear_name() { - name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string resource_id = 2[json_name = "resourceId"]; +inline void TryLockRequest::clear_resource_id() { + resource_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& UnregisterActorTimerRequest::name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) - return name_.GetNoArena(); +inline const ::std::string& TryLockRequest::resource_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TryLockRequest.resource_id) + return resource_id_.GetNoArena(); } -inline void UnregisterActorTimerRequest::set_name(const ::std::string& value) { +inline void TryLockRequest::set_resource_id(const ::std::string& value) { - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) + resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TryLockRequest.resource_id) } #if LANG_CXX11 -inline void UnregisterActorTimerRequest::set_name(::std::string&& value) { +inline void TryLockRequest::set_resource_id(::std::string&& value) { - name_.SetNoArena( + resource_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TryLockRequest.resource_id) } #endif -inline void UnregisterActorTimerRequest::set_name(const char* value) { +inline void TryLockRequest::set_resource_id(const char* value) { GOOGLE_DCHECK(value != NULL); - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) + resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TryLockRequest.resource_id) } -inline void UnregisterActorTimerRequest::set_name(const char* value, size_t size) { +inline void TryLockRequest::set_resource_id(const char* value, size_t size) { - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TryLockRequest.resource_id) } -inline ::std::string* UnregisterActorTimerRequest::mutable_name() { +inline ::std::string* TryLockRequest::mutable_resource_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) - return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TryLockRequest.resource_id) + return resource_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnregisterActorTimerRequest::release_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) +inline ::std::string* TryLockRequest::release_resource_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TryLockRequest.resource_id) - return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return resource_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnregisterActorTimerRequest::set_allocated_name(::std::string* name) { - if (name != NULL) { +inline void TryLockRequest::set_allocated_resource_id(::std::string* resource_id) { + if (resource_id != NULL) { } else { } - name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorTimerRequest.name) + resource_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), resource_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TryLockRequest.resource_id) } -// ------------------------------------------------------------------- - -// RegisterActorReminderRequest - -// string actor_type = 1; -inline void RegisterActorReminderRequest::clear_actor_type() { - actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string lock_owner = 3[json_name = "lockOwner"]; +inline void TryLockRequest::clear_lock_owner() { + lock_owner_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisterActorReminderRequest::actor_type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) - return actor_type_.GetNoArena(); +inline const ::std::string& TryLockRequest::lock_owner() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TryLockRequest.lock_owner) + return lock_owner_.GetNoArena(); } -inline void RegisterActorReminderRequest::set_actor_type(const ::std::string& value) { +inline void TryLockRequest::set_lock_owner(const ::std::string& value) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) + lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TryLockRequest.lock_owner) } #if LANG_CXX11 -inline void RegisterActorReminderRequest::set_actor_type(::std::string&& value) { +inline void TryLockRequest::set_lock_owner(::std::string&& value) { - actor_type_.SetNoArena( + lock_owner_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TryLockRequest.lock_owner) } #endif -inline void RegisterActorReminderRequest::set_actor_type(const char* value) { +inline void TryLockRequest::set_lock_owner(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) + lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TryLockRequest.lock_owner) } -inline void RegisterActorReminderRequest::set_actor_type(const char* value, size_t size) { +inline void TryLockRequest::set_lock_owner(const char* value, size_t size) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TryLockRequest.lock_owner) } -inline ::std::string* RegisterActorReminderRequest::mutable_actor_type() { +inline ::std::string* TryLockRequest::mutable_lock_owner() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) - return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TryLockRequest.lock_owner) + return lock_owner_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorReminderRequest::release_actor_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) +inline ::std::string* TryLockRequest::release_lock_owner() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TryLockRequest.lock_owner) - return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return lock_owner_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorReminderRequest::set_allocated_actor_type(::std::string* actor_type) { - if (actor_type != NULL) { +inline void TryLockRequest::set_allocated_lock_owner(::std::string* lock_owner) { + if (lock_owner != NULL) { } else { } - actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_type) + lock_owner_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), lock_owner); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TryLockRequest.lock_owner) } -// string actor_id = 2; -inline void RegisterActorReminderRequest::clear_actor_id() { - actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// int32 expiry_in_seconds = 4[json_name = "expiryInSeconds"]; +inline void TryLockRequest::clear_expiry_in_seconds() { + expiry_in_seconds_ = 0; } -inline const ::std::string& RegisterActorReminderRequest::actor_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) - return actor_id_.GetNoArena(); +inline ::google::protobuf::int32 TryLockRequest::expiry_in_seconds() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TryLockRequest.expiry_in_seconds) + return expiry_in_seconds_; } -inline void RegisterActorReminderRequest::set_actor_id(const ::std::string& value) { +inline void TryLockRequest::set_expiry_in_seconds(::google::protobuf::int32 value) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) + expiry_in_seconds_ = value; + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TryLockRequest.expiry_in_seconds) +} + +// ------------------------------------------------------------------- + +// TryLockResponse + +// bool success = 1; +inline void TryLockResponse::clear_success() { + success_ = false; +} +inline bool TryLockResponse::success() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TryLockResponse.success) + return success_; +} +inline void TryLockResponse::set_success(bool value) { + + success_ = value; + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TryLockResponse.success) +} + +// ------------------------------------------------------------------- + +// UnlockRequest + +// string store_name = 1[json_name = "storeName"]; +inline void UnlockRequest::clear_store_name() { + store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& UnlockRequest::store_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnlockRequest.store_name) + return store_name_.GetNoArena(); +} +inline void UnlockRequest::set_store_name(const ::std::string& value) { + + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnlockRequest.store_name) } #if LANG_CXX11 -inline void RegisterActorReminderRequest::set_actor_id(::std::string&& value) { +inline void UnlockRequest::set_store_name(::std::string&& value) { - actor_id_.SetNoArena( + store_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnlockRequest.store_name) } #endif -inline void RegisterActorReminderRequest::set_actor_id(const char* value) { +inline void UnlockRequest::set_store_name(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnlockRequest.store_name) } -inline void RegisterActorReminderRequest::set_actor_id(const char* value, size_t size) { +inline void UnlockRequest::set_store_name(const char* value, size_t size) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnlockRequest.store_name) } -inline ::std::string* RegisterActorReminderRequest::mutable_actor_id() { +inline ::std::string* UnlockRequest::mutable_store_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) - return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnlockRequest.store_name) + return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorReminderRequest::release_actor_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) +inline ::std::string* UnlockRequest::release_store_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnlockRequest.store_name) - return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorReminderRequest::set_allocated_actor_id(::std::string* actor_id) { - if (actor_id != NULL) { +inline void UnlockRequest::set_allocated_store_name(::std::string* store_name) { + if (store_name != NULL) { } else { } - actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.actor_id) + store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnlockRequest.store_name) } -// string name = 3; -inline void RegisterActorReminderRequest::clear_name() { - name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string resource_id = 2[json_name = "resourceId"]; +inline void UnlockRequest::clear_resource_id() { + resource_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisterActorReminderRequest::name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) - return name_.GetNoArena(); +inline const ::std::string& UnlockRequest::resource_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnlockRequest.resource_id) + return resource_id_.GetNoArena(); } -inline void RegisterActorReminderRequest::set_name(const ::std::string& value) { +inline void UnlockRequest::set_resource_id(const ::std::string& value) { - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) + resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnlockRequest.resource_id) } #if LANG_CXX11 -inline void RegisterActorReminderRequest::set_name(::std::string&& value) { +inline void UnlockRequest::set_resource_id(::std::string&& value) { - name_.SetNoArena( + resource_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnlockRequest.resource_id) } #endif -inline void RegisterActorReminderRequest::set_name(const char* value) { +inline void UnlockRequest::set_resource_id(const char* value) { GOOGLE_DCHECK(value != NULL); - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) + resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnlockRequest.resource_id) } -inline void RegisterActorReminderRequest::set_name(const char* value, size_t size) { +inline void UnlockRequest::set_resource_id(const char* value, size_t size) { - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnlockRequest.resource_id) } -inline ::std::string* RegisterActorReminderRequest::mutable_name() { - - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) - return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +inline ::std::string* UnlockRequest::mutable_resource_id() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnlockRequest.resource_id) + return resource_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorReminderRequest::release_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) +inline ::std::string* UnlockRequest::release_resource_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnlockRequest.resource_id) - return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return resource_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorReminderRequest::set_allocated_name(::std::string* name) { - if (name != NULL) { +inline void UnlockRequest::set_allocated_resource_id(::std::string* resource_id) { + if (resource_id != NULL) { } else { } - name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.name) + resource_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), resource_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnlockRequest.resource_id) } -// string due_time = 4; -inline void RegisterActorReminderRequest::clear_due_time() { - due_time_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string lock_owner = 3[json_name = "lockOwner"]; +inline void UnlockRequest::clear_lock_owner() { + lock_owner_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisterActorReminderRequest::due_time() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) - return due_time_.GetNoArena(); +inline const ::std::string& UnlockRequest::lock_owner() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnlockRequest.lock_owner) + return lock_owner_.GetNoArena(); } -inline void RegisterActorReminderRequest::set_due_time(const ::std::string& value) { +inline void UnlockRequest::set_lock_owner(const ::std::string& value) { - due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) + lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnlockRequest.lock_owner) } #if LANG_CXX11 -inline void RegisterActorReminderRequest::set_due_time(::std::string&& value) { +inline void UnlockRequest::set_lock_owner(::std::string&& value) { - due_time_.SetNoArena( + lock_owner_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnlockRequest.lock_owner) } #endif -inline void RegisterActorReminderRequest::set_due_time(const char* value) { +inline void UnlockRequest::set_lock_owner(const char* value) { GOOGLE_DCHECK(value != NULL); - due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) + lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnlockRequest.lock_owner) } -inline void RegisterActorReminderRequest::set_due_time(const char* value, size_t size) { +inline void UnlockRequest::set_lock_owner(const char* value, size_t size) { - due_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnlockRequest.lock_owner) } -inline ::std::string* RegisterActorReminderRequest::mutable_due_time() { +inline ::std::string* UnlockRequest::mutable_lock_owner() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) - return due_time_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnlockRequest.lock_owner) + return lock_owner_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorReminderRequest::release_due_time() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) +inline ::std::string* UnlockRequest::release_lock_owner() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnlockRequest.lock_owner) - return due_time_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return lock_owner_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorReminderRequest::set_allocated_due_time(::std::string* due_time) { - if (due_time != NULL) { +inline void UnlockRequest::set_allocated_lock_owner(::std::string* lock_owner) { + if (lock_owner != NULL) { } else { } - due_time_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), due_time); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.due_time) + lock_owner_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), lock_owner); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnlockRequest.lock_owner) } -// string period = 5; -inline void RegisterActorReminderRequest::clear_period() { - period_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// UnlockResponse + +// .dapr.proto.runtime.v1.UnlockResponse.Status status = 1; +inline void UnlockResponse::clear_status() { + status_ = 0; } -inline const ::std::string& RegisterActorReminderRequest::period() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) - return period_.GetNoArena(); +inline ::dapr::proto::runtime::v1::UnlockResponse_Status UnlockResponse::status() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnlockResponse.status) + return static_cast< ::dapr::proto::runtime::v1::UnlockResponse_Status >(status_); } -inline void RegisterActorReminderRequest::set_period(const ::std::string& value) { +inline void UnlockResponse::set_status(::dapr::proto::runtime::v1::UnlockResponse_Status value) { - period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) + status_ = value; + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnlockResponse.status) +} + +// ------------------------------------------------------------------- + +// SubtleGetKeyRequest + +// string component_name = 1[json_name = "componentName"]; +inline void SubtleGetKeyRequest::clear_component_name() { + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& SubtleGetKeyRequest::component_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleGetKeyRequest.component_name) + return component_name_.GetNoArena(); +} +inline void SubtleGetKeyRequest::set_component_name(const ::std::string& value) { + + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleGetKeyRequest.component_name) } #if LANG_CXX11 -inline void RegisterActorReminderRequest::set_period(::std::string&& value) { +inline void SubtleGetKeyRequest::set_component_name(::std::string&& value) { - period_.SetNoArena( + component_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleGetKeyRequest.component_name) } #endif -inline void RegisterActorReminderRequest::set_period(const char* value) { +inline void SubtleGetKeyRequest::set_component_name(const char* value) { GOOGLE_DCHECK(value != NULL); - period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleGetKeyRequest.component_name) } -inline void RegisterActorReminderRequest::set_period(const char* value, size_t size) { +inline void SubtleGetKeyRequest::set_component_name(const char* value, size_t size) { - period_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleGetKeyRequest.component_name) } -inline ::std::string* RegisterActorReminderRequest::mutable_period() { +inline ::std::string* SubtleGetKeyRequest::mutable_component_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) - return period_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleGetKeyRequest.component_name) + return component_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorReminderRequest::release_period() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) +inline ::std::string* SubtleGetKeyRequest::release_component_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleGetKeyRequest.component_name) - return period_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return component_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorReminderRequest::set_allocated_period(::std::string* period) { - if (period != NULL) { +inline void SubtleGetKeyRequest::set_allocated_component_name(::std::string* component_name) { + if (component_name != NULL) { } else { } - period_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), period); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.period) + component_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), component_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleGetKeyRequest.component_name) } -// bytes data = 6; -inline void RegisterActorReminderRequest::clear_data() { - data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string name = 2; +inline void SubtleGetKeyRequest::clear_name() { + name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisterActorReminderRequest::data() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) - return data_.GetNoArena(); +inline const ::std::string& SubtleGetKeyRequest::name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleGetKeyRequest.name) + return name_.GetNoArena(); } -inline void RegisterActorReminderRequest::set_data(const ::std::string& value) { +inline void SubtleGetKeyRequest::set_name(const ::std::string& value) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleGetKeyRequest.name) } #if LANG_CXX11 -inline void RegisterActorReminderRequest::set_data(::std::string&& value) { +inline void SubtleGetKeyRequest::set_name(::std::string&& value) { - data_.SetNoArena( + name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleGetKeyRequest.name) } #endif -inline void RegisterActorReminderRequest::set_data(const char* value) { +inline void SubtleGetKeyRequest::set_name(const char* value) { GOOGLE_DCHECK(value != NULL); - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleGetKeyRequest.name) } -inline void RegisterActorReminderRequest::set_data(const void* value, size_t size) { +inline void SubtleGetKeyRequest::set_name(const char* value, size_t size) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleGetKeyRequest.name) } -inline ::std::string* RegisterActorReminderRequest::mutable_data() { +inline ::std::string* SubtleGetKeyRequest::mutable_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) - return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleGetKeyRequest.name) + return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorReminderRequest::release_data() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) +inline ::std::string* SubtleGetKeyRequest::release_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleGetKeyRequest.name) - return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorReminderRequest::set_allocated_data(::std::string* data) { - if (data != NULL) { +inline void SubtleGetKeyRequest::set_allocated_name(::std::string* name) { + if (name != NULL) { } else { } - data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.data) + name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleGetKeyRequest.name) } -// string ttl = 7; -inline void RegisterActorReminderRequest::clear_ttl() { - ttl_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// .dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat format = 3; +inline void SubtleGetKeyRequest::clear_format() { + format_ = 0; } -inline const ::std::string& RegisterActorReminderRequest::ttl() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) - return ttl_.GetNoArena(); +inline ::dapr::proto::runtime::v1::SubtleGetKeyRequest_KeyFormat SubtleGetKeyRequest::format() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleGetKeyRequest.format) + return static_cast< ::dapr::proto::runtime::v1::SubtleGetKeyRequest_KeyFormat >(format_); } -inline void RegisterActorReminderRequest::set_ttl(const ::std::string& value) { +inline void SubtleGetKeyRequest::set_format(::dapr::proto::runtime::v1::SubtleGetKeyRequest_KeyFormat value) { - ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) + format_ = value; + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleGetKeyRequest.format) +} + +// ------------------------------------------------------------------- + +// SubtleGetKeyResponse + +// string name = 1; +inline void SubtleGetKeyResponse::clear_name() { + name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& SubtleGetKeyResponse::name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleGetKeyResponse.name) + return name_.GetNoArena(); +} +inline void SubtleGetKeyResponse::set_name(const ::std::string& value) { + + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleGetKeyResponse.name) } #if LANG_CXX11 -inline void RegisterActorReminderRequest::set_ttl(::std::string&& value) { +inline void SubtleGetKeyResponse::set_name(::std::string&& value) { - ttl_.SetNoArena( + name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleGetKeyResponse.name) } #endif -inline void RegisterActorReminderRequest::set_ttl(const char* value) { +inline void SubtleGetKeyResponse::set_name(const char* value) { GOOGLE_DCHECK(value != NULL); - ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleGetKeyResponse.name) } -inline void RegisterActorReminderRequest::set_ttl(const char* value, size_t size) { +inline void SubtleGetKeyResponse::set_name(const char* value, size_t size) { - ttl_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleGetKeyResponse.name) } -inline ::std::string* RegisterActorReminderRequest::mutable_ttl() { +inline ::std::string* SubtleGetKeyResponse::mutable_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) - return ttl_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleGetKeyResponse.name) + return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisterActorReminderRequest::release_ttl() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) +inline ::std::string* SubtleGetKeyResponse::release_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleGetKeyResponse.name) - return ttl_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisterActorReminderRequest::set_allocated_ttl(::std::string* ttl) { - if (ttl != NULL) { +inline void SubtleGetKeyResponse::set_allocated_name(::std::string* name) { + if (name != NULL) { } else { } - ttl_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ttl); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisterActorReminderRequest.ttl) + name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleGetKeyResponse.name) } -// ------------------------------------------------------------------- - -// UnregisterActorReminderRequest - -// string actor_type = 1; -inline void UnregisterActorReminderRequest::clear_actor_type() { - actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string public_key = 2[json_name = "publicKey"]; +inline void SubtleGetKeyResponse::clear_public_key() { + public_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& UnregisterActorReminderRequest::actor_type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) - return actor_type_.GetNoArena(); +inline const ::std::string& SubtleGetKeyResponse::public_key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleGetKeyResponse.public_key) + return public_key_.GetNoArena(); } -inline void UnregisterActorReminderRequest::set_actor_type(const ::std::string& value) { +inline void SubtleGetKeyResponse::set_public_key(const ::std::string& value) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) + public_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleGetKeyResponse.public_key) } #if LANG_CXX11 -inline void UnregisterActorReminderRequest::set_actor_type(::std::string&& value) { +inline void SubtleGetKeyResponse::set_public_key(::std::string&& value) { - actor_type_.SetNoArena( + public_key_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleGetKeyResponse.public_key) } #endif -inline void UnregisterActorReminderRequest::set_actor_type(const char* value) { +inline void SubtleGetKeyResponse::set_public_key(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) + public_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleGetKeyResponse.public_key) } -inline void UnregisterActorReminderRequest::set_actor_type(const char* value, size_t size) { +inline void SubtleGetKeyResponse::set_public_key(const char* value, size_t size) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + public_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleGetKeyResponse.public_key) } -inline ::std::string* UnregisterActorReminderRequest::mutable_actor_type() { +inline ::std::string* SubtleGetKeyResponse::mutable_public_key() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) - return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleGetKeyResponse.public_key) + return public_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnregisterActorReminderRequest::release_actor_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) +inline ::std::string* SubtleGetKeyResponse::release_public_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleGetKeyResponse.public_key) - return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return public_key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnregisterActorReminderRequest::set_allocated_actor_type(::std::string* actor_type) { - if (actor_type != NULL) { +inline void SubtleGetKeyResponse::set_allocated_public_key(::std::string* public_key) { + if (public_key != NULL) { } else { } - actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_type) + public_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), public_key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleGetKeyResponse.public_key) } -// string actor_id = 2; -inline void UnregisterActorReminderRequest::clear_actor_id() { - actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// SubtleEncryptRequest + +// string component_name = 1[json_name = "componentName"]; +inline void SubtleEncryptRequest::clear_component_name() { + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& UnregisterActorReminderRequest::actor_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) - return actor_id_.GetNoArena(); +inline const ::std::string& SubtleEncryptRequest::component_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleEncryptRequest.component_name) + return component_name_.GetNoArena(); } -inline void UnregisterActorReminderRequest::set_actor_id(const ::std::string& value) { +inline void SubtleEncryptRequest::set_component_name(const ::std::string& value) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleEncryptRequest.component_name) } #if LANG_CXX11 -inline void UnregisterActorReminderRequest::set_actor_id(::std::string&& value) { +inline void SubtleEncryptRequest::set_component_name(::std::string&& value) { - actor_id_.SetNoArena( + component_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleEncryptRequest.component_name) } #endif -inline void UnregisterActorReminderRequest::set_actor_id(const char* value) { +inline void SubtleEncryptRequest::set_component_name(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleEncryptRequest.component_name) } -inline void UnregisterActorReminderRequest::set_actor_id(const char* value, size_t size) { +inline void SubtleEncryptRequest::set_component_name(const char* value, size_t size) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleEncryptRequest.component_name) } -inline ::std::string* UnregisterActorReminderRequest::mutable_actor_id() { +inline ::std::string* SubtleEncryptRequest::mutable_component_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) - return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleEncryptRequest.component_name) + return component_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnregisterActorReminderRequest::release_actor_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) +inline ::std::string* SubtleEncryptRequest::release_component_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleEncryptRequest.component_name) - return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return component_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnregisterActorReminderRequest::set_allocated_actor_id(::std::string* actor_id) { - if (actor_id != NULL) { +inline void SubtleEncryptRequest::set_allocated_component_name(::std::string* component_name) { + if (component_name != NULL) { } else { } - actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorReminderRequest.actor_id) + component_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), component_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleEncryptRequest.component_name) } -// string name = 3; -inline void UnregisterActorReminderRequest::clear_name() { - name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes plaintext = 2; +inline void SubtleEncryptRequest::clear_plaintext() { + plaintext_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& UnregisterActorReminderRequest::name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) - return name_.GetNoArena(); +inline const ::std::string& SubtleEncryptRequest::plaintext() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleEncryptRequest.plaintext) + return plaintext_.GetNoArena(); } -inline void UnregisterActorReminderRequest::set_name(const ::std::string& value) { +inline void SubtleEncryptRequest::set_plaintext(const ::std::string& value) { - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) + plaintext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleEncryptRequest.plaintext) } #if LANG_CXX11 -inline void UnregisterActorReminderRequest::set_name(::std::string&& value) { +inline void SubtleEncryptRequest::set_plaintext(::std::string&& value) { - name_.SetNoArena( + plaintext_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleEncryptRequest.plaintext) } #endif -inline void UnregisterActorReminderRequest::set_name(const char* value) { +inline void SubtleEncryptRequest::set_plaintext(const char* value) { GOOGLE_DCHECK(value != NULL); - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) + plaintext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleEncryptRequest.plaintext) } -inline void UnregisterActorReminderRequest::set_name(const char* value, size_t size) { +inline void SubtleEncryptRequest::set_plaintext(const void* value, size_t size) { - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + plaintext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleEncryptRequest.plaintext) } -inline ::std::string* UnregisterActorReminderRequest::mutable_name() { +inline ::std::string* SubtleEncryptRequest::mutable_plaintext() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) - return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleEncryptRequest.plaintext) + return plaintext_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnregisterActorReminderRequest::release_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) +inline ::std::string* SubtleEncryptRequest::release_plaintext() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleEncryptRequest.plaintext) - return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return plaintext_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnregisterActorReminderRequest::set_allocated_name(::std::string* name) { - if (name != NULL) { +inline void SubtleEncryptRequest::set_allocated_plaintext(::std::string* plaintext) { + if (plaintext != NULL) { } else { } - name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnregisterActorReminderRequest.name) + plaintext_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), plaintext); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleEncryptRequest.plaintext) } -// ------------------------------------------------------------------- - -// RenameActorReminderRequest - -// string actor_type = 1; -inline void RenameActorReminderRequest::clear_actor_type() { - actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string algorithm = 3; +inline void SubtleEncryptRequest::clear_algorithm() { + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RenameActorReminderRequest::actor_type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) - return actor_type_.GetNoArena(); +inline const ::std::string& SubtleEncryptRequest::algorithm() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleEncryptRequest.algorithm) + return algorithm_.GetNoArena(); } -inline void RenameActorReminderRequest::set_actor_type(const ::std::string& value) { +inline void SubtleEncryptRequest::set_algorithm(const ::std::string& value) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleEncryptRequest.algorithm) } #if LANG_CXX11 -inline void RenameActorReminderRequest::set_actor_type(::std::string&& value) { +inline void SubtleEncryptRequest::set_algorithm(::std::string&& value) { - actor_type_.SetNoArena( + algorithm_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleEncryptRequest.algorithm) } #endif -inline void RenameActorReminderRequest::set_actor_type(const char* value) { +inline void SubtleEncryptRequest::set_algorithm(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleEncryptRequest.algorithm) } -inline void RenameActorReminderRequest::set_actor_type(const char* value, size_t size) { +inline void SubtleEncryptRequest::set_algorithm(const char* value, size_t size) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleEncryptRequest.algorithm) } -inline ::std::string* RenameActorReminderRequest::mutable_actor_type() { +inline ::std::string* SubtleEncryptRequest::mutable_algorithm() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) - return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleEncryptRequest.algorithm) + return algorithm_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RenameActorReminderRequest::release_actor_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) +inline ::std::string* SubtleEncryptRequest::release_algorithm() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleEncryptRequest.algorithm) - return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return algorithm_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RenameActorReminderRequest::set_allocated_actor_type(::std::string* actor_type) { - if (actor_type != NULL) { +inline void SubtleEncryptRequest::set_allocated_algorithm(::std::string* algorithm) { + if (algorithm != NULL) { } else { } - actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_type) + algorithm_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), algorithm); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleEncryptRequest.algorithm) } -// string actor_id = 2; -inline void RenameActorReminderRequest::clear_actor_id() { - actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string key_name = 4[json_name = "keyName"]; +inline void SubtleEncryptRequest::clear_key_name() { + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RenameActorReminderRequest::actor_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) - return actor_id_.GetNoArena(); +inline const ::std::string& SubtleEncryptRequest::key_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleEncryptRequest.key_name) + return key_name_.GetNoArena(); } -inline void RenameActorReminderRequest::set_actor_id(const ::std::string& value) { +inline void SubtleEncryptRequest::set_key_name(const ::std::string& value) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleEncryptRequest.key_name) } #if LANG_CXX11 -inline void RenameActorReminderRequest::set_actor_id(::std::string&& value) { +inline void SubtleEncryptRequest::set_key_name(::std::string&& value) { - actor_id_.SetNoArena( + key_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleEncryptRequest.key_name) } #endif -inline void RenameActorReminderRequest::set_actor_id(const char* value) { +inline void SubtleEncryptRequest::set_key_name(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleEncryptRequest.key_name) } -inline void RenameActorReminderRequest::set_actor_id(const char* value, size_t size) { +inline void SubtleEncryptRequest::set_key_name(const char* value, size_t size) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleEncryptRequest.key_name) } -inline ::std::string* RenameActorReminderRequest::mutable_actor_id() { +inline ::std::string* SubtleEncryptRequest::mutable_key_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) - return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleEncryptRequest.key_name) + return key_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RenameActorReminderRequest::release_actor_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) +inline ::std::string* SubtleEncryptRequest::release_key_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleEncryptRequest.key_name) - return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return key_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RenameActorReminderRequest::set_allocated_actor_id(::std::string* actor_id) { - if (actor_id != NULL) { +inline void SubtleEncryptRequest::set_allocated_key_name(::std::string* key_name) { + if (key_name != NULL) { } else { } - actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RenameActorReminderRequest.actor_id) + key_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleEncryptRequest.key_name) } -// string old_name = 3; -inline void RenameActorReminderRequest::clear_old_name() { - old_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes nonce = 5; +inline void SubtleEncryptRequest::clear_nonce() { + nonce_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RenameActorReminderRequest::old_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) - return old_name_.GetNoArena(); +inline const ::std::string& SubtleEncryptRequest::nonce() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleEncryptRequest.nonce) + return nonce_.GetNoArena(); } -inline void RenameActorReminderRequest::set_old_name(const ::std::string& value) { +inline void SubtleEncryptRequest::set_nonce(const ::std::string& value) { - old_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleEncryptRequest.nonce) } #if LANG_CXX11 -inline void RenameActorReminderRequest::set_old_name(::std::string&& value) { +inline void SubtleEncryptRequest::set_nonce(::std::string&& value) { - old_name_.SetNoArena( + nonce_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleEncryptRequest.nonce) } #endif -inline void RenameActorReminderRequest::set_old_name(const char* value) { +inline void SubtleEncryptRequest::set_nonce(const char* value) { GOOGLE_DCHECK(value != NULL); - old_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleEncryptRequest.nonce) } -inline void RenameActorReminderRequest::set_old_name(const char* value, size_t size) { +inline void SubtleEncryptRequest::set_nonce(const void* value, size_t size) { - old_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleEncryptRequest.nonce) } -inline ::std::string* RenameActorReminderRequest::mutable_old_name() { +inline ::std::string* SubtleEncryptRequest::mutable_nonce() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) - return old_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleEncryptRequest.nonce) + return nonce_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RenameActorReminderRequest::release_old_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) +inline ::std::string* SubtleEncryptRequest::release_nonce() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleEncryptRequest.nonce) - return old_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return nonce_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RenameActorReminderRequest::set_allocated_old_name(::std::string* old_name) { - if (old_name != NULL) { +inline void SubtleEncryptRequest::set_allocated_nonce(::std::string* nonce) { + if (nonce != NULL) { } else { } - old_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), old_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RenameActorReminderRequest.old_name) + nonce_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), nonce); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleEncryptRequest.nonce) } -// string new_name = 4; -inline void RenameActorReminderRequest::clear_new_name() { - new_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes associated_data = 6[json_name = "associatedData"]; +inline void SubtleEncryptRequest::clear_associated_data() { + associated_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RenameActorReminderRequest::new_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) - return new_name_.GetNoArena(); +inline const ::std::string& SubtleEncryptRequest::associated_data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleEncryptRequest.associated_data) + return associated_data_.GetNoArena(); } -inline void RenameActorReminderRequest::set_new_name(const ::std::string& value) { +inline void SubtleEncryptRequest::set_associated_data(const ::std::string& value) { - new_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleEncryptRequest.associated_data) } #if LANG_CXX11 -inline void RenameActorReminderRequest::set_new_name(::std::string&& value) { +inline void SubtleEncryptRequest::set_associated_data(::std::string&& value) { - new_name_.SetNoArena( + associated_data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleEncryptRequest.associated_data) } #endif -inline void RenameActorReminderRequest::set_new_name(const char* value) { +inline void SubtleEncryptRequest::set_associated_data(const char* value) { GOOGLE_DCHECK(value != NULL); - new_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleEncryptRequest.associated_data) } -inline void RenameActorReminderRequest::set_new_name(const char* value, size_t size) { +inline void SubtleEncryptRequest::set_associated_data(const void* value, size_t size) { - new_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleEncryptRequest.associated_data) } -inline ::std::string* RenameActorReminderRequest::mutable_new_name() { +inline ::std::string* SubtleEncryptRequest::mutable_associated_data() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) - return new_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleEncryptRequest.associated_data) + return associated_data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RenameActorReminderRequest::release_new_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) +inline ::std::string* SubtleEncryptRequest::release_associated_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleEncryptRequest.associated_data) - return new_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return associated_data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RenameActorReminderRequest::set_allocated_new_name(::std::string* new_name) { - if (new_name != NULL) { +inline void SubtleEncryptRequest::set_allocated_associated_data(::std::string* associated_data) { + if (associated_data != NULL) { } else { } - new_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), new_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RenameActorReminderRequest.new_name) + associated_data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), associated_data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleEncryptRequest.associated_data) } // ------------------------------------------------------------------- -// GetActorStateRequest +// SubtleEncryptResponse -// string actor_type = 1; -inline void GetActorStateRequest::clear_actor_type() { - actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes ciphertext = 1; +inline void SubtleEncryptResponse::clear_ciphertext() { + ciphertext_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetActorStateRequest::actor_type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) - return actor_type_.GetNoArena(); +inline const ::std::string& SubtleEncryptResponse::ciphertext() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleEncryptResponse.ciphertext) + return ciphertext_.GetNoArena(); } -inline void GetActorStateRequest::set_actor_type(const ::std::string& value) { +inline void SubtleEncryptResponse::set_ciphertext(const ::std::string& value) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) + ciphertext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleEncryptResponse.ciphertext) } #if LANG_CXX11 -inline void GetActorStateRequest::set_actor_type(::std::string&& value) { +inline void SubtleEncryptResponse::set_ciphertext(::std::string&& value) { - actor_type_.SetNoArena( + ciphertext_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleEncryptResponse.ciphertext) } #endif -inline void GetActorStateRequest::set_actor_type(const char* value) { +inline void SubtleEncryptResponse::set_ciphertext(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) + ciphertext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleEncryptResponse.ciphertext) } -inline void GetActorStateRequest::set_actor_type(const char* value, size_t size) { +inline void SubtleEncryptResponse::set_ciphertext(const void* value, size_t size) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ciphertext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleEncryptResponse.ciphertext) } -inline ::std::string* GetActorStateRequest::mutable_actor_type() { +inline ::std::string* SubtleEncryptResponse::mutable_ciphertext() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) - return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleEncryptResponse.ciphertext) + return ciphertext_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetActorStateRequest::release_actor_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) +inline ::std::string* SubtleEncryptResponse::release_ciphertext() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleEncryptResponse.ciphertext) - return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return ciphertext_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetActorStateRequest::set_allocated_actor_type(::std::string* actor_type) { - if (actor_type != NULL) { +inline void SubtleEncryptResponse::set_allocated_ciphertext(::std::string* ciphertext) { + if (ciphertext != NULL) { } else { } - actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetActorStateRequest.actor_type) + ciphertext_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ciphertext); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleEncryptResponse.ciphertext) } -// string actor_id = 2; -inline void GetActorStateRequest::clear_actor_id() { - actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes tag = 2; +inline void SubtleEncryptResponse::clear_tag() { + tag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetActorStateRequest::actor_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) - return actor_id_.GetNoArena(); +inline const ::std::string& SubtleEncryptResponse::tag() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleEncryptResponse.tag) + return tag_.GetNoArena(); } -inline void GetActorStateRequest::set_actor_id(const ::std::string& value) { +inline void SubtleEncryptResponse::set_tag(const ::std::string& value) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleEncryptResponse.tag) } #if LANG_CXX11 -inline void GetActorStateRequest::set_actor_id(::std::string&& value) { +inline void SubtleEncryptResponse::set_tag(::std::string&& value) { - actor_id_.SetNoArena( + tag_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleEncryptResponse.tag) } #endif -inline void GetActorStateRequest::set_actor_id(const char* value) { +inline void SubtleEncryptResponse::set_tag(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleEncryptResponse.tag) } -inline void GetActorStateRequest::set_actor_id(const char* value, size_t size) { +inline void SubtleEncryptResponse::set_tag(const void* value, size_t size) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleEncryptResponse.tag) } -inline ::std::string* GetActorStateRequest::mutable_actor_id() { +inline ::std::string* SubtleEncryptResponse::mutable_tag() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) - return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleEncryptResponse.tag) + return tag_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetActorStateRequest::release_actor_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) +inline ::std::string* SubtleEncryptResponse::release_tag() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleEncryptResponse.tag) - return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return tag_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetActorStateRequest::set_allocated_actor_id(::std::string* actor_id) { - if (actor_id != NULL) { +inline void SubtleEncryptResponse::set_allocated_tag(::std::string* tag) { + if (tag != NULL) { } else { } - actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetActorStateRequest.actor_id) + tag_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), tag); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleEncryptResponse.tag) } -// string key = 3; -inline void GetActorStateRequest::clear_key() { - key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// SubtleDecryptRequest + +// string component_name = 1[json_name = "componentName"]; +inline void SubtleDecryptRequest::clear_component_name() { + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetActorStateRequest::key() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetActorStateRequest.key) - return key_.GetNoArena(); +inline const ::std::string& SubtleDecryptRequest::component_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleDecryptRequest.component_name) + return component_name_.GetNoArena(); } -inline void GetActorStateRequest::set_key(const ::std::string& value) { +inline void SubtleDecryptRequest::set_component_name(const ::std::string& value) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetActorStateRequest.key) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleDecryptRequest.component_name) } #if LANG_CXX11 -inline void GetActorStateRequest::set_key(::std::string&& value) { +inline void SubtleDecryptRequest::set_component_name(::std::string&& value) { - key_.SetNoArena( + component_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetActorStateRequest.key) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleDecryptRequest.component_name) } #endif -inline void GetActorStateRequest::set_key(const char* value) { +inline void SubtleDecryptRequest::set_component_name(const char* value) { GOOGLE_DCHECK(value != NULL); - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetActorStateRequest.key) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleDecryptRequest.component_name) } -inline void GetActorStateRequest::set_key(const char* value, size_t size) { +inline void SubtleDecryptRequest::set_component_name(const char* value, size_t size) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetActorStateRequest.key) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleDecryptRequest.component_name) } -inline ::std::string* GetActorStateRequest::mutable_key() { +inline ::std::string* SubtleDecryptRequest::mutable_component_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetActorStateRequest.key) - return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleDecryptRequest.component_name) + return component_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetActorStateRequest::release_key() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetActorStateRequest.key) +inline ::std::string* SubtleDecryptRequest::release_component_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleDecryptRequest.component_name) - return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return component_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetActorStateRequest::set_allocated_key(::std::string* key) { - if (key != NULL) { +inline void SubtleDecryptRequest::set_allocated_component_name(::std::string* component_name) { + if (component_name != NULL) { } else { } - key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetActorStateRequest.key) + component_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), component_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleDecryptRequest.component_name) } -// ------------------------------------------------------------------- - -// GetActorStateResponse - -// bytes data = 1; -inline void GetActorStateResponse::clear_data() { - data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline const ::std::string& GetActorStateResponse::data() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetActorStateResponse.data) - return data_.GetNoArena(); +// bytes ciphertext = 2; +inline void SubtleDecryptRequest::clear_ciphertext() { + ciphertext_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetActorStateResponse::set_data(const ::std::string& value) { +inline const ::std::string& SubtleDecryptRequest::ciphertext() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleDecryptRequest.ciphertext) + return ciphertext_.GetNoArena(); +} +inline void SubtleDecryptRequest::set_ciphertext(const ::std::string& value) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetActorStateResponse.data) + ciphertext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleDecryptRequest.ciphertext) } #if LANG_CXX11 -inline void GetActorStateResponse::set_data(::std::string&& value) { +inline void SubtleDecryptRequest::set_ciphertext(::std::string&& value) { - data_.SetNoArena( + ciphertext_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetActorStateResponse.data) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleDecryptRequest.ciphertext) } #endif -inline void GetActorStateResponse::set_data(const char* value) { +inline void SubtleDecryptRequest::set_ciphertext(const char* value) { GOOGLE_DCHECK(value != NULL); - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetActorStateResponse.data) + ciphertext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleDecryptRequest.ciphertext) } -inline void GetActorStateResponse::set_data(const void* value, size_t size) { +inline void SubtleDecryptRequest::set_ciphertext(const void* value, size_t size) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ciphertext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetActorStateResponse.data) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleDecryptRequest.ciphertext) } -inline ::std::string* GetActorStateResponse::mutable_data() { +inline ::std::string* SubtleDecryptRequest::mutable_ciphertext() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetActorStateResponse.data) - return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleDecryptRequest.ciphertext) + return ciphertext_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetActorStateResponse::release_data() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetActorStateResponse.data) +inline ::std::string* SubtleDecryptRequest::release_ciphertext() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleDecryptRequest.ciphertext) - return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return ciphertext_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetActorStateResponse::set_allocated_data(::std::string* data) { - if (data != NULL) { +inline void SubtleDecryptRequest::set_allocated_ciphertext(::std::string* ciphertext) { + if (ciphertext != NULL) { } else { } - data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetActorStateResponse.data) + ciphertext_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ciphertext); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleDecryptRequest.ciphertext) } -// ------------------------------------------------------------------- - -// ExecuteActorStateTransactionRequest - -// string actor_type = 1; -inline void ExecuteActorStateTransactionRequest::clear_actor_type() { - actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string algorithm = 3; +inline void SubtleDecryptRequest::clear_algorithm() { + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& ExecuteActorStateTransactionRequest::actor_type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) - return actor_type_.GetNoArena(); +inline const ::std::string& SubtleDecryptRequest::algorithm() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleDecryptRequest.algorithm) + return algorithm_.GetNoArena(); } -inline void ExecuteActorStateTransactionRequest::set_actor_type(const ::std::string& value) { +inline void SubtleDecryptRequest::set_algorithm(const ::std::string& value) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleDecryptRequest.algorithm) } #if LANG_CXX11 -inline void ExecuteActorStateTransactionRequest::set_actor_type(::std::string&& value) { +inline void SubtleDecryptRequest::set_algorithm(::std::string&& value) { - actor_type_.SetNoArena( + algorithm_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleDecryptRequest.algorithm) } #endif -inline void ExecuteActorStateTransactionRequest::set_actor_type(const char* value) { +inline void SubtleDecryptRequest::set_algorithm(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleDecryptRequest.algorithm) } -inline void ExecuteActorStateTransactionRequest::set_actor_type(const char* value, size_t size) { +inline void SubtleDecryptRequest::set_algorithm(const char* value, size_t size) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleDecryptRequest.algorithm) } -inline ::std::string* ExecuteActorStateTransactionRequest::mutable_actor_type() { +inline ::std::string* SubtleDecryptRequest::mutable_algorithm() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) - return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleDecryptRequest.algorithm) + return algorithm_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* ExecuteActorStateTransactionRequest::release_actor_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) +inline ::std::string* SubtleDecryptRequest::release_algorithm() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleDecryptRequest.algorithm) - return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return algorithm_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void ExecuteActorStateTransactionRequest::set_allocated_actor_type(::std::string* actor_type) { - if (actor_type != NULL) { +inline void SubtleDecryptRequest::set_allocated_algorithm(::std::string* algorithm) { + if (algorithm != NULL) { } else { } - actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_type) + algorithm_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), algorithm); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleDecryptRequest.algorithm) } -// string actor_id = 2; -inline void ExecuteActorStateTransactionRequest::clear_actor_id() { - actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string key_name = 4[json_name = "keyName"]; +inline void SubtleDecryptRequest::clear_key_name() { + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& ExecuteActorStateTransactionRequest::actor_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) - return actor_id_.GetNoArena(); +inline const ::std::string& SubtleDecryptRequest::key_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleDecryptRequest.key_name) + return key_name_.GetNoArena(); } -inline void ExecuteActorStateTransactionRequest::set_actor_id(const ::std::string& value) { +inline void SubtleDecryptRequest::set_key_name(const ::std::string& value) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleDecryptRequest.key_name) } #if LANG_CXX11 -inline void ExecuteActorStateTransactionRequest::set_actor_id(::std::string&& value) { +inline void SubtleDecryptRequest::set_key_name(::std::string&& value) { - actor_id_.SetNoArena( + key_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleDecryptRequest.key_name) } #endif -inline void ExecuteActorStateTransactionRequest::set_actor_id(const char* value) { +inline void SubtleDecryptRequest::set_key_name(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleDecryptRequest.key_name) } -inline void ExecuteActorStateTransactionRequest::set_actor_id(const char* value, size_t size) { +inline void SubtleDecryptRequest::set_key_name(const char* value, size_t size) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleDecryptRequest.key_name) } -inline ::std::string* ExecuteActorStateTransactionRequest::mutable_actor_id() { +inline ::std::string* SubtleDecryptRequest::mutable_key_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) - return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleDecryptRequest.key_name) + return key_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* ExecuteActorStateTransactionRequest::release_actor_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) +inline ::std::string* SubtleDecryptRequest::release_key_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleDecryptRequest.key_name) - return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return key_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void ExecuteActorStateTransactionRequest::set_allocated_actor_id(::std::string* actor_id) { - if (actor_id != NULL) { +inline void SubtleDecryptRequest::set_allocated_key_name(::std::string* key_name) { + if (key_name != NULL) { } else { } - actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.actor_id) + key_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleDecryptRequest.key_name) } -// repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3; -inline int ExecuteActorStateTransactionRequest::operations_size() const { - return operations_.size(); +// bytes nonce = 5; +inline void SubtleDecryptRequest::clear_nonce() { + nonce_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void ExecuteActorStateTransactionRequest::clear_operations() { - operations_.Clear(); +inline const ::std::string& SubtleDecryptRequest::nonce() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleDecryptRequest.nonce) + return nonce_.GetNoArena(); } -inline ::dapr::proto::runtime::v1::TransactionalActorStateOperation* ExecuteActorStateTransactionRequest::mutable_operations(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.operations) - return operations_.Mutable(index); +inline void SubtleDecryptRequest::set_nonce(const ::std::string& value) { + + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleDecryptRequest.nonce) } -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::TransactionalActorStateOperation >* -ExecuteActorStateTransactionRequest::mutable_operations() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.operations) - return &operations_; +#if LANG_CXX11 +inline void SubtleDecryptRequest::set_nonce(::std::string&& value) { + + nonce_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleDecryptRequest.nonce) } -inline const ::dapr::proto::runtime::v1::TransactionalActorStateOperation& ExecuteActorStateTransactionRequest::operations(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.operations) - return operations_.Get(index); +#endif +inline void SubtleDecryptRequest::set_nonce(const char* value) { + GOOGLE_DCHECK(value != NULL); + + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleDecryptRequest.nonce) } -inline ::dapr::proto::runtime::v1::TransactionalActorStateOperation* ExecuteActorStateTransactionRequest::add_operations() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.operations) - return operations_.Add(); +inline void SubtleDecryptRequest::set_nonce(const void* value, size_t size) { + + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleDecryptRequest.nonce) } -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::TransactionalActorStateOperation >& -ExecuteActorStateTransactionRequest::operations() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest.operations) - return operations_; +inline ::std::string* SubtleDecryptRequest::mutable_nonce() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleDecryptRequest.nonce) + return nonce_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* SubtleDecryptRequest::release_nonce() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleDecryptRequest.nonce) + + return nonce_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void SubtleDecryptRequest::set_allocated_nonce(::std::string* nonce) { + if (nonce != NULL) { + + } else { + + } + nonce_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), nonce); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleDecryptRequest.nonce) } -// ------------------------------------------------------------------- - -// TransactionalActorStateOperation - -// string operationType = 1; -inline void TransactionalActorStateOperation::clear_operationtype() { - operationtype_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes tag = 6; +inline void SubtleDecryptRequest::clear_tag() { + tag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& TransactionalActorStateOperation::operationtype() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) - return operationtype_.GetNoArena(); +inline const ::std::string& SubtleDecryptRequest::tag() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleDecryptRequest.tag) + return tag_.GetNoArena(); } -inline void TransactionalActorStateOperation::set_operationtype(const ::std::string& value) { +inline void SubtleDecryptRequest::set_tag(const ::std::string& value) { - operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleDecryptRequest.tag) } #if LANG_CXX11 -inline void TransactionalActorStateOperation::set_operationtype(::std::string&& value) { +inline void SubtleDecryptRequest::set_tag(::std::string&& value) { - operationtype_.SetNoArena( + tag_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleDecryptRequest.tag) } #endif -inline void TransactionalActorStateOperation::set_operationtype(const char* value) { +inline void SubtleDecryptRequest::set_tag(const char* value) { GOOGLE_DCHECK(value != NULL); - operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleDecryptRequest.tag) } -inline void TransactionalActorStateOperation::set_operationtype(const char* value, size_t size) { +inline void SubtleDecryptRequest::set_tag(const void* value, size_t size) { - operationtype_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleDecryptRequest.tag) } -inline ::std::string* TransactionalActorStateOperation::mutable_operationtype() { +inline ::std::string* SubtleDecryptRequest::mutable_tag() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) - return operationtype_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleDecryptRequest.tag) + return tag_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* TransactionalActorStateOperation::release_operationtype() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) +inline ::std::string* SubtleDecryptRequest::release_tag() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleDecryptRequest.tag) - return operationtype_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return tag_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void TransactionalActorStateOperation::set_allocated_operationtype(::std::string* operationtype) { - if (operationtype != NULL) { +inline void SubtleDecryptRequest::set_allocated_tag(::std::string* tag) { + if (tag != NULL) { } else { } - operationtype_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), operationtype); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TransactionalActorStateOperation.operationType) + tag_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), tag); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleDecryptRequest.tag) } -// string key = 2; -inline void TransactionalActorStateOperation::clear_key() { - key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes associated_data = 7[json_name = "associatedData"]; +inline void SubtleDecryptRequest::clear_associated_data() { + associated_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& TransactionalActorStateOperation::key() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) - return key_.GetNoArena(); +inline const ::std::string& SubtleDecryptRequest::associated_data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleDecryptRequest.associated_data) + return associated_data_.GetNoArena(); } -inline void TransactionalActorStateOperation::set_key(const ::std::string& value) { +inline void SubtleDecryptRequest::set_associated_data(const ::std::string& value) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleDecryptRequest.associated_data) } #if LANG_CXX11 -inline void TransactionalActorStateOperation::set_key(::std::string&& value) { +inline void SubtleDecryptRequest::set_associated_data(::std::string&& value) { - key_.SetNoArena( + associated_data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleDecryptRequest.associated_data) } #endif -inline void TransactionalActorStateOperation::set_key(const char* value) { +inline void SubtleDecryptRequest::set_associated_data(const char* value) { GOOGLE_DCHECK(value != NULL); - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleDecryptRequest.associated_data) } -inline void TransactionalActorStateOperation::set_key(const char* value, size_t size) { +inline void SubtleDecryptRequest::set_associated_data(const void* value, size_t size) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleDecryptRequest.associated_data) } -inline ::std::string* TransactionalActorStateOperation::mutable_key() { +inline ::std::string* SubtleDecryptRequest::mutable_associated_data() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) - return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleDecryptRequest.associated_data) + return associated_data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* TransactionalActorStateOperation::release_key() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) +inline ::std::string* SubtleDecryptRequest::release_associated_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleDecryptRequest.associated_data) - return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return associated_data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void TransactionalActorStateOperation::set_allocated_key(::std::string* key) { - if (key != NULL) { +inline void SubtleDecryptRequest::set_allocated_associated_data(::std::string* associated_data) { + if (associated_data != NULL) { } else { } - key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TransactionalActorStateOperation.key) + associated_data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), associated_data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleDecryptRequest.associated_data) } -// .google.protobuf.Any value = 3; -inline bool TransactionalActorStateOperation::has_value() const { - return this != internal_default_instance() && value_ != NULL; +// ------------------------------------------------------------------- + +// SubtleDecryptResponse + +// bytes plaintext = 1; +inline void SubtleDecryptResponse::clear_plaintext() { + plaintext_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::google::protobuf::Any& TransactionalActorStateOperation::_internal_value() const { - return *value_; +inline const ::std::string& SubtleDecryptResponse::plaintext() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleDecryptResponse.plaintext) + return plaintext_.GetNoArena(); } -inline const ::google::protobuf::Any& TransactionalActorStateOperation::value() const { - const ::google::protobuf::Any* p = value_; - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TransactionalActorStateOperation.value) - return p != NULL ? *p : *reinterpret_cast( - &::google::protobuf::_Any_default_instance_); +inline void SubtleDecryptResponse::set_plaintext(const ::std::string& value) { + + plaintext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleDecryptResponse.plaintext) } -inline ::google::protobuf::Any* TransactionalActorStateOperation::release_value() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TransactionalActorStateOperation.value) +#if LANG_CXX11 +inline void SubtleDecryptResponse::set_plaintext(::std::string&& value) { - ::google::protobuf::Any* temp = value_; - value_ = NULL; - return temp; + plaintext_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleDecryptResponse.plaintext) } -inline ::google::protobuf::Any* TransactionalActorStateOperation::mutable_value() { +#endif +inline void SubtleDecryptResponse::set_plaintext(const char* value) { + GOOGLE_DCHECK(value != NULL); - if (value_ == NULL) { - auto* p = CreateMaybeMessage<::google::protobuf::Any>(GetArenaNoVirtual()); - value_ = p; - } - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TransactionalActorStateOperation.value) - return value_; + plaintext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleDecryptResponse.plaintext) } -inline void TransactionalActorStateOperation::set_allocated_value(::google::protobuf::Any* value) { - ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); - if (message_arena == NULL) { - delete reinterpret_cast< ::google::protobuf::MessageLite*>(value_); - } - if (value) { - ::google::protobuf::Arena* submessage_arena = NULL; - if (message_arena != submessage_arena) { - value = ::google::protobuf::internal::GetOwnedMessage( - message_arena, value, submessage_arena); - } +inline void SubtleDecryptResponse::set_plaintext(const void* value, size_t size) { + + plaintext_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleDecryptResponse.plaintext) +} +inline ::std::string* SubtleDecryptResponse::mutable_plaintext() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleDecryptResponse.plaintext) + return plaintext_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* SubtleDecryptResponse::release_plaintext() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleDecryptResponse.plaintext) + + return plaintext_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void SubtleDecryptResponse::set_allocated_plaintext(::std::string* plaintext) { + if (plaintext != NULL) { } else { } - value_ = value; - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TransactionalActorStateOperation.value) + plaintext_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), plaintext); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleDecryptResponse.plaintext) } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// InvokeActorRequest +// SubtleWrapKeyRequest -// string actor_type = 1; -inline void InvokeActorRequest::clear_actor_type() { - actor_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string component_name = 1[json_name = "componentName"]; +inline void SubtleWrapKeyRequest::clear_component_name() { + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& InvokeActorRequest::actor_type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) - return actor_type_.GetNoArena(); +inline const ::std::string& SubtleWrapKeyRequest::component_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleWrapKeyRequest.component_name) + return component_name_.GetNoArena(); } -inline void InvokeActorRequest::set_actor_type(const ::std::string& value) { +inline void SubtleWrapKeyRequest::set_component_name(const ::std::string& value) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleWrapKeyRequest.component_name) } #if LANG_CXX11 -inline void InvokeActorRequest::set_actor_type(::std::string&& value) { +inline void SubtleWrapKeyRequest::set_component_name(::std::string&& value) { - actor_type_.SetNoArena( + component_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleWrapKeyRequest.component_name) } #endif -inline void InvokeActorRequest::set_actor_type(const char* value) { +inline void SubtleWrapKeyRequest::set_component_name(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleWrapKeyRequest.component_name) } -inline void InvokeActorRequest::set_actor_type(const char* value, size_t size) { +inline void SubtleWrapKeyRequest::set_component_name(const char* value, size_t size) { - actor_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleWrapKeyRequest.component_name) } -inline ::std::string* InvokeActorRequest::mutable_actor_type() { +inline ::std::string* SubtleWrapKeyRequest::mutable_component_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) - return actor_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleWrapKeyRequest.component_name) + return component_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* InvokeActorRequest::release_actor_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) +inline ::std::string* SubtleWrapKeyRequest::release_component_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleWrapKeyRequest.component_name) - return actor_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return component_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void InvokeActorRequest::set_allocated_actor_type(::std::string* actor_type) { - if (actor_type != NULL) { +inline void SubtleWrapKeyRequest::set_allocated_component_name(::std::string* component_name) { + if (component_name != NULL) { } else { } - actor_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeActorRequest.actor_type) + component_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), component_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleWrapKeyRequest.component_name) } -// string actor_id = 2; -inline void InvokeActorRequest::clear_actor_id() { - actor_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes plaintext_key = 2[json_name = "plaintextKey"]; +inline void SubtleWrapKeyRequest::clear_plaintext_key() { + plaintext_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& InvokeActorRequest::actor_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) - return actor_id_.GetNoArena(); +inline const ::std::string& SubtleWrapKeyRequest::plaintext_key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleWrapKeyRequest.plaintext_key) + return plaintext_key_.GetNoArena(); } -inline void InvokeActorRequest::set_actor_id(const ::std::string& value) { +inline void SubtleWrapKeyRequest::set_plaintext_key(const ::std::string& value) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) + plaintext_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleWrapKeyRequest.plaintext_key) } #if LANG_CXX11 -inline void InvokeActorRequest::set_actor_id(::std::string&& value) { +inline void SubtleWrapKeyRequest::set_plaintext_key(::std::string&& value) { - actor_id_.SetNoArena( + plaintext_key_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleWrapKeyRequest.plaintext_key) } #endif -inline void InvokeActorRequest::set_actor_id(const char* value) { +inline void SubtleWrapKeyRequest::set_plaintext_key(const char* value) { GOOGLE_DCHECK(value != NULL); - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) + plaintext_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleWrapKeyRequest.plaintext_key) } -inline void InvokeActorRequest::set_actor_id(const char* value, size_t size) { +inline void SubtleWrapKeyRequest::set_plaintext_key(const void* value, size_t size) { - actor_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + plaintext_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleWrapKeyRequest.plaintext_key) } -inline ::std::string* InvokeActorRequest::mutable_actor_id() { +inline ::std::string* SubtleWrapKeyRequest::mutable_plaintext_key() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) - return actor_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleWrapKeyRequest.plaintext_key) + return plaintext_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* InvokeActorRequest::release_actor_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) +inline ::std::string* SubtleWrapKeyRequest::release_plaintext_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleWrapKeyRequest.plaintext_key) - return actor_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return plaintext_key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void InvokeActorRequest::set_allocated_actor_id(::std::string* actor_id) { - if (actor_id != NULL) { +inline void SubtleWrapKeyRequest::set_allocated_plaintext_key(::std::string* plaintext_key) { + if (plaintext_key != NULL) { } else { } - actor_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actor_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeActorRequest.actor_id) + plaintext_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), plaintext_key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleWrapKeyRequest.plaintext_key) } -// string method = 3; -inline void InvokeActorRequest::clear_method() { - method_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string algorithm = 3; +inline void SubtleWrapKeyRequest::clear_algorithm() { + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& InvokeActorRequest::method() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeActorRequest.method) - return method_.GetNoArena(); +inline const ::std::string& SubtleWrapKeyRequest::algorithm() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleWrapKeyRequest.algorithm) + return algorithm_.GetNoArena(); } -inline void InvokeActorRequest::set_method(const ::std::string& value) { +inline void SubtleWrapKeyRequest::set_algorithm(const ::std::string& value) { - method_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeActorRequest.method) + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleWrapKeyRequest.algorithm) } #if LANG_CXX11 -inline void InvokeActorRequest::set_method(::std::string&& value) { +inline void SubtleWrapKeyRequest::set_algorithm(::std::string&& value) { - method_.SetNoArena( + algorithm_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeActorRequest.method) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleWrapKeyRequest.algorithm) } #endif -inline void InvokeActorRequest::set_method(const char* value) { +inline void SubtleWrapKeyRequest::set_algorithm(const char* value) { GOOGLE_DCHECK(value != NULL); - method_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeActorRequest.method) + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleWrapKeyRequest.algorithm) } -inline void InvokeActorRequest::set_method(const char* value, size_t size) { +inline void SubtleWrapKeyRequest::set_algorithm(const char* value, size_t size) { - method_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeActorRequest.method) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleWrapKeyRequest.algorithm) } -inline ::std::string* InvokeActorRequest::mutable_method() { +inline ::std::string* SubtleWrapKeyRequest::mutable_algorithm() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeActorRequest.method) - return method_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleWrapKeyRequest.algorithm) + return algorithm_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* InvokeActorRequest::release_method() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeActorRequest.method) +inline ::std::string* SubtleWrapKeyRequest::release_algorithm() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleWrapKeyRequest.algorithm) - return method_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return algorithm_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void InvokeActorRequest::set_allocated_method(::std::string* method) { - if (method != NULL) { +inline void SubtleWrapKeyRequest::set_allocated_algorithm(::std::string* algorithm) { + if (algorithm != NULL) { } else { } - method_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), method); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeActorRequest.method) + algorithm_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), algorithm); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleWrapKeyRequest.algorithm) } -// bytes data = 4; -inline void InvokeActorRequest::clear_data() { - data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string key_name = 4[json_name = "keyName"]; +inline void SubtleWrapKeyRequest::clear_key_name() { + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& InvokeActorRequest::data() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeActorRequest.data) - return data_.GetNoArena(); +inline const ::std::string& SubtleWrapKeyRequest::key_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleWrapKeyRequest.key_name) + return key_name_.GetNoArena(); } -inline void InvokeActorRequest::set_data(const ::std::string& value) { +inline void SubtleWrapKeyRequest::set_key_name(const ::std::string& value) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeActorRequest.data) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleWrapKeyRequest.key_name) } #if LANG_CXX11 -inline void InvokeActorRequest::set_data(::std::string&& value) { +inline void SubtleWrapKeyRequest::set_key_name(::std::string&& value) { - data_.SetNoArena( + key_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeActorRequest.data) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleWrapKeyRequest.key_name) } #endif -inline void InvokeActorRequest::set_data(const char* value) { +inline void SubtleWrapKeyRequest::set_key_name(const char* value) { GOOGLE_DCHECK(value != NULL); - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeActorRequest.data) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleWrapKeyRequest.key_name) } -inline void InvokeActorRequest::set_data(const void* value, size_t size) { +inline void SubtleWrapKeyRequest::set_key_name(const char* value, size_t size) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeActorRequest.data) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleWrapKeyRequest.key_name) } -inline ::std::string* InvokeActorRequest::mutable_data() { +inline ::std::string* SubtleWrapKeyRequest::mutable_key_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeActorRequest.data) - return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleWrapKeyRequest.key_name) + return key_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* InvokeActorRequest::release_data() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeActorRequest.data) +inline ::std::string* SubtleWrapKeyRequest::release_key_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleWrapKeyRequest.key_name) - return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return key_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void InvokeActorRequest::set_allocated_data(::std::string* data) { - if (data != NULL) { +inline void SubtleWrapKeyRequest::set_allocated_key_name(::std::string* key_name) { + if (key_name != NULL) { } else { } - data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeActorRequest.data) -} - -// map metadata = 5; -inline int InvokeActorRequest::metadata_size() const { - return metadata_.size(); + key_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleWrapKeyRequest.key_name) } -inline void InvokeActorRequest::clear_metadata() { - metadata_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -InvokeActorRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.InvokeActorRequest.metadata) - return metadata_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -InvokeActorRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.InvokeActorRequest.metadata) - return metadata_.MutableMap(); -} - -// ------------------------------------------------------------------- - -// InvokeActorResponse -// bytes data = 1; -inline void InvokeActorResponse::clear_data() { - data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes nonce = 5; +inline void SubtleWrapKeyRequest::clear_nonce() { + nonce_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& InvokeActorResponse::data() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.InvokeActorResponse.data) - return data_.GetNoArena(); +inline const ::std::string& SubtleWrapKeyRequest::nonce() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleWrapKeyRequest.nonce) + return nonce_.GetNoArena(); } -inline void InvokeActorResponse::set_data(const ::std::string& value) { +inline void SubtleWrapKeyRequest::set_nonce(const ::std::string& value) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.InvokeActorResponse.data) + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleWrapKeyRequest.nonce) } #if LANG_CXX11 -inline void InvokeActorResponse::set_data(::std::string&& value) { +inline void SubtleWrapKeyRequest::set_nonce(::std::string&& value) { - data_.SetNoArena( + nonce_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.InvokeActorResponse.data) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleWrapKeyRequest.nonce) } #endif -inline void InvokeActorResponse::set_data(const char* value) { +inline void SubtleWrapKeyRequest::set_nonce(const char* value) { GOOGLE_DCHECK(value != NULL); - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.InvokeActorResponse.data) + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleWrapKeyRequest.nonce) } -inline void InvokeActorResponse::set_data(const void* value, size_t size) { +inline void SubtleWrapKeyRequest::set_nonce(const void* value, size_t size) { - data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.InvokeActorResponse.data) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleWrapKeyRequest.nonce) } -inline ::std::string* InvokeActorResponse::mutable_data() { +inline ::std::string* SubtleWrapKeyRequest::mutable_nonce() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.InvokeActorResponse.data) - return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleWrapKeyRequest.nonce) + return nonce_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* InvokeActorResponse::release_data() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.InvokeActorResponse.data) +inline ::std::string* SubtleWrapKeyRequest::release_nonce() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleWrapKeyRequest.nonce) - return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return nonce_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void InvokeActorResponse::set_allocated_data(::std::string* data) { - if (data != NULL) { +inline void SubtleWrapKeyRequest::set_allocated_nonce(::std::string* nonce) { + if (nonce != NULL) { } else { } - data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.InvokeActorResponse.data) + nonce_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), nonce); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleWrapKeyRequest.nonce) } -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// GetMetadataResponse - -// string id = 1; -inline void GetMetadataResponse::clear_id() { - id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes associated_data = 6[json_name = "associatedData"]; +inline void SubtleWrapKeyRequest::clear_associated_data() { + associated_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetMetadataResponse::id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetMetadataResponse.id) - return id_.GetNoArena(); +inline const ::std::string& SubtleWrapKeyRequest::associated_data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleWrapKeyRequest.associated_data) + return associated_data_.GetNoArena(); } -inline void GetMetadataResponse::set_id(const ::std::string& value) { +inline void SubtleWrapKeyRequest::set_associated_data(const ::std::string& value) { - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetMetadataResponse.id) + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleWrapKeyRequest.associated_data) } #if LANG_CXX11 -inline void GetMetadataResponse::set_id(::std::string&& value) { +inline void SubtleWrapKeyRequest::set_associated_data(::std::string&& value) { - id_.SetNoArena( + associated_data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetMetadataResponse.id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleWrapKeyRequest.associated_data) } #endif -inline void GetMetadataResponse::set_id(const char* value) { +inline void SubtleWrapKeyRequest::set_associated_data(const char* value) { GOOGLE_DCHECK(value != NULL); - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetMetadataResponse.id) + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleWrapKeyRequest.associated_data) } -inline void GetMetadataResponse::set_id(const char* value, size_t size) { +inline void SubtleWrapKeyRequest::set_associated_data(const void* value, size_t size) { - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetMetadataResponse.id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleWrapKeyRequest.associated_data) } -inline ::std::string* GetMetadataResponse::mutable_id() { +inline ::std::string* SubtleWrapKeyRequest::mutable_associated_data() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetMetadataResponse.id) - return id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleWrapKeyRequest.associated_data) + return associated_data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetMetadataResponse::release_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetMetadataResponse.id) +inline ::std::string* SubtleWrapKeyRequest::release_associated_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleWrapKeyRequest.associated_data) - return id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return associated_data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetMetadataResponse::set_allocated_id(::std::string* id) { - if (id != NULL) { +inline void SubtleWrapKeyRequest::set_allocated_associated_data(::std::string* associated_data) { + if (associated_data != NULL) { } else { } - id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetMetadataResponse.id) + associated_data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), associated_data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleWrapKeyRequest.associated_data) } -// repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2; -inline int GetMetadataResponse::active_actors_count_size() const { - return active_actors_count_.size(); -} -inline void GetMetadataResponse::clear_active_actors_count() { - active_actors_count_.Clear(); -} -inline ::dapr::proto::runtime::v1::ActiveActorsCount* GetMetadataResponse::mutable_active_actors_count(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetMetadataResponse.active_actors_count) - return active_actors_count_.Mutable(index); -} -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::ActiveActorsCount >* -GetMetadataResponse::mutable_active_actors_count() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetMetadataResponse.active_actors_count) - return &active_actors_count_; -} -inline const ::dapr::proto::runtime::v1::ActiveActorsCount& GetMetadataResponse::active_actors_count(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetMetadataResponse.active_actors_count) - return active_actors_count_.Get(index); -} -inline ::dapr::proto::runtime::v1::ActiveActorsCount* GetMetadataResponse::add_active_actors_count() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetMetadataResponse.active_actors_count) - return active_actors_count_.Add(); -} -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::ActiveActorsCount >& -GetMetadataResponse::active_actors_count() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetMetadataResponse.active_actors_count) - return active_actors_count_; -} +// ------------------------------------------------------------------- -// repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3; -inline int GetMetadataResponse::registered_components_size() const { - return registered_components_.size(); -} -inline void GetMetadataResponse::clear_registered_components() { - registered_components_.Clear(); -} -inline ::dapr::proto::runtime::v1::RegisteredComponents* GetMetadataResponse::mutable_registered_components(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetMetadataResponse.registered_components) - return registered_components_.Mutable(index); -} -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::RegisteredComponents >* -GetMetadataResponse::mutable_registered_components() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetMetadataResponse.registered_components) - return ®istered_components_; -} -inline const ::dapr::proto::runtime::v1::RegisteredComponents& GetMetadataResponse::registered_components(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetMetadataResponse.registered_components) - return registered_components_.Get(index); +// SubtleWrapKeyResponse + +// bytes wrapped_key = 1[json_name = "wrappedKey"]; +inline void SubtleWrapKeyResponse::clear_wrapped_key() { + wrapped_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::dapr::proto::runtime::v1::RegisteredComponents* GetMetadataResponse::add_registered_components() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetMetadataResponse.registered_components) - return registered_components_.Add(); +inline const ::std::string& SubtleWrapKeyResponse::wrapped_key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleWrapKeyResponse.wrapped_key) + return wrapped_key_.GetNoArena(); } -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::RegisteredComponents >& -GetMetadataResponse::registered_components() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetMetadataResponse.registered_components) - return registered_components_; +inline void SubtleWrapKeyResponse::set_wrapped_key(const ::std::string& value) { + + wrapped_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleWrapKeyResponse.wrapped_key) } - -// map extended_metadata = 4; -inline int GetMetadataResponse::extended_metadata_size() const { - return extended_metadata_.size(); +#if LANG_CXX11 +inline void SubtleWrapKeyResponse::set_wrapped_key(::std::string&& value) { + + wrapped_key_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleWrapKeyResponse.wrapped_key) } -inline void GetMetadataResponse::clear_extended_metadata() { - extended_metadata_.Clear(); +#endif +inline void SubtleWrapKeyResponse::set_wrapped_key(const char* value) { + GOOGLE_DCHECK(value != NULL); + + wrapped_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleWrapKeyResponse.wrapped_key) } -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -GetMetadataResponse::extended_metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetMetadataResponse.extended_metadata) - return extended_metadata_.GetMap(); +inline void SubtleWrapKeyResponse::set_wrapped_key(const void* value, size_t size) { + + wrapped_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleWrapKeyResponse.wrapped_key) } -inline ::google::protobuf::Map< ::std::string, ::std::string >* -GetMetadataResponse::mutable_extended_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetMetadataResponse.extended_metadata) - return extended_metadata_.MutableMap(); +inline ::std::string* SubtleWrapKeyResponse::mutable_wrapped_key() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleWrapKeyResponse.wrapped_key) + return wrapped_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* SubtleWrapKeyResponse::release_wrapped_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleWrapKeyResponse.wrapped_key) + + return wrapped_key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void SubtleWrapKeyResponse::set_allocated_wrapped_key(::std::string* wrapped_key) { + if (wrapped_key != NULL) { + + } else { + + } + wrapped_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), wrapped_key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleWrapKeyResponse.wrapped_key) } -// repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5; -inline int GetMetadataResponse::subscriptions_size() const { - return subscriptions_.size(); +// bytes tag = 2; +inline void SubtleWrapKeyResponse::clear_tag() { + tag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetMetadataResponse::clear_subscriptions() { - subscriptions_.Clear(); +inline const ::std::string& SubtleWrapKeyResponse::tag() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleWrapKeyResponse.tag) + return tag_.GetNoArena(); } -inline ::dapr::proto::runtime::v1::PubsubSubscription* GetMetadataResponse::mutable_subscriptions(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetMetadataResponse.subscriptions) - return subscriptions_.Mutable(index); +inline void SubtleWrapKeyResponse::set_tag(const ::std::string& value) { + + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleWrapKeyResponse.tag) } -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::PubsubSubscription >* -GetMetadataResponse::mutable_subscriptions() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetMetadataResponse.subscriptions) - return &subscriptions_; +#if LANG_CXX11 +inline void SubtleWrapKeyResponse::set_tag(::std::string&& value) { + + tag_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleWrapKeyResponse.tag) } -inline const ::dapr::proto::runtime::v1::PubsubSubscription& GetMetadataResponse::subscriptions(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetMetadataResponse.subscriptions) - return subscriptions_.Get(index); +#endif +inline void SubtleWrapKeyResponse::set_tag(const char* value) { + GOOGLE_DCHECK(value != NULL); + + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleWrapKeyResponse.tag) } -inline ::dapr::proto::runtime::v1::PubsubSubscription* GetMetadataResponse::add_subscriptions() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetMetadataResponse.subscriptions) - return subscriptions_.Add(); +inline void SubtleWrapKeyResponse::set_tag(const void* value, size_t size) { + + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleWrapKeyResponse.tag) } -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::PubsubSubscription >& -GetMetadataResponse::subscriptions() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetMetadataResponse.subscriptions) - return subscriptions_; +inline ::std::string* SubtleWrapKeyResponse::mutable_tag() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleWrapKeyResponse.tag) + return tag_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* SubtleWrapKeyResponse::release_tag() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleWrapKeyResponse.tag) + + return tag_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void SubtleWrapKeyResponse::set_allocated_tag(::std::string* tag) { + if (tag != NULL) { + + } else { + + } + tag_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), tag); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleWrapKeyResponse.tag) } // ------------------------------------------------------------------- -// ActiveActorsCount +// SubtleUnwrapKeyRequest -// string type = 1; -inline void ActiveActorsCount::clear_type() { - type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string component_name = 1[json_name = "componentName"]; +inline void SubtleUnwrapKeyRequest::clear_component_name() { + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& ActiveActorsCount::type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ActiveActorsCount.type) - return type_.GetNoArena(); +inline const ::std::string& SubtleUnwrapKeyRequest::component_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.component_name) + return component_name_.GetNoArena(); } -inline void ActiveActorsCount::set_type(const ::std::string& value) { +inline void SubtleUnwrapKeyRequest::set_component_name(const ::std::string& value) { - type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ActiveActorsCount.type) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.component_name) } #if LANG_CXX11 -inline void ActiveActorsCount::set_type(::std::string&& value) { +inline void SubtleUnwrapKeyRequest::set_component_name(::std::string&& value) { - type_.SetNoArena( + component_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.ActiveActorsCount.type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.component_name) } #endif -inline void ActiveActorsCount::set_type(const char* value) { +inline void SubtleUnwrapKeyRequest::set_component_name(const char* value) { GOOGLE_DCHECK(value != NULL); - type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.ActiveActorsCount.type) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.component_name) } -inline void ActiveActorsCount::set_type(const char* value, size_t size) { +inline void SubtleUnwrapKeyRequest::set_component_name(const char* value, size_t size) { - type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.ActiveActorsCount.type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.component_name) } -inline ::std::string* ActiveActorsCount::mutable_type() { +inline ::std::string* SubtleUnwrapKeyRequest::mutable_component_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ActiveActorsCount.type) - return type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.component_name) + return component_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* ActiveActorsCount::release_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.ActiveActorsCount.type) +inline ::std::string* SubtleUnwrapKeyRequest::release_component_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.component_name) - return type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return component_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void ActiveActorsCount::set_allocated_type(::std::string* type) { - if (type != NULL) { +inline void SubtleUnwrapKeyRequest::set_allocated_component_name(::std::string* component_name) { + if (component_name != NULL) { } else { } - type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.ActiveActorsCount.type) + component_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), component_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.component_name) } -// int32 count = 2; -inline void ActiveActorsCount::clear_count() { - count_ = 0; +// bytes wrapped_key = 2[json_name = "wrappedKey"]; +inline void SubtleUnwrapKeyRequest::clear_wrapped_key() { + wrapped_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::google::protobuf::int32 ActiveActorsCount::count() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ActiveActorsCount.count) - return count_; +inline const ::std::string& SubtleUnwrapKeyRequest::wrapped_key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.wrapped_key) + return wrapped_key_.GetNoArena(); } -inline void ActiveActorsCount::set_count(::google::protobuf::int32 value) { +inline void SubtleUnwrapKeyRequest::set_wrapped_key(const ::std::string& value) { - count_ = value; - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ActiveActorsCount.count) + wrapped_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.wrapped_key) +} +#if LANG_CXX11 +inline void SubtleUnwrapKeyRequest::set_wrapped_key(::std::string&& value) { + + wrapped_key_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.wrapped_key) +} +#endif +inline void SubtleUnwrapKeyRequest::set_wrapped_key(const char* value) { + GOOGLE_DCHECK(value != NULL); + + wrapped_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.wrapped_key) +} +inline void SubtleUnwrapKeyRequest::set_wrapped_key(const void* value, size_t size) { + + wrapped_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.wrapped_key) +} +inline ::std::string* SubtleUnwrapKeyRequest::mutable_wrapped_key() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.wrapped_key) + return wrapped_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* SubtleUnwrapKeyRequest::release_wrapped_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.wrapped_key) + + return wrapped_key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void SubtleUnwrapKeyRequest::set_allocated_wrapped_key(::std::string* wrapped_key) { + if (wrapped_key != NULL) { + + } else { + + } + wrapped_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), wrapped_key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.wrapped_key) } -// ------------------------------------------------------------------- - -// RegisteredComponents - -// string name = 1; -inline void RegisteredComponents::clear_name() { - name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string algorithm = 3; +inline void SubtleUnwrapKeyRequest::clear_algorithm() { + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisteredComponents::name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisteredComponents.name) - return name_.GetNoArena(); +inline const ::std::string& SubtleUnwrapKeyRequest::algorithm() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.algorithm) + return algorithm_.GetNoArena(); } -inline void RegisteredComponents::set_name(const ::std::string& value) { +inline void SubtleUnwrapKeyRequest::set_algorithm(const ::std::string& value) { - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisteredComponents.name) + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.algorithm) } #if LANG_CXX11 -inline void RegisteredComponents::set_name(::std::string&& value) { +inline void SubtleUnwrapKeyRequest::set_algorithm(::std::string&& value) { - name_.SetNoArena( + algorithm_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisteredComponents.name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.algorithm) } #endif -inline void RegisteredComponents::set_name(const char* value) { +inline void SubtleUnwrapKeyRequest::set_algorithm(const char* value) { GOOGLE_DCHECK(value != NULL); - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisteredComponents.name) + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.algorithm) } -inline void RegisteredComponents::set_name(const char* value, size_t size) { +inline void SubtleUnwrapKeyRequest::set_algorithm(const char* value, size_t size) { - name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisteredComponents.name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.algorithm) } -inline ::std::string* RegisteredComponents::mutable_name() { +inline ::std::string* SubtleUnwrapKeyRequest::mutable_algorithm() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisteredComponents.name) - return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.algorithm) + return algorithm_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisteredComponents::release_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisteredComponents.name) +inline ::std::string* SubtleUnwrapKeyRequest::release_algorithm() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.algorithm) - return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return algorithm_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisteredComponents::set_allocated_name(::std::string* name) { - if (name != NULL) { +inline void SubtleUnwrapKeyRequest::set_allocated_algorithm(::std::string* algorithm) { + if (algorithm != NULL) { } else { } - name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisteredComponents.name) + algorithm_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), algorithm); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.algorithm) } -// string type = 2; -inline void RegisteredComponents::clear_type() { - type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string key_name = 4[json_name = "keyName"]; +inline void SubtleUnwrapKeyRequest::clear_key_name() { + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisteredComponents::type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisteredComponents.type) - return type_.GetNoArena(); +inline const ::std::string& SubtleUnwrapKeyRequest::key_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.key_name) + return key_name_.GetNoArena(); } -inline void RegisteredComponents::set_type(const ::std::string& value) { +inline void SubtleUnwrapKeyRequest::set_key_name(const ::std::string& value) { - type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisteredComponents.type) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.key_name) } #if LANG_CXX11 -inline void RegisteredComponents::set_type(::std::string&& value) { +inline void SubtleUnwrapKeyRequest::set_key_name(::std::string&& value) { - type_.SetNoArena( + key_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisteredComponents.type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.key_name) } #endif -inline void RegisteredComponents::set_type(const char* value) { +inline void SubtleUnwrapKeyRequest::set_key_name(const char* value) { GOOGLE_DCHECK(value != NULL); - type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisteredComponents.type) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.key_name) } -inline void RegisteredComponents::set_type(const char* value, size_t size) { +inline void SubtleUnwrapKeyRequest::set_key_name(const char* value, size_t size) { - type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisteredComponents.type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.key_name) } -inline ::std::string* RegisteredComponents::mutable_type() { +inline ::std::string* SubtleUnwrapKeyRequest::mutable_key_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisteredComponents.type) - return type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.key_name) + return key_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisteredComponents::release_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisteredComponents.type) +inline ::std::string* SubtleUnwrapKeyRequest::release_key_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.key_name) - return type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return key_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisteredComponents::set_allocated_type(::std::string* type) { - if (type != NULL) { +inline void SubtleUnwrapKeyRequest::set_allocated_key_name(::std::string* key_name) { + if (key_name != NULL) { } else { } - type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisteredComponents.type) + key_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.key_name) } -// string version = 3; -inline void RegisteredComponents::clear_version() { - version_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes nonce = 5; +inline void SubtleUnwrapKeyRequest::clear_nonce() { + nonce_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& RegisteredComponents::version() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisteredComponents.version) - return version_.GetNoArena(); +inline const ::std::string& SubtleUnwrapKeyRequest::nonce() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.nonce) + return nonce_.GetNoArena(); } -inline void RegisteredComponents::set_version(const ::std::string& value) { +inline void SubtleUnwrapKeyRequest::set_nonce(const ::std::string& value) { - version_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisteredComponents.version) + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.nonce) } #if LANG_CXX11 -inline void RegisteredComponents::set_version(::std::string&& value) { +inline void SubtleUnwrapKeyRequest::set_nonce(::std::string&& value) { - version_.SetNoArena( + nonce_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RegisteredComponents.version) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.nonce) } #endif -inline void RegisteredComponents::set_version(const char* value) { +inline void SubtleUnwrapKeyRequest::set_nonce(const char* value) { GOOGLE_DCHECK(value != NULL); - version_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisteredComponents.version) + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.nonce) } -inline void RegisteredComponents::set_version(const char* value, size_t size) { +inline void SubtleUnwrapKeyRequest::set_nonce(const void* value, size_t size) { - version_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + nonce_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisteredComponents.version) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.nonce) } -inline ::std::string* RegisteredComponents::mutable_version() { +inline ::std::string* SubtleUnwrapKeyRequest::mutable_nonce() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisteredComponents.version) - return version_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.nonce) + return nonce_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisteredComponents::release_version() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RegisteredComponents.version) +inline ::std::string* SubtleUnwrapKeyRequest::release_nonce() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.nonce) - return version_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return nonce_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisteredComponents::set_allocated_version(::std::string* version) { - if (version != NULL) { +inline void SubtleUnwrapKeyRequest::set_allocated_nonce(::std::string* nonce) { + if (nonce != NULL) { } else { } - version_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), version); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RegisteredComponents.version) + nonce_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), nonce); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.nonce) } -// repeated string capabilities = 4; -inline int RegisteredComponents::capabilities_size() const { - return capabilities_.size(); +// bytes tag = 6; +inline void SubtleUnwrapKeyRequest::clear_tag() { + tag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void RegisteredComponents::clear_capabilities() { - capabilities_.Clear(); +inline const ::std::string& SubtleUnwrapKeyRequest::tag() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.tag) + return tag_.GetNoArena(); } -inline const ::std::string& RegisteredComponents::capabilities(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RegisteredComponents.capabilities) - return capabilities_.Get(index); +inline void SubtleUnwrapKeyRequest::set_tag(const ::std::string& value) { + + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.tag) } -inline ::std::string* RegisteredComponents::mutable_capabilities(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RegisteredComponents.capabilities) - return capabilities_.Mutable(index); +#if LANG_CXX11 +inline void SubtleUnwrapKeyRequest::set_tag(::std::string&& value) { + + tag_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.tag) } -inline void RegisteredComponents::set_capabilities(int index, const ::std::string& value) { - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisteredComponents.capabilities) - capabilities_.Mutable(index)->assign(value); +#endif +inline void SubtleUnwrapKeyRequest::set_tag(const char* value) { + GOOGLE_DCHECK(value != NULL); + + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.tag) +} +inline void SubtleUnwrapKeyRequest::set_tag(const void* value, size_t size) { + + tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.tag) +} +inline ::std::string* SubtleUnwrapKeyRequest::mutable_tag() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.tag) + return tag_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* SubtleUnwrapKeyRequest::release_tag() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.tag) + + return tag_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void SubtleUnwrapKeyRequest::set_allocated_tag(::std::string* tag) { + if (tag != NULL) { + + } else { + + } + tag_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), tag); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.tag) +} + +// bytes associated_data = 7[json_name = "associatedData"]; +inline void SubtleUnwrapKeyRequest::clear_associated_data() { + associated_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& SubtleUnwrapKeyRequest::associated_data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.associated_data) + return associated_data_.GetNoArena(); +} +inline void SubtleUnwrapKeyRequest::set_associated_data(const ::std::string& value) { + + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.associated_data) } #if LANG_CXX11 -inline void RegisteredComponents::set_capabilities(int index, ::std::string&& value) { - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RegisteredComponents.capabilities) - capabilities_.Mutable(index)->assign(std::move(value)); +inline void SubtleUnwrapKeyRequest::set_associated_data(::std::string&& value) { + + associated_data_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.associated_data) } #endif -inline void RegisteredComponents::set_capabilities(int index, const char* value) { +inline void SubtleUnwrapKeyRequest::set_associated_data(const char* value) { GOOGLE_DCHECK(value != NULL); - capabilities_.Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RegisteredComponents.capabilities) + + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.associated_data) } -inline void RegisteredComponents::set_capabilities(int index, const char* value, size_t size) { - capabilities_.Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RegisteredComponents.capabilities) +inline void SubtleUnwrapKeyRequest::set_associated_data(const void* value, size_t size) { + + associated_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.associated_data) +} +inline ::std::string* SubtleUnwrapKeyRequest::mutable_associated_data() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.associated_data) + return associated_data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* SubtleUnwrapKeyRequest::release_associated_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.associated_data) + + return associated_data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void SubtleUnwrapKeyRequest::set_allocated_associated_data(::std::string* associated_data) { + if (associated_data != NULL) { + + } else { + + } + associated_data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), associated_data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleUnwrapKeyRequest.associated_data) +} + +// ------------------------------------------------------------------- + +// SubtleUnwrapKeyResponse + +// bytes plaintext_key = 1[json_name = "plaintextKey"]; +inline void SubtleUnwrapKeyResponse::clear_plaintext_key() { + plaintext_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* RegisteredComponents::add_capabilities() { - // @@protoc_insertion_point(field_add_mutable:dapr.proto.runtime.v1.RegisteredComponents.capabilities) - return capabilities_.Add(); +inline const ::std::string& SubtleUnwrapKeyResponse::plaintext_key() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse.plaintext_key) + return plaintext_key_.GetNoArena(); } -inline void RegisteredComponents::add_capabilities(const ::std::string& value) { - capabilities_.Add()->assign(value); - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.RegisteredComponents.capabilities) +inline void SubtleUnwrapKeyResponse::set_plaintext_key(const ::std::string& value) { + + plaintext_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse.plaintext_key) } #if LANG_CXX11 -inline void RegisteredComponents::add_capabilities(::std::string&& value) { - capabilities_.Add(std::move(value)); - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.RegisteredComponents.capabilities) +inline void SubtleUnwrapKeyResponse::set_plaintext_key(::std::string&& value) { + + plaintext_key_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse.plaintext_key) } #endif -inline void RegisteredComponents::add_capabilities(const char* value) { +inline void SubtleUnwrapKeyResponse::set_plaintext_key(const char* value) { GOOGLE_DCHECK(value != NULL); - capabilities_.Add()->assign(value); - // @@protoc_insertion_point(field_add_char:dapr.proto.runtime.v1.RegisteredComponents.capabilities) + + plaintext_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse.plaintext_key) } -inline void RegisteredComponents::add_capabilities(const char* value, size_t size) { - capabilities_.Add()->assign(reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:dapr.proto.runtime.v1.RegisteredComponents.capabilities) +inline void SubtleUnwrapKeyResponse::set_plaintext_key(const void* value, size_t size) { + + plaintext_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse.plaintext_key) } -inline const ::google::protobuf::RepeatedPtrField< ::std::string>& -RegisteredComponents::capabilities() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.RegisteredComponents.capabilities) - return capabilities_; +inline ::std::string* SubtleUnwrapKeyResponse::mutable_plaintext_key() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse.plaintext_key) + return plaintext_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::google::protobuf::RepeatedPtrField< ::std::string>* -RegisteredComponents::mutable_capabilities() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.RegisteredComponents.capabilities) - return &capabilities_; +inline ::std::string* SubtleUnwrapKeyResponse::release_plaintext_key() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse.plaintext_key) + + return plaintext_key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void SubtleUnwrapKeyResponse::set_allocated_plaintext_key(::std::string* plaintext_key) { + if (plaintext_key != NULL) { + + } else { + + } + plaintext_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), plaintext_key); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleUnwrapKeyResponse.plaintext_key) } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// PubsubSubscription +// SubtleSignRequest -// string pubsub_name = 1; -inline void PubsubSubscription::clear_pubsub_name() { - pubsub_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string component_name = 1[json_name = "componentName"]; +inline void SubtleSignRequest::clear_component_name() { + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& PubsubSubscription::pubsub_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) - return pubsub_name_.GetNoArena(); +inline const ::std::string& SubtleSignRequest::component_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleSignRequest.component_name) + return component_name_.GetNoArena(); } -inline void PubsubSubscription::set_pubsub_name(const ::std::string& value) { +inline void SubtleSignRequest::set_component_name(const ::std::string& value) { - pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleSignRequest.component_name) } #if LANG_CXX11 -inline void PubsubSubscription::set_pubsub_name(::std::string&& value) { +inline void SubtleSignRequest::set_component_name(::std::string&& value) { - pubsub_name_.SetNoArena( + component_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleSignRequest.component_name) } #endif -inline void PubsubSubscription::set_pubsub_name(const char* value) { +inline void SubtleSignRequest::set_component_name(const char* value) { GOOGLE_DCHECK(value != NULL); - pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleSignRequest.component_name) } -inline void PubsubSubscription::set_pubsub_name(const char* value, size_t size) { +inline void SubtleSignRequest::set_component_name(const char* value, size_t size) { - pubsub_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleSignRequest.component_name) } -inline ::std::string* PubsubSubscription::mutable_pubsub_name() { +inline ::std::string* SubtleSignRequest::mutable_component_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) - return pubsub_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleSignRequest.component_name) + return component_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* PubsubSubscription::release_pubsub_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) +inline ::std::string* SubtleSignRequest::release_component_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleSignRequest.component_name) - return pubsub_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return component_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void PubsubSubscription::set_allocated_pubsub_name(::std::string* pubsub_name) { - if (pubsub_name != NULL) { +inline void SubtleSignRequest::set_allocated_component_name(::std::string* component_name) { + if (component_name != NULL) { } else { } - pubsub_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), pubsub_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscription.pubsub_name) + component_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), component_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleSignRequest.component_name) } -// string topic = 2; -inline void PubsubSubscription::clear_topic() { - topic_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes digest = 2; +inline void SubtleSignRequest::clear_digest() { + digest_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& PubsubSubscription::topic() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscription.topic) - return topic_.GetNoArena(); +inline const ::std::string& SubtleSignRequest::digest() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleSignRequest.digest) + return digest_.GetNoArena(); } -inline void PubsubSubscription::set_topic(const ::std::string& value) { +inline void SubtleSignRequest::set_digest(const ::std::string& value) { - topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PubsubSubscription.topic) + digest_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleSignRequest.digest) } #if LANG_CXX11 -inline void PubsubSubscription::set_topic(::std::string&& value) { +inline void SubtleSignRequest::set_digest(::std::string&& value) { - topic_.SetNoArena( + digest_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PubsubSubscription.topic) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleSignRequest.digest) } #endif -inline void PubsubSubscription::set_topic(const char* value) { +inline void SubtleSignRequest::set_digest(const char* value) { GOOGLE_DCHECK(value != NULL); - topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PubsubSubscription.topic) + digest_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleSignRequest.digest) } -inline void PubsubSubscription::set_topic(const char* value, size_t size) { +inline void SubtleSignRequest::set_digest(const void* value, size_t size) { - topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + digest_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PubsubSubscription.topic) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleSignRequest.digest) } -inline ::std::string* PubsubSubscription::mutable_topic() { +inline ::std::string* SubtleSignRequest::mutable_digest() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscription.topic) - return topic_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleSignRequest.digest) + return digest_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* PubsubSubscription::release_topic() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscription.topic) +inline ::std::string* SubtleSignRequest::release_digest() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleSignRequest.digest) - return topic_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return digest_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void PubsubSubscription::set_allocated_topic(::std::string* topic) { - if (topic != NULL) { +inline void SubtleSignRequest::set_allocated_digest(::std::string* digest) { + if (digest != NULL) { } else { } - topic_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), topic); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscription.topic) + digest_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), digest); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleSignRequest.digest) } -// map metadata = 3; -inline int PubsubSubscription::metadata_size() const { - return metadata_.size(); -} -inline void PubsubSubscription::clear_metadata() { - metadata_.Clear(); +// string algorithm = 3; +inline void SubtleSignRequest::clear_algorithm() { + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -PubsubSubscription::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.PubsubSubscription.metadata) - return metadata_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -PubsubSubscription::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.PubsubSubscription.metadata) - return metadata_.MutableMap(); +inline const ::std::string& SubtleSignRequest::algorithm() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleSignRequest.algorithm) + return algorithm_.GetNoArena(); } - -// .dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4; -inline bool PubsubSubscription::has_rules() const { - return this != internal_default_instance() && rules_ != NULL; +inline void SubtleSignRequest::set_algorithm(const ::std::string& value) { + + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleSignRequest.algorithm) } -inline void PubsubSubscription::clear_rules() { - if (GetArenaNoVirtual() == NULL && rules_ != NULL) { - delete rules_; - } - rules_ = NULL; +#if LANG_CXX11 +inline void SubtleSignRequest::set_algorithm(::std::string&& value) { + + algorithm_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleSignRequest.algorithm) } -inline const ::dapr::proto::runtime::v1::PubsubSubscriptionRules& PubsubSubscription::_internal_rules() const { - return *rules_; +#endif +inline void SubtleSignRequest::set_algorithm(const char* value) { + GOOGLE_DCHECK(value != NULL); + + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleSignRequest.algorithm) } -inline const ::dapr::proto::runtime::v1::PubsubSubscriptionRules& PubsubSubscription::rules() const { - const ::dapr::proto::runtime::v1::PubsubSubscriptionRules* p = rules_; - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscription.rules) - return p != NULL ? *p : *reinterpret_cast( - &::dapr::proto::runtime::v1::_PubsubSubscriptionRules_default_instance_); +inline void SubtleSignRequest::set_algorithm(const char* value, size_t size) { + + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleSignRequest.algorithm) } -inline ::dapr::proto::runtime::v1::PubsubSubscriptionRules* PubsubSubscription::release_rules() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscription.rules) +inline ::std::string* SubtleSignRequest::mutable_algorithm() { - ::dapr::proto::runtime::v1::PubsubSubscriptionRules* temp = rules_; - rules_ = NULL; - return temp; + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleSignRequest.algorithm) + return algorithm_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::dapr::proto::runtime::v1::PubsubSubscriptionRules* PubsubSubscription::mutable_rules() { +inline ::std::string* SubtleSignRequest::release_algorithm() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleSignRequest.algorithm) - if (rules_ == NULL) { - auto* p = CreateMaybeMessage<::dapr::proto::runtime::v1::PubsubSubscriptionRules>(GetArenaNoVirtual()); - rules_ = p; - } - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscription.rules) - return rules_; + return algorithm_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void PubsubSubscription::set_allocated_rules(::dapr::proto::runtime::v1::PubsubSubscriptionRules* rules) { - ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); - if (message_arena == NULL) { - delete rules_; - } - if (rules) { - ::google::protobuf::Arena* submessage_arena = NULL; - if (message_arena != submessage_arena) { - rules = ::google::protobuf::internal::GetOwnedMessage( - message_arena, rules, submessage_arena); - } +inline void SubtleSignRequest::set_allocated_algorithm(::std::string* algorithm) { + if (algorithm != NULL) { } else { } - rules_ = rules; - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscription.rules) + algorithm_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), algorithm); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleSignRequest.algorithm) } -// string dead_letter_topic = 5; -inline void PubsubSubscription::clear_dead_letter_topic() { - dead_letter_topic_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string key_name = 4[json_name = "keyName"]; +inline void SubtleSignRequest::clear_key_name() { + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& PubsubSubscription::dead_letter_topic() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) - return dead_letter_topic_.GetNoArena(); +inline const ::std::string& SubtleSignRequest::key_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleSignRequest.key_name) + return key_name_.GetNoArena(); } -inline void PubsubSubscription::set_dead_letter_topic(const ::std::string& value) { +inline void SubtleSignRequest::set_key_name(const ::std::string& value) { - dead_letter_topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleSignRequest.key_name) } #if LANG_CXX11 -inline void PubsubSubscription::set_dead_letter_topic(::std::string&& value) { +inline void SubtleSignRequest::set_key_name(::std::string&& value) { - dead_letter_topic_.SetNoArena( + key_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleSignRequest.key_name) } #endif -inline void PubsubSubscription::set_dead_letter_topic(const char* value) { +inline void SubtleSignRequest::set_key_name(const char* value) { GOOGLE_DCHECK(value != NULL); - dead_letter_topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleSignRequest.key_name) } -inline void PubsubSubscription::set_dead_letter_topic(const char* value, size_t size) { +inline void SubtleSignRequest::set_key_name(const char* value, size_t size) { - dead_letter_topic_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleSignRequest.key_name) } -inline ::std::string* PubsubSubscription::mutable_dead_letter_topic() { +inline ::std::string* SubtleSignRequest::mutable_key_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) - return dead_letter_topic_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleSignRequest.key_name) + return key_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* PubsubSubscription::release_dead_letter_topic() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) +inline ::std::string* SubtleSignRequest::release_key_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleSignRequest.key_name) - return dead_letter_topic_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return key_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void PubsubSubscription::set_allocated_dead_letter_topic(::std::string* dead_letter_topic) { - if (dead_letter_topic != NULL) { +inline void SubtleSignRequest::set_allocated_key_name(::std::string* key_name) { + if (key_name != NULL) { } else { } - dead_letter_topic_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), dead_letter_topic); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscription.dead_letter_topic) + key_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleSignRequest.key_name) } // ------------------------------------------------------------------- -// PubsubSubscriptionRules +// SubtleSignResponse -// repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1; -inline int PubsubSubscriptionRules::rules_size() const { - return rules_.size(); +// bytes signature = 1; +inline void SubtleSignResponse::clear_signature() { + signature_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void PubsubSubscriptionRules::clear_rules() { - rules_.Clear(); +inline const ::std::string& SubtleSignResponse::signature() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleSignResponse.signature) + return signature_.GetNoArena(); } -inline ::dapr::proto::runtime::v1::PubsubSubscriptionRule* PubsubSubscriptionRules::mutable_rules(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscriptionRules.rules) - return rules_.Mutable(index); +inline void SubtleSignResponse::set_signature(const ::std::string& value) { + + signature_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleSignResponse.signature) } -inline ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::PubsubSubscriptionRule >* -PubsubSubscriptionRules::mutable_rules() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.PubsubSubscriptionRules.rules) - return &rules_; +#if LANG_CXX11 +inline void SubtleSignResponse::set_signature(::std::string&& value) { + + signature_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleSignResponse.signature) } -inline const ::dapr::proto::runtime::v1::PubsubSubscriptionRule& PubsubSubscriptionRules::rules(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscriptionRules.rules) - return rules_.Get(index); +#endif +inline void SubtleSignResponse::set_signature(const char* value) { + GOOGLE_DCHECK(value != NULL); + + signature_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleSignResponse.signature) } -inline ::dapr::proto::runtime::v1::PubsubSubscriptionRule* PubsubSubscriptionRules::add_rules() { - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.PubsubSubscriptionRules.rules) - return rules_.Add(); +inline void SubtleSignResponse::set_signature(const void* value, size_t size) { + + signature_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleSignResponse.signature) } -inline const ::google::protobuf::RepeatedPtrField< ::dapr::proto::runtime::v1::PubsubSubscriptionRule >& -PubsubSubscriptionRules::rules() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.PubsubSubscriptionRules.rules) - return rules_; +inline ::std::string* SubtleSignResponse::mutable_signature() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleSignResponse.signature) + return signature_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* SubtleSignResponse::release_signature() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleSignResponse.signature) + + return signature_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void SubtleSignResponse::set_allocated_signature(::std::string* signature) { + if (signature != NULL) { + + } else { + + } + signature_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), signature); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleSignResponse.signature) } // ------------------------------------------------------------------- -// PubsubSubscriptionRule +// SubtleVerifyRequest + +// string component_name = 1[json_name = "componentName"]; +inline void SubtleVerifyRequest::clear_component_name() { + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& SubtleVerifyRequest::component_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleVerifyRequest.component_name) + return component_name_.GetNoArena(); +} +inline void SubtleVerifyRequest::set_component_name(const ::std::string& value) { + + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleVerifyRequest.component_name) +} +#if LANG_CXX11 +inline void SubtleVerifyRequest::set_component_name(::std::string&& value) { + + component_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleVerifyRequest.component_name) +} +#endif +inline void SubtleVerifyRequest::set_component_name(const char* value) { + GOOGLE_DCHECK(value != NULL); + + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleVerifyRequest.component_name) +} +inline void SubtleVerifyRequest::set_component_name(const char* value, size_t size) { + + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleVerifyRequest.component_name) +} +inline ::std::string* SubtleVerifyRequest::mutable_component_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleVerifyRequest.component_name) + return component_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* SubtleVerifyRequest::release_component_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleVerifyRequest.component_name) + + return component_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void SubtleVerifyRequest::set_allocated_component_name(::std::string* component_name) { + if (component_name != NULL) { + + } else { + + } + component_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), component_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleVerifyRequest.component_name) +} -// string match = 1; -inline void PubsubSubscriptionRule::clear_match() { - match_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes digest = 2; +inline void SubtleVerifyRequest::clear_digest() { + digest_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& PubsubSubscriptionRule::match() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) - return match_.GetNoArena(); +inline const ::std::string& SubtleVerifyRequest::digest() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleVerifyRequest.digest) + return digest_.GetNoArena(); } -inline void PubsubSubscriptionRule::set_match(const ::std::string& value) { +inline void SubtleVerifyRequest::set_digest(const ::std::string& value) { - match_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) + digest_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleVerifyRequest.digest) } #if LANG_CXX11 -inline void PubsubSubscriptionRule::set_match(::std::string&& value) { +inline void SubtleVerifyRequest::set_digest(::std::string&& value) { - match_.SetNoArena( + digest_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleVerifyRequest.digest) } #endif -inline void PubsubSubscriptionRule::set_match(const char* value) { +inline void SubtleVerifyRequest::set_digest(const char* value) { GOOGLE_DCHECK(value != NULL); - match_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) + digest_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleVerifyRequest.digest) } -inline void PubsubSubscriptionRule::set_match(const char* value, size_t size) { +inline void SubtleVerifyRequest::set_digest(const void* value, size_t size) { - match_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + digest_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleVerifyRequest.digest) } -inline ::std::string* PubsubSubscriptionRule::mutable_match() { +inline ::std::string* SubtleVerifyRequest::mutable_digest() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) - return match_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleVerifyRequest.digest) + return digest_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* PubsubSubscriptionRule::release_match() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) +inline ::std::string* SubtleVerifyRequest::release_digest() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleVerifyRequest.digest) - return match_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return digest_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void PubsubSubscriptionRule::set_allocated_match(::std::string* match) { - if (match != NULL) { +inline void SubtleVerifyRequest::set_allocated_digest(::std::string* digest) { + if (digest != NULL) { } else { } - match_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), match); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscriptionRule.match) + digest_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), digest); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleVerifyRequest.digest) } -// string path = 2; -inline void PubsubSubscriptionRule::clear_path() { - path_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string algorithm = 3; +inline void SubtleVerifyRequest::clear_algorithm() { + algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& PubsubSubscriptionRule::path() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) - return path_.GetNoArena(); +inline const ::std::string& SubtleVerifyRequest::algorithm() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleVerifyRequest.algorithm) + return algorithm_.GetNoArena(); } -inline void PubsubSubscriptionRule::set_path(const ::std::string& value) { +inline void SubtleVerifyRequest::set_algorithm(const ::std::string& value) { - path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleVerifyRequest.algorithm) } #if LANG_CXX11 -inline void PubsubSubscriptionRule::set_path(::std::string&& value) { +inline void SubtleVerifyRequest::set_algorithm(::std::string&& value) { - path_.SetNoArena( + algorithm_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleVerifyRequest.algorithm) } #endif -inline void PubsubSubscriptionRule::set_path(const char* value) { +inline void SubtleVerifyRequest::set_algorithm(const char* value) { GOOGLE_DCHECK(value != NULL); - path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleVerifyRequest.algorithm) } -inline void PubsubSubscriptionRule::set_path(const char* value, size_t size) { +inline void SubtleVerifyRequest::set_algorithm(const char* value, size_t size) { - path_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleVerifyRequest.algorithm) } -inline ::std::string* PubsubSubscriptionRule::mutable_path() { +inline ::std::string* SubtleVerifyRequest::mutable_algorithm() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) - return path_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleVerifyRequest.algorithm) + return algorithm_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* PubsubSubscriptionRule::release_path() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) +inline ::std::string* SubtleVerifyRequest::release_algorithm() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleVerifyRequest.algorithm) - return path_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return algorithm_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void PubsubSubscriptionRule::set_allocated_path(::std::string* path) { - if (path != NULL) { +inline void SubtleVerifyRequest::set_allocated_algorithm(::std::string* algorithm) { + if (algorithm != NULL) { } else { } - path_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), path); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PubsubSubscriptionRule.path) + algorithm_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), algorithm); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleVerifyRequest.algorithm) } -// ------------------------------------------------------------------- - -// SetMetadataRequest - -// string key = 1; -inline void SetMetadataRequest::clear_key() { - key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string key_name = 4[json_name = "keyName"]; +inline void SubtleVerifyRequest::clear_key_name() { + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& SetMetadataRequest::key() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SetMetadataRequest.key) - return key_.GetNoArena(); +inline const ::std::string& SubtleVerifyRequest::key_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleVerifyRequest.key_name) + return key_name_.GetNoArena(); } -inline void SetMetadataRequest::set_key(const ::std::string& value) { +inline void SubtleVerifyRequest::set_key_name(const ::std::string& value) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SetMetadataRequest.key) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleVerifyRequest.key_name) } #if LANG_CXX11 -inline void SetMetadataRequest::set_key(::std::string&& value) { +inline void SubtleVerifyRequest::set_key_name(::std::string&& value) { - key_.SetNoArena( + key_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SetMetadataRequest.key) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleVerifyRequest.key_name) } #endif -inline void SetMetadataRequest::set_key(const char* value) { +inline void SubtleVerifyRequest::set_key_name(const char* value) { GOOGLE_DCHECK(value != NULL); - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SetMetadataRequest.key) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleVerifyRequest.key_name) } -inline void SetMetadataRequest::set_key(const char* value, size_t size) { +inline void SubtleVerifyRequest::set_key_name(const char* value, size_t size) { - key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SetMetadataRequest.key) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleVerifyRequest.key_name) } -inline ::std::string* SetMetadataRequest::mutable_key() { +inline ::std::string* SubtleVerifyRequest::mutable_key_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SetMetadataRequest.key) - return key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleVerifyRequest.key_name) + return key_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* SetMetadataRequest::release_key() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SetMetadataRequest.key) +inline ::std::string* SubtleVerifyRequest::release_key_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleVerifyRequest.key_name) - return key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return key_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void SetMetadataRequest::set_allocated_key(::std::string* key) { - if (key != NULL) { +inline void SubtleVerifyRequest::set_allocated_key_name(::std::string* key_name) { + if (key_name != NULL) { } else { } - key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SetMetadataRequest.key) + key_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleVerifyRequest.key_name) } -// string value = 2; -inline void SetMetadataRequest::clear_value() { - value_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes signature = 5; +inline void SubtleVerifyRequest::clear_signature() { + signature_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& SetMetadataRequest::value() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SetMetadataRequest.value) - return value_.GetNoArena(); +inline const ::std::string& SubtleVerifyRequest::signature() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleVerifyRequest.signature) + return signature_.GetNoArena(); } -inline void SetMetadataRequest::set_value(const ::std::string& value) { +inline void SubtleVerifyRequest::set_signature(const ::std::string& value) { - value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SetMetadataRequest.value) + signature_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleVerifyRequest.signature) } #if LANG_CXX11 -inline void SetMetadataRequest::set_value(::std::string&& value) { +inline void SubtleVerifyRequest::set_signature(::std::string&& value) { - value_.SetNoArena( + signature_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SetMetadataRequest.value) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubtleVerifyRequest.signature) } #endif -inline void SetMetadataRequest::set_value(const char* value) { +inline void SubtleVerifyRequest::set_signature(const char* value) { GOOGLE_DCHECK(value != NULL); - value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SetMetadataRequest.value) + signature_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubtleVerifyRequest.signature) } -inline void SetMetadataRequest::set_value(const char* value, size_t size) { +inline void SubtleVerifyRequest::set_signature(const void* value, size_t size) { - value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + signature_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SetMetadataRequest.value) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubtleVerifyRequest.signature) } -inline ::std::string* SetMetadataRequest::mutable_value() { +inline ::std::string* SubtleVerifyRequest::mutable_signature() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SetMetadataRequest.value) - return value_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubtleVerifyRequest.signature) + return signature_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* SetMetadataRequest::release_value() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SetMetadataRequest.value) +inline ::std::string* SubtleVerifyRequest::release_signature() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubtleVerifyRequest.signature) - return value_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return signature_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void SetMetadataRequest::set_allocated_value(::std::string* value) { - if (value != NULL) { +inline void SubtleVerifyRequest::set_allocated_signature(::std::string* signature) { + if (signature != NULL) { } else { } - value_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SetMetadataRequest.value) + signature_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), signature); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubtleVerifyRequest.signature) } // ------------------------------------------------------------------- +// SubtleVerifyResponse + +// bool valid = 1; +inline void SubtleVerifyResponse::clear_valid() { + valid_ = false; +} +inline bool SubtleVerifyResponse::valid() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubtleVerifyResponse.valid) + return valid_; +} +inline void SubtleVerifyResponse::set_valid(bool value) { + + valid_ = value; + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubtleVerifyResponse.valid) +} + // ------------------------------------------------------------------- -// GetConfigurationRequest +// EncryptRequest -// string store_name = 1; -inline void GetConfigurationRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// .dapr.proto.runtime.v1.EncryptRequestOptions options = 1; +inline bool EncryptRequest::has_options() const { + return this != internal_default_instance() && options_ != NULL; } -inline const ::std::string& GetConfigurationRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) - return store_name_.GetNoArena(); +inline void EncryptRequest::clear_options() { + if (GetArenaNoVirtual() == NULL && options_ != NULL) { + delete options_; + } + options_ = NULL; } -inline void GetConfigurationRequest::set_store_name(const ::std::string& value) { +inline const ::dapr::proto::runtime::v1::EncryptRequestOptions& EncryptRequest::_internal_options() const { + return *options_; +} +inline const ::dapr::proto::runtime::v1::EncryptRequestOptions& EncryptRequest::options() const { + const ::dapr::proto::runtime::v1::EncryptRequestOptions* p = options_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.EncryptRequest.options) + return p != NULL ? *p : *reinterpret_cast( + &::dapr::proto::runtime::v1::_EncryptRequestOptions_default_instance_); +} +inline ::dapr::proto::runtime::v1::EncryptRequestOptions* EncryptRequest::release_options() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.EncryptRequest.options) - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) + ::dapr::proto::runtime::v1::EncryptRequestOptions* temp = options_; + options_ = NULL; + return temp; +} +inline ::dapr::proto::runtime::v1::EncryptRequestOptions* EncryptRequest::mutable_options() { + + if (options_ == NULL) { + auto* p = CreateMaybeMessage<::dapr::proto::runtime::v1::EncryptRequestOptions>(GetArenaNoVirtual()); + options_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.EncryptRequest.options) + return options_; +} +inline void EncryptRequest::set_allocated_options(::dapr::proto::runtime::v1::EncryptRequestOptions* options) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete options_; + } + if (options) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + options = ::google::protobuf::internal::GetOwnedMessage( + message_arena, options, submessage_arena); + } + + } else { + + } + options_ = options; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.EncryptRequest.options) +} + +// .dapr.proto.common.v1.StreamPayload payload = 2; +inline bool EncryptRequest::has_payload() const { + return this != internal_default_instance() && payload_ != NULL; +} +inline const ::dapr::proto::common::v1::StreamPayload& EncryptRequest::_internal_payload() const { + return *payload_; +} +inline const ::dapr::proto::common::v1::StreamPayload& EncryptRequest::payload() const { + const ::dapr::proto::common::v1::StreamPayload* p = payload_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.EncryptRequest.payload) + return p != NULL ? *p : *reinterpret_cast( + &::dapr::proto::common::v1::_StreamPayload_default_instance_); +} +inline ::dapr::proto::common::v1::StreamPayload* EncryptRequest::release_payload() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.EncryptRequest.payload) + + ::dapr::proto::common::v1::StreamPayload* temp = payload_; + payload_ = NULL; + return temp; +} +inline ::dapr::proto::common::v1::StreamPayload* EncryptRequest::mutable_payload() { + + if (payload_ == NULL) { + auto* p = CreateMaybeMessage<::dapr::proto::common::v1::StreamPayload>(GetArenaNoVirtual()); + payload_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.EncryptRequest.payload) + return payload_; +} +inline void EncryptRequest::set_allocated_payload(::dapr::proto::common::v1::StreamPayload* payload) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(payload_); + } + if (payload) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + payload = ::google::protobuf::internal::GetOwnedMessage( + message_arena, payload, submessage_arena); + } + + } else { + + } + payload_ = payload; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.EncryptRequest.payload) +} + +// ------------------------------------------------------------------- + +// EncryptRequestOptions + +// string component_name = 1[json_name = "componentName"]; +inline void EncryptRequestOptions::clear_component_name() { + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& EncryptRequestOptions::component_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.EncryptRequestOptions.component_name) + return component_name_.GetNoArena(); +} +inline void EncryptRequestOptions::set_component_name(const ::std::string& value) { + + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.EncryptRequestOptions.component_name) } #if LANG_CXX11 -inline void GetConfigurationRequest::set_store_name(::std::string&& value) { +inline void EncryptRequestOptions::set_component_name(::std::string&& value) { - store_name_.SetNoArena( + component_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.EncryptRequestOptions.component_name) } #endif -inline void GetConfigurationRequest::set_store_name(const char* value) { +inline void EncryptRequestOptions::set_component_name(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.EncryptRequestOptions.component_name) } -inline void GetConfigurationRequest::set_store_name(const char* value, size_t size) { +inline void EncryptRequestOptions::set_component_name(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.EncryptRequestOptions.component_name) } -inline ::std::string* GetConfigurationRequest::mutable_store_name() { +inline ::std::string* EncryptRequestOptions::mutable_component_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.EncryptRequestOptions.component_name) + return component_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetConfigurationRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) +inline ::std::string* EncryptRequestOptions::release_component_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.EncryptRequestOptions.component_name) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return component_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetConfigurationRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void EncryptRequestOptions::set_allocated_component_name(::std::string* component_name) { + if (component_name != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetConfigurationRequest.store_name) + component_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), component_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.EncryptRequestOptions.component_name) } -// repeated string keys = 2; -inline int GetConfigurationRequest::keys_size() const { - return keys_.size(); -} -inline void GetConfigurationRequest::clear_keys() { - keys_.Clear(); +// string key_name = 2[json_name = "keyName"]; +inline void EncryptRequestOptions::clear_key_name() { + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetConfigurationRequest::keys(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetConfigurationRequest.keys) - return keys_.Get(index); -} -inline ::std::string* GetConfigurationRequest::mutable_keys(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetConfigurationRequest.keys) - return keys_.Mutable(index); +inline const ::std::string& EncryptRequestOptions::key_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.EncryptRequestOptions.key_name) + return key_name_.GetNoArena(); } -inline void GetConfigurationRequest::set_keys(int index, const ::std::string& value) { - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetConfigurationRequest.keys) - keys_.Mutable(index)->assign(value); +inline void EncryptRequestOptions::set_key_name(const ::std::string& value) { + + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.EncryptRequestOptions.key_name) } #if LANG_CXX11 -inline void GetConfigurationRequest::set_keys(int index, ::std::string&& value) { - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetConfigurationRequest.keys) - keys_.Mutable(index)->assign(std::move(value)); +inline void EncryptRequestOptions::set_key_name(::std::string&& value) { + + key_name_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.EncryptRequestOptions.key_name) } #endif -inline void GetConfigurationRequest::set_keys(int index, const char* value) { +inline void EncryptRequestOptions::set_key_name(const char* value) { GOOGLE_DCHECK(value != NULL); - keys_.Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetConfigurationRequest.keys) + + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.EncryptRequestOptions.key_name) } -inline void GetConfigurationRequest::set_keys(int index, const char* value, size_t size) { - keys_.Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetConfigurationRequest.keys) +inline void EncryptRequestOptions::set_key_name(const char* value, size_t size) { + + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.EncryptRequestOptions.key_name) } -inline ::std::string* GetConfigurationRequest::add_keys() { - // @@protoc_insertion_point(field_add_mutable:dapr.proto.runtime.v1.GetConfigurationRequest.keys) - return keys_.Add(); +inline ::std::string* EncryptRequestOptions::mutable_key_name() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.EncryptRequestOptions.key_name) + return key_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* EncryptRequestOptions::release_key_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.EncryptRequestOptions.key_name) + + return key_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void EncryptRequestOptions::set_allocated_key_name(::std::string* key_name) { + if (key_name != NULL) { + + } else { + + } + key_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.EncryptRequestOptions.key_name) +} + +// string key_wrap_algorithm = 3; +inline void EncryptRequestOptions::clear_key_wrap_algorithm() { + key_wrap_algorithm_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& EncryptRequestOptions::key_wrap_algorithm() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.EncryptRequestOptions.key_wrap_algorithm) + return key_wrap_algorithm_.GetNoArena(); } -inline void GetConfigurationRequest::add_keys(const ::std::string& value) { - keys_.Add()->assign(value); - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetConfigurationRequest.keys) +inline void EncryptRequestOptions::set_key_wrap_algorithm(const ::std::string& value) { + + key_wrap_algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.EncryptRequestOptions.key_wrap_algorithm) } #if LANG_CXX11 -inline void GetConfigurationRequest::add_keys(::std::string&& value) { - keys_.Add(std::move(value)); - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.GetConfigurationRequest.keys) +inline void EncryptRequestOptions::set_key_wrap_algorithm(::std::string&& value) { + + key_wrap_algorithm_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.EncryptRequestOptions.key_wrap_algorithm) } #endif -inline void GetConfigurationRequest::add_keys(const char* value) { +inline void EncryptRequestOptions::set_key_wrap_algorithm(const char* value) { GOOGLE_DCHECK(value != NULL); - keys_.Add()->assign(value); - // @@protoc_insertion_point(field_add_char:dapr.proto.runtime.v1.GetConfigurationRequest.keys) + + key_wrap_algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.EncryptRequestOptions.key_wrap_algorithm) } -inline void GetConfigurationRequest::add_keys(const char* value, size_t size) { - keys_.Add()->assign(reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:dapr.proto.runtime.v1.GetConfigurationRequest.keys) +inline void EncryptRequestOptions::set_key_wrap_algorithm(const char* value, size_t size) { + + key_wrap_algorithm_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.EncryptRequestOptions.key_wrap_algorithm) } -inline const ::google::protobuf::RepeatedPtrField< ::std::string>& -GetConfigurationRequest::keys() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.GetConfigurationRequest.keys) - return keys_; +inline ::std::string* EncryptRequestOptions::mutable_key_wrap_algorithm() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.EncryptRequestOptions.key_wrap_algorithm) + return key_wrap_algorithm_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::google::protobuf::RepeatedPtrField< ::std::string>* -GetConfigurationRequest::mutable_keys() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.GetConfigurationRequest.keys) - return &keys_; +inline ::std::string* EncryptRequestOptions::release_key_wrap_algorithm() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.EncryptRequestOptions.key_wrap_algorithm) + + return key_wrap_algorithm_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void EncryptRequestOptions::set_allocated_key_wrap_algorithm(::std::string* key_wrap_algorithm) { + if (key_wrap_algorithm != NULL) { + + } else { + + } + key_wrap_algorithm_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key_wrap_algorithm); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.EncryptRequestOptions.key_wrap_algorithm) } -// map metadata = 3; -inline int GetConfigurationRequest::metadata_size() const { - return metadata_.size(); +// string data_encryption_cipher = 10; +inline void EncryptRequestOptions::clear_data_encryption_cipher() { + data_encryption_cipher_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetConfigurationRequest::clear_metadata() { - metadata_.Clear(); +inline const ::std::string& EncryptRequestOptions::data_encryption_cipher() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.EncryptRequestOptions.data_encryption_cipher) + return data_encryption_cipher_.GetNoArena(); } -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -GetConfigurationRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetConfigurationRequest.metadata) - return metadata_.GetMap(); +inline void EncryptRequestOptions::set_data_encryption_cipher(const ::std::string& value) { + + data_encryption_cipher_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.EncryptRequestOptions.data_encryption_cipher) } -inline ::google::protobuf::Map< ::std::string, ::std::string >* -GetConfigurationRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetConfigurationRequest.metadata) - return metadata_.MutableMap(); +#if LANG_CXX11 +inline void EncryptRequestOptions::set_data_encryption_cipher(::std::string&& value) { + + data_encryption_cipher_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.EncryptRequestOptions.data_encryption_cipher) } - -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// GetConfigurationResponse - -// map items = 1; -inline int GetConfigurationResponse::items_size() const { - return items_.size(); +#endif +inline void EncryptRequestOptions::set_data_encryption_cipher(const char* value) { + GOOGLE_DCHECK(value != NULL); + + data_encryption_cipher_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.EncryptRequestOptions.data_encryption_cipher) } -inline const ::google::protobuf::Map< ::std::string, ::dapr::proto::common::v1::ConfigurationItem >& -GetConfigurationResponse::items() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetConfigurationResponse.items) - return items_.GetMap(); +inline void EncryptRequestOptions::set_data_encryption_cipher(const char* value, size_t size) { + + data_encryption_cipher_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.EncryptRequestOptions.data_encryption_cipher) } -inline ::google::protobuf::Map< ::std::string, ::dapr::proto::common::v1::ConfigurationItem >* -GetConfigurationResponse::mutable_items() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetConfigurationResponse.items) - return items_.MutableMap(); +inline ::std::string* EncryptRequestOptions::mutable_data_encryption_cipher() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.EncryptRequestOptions.data_encryption_cipher) + return data_encryption_cipher_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* EncryptRequestOptions::release_data_encryption_cipher() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.EncryptRequestOptions.data_encryption_cipher) + + return data_encryption_cipher_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void EncryptRequestOptions::set_allocated_data_encryption_cipher(::std::string* data_encryption_cipher) { + if (data_encryption_cipher != NULL) { + + } else { + + } + data_encryption_cipher_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data_encryption_cipher); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.EncryptRequestOptions.data_encryption_cipher) } -// ------------------------------------------------------------------- - -// ------------------------------------------------------------------- - -// SubscribeConfigurationRequest +// bool omit_decryption_key_name = 11[json_name = "omitDecryptionKeyName"]; +inline void EncryptRequestOptions::clear_omit_decryption_key_name() { + omit_decryption_key_name_ = false; +} +inline bool EncryptRequestOptions::omit_decryption_key_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.EncryptRequestOptions.omit_decryption_key_name) + return omit_decryption_key_name_; +} +inline void EncryptRequestOptions::set_omit_decryption_key_name(bool value) { + + omit_decryption_key_name_ = value; + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.EncryptRequestOptions.omit_decryption_key_name) +} -// string store_name = 1; -inline void SubscribeConfigurationRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string decryption_key_name = 12[json_name = "decryptionKeyName"]; +inline void EncryptRequestOptions::clear_decryption_key_name() { + decryption_key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& SubscribeConfigurationRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) - return store_name_.GetNoArena(); +inline const ::std::string& EncryptRequestOptions::decryption_key_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.EncryptRequestOptions.decryption_key_name) + return decryption_key_name_.GetNoArena(); } -inline void SubscribeConfigurationRequest::set_store_name(const ::std::string& value) { +inline void EncryptRequestOptions::set_decryption_key_name(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) + decryption_key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.EncryptRequestOptions.decryption_key_name) } #if LANG_CXX11 -inline void SubscribeConfigurationRequest::set_store_name(::std::string&& value) { +inline void EncryptRequestOptions::set_decryption_key_name(::std::string&& value) { - store_name_.SetNoArena( + decryption_key_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.EncryptRequestOptions.decryption_key_name) } #endif -inline void SubscribeConfigurationRequest::set_store_name(const char* value) { +inline void EncryptRequestOptions::set_decryption_key_name(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) + decryption_key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.EncryptRequestOptions.decryption_key_name) } -inline void SubscribeConfigurationRequest::set_store_name(const char* value, size_t size) { +inline void EncryptRequestOptions::set_decryption_key_name(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + decryption_key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.EncryptRequestOptions.decryption_key_name) } -inline ::std::string* SubscribeConfigurationRequest::mutable_store_name() { +inline ::std::string* EncryptRequestOptions::mutable_decryption_key_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.EncryptRequestOptions.decryption_key_name) + return decryption_key_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* SubscribeConfigurationRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) +inline ::std::string* EncryptRequestOptions::release_decryption_key_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.EncryptRequestOptions.decryption_key_name) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return decryption_key_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void SubscribeConfigurationRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void EncryptRequestOptions::set_allocated_decryption_key_name(::std::string* decryption_key_name) { + if (decryption_key_name != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubscribeConfigurationRequest.store_name) + decryption_key_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), decryption_key_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.EncryptRequestOptions.decryption_key_name) } -// repeated string keys = 2; -inline int SubscribeConfigurationRequest::keys_size() const { - return keys_.size(); +// ------------------------------------------------------------------- + +// EncryptResponse + +// .dapr.proto.common.v1.StreamPayload payload = 1; +inline bool EncryptResponse::has_payload() const { + return this != internal_default_instance() && payload_ != NULL; } -inline void SubscribeConfigurationRequest::clear_keys() { - keys_.Clear(); +inline const ::dapr::proto::common::v1::StreamPayload& EncryptResponse::_internal_payload() const { + return *payload_; } -inline const ::std::string& SubscribeConfigurationRequest::keys(int index) const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) - return keys_.Get(index); +inline const ::dapr::proto::common::v1::StreamPayload& EncryptResponse::payload() const { + const ::dapr::proto::common::v1::StreamPayload* p = payload_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.EncryptResponse.payload) + return p != NULL ? *p : *reinterpret_cast( + &::dapr::proto::common::v1::_StreamPayload_default_instance_); } -inline ::std::string* SubscribeConfigurationRequest::mutable_keys(int index) { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) - return keys_.Mutable(index); +inline ::dapr::proto::common::v1::StreamPayload* EncryptResponse::release_payload() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.EncryptResponse.payload) + + ::dapr::proto::common::v1::StreamPayload* temp = payload_; + payload_ = NULL; + return temp; } -inline void SubscribeConfigurationRequest::set_keys(int index, const ::std::string& value) { - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) - keys_.Mutable(index)->assign(value); +inline ::dapr::proto::common::v1::StreamPayload* EncryptResponse::mutable_payload() { + + if (payload_ == NULL) { + auto* p = CreateMaybeMessage<::dapr::proto::common::v1::StreamPayload>(GetArenaNoVirtual()); + payload_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.EncryptResponse.payload) + return payload_; } -#if LANG_CXX11 -inline void SubscribeConfigurationRequest::set_keys(int index, ::std::string&& value) { - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) - keys_.Mutable(index)->assign(std::move(value)); +inline void EncryptResponse::set_allocated_payload(::dapr::proto::common::v1::StreamPayload* payload) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(payload_); + } + if (payload) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + payload = ::google::protobuf::internal::GetOwnedMessage( + message_arena, payload, submessage_arena); + } + + } else { + + } + payload_ = payload; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.EncryptResponse.payload) } -#endif -inline void SubscribeConfigurationRequest::set_keys(int index, const char* value) { - GOOGLE_DCHECK(value != NULL); - keys_.Mutable(index)->assign(value); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) + +// ------------------------------------------------------------------- + +// DecryptRequest + +// .dapr.proto.runtime.v1.DecryptRequestOptions options = 1; +inline bool DecryptRequest::has_options() const { + return this != internal_default_instance() && options_ != NULL; } -inline void SubscribeConfigurationRequest::set_keys(int index, const char* value, size_t size) { - keys_.Mutable(index)->assign( - reinterpret_cast(value), size); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) +inline void DecryptRequest::clear_options() { + if (GetArenaNoVirtual() == NULL && options_ != NULL) { + delete options_; + } + options_ = NULL; } -inline ::std::string* SubscribeConfigurationRequest::add_keys() { - // @@protoc_insertion_point(field_add_mutable:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) - return keys_.Add(); +inline const ::dapr::proto::runtime::v1::DecryptRequestOptions& DecryptRequest::_internal_options() const { + return *options_; } -inline void SubscribeConfigurationRequest::add_keys(const ::std::string& value) { - keys_.Add()->assign(value); - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) +inline const ::dapr::proto::runtime::v1::DecryptRequestOptions& DecryptRequest::options() const { + const ::dapr::proto::runtime::v1::DecryptRequestOptions* p = options_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DecryptRequest.options) + return p != NULL ? *p : *reinterpret_cast( + &::dapr::proto::runtime::v1::_DecryptRequestOptions_default_instance_); } -#if LANG_CXX11 -inline void SubscribeConfigurationRequest::add_keys(::std::string&& value) { - keys_.Add(std::move(value)); - // @@protoc_insertion_point(field_add:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) +inline ::dapr::proto::runtime::v1::DecryptRequestOptions* DecryptRequest::release_options() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DecryptRequest.options) + + ::dapr::proto::runtime::v1::DecryptRequestOptions* temp = options_; + options_ = NULL; + return temp; } -#endif -inline void SubscribeConfigurationRequest::add_keys(const char* value) { - GOOGLE_DCHECK(value != NULL); - keys_.Add()->assign(value); - // @@protoc_insertion_point(field_add_char:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) +inline ::dapr::proto::runtime::v1::DecryptRequestOptions* DecryptRequest::mutable_options() { + + if (options_ == NULL) { + auto* p = CreateMaybeMessage<::dapr::proto::runtime::v1::DecryptRequestOptions>(GetArenaNoVirtual()); + options_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DecryptRequest.options) + return options_; } -inline void SubscribeConfigurationRequest::add_keys(const char* value, size_t size) { - keys_.Add()->assign(reinterpret_cast(value), size); - // @@protoc_insertion_point(field_add_pointer:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) +inline void DecryptRequest::set_allocated_options(::dapr::proto::runtime::v1::DecryptRequestOptions* options) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete options_; + } + if (options) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + options = ::google::protobuf::internal::GetOwnedMessage( + message_arena, options, submessage_arena); + } + + } else { + + } + options_ = options; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DecryptRequest.options) } -inline const ::google::protobuf::RepeatedPtrField< ::std::string>& -SubscribeConfigurationRequest::keys() const { - // @@protoc_insertion_point(field_list:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) - return keys_; + +// .dapr.proto.common.v1.StreamPayload payload = 2; +inline bool DecryptRequest::has_payload() const { + return this != internal_default_instance() && payload_ != NULL; } -inline ::google::protobuf::RepeatedPtrField< ::std::string>* -SubscribeConfigurationRequest::mutable_keys() { - // @@protoc_insertion_point(field_mutable_list:dapr.proto.runtime.v1.SubscribeConfigurationRequest.keys) - return &keys_; +inline const ::dapr::proto::common::v1::StreamPayload& DecryptRequest::_internal_payload() const { + return *payload_; } - -// map metadata = 3; -inline int SubscribeConfigurationRequest::metadata_size() const { - return metadata_.size(); +inline const ::dapr::proto::common::v1::StreamPayload& DecryptRequest::payload() const { + const ::dapr::proto::common::v1::StreamPayload* p = payload_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DecryptRequest.payload) + return p != NULL ? *p : *reinterpret_cast( + &::dapr::proto::common::v1::_StreamPayload_default_instance_); } -inline void SubscribeConfigurationRequest::clear_metadata() { - metadata_.Clear(); +inline ::dapr::proto::common::v1::StreamPayload* DecryptRequest::release_payload() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DecryptRequest.payload) + + ::dapr::proto::common::v1::StreamPayload* temp = payload_; + payload_ = NULL; + return temp; } -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -SubscribeConfigurationRequest::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.SubscribeConfigurationRequest.metadata) - return metadata_.GetMap(); +inline ::dapr::proto::common::v1::StreamPayload* DecryptRequest::mutable_payload() { + + if (payload_ == NULL) { + auto* p = CreateMaybeMessage<::dapr::proto::common::v1::StreamPayload>(GetArenaNoVirtual()); + payload_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DecryptRequest.payload) + return payload_; } -inline ::google::protobuf::Map< ::std::string, ::std::string >* -SubscribeConfigurationRequest::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.SubscribeConfigurationRequest.metadata) - return metadata_.MutableMap(); +inline void DecryptRequest::set_allocated_payload(::dapr::proto::common::v1::StreamPayload* payload) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(payload_); + } + if (payload) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + payload = ::google::protobuf::internal::GetOwnedMessage( + message_arena, payload, submessage_arena); + } + + } else { + + } + payload_ = payload; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DecryptRequest.payload) } // ------------------------------------------------------------------- -// UnsubscribeConfigurationRequest - -// string store_name = 1; -inline void UnsubscribeConfigurationRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); -} -inline const ::std::string& UnsubscribeConfigurationRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) - return store_name_.GetNoArena(); +// DecryptRequestOptions + +// string component_name = 1[json_name = "componentName"]; +inline void DecryptRequestOptions::clear_component_name() { + component_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnsubscribeConfigurationRequest::set_store_name(const ::std::string& value) { +inline const ::std::string& DecryptRequestOptions::component_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DecryptRequestOptions.component_name) + return component_name_.GetNoArena(); +} +inline void DecryptRequestOptions::set_component_name(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.DecryptRequestOptions.component_name) } #if LANG_CXX11 -inline void UnsubscribeConfigurationRequest::set_store_name(::std::string&& value) { +inline void DecryptRequestOptions::set_component_name(::std::string&& value) { - store_name_.SetNoArena( + component_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.DecryptRequestOptions.component_name) } #endif -inline void UnsubscribeConfigurationRequest::set_store_name(const char* value) { +inline void DecryptRequestOptions::set_component_name(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.DecryptRequestOptions.component_name) } -inline void UnsubscribeConfigurationRequest::set_store_name(const char* value, size_t size) { +inline void DecryptRequestOptions::set_component_name(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + component_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.DecryptRequestOptions.component_name) } -inline ::std::string* UnsubscribeConfigurationRequest::mutable_store_name() { +inline ::std::string* DecryptRequestOptions::mutable_component_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DecryptRequestOptions.component_name) + return component_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnsubscribeConfigurationRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) +inline ::std::string* DecryptRequestOptions::release_component_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DecryptRequestOptions.component_name) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return component_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnsubscribeConfigurationRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void DecryptRequestOptions::set_allocated_component_name(::std::string* component_name) { + if (component_name != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.store_name) + component_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), component_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DecryptRequestOptions.component_name) } -// string id = 2; -inline void UnsubscribeConfigurationRequest::clear_id() { - id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string key_name = 12[json_name = "keyName"]; +inline void DecryptRequestOptions::clear_key_name() { + key_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& UnsubscribeConfigurationRequest::id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) - return id_.GetNoArena(); +inline const ::std::string& DecryptRequestOptions::key_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DecryptRequestOptions.key_name) + return key_name_.GetNoArena(); } -inline void UnsubscribeConfigurationRequest::set_id(const ::std::string& value) { +inline void DecryptRequestOptions::set_key_name(const ::std::string& value) { - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.DecryptRequestOptions.key_name) } #if LANG_CXX11 -inline void UnsubscribeConfigurationRequest::set_id(::std::string&& value) { +inline void DecryptRequestOptions::set_key_name(::std::string&& value) { - id_.SetNoArena( + key_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.DecryptRequestOptions.key_name) } #endif -inline void UnsubscribeConfigurationRequest::set_id(const char* value) { +inline void DecryptRequestOptions::set_key_name(const char* value) { GOOGLE_DCHECK(value != NULL); - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.DecryptRequestOptions.key_name) } -inline void UnsubscribeConfigurationRequest::set_id(const char* value, size_t size) { +inline void DecryptRequestOptions::set_key_name(const char* value, size_t size) { - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + key_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.DecryptRequestOptions.key_name) } -inline ::std::string* UnsubscribeConfigurationRequest::mutable_id() { +inline ::std::string* DecryptRequestOptions::mutable_key_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) - return id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DecryptRequestOptions.key_name) + return key_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnsubscribeConfigurationRequest::release_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) +inline ::std::string* DecryptRequestOptions::release_key_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DecryptRequestOptions.key_name) - return id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return key_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnsubscribeConfigurationRequest::set_allocated_id(::std::string* id) { - if (id != NULL) { +inline void DecryptRequestOptions::set_allocated_key_name(::std::string* key_name) { + if (key_name != NULL) { } else { } - id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnsubscribeConfigurationRequest.id) + key_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), key_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DecryptRequestOptions.key_name) } // ------------------------------------------------------------------- +// DecryptResponse + +// .dapr.proto.common.v1.StreamPayload payload = 1; +inline bool DecryptResponse::has_payload() const { + return this != internal_default_instance() && payload_ != NULL; +} +inline const ::dapr::proto::common::v1::StreamPayload& DecryptResponse::_internal_payload() const { + return *payload_; +} +inline const ::dapr::proto::common::v1::StreamPayload& DecryptResponse::payload() const { + const ::dapr::proto::common::v1::StreamPayload* p = payload_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.DecryptResponse.payload) + return p != NULL ? *p : *reinterpret_cast( + &::dapr::proto::common::v1::_StreamPayload_default_instance_); +} +inline ::dapr::proto::common::v1::StreamPayload* DecryptResponse::release_payload() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.DecryptResponse.payload) + + ::dapr::proto::common::v1::StreamPayload* temp = payload_; + payload_ = NULL; + return temp; +} +inline ::dapr::proto::common::v1::StreamPayload* DecryptResponse::mutable_payload() { + + if (payload_ == NULL) { + auto* p = CreateMaybeMessage<::dapr::proto::common::v1::StreamPayload>(GetArenaNoVirtual()); + payload_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.DecryptResponse.payload) + return payload_; +} +inline void DecryptResponse::set_allocated_payload(::dapr::proto::common::v1::StreamPayload* payload) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(payload_); + } + if (payload) { + ::google::protobuf::Arena* submessage_arena = NULL; + if (message_arena != submessage_arena) { + payload = ::google::protobuf::internal::GetOwnedMessage( + message_arena, payload, submessage_arena); + } + + } else { + + } + payload_ = payload; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.DecryptResponse.payload) +} + // ------------------------------------------------------------------- -// SubscribeConfigurationResponse +// GetWorkflowRequest -// string id = 1; -inline void SubscribeConfigurationResponse::clear_id() { - id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string instance_id = 1[json_name = "instanceID"]; +inline void GetWorkflowRequest::clear_instance_id() { + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& SubscribeConfigurationResponse::id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) - return id_.GetNoArena(); +inline const ::std::string& GetWorkflowRequest::instance_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) + return instance_id_.GetNoArena(); } -inline void SubscribeConfigurationResponse::set_id(const ::std::string& value) { +inline void GetWorkflowRequest::set_instance_id(const ::std::string& value) { - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) } #if LANG_CXX11 -inline void SubscribeConfigurationResponse::set_id(::std::string&& value) { +inline void GetWorkflowRequest::set_instance_id(::std::string&& value) { - id_.SetNoArena( + instance_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) } #endif -inline void SubscribeConfigurationResponse::set_id(const char* value) { +inline void GetWorkflowRequest::set_instance_id(const char* value) { GOOGLE_DCHECK(value != NULL); - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) } -inline void SubscribeConfigurationResponse::set_id(const char* value, size_t size) { +inline void GetWorkflowRequest::set_instance_id(const char* value, size_t size) { - id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) } -inline ::std::string* SubscribeConfigurationResponse::mutable_id() { +inline ::std::string* GetWorkflowRequest::mutable_instance_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) - return id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) + return instance_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* SubscribeConfigurationResponse::release_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) +inline ::std::string* GetWorkflowRequest::release_instance_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) - return id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return instance_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void SubscribeConfigurationResponse::set_allocated_id(::std::string* id) { - if (id != NULL) { +inline void GetWorkflowRequest::set_allocated_instance_id(::std::string* instance_id) { + if (instance_id != NULL) { } else { } - id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.SubscribeConfigurationResponse.id) + instance_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), instance_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) } -// map items = 2; -inline int SubscribeConfigurationResponse::items_size() const { - return items_.size(); +// string workflow_component = 2[json_name = "workflowComponent"]; +inline void GetWorkflowRequest::clear_workflow_component() { + workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::google::protobuf::Map< ::std::string, ::dapr::proto::common::v1::ConfigurationItem >& -SubscribeConfigurationResponse::items() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.SubscribeConfigurationResponse.items) - return items_.GetMap(); +inline const ::std::string& GetWorkflowRequest::workflow_component() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) + return workflow_component_.GetNoArena(); } -inline ::google::protobuf::Map< ::std::string, ::dapr::proto::common::v1::ConfigurationItem >* -SubscribeConfigurationResponse::mutable_items() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.SubscribeConfigurationResponse.items) - return items_.MutableMap(); +inline void GetWorkflowRequest::set_workflow_component(const ::std::string& value) { + + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) } - -// ------------------------------------------------------------------- - -// UnsubscribeConfigurationResponse - -// bool ok = 1; -inline void UnsubscribeConfigurationResponse::clear_ok() { - ok_ = false; +#if LANG_CXX11 +inline void GetWorkflowRequest::set_workflow_component(::std::string&& value) { + + workflow_component_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) } -inline bool UnsubscribeConfigurationResponse::ok() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.ok) - return ok_; +#endif +inline void GetWorkflowRequest::set_workflow_component(const char* value) { + GOOGLE_DCHECK(value != NULL); + + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) } -inline void UnsubscribeConfigurationResponse::set_ok(bool value) { +inline void GetWorkflowRequest::set_workflow_component(const char* value, size_t size) { - ok_ = value; - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.ok) + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) +} +inline ::std::string* GetWorkflowRequest::mutable_workflow_component() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) + return workflow_component_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* GetWorkflowRequest::release_workflow_component() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) + + return workflow_component_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void GetWorkflowRequest::set_allocated_workflow_component(::std::string* workflow_component) { + if (workflow_component != NULL) { + + } else { + + } + workflow_component_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), workflow_component); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) } -// string message = 2; -inline void UnsubscribeConfigurationResponse::clear_message() { - message_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// GetWorkflowResponse + +// string instance_id = 1[json_name = "instanceID"]; +inline void GetWorkflowResponse::clear_instance_id() { + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& UnsubscribeConfigurationResponse::message() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) - return message_.GetNoArena(); +inline const ::std::string& GetWorkflowResponse::instance_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) + return instance_id_.GetNoArena(); } -inline void UnsubscribeConfigurationResponse::set_message(const ::std::string& value) { +inline void GetWorkflowResponse::set_instance_id(const ::std::string& value) { - message_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) } #if LANG_CXX11 -inline void UnsubscribeConfigurationResponse::set_message(::std::string&& value) { +inline void GetWorkflowResponse::set_instance_id(::std::string&& value) { - message_.SetNoArena( + instance_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) } #endif -inline void UnsubscribeConfigurationResponse::set_message(const char* value) { +inline void GetWorkflowResponse::set_instance_id(const char* value) { GOOGLE_DCHECK(value != NULL); - message_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) } -inline void UnsubscribeConfigurationResponse::set_message(const char* value, size_t size) { +inline void GetWorkflowResponse::set_instance_id(const char* value, size_t size) { - message_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) } -inline ::std::string* UnsubscribeConfigurationResponse::mutable_message() { +inline ::std::string* GetWorkflowResponse::mutable_instance_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) - return message_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) + return instance_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnsubscribeConfigurationResponse::release_message() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) +inline ::std::string* GetWorkflowResponse::release_instance_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) - return message_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return instance_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnsubscribeConfigurationResponse::set_allocated_message(::std::string* message) { - if (message != NULL) { +inline void GetWorkflowResponse::set_allocated_instance_id(::std::string* instance_id) { + if (instance_id != NULL) { } else { } - message_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), message); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnsubscribeConfigurationResponse.message) + instance_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), instance_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) } -// ------------------------------------------------------------------- - -// TryLockRequest - -// string store_name = 1; -inline void TryLockRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string workflow_name = 2[json_name = "workflowName"]; +inline void GetWorkflowResponse::clear_workflow_name() { + workflow_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& TryLockRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TryLockRequest.store_name) - return store_name_.GetNoArena(); +inline const ::std::string& GetWorkflowResponse::workflow_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowResponse.workflow_name) + return workflow_name_.GetNoArena(); } -inline void TryLockRequest::set_store_name(const ::std::string& value) { +inline void GetWorkflowResponse::set_workflow_name(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TryLockRequest.store_name) + workflow_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetWorkflowResponse.workflow_name) } #if LANG_CXX11 -inline void TryLockRequest::set_store_name(::std::string&& value) { +inline void GetWorkflowResponse::set_workflow_name(::std::string&& value) { - store_name_.SetNoArena( + workflow_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TryLockRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetWorkflowResponse.workflow_name) } #endif -inline void TryLockRequest::set_store_name(const char* value) { +inline void GetWorkflowResponse::set_workflow_name(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TryLockRequest.store_name) + workflow_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetWorkflowResponse.workflow_name) } -inline void TryLockRequest::set_store_name(const char* value, size_t size) { +inline void GetWorkflowResponse::set_workflow_name(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + workflow_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TryLockRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetWorkflowResponse.workflow_name) } -inline ::std::string* TryLockRequest::mutable_store_name() { +inline ::std::string* GetWorkflowResponse::mutable_workflow_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TryLockRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetWorkflowResponse.workflow_name) + return workflow_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* TryLockRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TryLockRequest.store_name) +inline ::std::string* GetWorkflowResponse::release_workflow_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetWorkflowResponse.workflow_name) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return workflow_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void TryLockRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void GetWorkflowResponse::set_allocated_workflow_name(::std::string* workflow_name) { + if (workflow_name != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TryLockRequest.store_name) + workflow_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), workflow_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetWorkflowResponse.workflow_name) } -// string resource_id = 2; -inline void TryLockRequest::clear_resource_id() { - resource_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// .google.protobuf.Timestamp created_at = 3[json_name = "createdAt"]; +inline bool GetWorkflowResponse::has_created_at() const { + return this != internal_default_instance() && created_at_ != NULL; } -inline const ::std::string& TryLockRequest::resource_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TryLockRequest.resource_id) - return resource_id_.GetNoArena(); +inline const ::google::protobuf::Timestamp& GetWorkflowResponse::_internal_created_at() const { + return *created_at_; } -inline void TryLockRequest::set_resource_id(const ::std::string& value) { - - resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TryLockRequest.resource_id) +inline const ::google::protobuf::Timestamp& GetWorkflowResponse::created_at() const { + const ::google::protobuf::Timestamp* p = created_at_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowResponse.created_at) + return p != NULL ? *p : *reinterpret_cast( + &::google::protobuf::_Timestamp_default_instance_); } -#if LANG_CXX11 -inline void TryLockRequest::set_resource_id(::std::string&& value) { +inline ::google::protobuf::Timestamp* GetWorkflowResponse::release_created_at() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetWorkflowResponse.created_at) - resource_id_.SetNoArena( - &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TryLockRequest.resource_id) + ::google::protobuf::Timestamp* temp = created_at_; + created_at_ = NULL; + return temp; } -#endif -inline void TryLockRequest::set_resource_id(const char* value) { - GOOGLE_DCHECK(value != NULL); +inline ::google::protobuf::Timestamp* GetWorkflowResponse::mutable_created_at() { - resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TryLockRequest.resource_id) + if (created_at_ == NULL) { + auto* p = CreateMaybeMessage<::google::protobuf::Timestamp>(GetArenaNoVirtual()); + created_at_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetWorkflowResponse.created_at) + return created_at_; } -inline void TryLockRequest::set_resource_id(const char* value, size_t size) { - - resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), - ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TryLockRequest.resource_id) +inline void GetWorkflowResponse::set_allocated_created_at(::google::protobuf::Timestamp* created_at) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(created_at_); + } + if (created_at) { + ::google::protobuf::Arena* submessage_arena = + reinterpret_cast<::google::protobuf::MessageLite*>(created_at)->GetArena(); + if (message_arena != submessage_arena) { + created_at = ::google::protobuf::internal::GetOwnedMessage( + message_arena, created_at, submessage_arena); + } + + } else { + + } + created_at_ = created_at; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetWorkflowResponse.created_at) } -inline ::std::string* TryLockRequest::mutable_resource_id() { + +// .google.protobuf.Timestamp last_updated_at = 4[json_name = "lastUpdatedAt"]; +inline bool GetWorkflowResponse::has_last_updated_at() const { + return this != internal_default_instance() && last_updated_at_ != NULL; +} +inline const ::google::protobuf::Timestamp& GetWorkflowResponse::_internal_last_updated_at() const { + return *last_updated_at_; +} +inline const ::google::protobuf::Timestamp& GetWorkflowResponse::last_updated_at() const { + const ::google::protobuf::Timestamp* p = last_updated_at_; + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowResponse.last_updated_at) + return p != NULL ? *p : *reinterpret_cast( + &::google::protobuf::_Timestamp_default_instance_); +} +inline ::google::protobuf::Timestamp* GetWorkflowResponse::release_last_updated_at() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetWorkflowResponse.last_updated_at) - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TryLockRequest.resource_id) - return resource_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + ::google::protobuf::Timestamp* temp = last_updated_at_; + last_updated_at_ = NULL; + return temp; } -inline ::std::string* TryLockRequest::release_resource_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TryLockRequest.resource_id) +inline ::google::protobuf::Timestamp* GetWorkflowResponse::mutable_last_updated_at() { - return resource_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (last_updated_at_ == NULL) { + auto* p = CreateMaybeMessage<::google::protobuf::Timestamp>(GetArenaNoVirtual()); + last_updated_at_ = p; + } + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetWorkflowResponse.last_updated_at) + return last_updated_at_; } -inline void TryLockRequest::set_allocated_resource_id(::std::string* resource_id) { - if (resource_id != NULL) { +inline void GetWorkflowResponse::set_allocated_last_updated_at(::google::protobuf::Timestamp* last_updated_at) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == NULL) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(last_updated_at_); + } + if (last_updated_at) { + ::google::protobuf::Arena* submessage_arena = + reinterpret_cast<::google::protobuf::MessageLite*>(last_updated_at)->GetArena(); + if (message_arena != submessage_arena) { + last_updated_at = ::google::protobuf::internal::GetOwnedMessage( + message_arena, last_updated_at, submessage_arena); + } } else { } - resource_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), resource_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TryLockRequest.resource_id) + last_updated_at_ = last_updated_at; + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetWorkflowResponse.last_updated_at) } -// string lock_owner = 3; -inline void TryLockRequest::clear_lock_owner() { - lock_owner_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string runtime_status = 5[json_name = "runtimeStatus"]; +inline void GetWorkflowResponse::clear_runtime_status() { + runtime_status_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& TryLockRequest::lock_owner() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TryLockRequest.lock_owner) - return lock_owner_.GetNoArena(); +inline const ::std::string& GetWorkflowResponse::runtime_status() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowResponse.runtime_status) + return runtime_status_.GetNoArena(); } -inline void TryLockRequest::set_lock_owner(const ::std::string& value) { +inline void GetWorkflowResponse::set_runtime_status(const ::std::string& value) { - lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TryLockRequest.lock_owner) + runtime_status_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetWorkflowResponse.runtime_status) } #if LANG_CXX11 -inline void TryLockRequest::set_lock_owner(::std::string&& value) { +inline void GetWorkflowResponse::set_runtime_status(::std::string&& value) { - lock_owner_.SetNoArena( + runtime_status_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TryLockRequest.lock_owner) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetWorkflowResponse.runtime_status) } #endif -inline void TryLockRequest::set_lock_owner(const char* value) { +inline void GetWorkflowResponse::set_runtime_status(const char* value) { GOOGLE_DCHECK(value != NULL); - lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TryLockRequest.lock_owner) + runtime_status_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetWorkflowResponse.runtime_status) } -inline void TryLockRequest::set_lock_owner(const char* value, size_t size) { +inline void GetWorkflowResponse::set_runtime_status(const char* value, size_t size) { - lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + runtime_status_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TryLockRequest.lock_owner) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetWorkflowResponse.runtime_status) } -inline ::std::string* TryLockRequest::mutable_lock_owner() { +inline ::std::string* GetWorkflowResponse::mutable_runtime_status() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TryLockRequest.lock_owner) - return lock_owner_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetWorkflowResponse.runtime_status) + return runtime_status_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* TryLockRequest::release_lock_owner() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TryLockRequest.lock_owner) +inline ::std::string* GetWorkflowResponse::release_runtime_status() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetWorkflowResponse.runtime_status) - return lock_owner_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return runtime_status_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void TryLockRequest::set_allocated_lock_owner(::std::string* lock_owner) { - if (lock_owner != NULL) { +inline void GetWorkflowResponse::set_allocated_runtime_status(::std::string* runtime_status) { + if (runtime_status != NULL) { } else { } - lock_owner_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), lock_owner); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TryLockRequest.lock_owner) + runtime_status_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), runtime_status); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetWorkflowResponse.runtime_status) } -// int32 expiryInSeconds = 4; -inline void TryLockRequest::clear_expiryinseconds() { - expiryinseconds_ = 0; +// map properties = 6; +inline int GetWorkflowResponse::properties_size() const { + return properties_.size(); } -inline ::google::protobuf::int32 TryLockRequest::expiryinseconds() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TryLockRequest.expiryInSeconds) - return expiryinseconds_; +inline void GetWorkflowResponse::clear_properties() { + properties_.Clear(); } -inline void TryLockRequest::set_expiryinseconds(::google::protobuf::int32 value) { - - expiryinseconds_ = value; - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TryLockRequest.expiryInSeconds) +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +GetWorkflowResponse::properties() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetWorkflowResponse.properties) + return properties_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +GetWorkflowResponse::mutable_properties() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetWorkflowResponse.properties) + return properties_.MutableMap(); } // ------------------------------------------------------------------- -// TryLockResponse +// ------------------------------------------------------------------- -// bool success = 1; -inline void TryLockResponse::clear_success() { - success_ = false; +// StartWorkflowRequest + +// string instance_id = 1[json_name = "instanceID"]; +inline void StartWorkflowRequest::clear_instance_id() { + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline bool TryLockResponse::success() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TryLockResponse.success) - return success_; +inline const ::std::string& StartWorkflowRequest::instance_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) + return instance_id_.GetNoArena(); } -inline void TryLockResponse::set_success(bool value) { +inline void StartWorkflowRequest::set_instance_id(const ::std::string& value) { - success_ = value; - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TryLockResponse.success) + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) +} +#if LANG_CXX11 +inline void StartWorkflowRequest::set_instance_id(::std::string&& value) { + + instance_id_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) +} +#endif +inline void StartWorkflowRequest::set_instance_id(const char* value) { + GOOGLE_DCHECK(value != NULL); + + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) +} +inline void StartWorkflowRequest::set_instance_id(const char* value, size_t size) { + + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) +} +inline ::std::string* StartWorkflowRequest::mutable_instance_id() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) + return instance_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* StartWorkflowRequest::release_instance_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) + + return instance_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void StartWorkflowRequest::set_allocated_instance_id(::std::string* instance_id) { + if (instance_id != NULL) { + + } else { + + } + instance_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), instance_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) } -// ------------------------------------------------------------------- - -// UnlockRequest - -// string store_name = 1; -inline void UnlockRequest::clear_store_name() { - store_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string workflow_component = 2[json_name = "workflowComponent"]; +inline void StartWorkflowRequest::clear_workflow_component() { + workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& UnlockRequest::store_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnlockRequest.store_name) - return store_name_.GetNoArena(); +inline const ::std::string& StartWorkflowRequest::workflow_component() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) + return workflow_component_.GetNoArena(); } -inline void UnlockRequest::set_store_name(const ::std::string& value) { +inline void StartWorkflowRequest::set_workflow_component(const ::std::string& value) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnlockRequest.store_name) + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) } #if LANG_CXX11 -inline void UnlockRequest::set_store_name(::std::string&& value) { +inline void StartWorkflowRequest::set_workflow_component(::std::string&& value) { - store_name_.SetNoArena( + workflow_component_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnlockRequest.store_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) } #endif -inline void UnlockRequest::set_store_name(const char* value) { +inline void StartWorkflowRequest::set_workflow_component(const char* value) { GOOGLE_DCHECK(value != NULL); - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnlockRequest.store_name) + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) } -inline void UnlockRequest::set_store_name(const char* value, size_t size) { +inline void StartWorkflowRequest::set_workflow_component(const char* value, size_t size) { - store_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnlockRequest.store_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) } -inline ::std::string* UnlockRequest::mutable_store_name() { +inline ::std::string* StartWorkflowRequest::mutable_workflow_component() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnlockRequest.store_name) - return store_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) + return workflow_component_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnlockRequest::release_store_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnlockRequest.store_name) +inline ::std::string* StartWorkflowRequest::release_workflow_component() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) - return store_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return workflow_component_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnlockRequest::set_allocated_store_name(::std::string* store_name) { - if (store_name != NULL) { +inline void StartWorkflowRequest::set_allocated_workflow_component(::std::string* workflow_component) { + if (workflow_component != NULL) { } else { } - store_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), store_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnlockRequest.store_name) + workflow_component_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), workflow_component); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) } -// string resource_id = 2; -inline void UnlockRequest::clear_resource_id() { - resource_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string workflow_name = 3[json_name = "workflowName"]; +inline void StartWorkflowRequest::clear_workflow_name() { + workflow_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& UnlockRequest::resource_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnlockRequest.resource_id) - return resource_id_.GetNoArena(); +inline const ::std::string& StartWorkflowRequest::workflow_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) + return workflow_name_.GetNoArena(); } -inline void UnlockRequest::set_resource_id(const ::std::string& value) { +inline void StartWorkflowRequest::set_workflow_name(const ::std::string& value) { - resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnlockRequest.resource_id) + workflow_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) } #if LANG_CXX11 -inline void UnlockRequest::set_resource_id(::std::string&& value) { +inline void StartWorkflowRequest::set_workflow_name(::std::string&& value) { - resource_id_.SetNoArena( + workflow_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnlockRequest.resource_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) } #endif -inline void UnlockRequest::set_resource_id(const char* value) { +inline void StartWorkflowRequest::set_workflow_name(const char* value) { GOOGLE_DCHECK(value != NULL); - resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnlockRequest.resource_id) + workflow_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) } -inline void UnlockRequest::set_resource_id(const char* value, size_t size) { +inline void StartWorkflowRequest::set_workflow_name(const char* value, size_t size) { - resource_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + workflow_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnlockRequest.resource_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) } -inline ::std::string* UnlockRequest::mutable_resource_id() { +inline ::std::string* StartWorkflowRequest::mutable_workflow_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnlockRequest.resource_id) - return resource_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) + return workflow_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnlockRequest::release_resource_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnlockRequest.resource_id) +inline ::std::string* StartWorkflowRequest::release_workflow_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) - return resource_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return workflow_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnlockRequest::set_allocated_resource_id(::std::string* resource_id) { - if (resource_id != NULL) { +inline void StartWorkflowRequest::set_allocated_workflow_name(::std::string* workflow_name) { + if (workflow_name != NULL) { } else { } - resource_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), resource_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnlockRequest.resource_id) + workflow_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), workflow_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) } -// string lock_owner = 3; -inline void UnlockRequest::clear_lock_owner() { - lock_owner_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// map options = 4; +inline int StartWorkflowRequest::options_size() const { + return options_.size(); } -inline const ::std::string& UnlockRequest::lock_owner() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnlockRequest.lock_owner) - return lock_owner_.GetNoArena(); +inline void StartWorkflowRequest::clear_options() { + options_.Clear(); } -inline void UnlockRequest::set_lock_owner(const ::std::string& value) { +inline const ::google::protobuf::Map< ::std::string, ::std::string >& +StartWorkflowRequest::options() const { + // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.StartWorkflowRequest.options) + return options_.GetMap(); +} +inline ::google::protobuf::Map< ::std::string, ::std::string >* +StartWorkflowRequest::mutable_options() { + // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.StartWorkflowRequest.options) + return options_.MutableMap(); +} + +// bytes input = 5; +inline void StartWorkflowRequest::clear_input() { + input_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& StartWorkflowRequest::input() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.StartWorkflowRequest.input) + return input_.GetNoArena(); +} +inline void StartWorkflowRequest::set_input(const ::std::string& value) { - lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnlockRequest.lock_owner) + input_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.StartWorkflowRequest.input) } #if LANG_CXX11 -inline void UnlockRequest::set_lock_owner(::std::string&& value) { +inline void StartWorkflowRequest::set_input(::std::string&& value) { - lock_owner_.SetNoArena( + input_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.UnlockRequest.lock_owner) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.StartWorkflowRequest.input) } #endif -inline void UnlockRequest::set_lock_owner(const char* value) { +inline void StartWorkflowRequest::set_input(const char* value) { GOOGLE_DCHECK(value != NULL); - lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.UnlockRequest.lock_owner) + input_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.StartWorkflowRequest.input) } -inline void UnlockRequest::set_lock_owner(const char* value, size_t size) { +inline void StartWorkflowRequest::set_input(const void* value, size_t size) { - lock_owner_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + input_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.UnlockRequest.lock_owner) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.StartWorkflowRequest.input) } -inline ::std::string* UnlockRequest::mutable_lock_owner() { +inline ::std::string* StartWorkflowRequest::mutable_input() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.UnlockRequest.lock_owner) - return lock_owner_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.StartWorkflowRequest.input) + return input_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* UnlockRequest::release_lock_owner() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.UnlockRequest.lock_owner) +inline ::std::string* StartWorkflowRequest::release_input() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.StartWorkflowRequest.input) - return lock_owner_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return input_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void UnlockRequest::set_allocated_lock_owner(::std::string* lock_owner) { - if (lock_owner != NULL) { +inline void StartWorkflowRequest::set_allocated_input(::std::string* input) { + if (input != NULL) { } else { } - lock_owner_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), lock_owner); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.UnlockRequest.lock_owner) -} - -// ------------------------------------------------------------------- - -// UnlockResponse - -// .dapr.proto.runtime.v1.UnlockResponse.Status status = 1; -inline void UnlockResponse::clear_status() { - status_ = 0; -} -inline ::dapr::proto::runtime::v1::UnlockResponse_Status UnlockResponse::status() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.UnlockResponse.status) - return static_cast< ::dapr::proto::runtime::v1::UnlockResponse_Status >(status_); -} -inline void UnlockResponse::set_status(::dapr::proto::runtime::v1::UnlockResponse_Status value) { - - status_ = value; - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.UnlockResponse.status) + input_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), input); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.StartWorkflowRequest.input) } // ------------------------------------------------------------------- -// WorkflowReference +// StartWorkflowResponse -// string instance_id = 1; -inline void WorkflowReference::clear_instance_id() { +// string instance_id = 1[json_name = "instanceID"]; +inline void StartWorkflowResponse::clear_instance_id() { instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& WorkflowReference::instance_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.WorkflowReference.instance_id) +inline const ::std::string& StartWorkflowResponse::instance_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.StartWorkflowResponse.instance_id) return instance_id_.GetNoArena(); } -inline void WorkflowReference::set_instance_id(const ::std::string& value) { +inline void StartWorkflowResponse::set_instance_id(const ::std::string& value) { instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.WorkflowReference.instance_id) + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.StartWorkflowResponse.instance_id) } #if LANG_CXX11 -inline void WorkflowReference::set_instance_id(::std::string&& value) { +inline void StartWorkflowResponse::set_instance_id(::std::string&& value) { instance_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.WorkflowReference.instance_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.StartWorkflowResponse.instance_id) } #endif -inline void WorkflowReference::set_instance_id(const char* value) { +inline void StartWorkflowResponse::set_instance_id(const char* value) { GOOGLE_DCHECK(value != NULL); instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.WorkflowReference.instance_id) + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.StartWorkflowResponse.instance_id) } -inline void WorkflowReference::set_instance_id(const char* value, size_t size) { +inline void StartWorkflowResponse::set_instance_id(const char* value, size_t size) { instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.WorkflowReference.instance_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.StartWorkflowResponse.instance_id) } -inline ::std::string* WorkflowReference::mutable_instance_id() { +inline ::std::string* StartWorkflowResponse::mutable_instance_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.WorkflowReference.instance_id) + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.StartWorkflowResponse.instance_id) return instance_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* WorkflowReference::release_instance_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.WorkflowReference.instance_id) +inline ::std::string* StartWorkflowResponse::release_instance_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.StartWorkflowResponse.instance_id) return instance_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void WorkflowReference::set_allocated_instance_id(::std::string* instance_id) { +inline void StartWorkflowResponse::set_allocated_instance_id(::std::string* instance_id) { if (instance_id != NULL) { } else { } instance_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), instance_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.WorkflowReference.instance_id) + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.StartWorkflowResponse.instance_id) } // ------------------------------------------------------------------- -// GetWorkflowRequest +// TerminateWorkflowRequest -// string instance_id = 1; -inline void GetWorkflowRequest::clear_instance_id() { +// string instance_id = 1[json_name = "instanceID"]; +inline void TerminateWorkflowRequest::clear_instance_id() { instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetWorkflowRequest::instance_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) +inline const ::std::string& TerminateWorkflowRequest::instance_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) return instance_id_.GetNoArena(); } -inline void GetWorkflowRequest::set_instance_id(const ::std::string& value) { +inline void TerminateWorkflowRequest::set_instance_id(const ::std::string& value) { instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) } #if LANG_CXX11 -inline void GetWorkflowRequest::set_instance_id(::std::string&& value) { +inline void TerminateWorkflowRequest::set_instance_id(::std::string&& value) { instance_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) } #endif -inline void GetWorkflowRequest::set_instance_id(const char* value) { +inline void TerminateWorkflowRequest::set_instance_id(const char* value) { GOOGLE_DCHECK(value != NULL); instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) } -inline void GetWorkflowRequest::set_instance_id(const char* value, size_t size) { +inline void TerminateWorkflowRequest::set_instance_id(const char* value, size_t size) { instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) } -inline ::std::string* GetWorkflowRequest::mutable_instance_id() { +inline ::std::string* TerminateWorkflowRequest::mutable_instance_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) return instance_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetWorkflowRequest::release_instance_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) +inline ::std::string* TerminateWorkflowRequest::release_instance_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) return instance_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetWorkflowRequest::set_allocated_instance_id(::std::string* instance_id) { +inline void TerminateWorkflowRequest::set_allocated_instance_id(::std::string* instance_id) { if (instance_id != NULL) { } else { } instance_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), instance_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) +} + +// string workflow_component = 2[json_name = "workflowComponent"]; +inline void TerminateWorkflowRequest::clear_workflow_component() { + workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& TerminateWorkflowRequest::workflow_component() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) + return workflow_component_.GetNoArena(); +} +inline void TerminateWorkflowRequest::set_workflow_component(const ::std::string& value) { + + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) +} +#if LANG_CXX11 +inline void TerminateWorkflowRequest::set_workflow_component(::std::string&& value) { + + workflow_component_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) +} +#endif +inline void TerminateWorkflowRequest::set_workflow_component(const char* value) { + GOOGLE_DCHECK(value != NULL); + + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) +} +inline void TerminateWorkflowRequest::set_workflow_component(const char* value, size_t size) { + + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) +} +inline ::std::string* TerminateWorkflowRequest::mutable_workflow_component() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) + return workflow_component_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* TerminateWorkflowRequest::release_workflow_component() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) + + return workflow_component_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void TerminateWorkflowRequest::set_allocated_workflow_component(::std::string* workflow_component) { + if (workflow_component != NULL) { + + } else { + + } + workflow_component_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), workflow_component); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) } -// string workflow_type = 2; -inline void GetWorkflowRequest::clear_workflow_type() { - workflow_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// ------------------------------------------------------------------- + +// PauseWorkflowRequest + +// string instance_id = 1[json_name = "instanceID"]; +inline void PauseWorkflowRequest::clear_instance_id() { + instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetWorkflowRequest::workflow_type() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_type) - return workflow_type_.GetNoArena(); +inline const ::std::string& PauseWorkflowRequest::instance_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PauseWorkflowRequest.instance_id) + return instance_id_.GetNoArena(); } -inline void GetWorkflowRequest::set_workflow_type(const ::std::string& value) { +inline void PauseWorkflowRequest::set_instance_id(const ::std::string& value) { - workflow_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_type) + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PauseWorkflowRequest.instance_id) } #if LANG_CXX11 -inline void GetWorkflowRequest::set_workflow_type(::std::string&& value) { +inline void PauseWorkflowRequest::set_instance_id(::std::string&& value) { - workflow_type_.SetNoArena( + instance_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_type) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PauseWorkflowRequest.instance_id) } #endif -inline void GetWorkflowRequest::set_workflow_type(const char* value) { +inline void PauseWorkflowRequest::set_instance_id(const char* value) { GOOGLE_DCHECK(value != NULL); - workflow_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_type) + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PauseWorkflowRequest.instance_id) } -inline void GetWorkflowRequest::set_workflow_type(const char* value, size_t size) { +inline void PauseWorkflowRequest::set_instance_id(const char* value, size_t size) { - workflow_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_type) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PauseWorkflowRequest.instance_id) } -inline ::std::string* GetWorkflowRequest::mutable_workflow_type() { +inline ::std::string* PauseWorkflowRequest::mutable_instance_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_type) - return workflow_type_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PauseWorkflowRequest.instance_id) + return instance_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetWorkflowRequest::release_workflow_type() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_type) +inline ::std::string* PauseWorkflowRequest::release_instance_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PauseWorkflowRequest.instance_id) - return workflow_type_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return instance_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetWorkflowRequest::set_allocated_workflow_type(::std::string* workflow_type) { - if (workflow_type != NULL) { +inline void PauseWorkflowRequest::set_allocated_instance_id(::std::string* instance_id) { + if (instance_id != NULL) { } else { } - workflow_type_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), workflow_type); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_type) + instance_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), instance_id); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PauseWorkflowRequest.instance_id) } -// string workflow_component = 3; -inline void GetWorkflowRequest::clear_workflow_component() { +// string workflow_component = 2[json_name = "workflowComponent"]; +inline void PauseWorkflowRequest::clear_workflow_component() { workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetWorkflowRequest::workflow_component() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) +inline const ::std::string& PauseWorkflowRequest::workflow_component() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PauseWorkflowRequest.workflow_component) return workflow_component_.GetNoArena(); } -inline void GetWorkflowRequest::set_workflow_component(const ::std::string& value) { +inline void PauseWorkflowRequest::set_workflow_component(const ::std::string& value) { workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PauseWorkflowRequest.workflow_component) } #if LANG_CXX11 -inline void GetWorkflowRequest::set_workflow_component(::std::string&& value) { +inline void PauseWorkflowRequest::set_workflow_component(::std::string&& value) { workflow_component_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PauseWorkflowRequest.workflow_component) } #endif -inline void GetWorkflowRequest::set_workflow_component(const char* value) { +inline void PauseWorkflowRequest::set_workflow_component(const char* value) { GOOGLE_DCHECK(value != NULL); workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PauseWorkflowRequest.workflow_component) } -inline void GetWorkflowRequest::set_workflow_component(const char* value, size_t size) { +inline void PauseWorkflowRequest::set_workflow_component(const char* value, size_t size) { workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PauseWorkflowRequest.workflow_component) } -inline ::std::string* GetWorkflowRequest::mutable_workflow_component() { +inline ::std::string* PauseWorkflowRequest::mutable_workflow_component() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PauseWorkflowRequest.workflow_component) return workflow_component_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetWorkflowRequest::release_workflow_component() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) +inline ::std::string* PauseWorkflowRequest::release_workflow_component() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PauseWorkflowRequest.workflow_component) return workflow_component_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetWorkflowRequest::set_allocated_workflow_component(::std::string* workflow_component) { +inline void PauseWorkflowRequest::set_allocated_workflow_component(::std::string* workflow_component) { if (workflow_component != NULL) { } else { } workflow_component_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), workflow_component); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PauseWorkflowRequest.workflow_component) } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// GetWorkflowResponse +// ResumeWorkflowRequest -// string instance_id = 1; -inline void GetWorkflowResponse::clear_instance_id() { +// string instance_id = 1[json_name = "instanceID"]; +inline void ResumeWorkflowRequest::clear_instance_id() { instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& GetWorkflowResponse::instance_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) +inline const ::std::string& ResumeWorkflowRequest::instance_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ResumeWorkflowRequest.instance_id) return instance_id_.GetNoArena(); } -inline void GetWorkflowResponse::set_instance_id(const ::std::string& value) { +inline void ResumeWorkflowRequest::set_instance_id(const ::std::string& value) { instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ResumeWorkflowRequest.instance_id) } #if LANG_CXX11 -inline void GetWorkflowResponse::set_instance_id(::std::string&& value) { +inline void ResumeWorkflowRequest::set_instance_id(::std::string&& value) { instance_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.ResumeWorkflowRequest.instance_id) } #endif -inline void GetWorkflowResponse::set_instance_id(const char* value) { +inline void ResumeWorkflowRequest::set_instance_id(const char* value) { GOOGLE_DCHECK(value != NULL); instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.ResumeWorkflowRequest.instance_id) } -inline void GetWorkflowResponse::set_instance_id(const char* value, size_t size) { +inline void ResumeWorkflowRequest::set_instance_id(const char* value, size_t size) { instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.ResumeWorkflowRequest.instance_id) } -inline ::std::string* GetWorkflowResponse::mutable_instance_id() { +inline ::std::string* ResumeWorkflowRequest::mutable_instance_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ResumeWorkflowRequest.instance_id) return instance_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* GetWorkflowResponse::release_instance_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) +inline ::std::string* ResumeWorkflowRequest::release_instance_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.ResumeWorkflowRequest.instance_id) return instance_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void GetWorkflowResponse::set_allocated_instance_id(::std::string* instance_id) { +inline void ResumeWorkflowRequest::set_allocated_instance_id(::std::string* instance_id) { if (instance_id != NULL) { } else { } instance_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), instance_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.GetWorkflowResponse.instance_id) + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.ResumeWorkflowRequest.instance_id) } -// int64 start_time = 2; -inline void GetWorkflowResponse::clear_start_time() { - start_time_ = GOOGLE_LONGLONG(0); +// string workflow_component = 2[json_name = "workflowComponent"]; +inline void ResumeWorkflowRequest::clear_workflow_component() { + workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::google::protobuf::int64 GetWorkflowResponse::start_time() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.GetWorkflowResponse.start_time) - return start_time_; +inline const ::std::string& ResumeWorkflowRequest::workflow_component() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.ResumeWorkflowRequest.workflow_component) + return workflow_component_.GetNoArena(); } -inline void GetWorkflowResponse::set_start_time(::google::protobuf::int64 value) { +inline void ResumeWorkflowRequest::set_workflow_component(const ::std::string& value) { - start_time_ = value; - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.GetWorkflowResponse.start_time) + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.ResumeWorkflowRequest.workflow_component) } - -// map metadata = 3; -inline int GetWorkflowResponse::metadata_size() const { - return metadata_.size(); +#if LANG_CXX11 +inline void ResumeWorkflowRequest::set_workflow_component(::std::string&& value) { + + workflow_component_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.ResumeWorkflowRequest.workflow_component) } -inline void GetWorkflowResponse::clear_metadata() { - metadata_.Clear(); +#endif +inline void ResumeWorkflowRequest::set_workflow_component(const char* value) { + GOOGLE_DCHECK(value != NULL); + + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.ResumeWorkflowRequest.workflow_component) } -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -GetWorkflowResponse::metadata() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.GetWorkflowResponse.metadata) - return metadata_.GetMap(); +inline void ResumeWorkflowRequest::set_workflow_component(const char* value, size_t size) { + + workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.ResumeWorkflowRequest.workflow_component) } -inline ::google::protobuf::Map< ::std::string, ::std::string >* -GetWorkflowResponse::mutable_metadata() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.GetWorkflowResponse.metadata) - return metadata_.MutableMap(); +inline ::std::string* ResumeWorkflowRequest::mutable_workflow_component() { + + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.ResumeWorkflowRequest.workflow_component) + return workflow_component_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* ResumeWorkflowRequest::release_workflow_component() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.ResumeWorkflowRequest.workflow_component) + + return workflow_component_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void ResumeWorkflowRequest::set_allocated_workflow_component(::std::string* workflow_component) { + if (workflow_component != NULL) { + + } else { + + } + workflow_component_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), workflow_component); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.ResumeWorkflowRequest.workflow_component) } // ------------------------------------------------------------------- -// ------------------------------------------------------------------- - -// StartWorkflowRequest +// RaiseEventWorkflowRequest -// string instance_id = 1; -inline void StartWorkflowRequest::clear_instance_id() { +// string instance_id = 1[json_name = "instanceID"]; +inline void RaiseEventWorkflowRequest::clear_instance_id() { instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& StartWorkflowRequest::instance_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) +inline const ::std::string& RaiseEventWorkflowRequest::instance_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.instance_id) return instance_id_.GetNoArena(); } -inline void StartWorkflowRequest::set_instance_id(const ::std::string& value) { +inline void RaiseEventWorkflowRequest::set_instance_id(const ::std::string& value) { instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.instance_id) } #if LANG_CXX11 -inline void StartWorkflowRequest::set_instance_id(::std::string&& value) { +inline void RaiseEventWorkflowRequest::set_instance_id(::std::string&& value) { instance_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.instance_id) } #endif -inline void StartWorkflowRequest::set_instance_id(const char* value) { +inline void RaiseEventWorkflowRequest::set_instance_id(const char* value) { GOOGLE_DCHECK(value != NULL); instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.instance_id) } -inline void StartWorkflowRequest::set_instance_id(const char* value, size_t size) { +inline void RaiseEventWorkflowRequest::set_instance_id(const char* value, size_t size) { instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.instance_id) } -inline ::std::string* StartWorkflowRequest::mutable_instance_id() { +inline ::std::string* RaiseEventWorkflowRequest::mutable_instance_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.instance_id) return instance_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* StartWorkflowRequest::release_instance_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) +inline ::std::string* RaiseEventWorkflowRequest::release_instance_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.instance_id) return instance_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void StartWorkflowRequest::set_allocated_instance_id(::std::string* instance_id) { +inline void RaiseEventWorkflowRequest::set_allocated_instance_id(::std::string* instance_id) { if (instance_id != NULL) { } else { } instance_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), instance_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.StartWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.instance_id) } -// string workflow_component = 2; -inline void StartWorkflowRequest::clear_workflow_component() { +// string workflow_component = 2[json_name = "workflowComponent"]; +inline void RaiseEventWorkflowRequest::clear_workflow_component() { workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& StartWorkflowRequest::workflow_component() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) +inline const ::std::string& RaiseEventWorkflowRequest::workflow_component() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.workflow_component) return workflow_component_.GetNoArena(); } -inline void StartWorkflowRequest::set_workflow_component(const ::std::string& value) { +inline void RaiseEventWorkflowRequest::set_workflow_component(const ::std::string& value) { workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.workflow_component) } #if LANG_CXX11 -inline void StartWorkflowRequest::set_workflow_component(::std::string&& value) { +inline void RaiseEventWorkflowRequest::set_workflow_component(::std::string&& value) { workflow_component_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.workflow_component) } #endif -inline void StartWorkflowRequest::set_workflow_component(const char* value) { +inline void RaiseEventWorkflowRequest::set_workflow_component(const char* value) { GOOGLE_DCHECK(value != NULL); workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.workflow_component) } -inline void StartWorkflowRequest::set_workflow_component(const char* value, size_t size) { +inline void RaiseEventWorkflowRequest::set_workflow_component(const char* value, size_t size) { workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.workflow_component) } -inline ::std::string* StartWorkflowRequest::mutable_workflow_component() { +inline ::std::string* RaiseEventWorkflowRequest::mutable_workflow_component() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.workflow_component) return workflow_component_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* StartWorkflowRequest::release_workflow_component() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) +inline ::std::string* RaiseEventWorkflowRequest::release_workflow_component() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.workflow_component) return workflow_component_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void StartWorkflowRequest::set_allocated_workflow_component(::std::string* workflow_component) { +inline void RaiseEventWorkflowRequest::set_allocated_workflow_component(::std::string* workflow_component) { if (workflow_component != NULL) { } else { } workflow_component_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), workflow_component); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.workflow_component) } -// string workflow_name = 3; -inline void StartWorkflowRequest::clear_workflow_name() { - workflow_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// string event_name = 3[json_name = "eventName"]; +inline void RaiseEventWorkflowRequest::clear_event_name() { + event_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& StartWorkflowRequest::workflow_name() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) - return workflow_name_.GetNoArena(); +inline const ::std::string& RaiseEventWorkflowRequest::event_name() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_name) + return event_name_.GetNoArena(); } -inline void StartWorkflowRequest::set_workflow_name(const ::std::string& value) { +inline void RaiseEventWorkflowRequest::set_event_name(const ::std::string& value) { - workflow_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) + event_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_name) } #if LANG_CXX11 -inline void StartWorkflowRequest::set_workflow_name(::std::string&& value) { +inline void RaiseEventWorkflowRequest::set_event_name(::std::string&& value) { - workflow_name_.SetNoArena( + event_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_name) } #endif -inline void StartWorkflowRequest::set_workflow_name(const char* value) { +inline void RaiseEventWorkflowRequest::set_event_name(const char* value) { GOOGLE_DCHECK(value != NULL); - workflow_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) + event_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_name) } -inline void StartWorkflowRequest::set_workflow_name(const char* value, size_t size) { +inline void RaiseEventWorkflowRequest::set_event_name(const char* value, size_t size) { - workflow_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + event_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_name) } -inline ::std::string* StartWorkflowRequest::mutable_workflow_name() { +inline ::std::string* RaiseEventWorkflowRequest::mutable_event_name() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) - return workflow_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_name) + return event_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* StartWorkflowRequest::release_workflow_name() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) +inline ::std::string* RaiseEventWorkflowRequest::release_event_name() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_name) - return workflow_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return event_name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void StartWorkflowRequest::set_allocated_workflow_name(::std::string* workflow_name) { - if (workflow_name != NULL) { +inline void RaiseEventWorkflowRequest::set_allocated_event_name(::std::string* event_name) { + if (event_name != NULL) { } else { } - workflow_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), workflow_name); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.StartWorkflowRequest.workflow_name) -} - -// map options = 4; -inline int StartWorkflowRequest::options_size() const { - return options_.size(); -} -inline void StartWorkflowRequest::clear_options() { - options_.Clear(); -} -inline const ::google::protobuf::Map< ::std::string, ::std::string >& -StartWorkflowRequest::options() const { - // @@protoc_insertion_point(field_map:dapr.proto.runtime.v1.StartWorkflowRequest.options) - return options_.GetMap(); -} -inline ::google::protobuf::Map< ::std::string, ::std::string >* -StartWorkflowRequest::mutable_options() { - // @@protoc_insertion_point(field_mutable_map:dapr.proto.runtime.v1.StartWorkflowRequest.options) - return options_.MutableMap(); + event_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), event_name); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_name) } -// bytes input = 5; -inline void StartWorkflowRequest::clear_input() { - input_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// bytes event_data = 4; +inline void RaiseEventWorkflowRequest::clear_event_data() { + event_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& StartWorkflowRequest::input() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.StartWorkflowRequest.input) - return input_.GetNoArena(); +inline const ::std::string& RaiseEventWorkflowRequest::event_data() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_data) + return event_data_.GetNoArena(); } -inline void StartWorkflowRequest::set_input(const ::std::string& value) { +inline void RaiseEventWorkflowRequest::set_event_data(const ::std::string& value) { - input_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.StartWorkflowRequest.input) + event_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_data) } #if LANG_CXX11 -inline void StartWorkflowRequest::set_input(::std::string&& value) { +inline void RaiseEventWorkflowRequest::set_event_data(::std::string&& value) { - input_.SetNoArena( + event_data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.StartWorkflowRequest.input) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_data) } #endif -inline void StartWorkflowRequest::set_input(const char* value) { +inline void RaiseEventWorkflowRequest::set_event_data(const char* value) { GOOGLE_DCHECK(value != NULL); - input_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.StartWorkflowRequest.input) + event_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_data) } -inline void StartWorkflowRequest::set_input(const void* value, size_t size) { +inline void RaiseEventWorkflowRequest::set_event_data(const void* value, size_t size) { - input_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + event_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.StartWorkflowRequest.input) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_data) } -inline ::std::string* StartWorkflowRequest::mutable_input() { +inline ::std::string* RaiseEventWorkflowRequest::mutable_event_data() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.StartWorkflowRequest.input) - return input_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_data) + return event_data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* StartWorkflowRequest::release_input() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.StartWorkflowRequest.input) +inline ::std::string* RaiseEventWorkflowRequest::release_event_data() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_data) - return input_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return event_data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void StartWorkflowRequest::set_allocated_input(::std::string* input) { - if (input != NULL) { +inline void RaiseEventWorkflowRequest::set_allocated_event_data(::std::string* event_data) { + if (event_data != NULL) { } else { } - input_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), input); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.StartWorkflowRequest.input) + event_data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), event_data); + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.RaiseEventWorkflowRequest.event_data) } // ------------------------------------------------------------------- -// TerminateWorkflowRequest +// PurgeWorkflowRequest -// string instance_id = 1; -inline void TerminateWorkflowRequest::clear_instance_id() { +// string instance_id = 1[json_name = "instanceID"]; +inline void PurgeWorkflowRequest::clear_instance_id() { instance_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& TerminateWorkflowRequest::instance_id() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) +inline const ::std::string& PurgeWorkflowRequest::instance_id() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PurgeWorkflowRequest.instance_id) return instance_id_.GetNoArena(); } -inline void TerminateWorkflowRequest::set_instance_id(const ::std::string& value) { +inline void PurgeWorkflowRequest::set_instance_id(const ::std::string& value) { instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PurgeWorkflowRequest.instance_id) } #if LANG_CXX11 -inline void TerminateWorkflowRequest::set_instance_id(::std::string&& value) { +inline void PurgeWorkflowRequest::set_instance_id(::std::string&& value) { instance_id_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PurgeWorkflowRequest.instance_id) } #endif -inline void TerminateWorkflowRequest::set_instance_id(const char* value) { +inline void PurgeWorkflowRequest::set_instance_id(const char* value) { GOOGLE_DCHECK(value != NULL); instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PurgeWorkflowRequest.instance_id) } -inline void TerminateWorkflowRequest::set_instance_id(const char* value, size_t size) { +inline void PurgeWorkflowRequest::set_instance_id(const char* value, size_t size) { instance_id_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PurgeWorkflowRequest.instance_id) } -inline ::std::string* TerminateWorkflowRequest::mutable_instance_id() { +inline ::std::string* PurgeWorkflowRequest::mutable_instance_id() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PurgeWorkflowRequest.instance_id) return instance_id_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* TerminateWorkflowRequest::release_instance_id() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) +inline ::std::string* PurgeWorkflowRequest::release_instance_id() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PurgeWorkflowRequest.instance_id) return instance_id_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void TerminateWorkflowRequest::set_allocated_instance_id(::std::string* instance_id) { +inline void PurgeWorkflowRequest::set_allocated_instance_id(::std::string* instance_id) { if (instance_id != NULL) { } else { } instance_id_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), instance_id); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TerminateWorkflowRequest.instance_id) + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PurgeWorkflowRequest.instance_id) } -// string workflow_component = 2; -inline void TerminateWorkflowRequest::clear_workflow_component() { +// string workflow_component = 2[json_name = "workflowComponent"]; +inline void PurgeWorkflowRequest::clear_workflow_component() { workflow_component_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline const ::std::string& TerminateWorkflowRequest::workflow_component() const { - // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) +inline const ::std::string& PurgeWorkflowRequest::workflow_component() const { + // @@protoc_insertion_point(field_get:dapr.proto.runtime.v1.PurgeWorkflowRequest.workflow_component) return workflow_component_.GetNoArena(); } -inline void TerminateWorkflowRequest::set_workflow_component(const ::std::string& value) { +inline void PurgeWorkflowRequest::set_workflow_component(const ::std::string& value) { workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set:dapr.proto.runtime.v1.PurgeWorkflowRequest.workflow_component) } #if LANG_CXX11 -inline void TerminateWorkflowRequest::set_workflow_component(::std::string&& value) { +inline void PurgeWorkflowRequest::set_workflow_component(::std::string&& value) { workflow_component_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_rvalue:dapr.proto.runtime.v1.PurgeWorkflowRequest.workflow_component) } #endif -inline void TerminateWorkflowRequest::set_workflow_component(const char* value) { +inline void PurgeWorkflowRequest::set_workflow_component(const char* value) { GOOGLE_DCHECK(value != NULL); workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_char:dapr.proto.runtime.v1.PurgeWorkflowRequest.workflow_component) } -inline void TerminateWorkflowRequest::set_workflow_component(const char* value, size_t size) { +inline void PurgeWorkflowRequest::set_workflow_component(const char* value, size_t size) { workflow_component_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_pointer:dapr.proto.runtime.v1.PurgeWorkflowRequest.workflow_component) } -inline ::std::string* TerminateWorkflowRequest::mutable_workflow_component() { +inline ::std::string* PurgeWorkflowRequest::mutable_workflow_component() { - // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_mutable:dapr.proto.runtime.v1.PurgeWorkflowRequest.workflow_component) return workflow_component_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline ::std::string* TerminateWorkflowRequest::release_workflow_component() { - // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) +inline ::std::string* PurgeWorkflowRequest::release_workflow_component() { + // @@protoc_insertion_point(field_release:dapr.proto.runtime.v1.PurgeWorkflowRequest.workflow_component) return workflow_component_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } -inline void TerminateWorkflowRequest::set_allocated_workflow_component(::std::string* workflow_component) { +inline void PurgeWorkflowRequest::set_allocated_workflow_component(::std::string* workflow_component) { if (workflow_component != NULL) { } else { } workflow_component_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), workflow_component); - // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.TerminateWorkflowRequest.workflow_component) + // @@protoc_insertion_point(field_set_allocated:dapr.proto.runtime.v1.PurgeWorkflowRequest.workflow_component) } -// ------------------------------------------------------------------- - -// TerminateWorkflowResponse - #ifdef __GNUC__ #pragma GCC diagnostic pop #endif // __GNUC__ @@ -17355,6 +24752,54 @@ inline void TerminateWorkflowRequest::set_allocated_workflow_component(::std::st // ------------------------------------------------------------------- +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + // @@protoc_insertion_point(namespace_scope) @@ -17371,6 +24816,11 @@ template <> inline const EnumDescriptor* GetEnumDescriptor< ::dapr::proto::runtime::v1::UnlockResponse_Status>() { return ::dapr::proto::runtime::v1::UnlockResponse_Status_descriptor(); } +template <> struct is_proto_enum< ::dapr::proto::runtime::v1::SubtleGetKeyRequest_KeyFormat> : ::std::true_type {}; +template <> +inline const EnumDescriptor* GetEnumDescriptor< ::dapr::proto::runtime::v1::SubtleGetKeyRequest_KeyFormat>() { + return ::dapr::proto::runtime::v1::SubtleGetKeyRequest_KeyFormat_descriptor(); +} } // namespace protobuf } // namespace google