diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 31013c131..16097a63a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -21,8 +21,8 @@ jobs:
strategy:
fail-fast: false
matrix:
- java: [ 11, 13, 15, 16 ]
- spring-boot-version: [ 2.7.8 ]
+ java: [ 11, 13, 15, 16, 17 ]
+ spring-boot-version: [ 2.7.8, 3.1.2 ]
experimental: [ false ]
include:
- java: 11
@@ -37,6 +37,9 @@ jobs:
- java: 11
spring-boot-version: 2.3.6.RELEASE
experimental: false
+ - java: 17
+ spring-boot-version: 3.1.2
+ experimental: false
env:
GOVER: "1.20"
GOOS: linux
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml
index 074ec6b57..baeb066b6 100644
--- a/.github/workflows/validate.yml
+++ b/.github/workflows/validate.yml
@@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false # Keep running if one leg fails.
matrix:
- java: [ 11, 13, 15, 16 ]
+ java: [ 11, 13, 15, 16, 17 ]
env:
GOVER: "1.20"
GOOS: linux
diff --git a/.sdkmanrc b/.sdkmanrc
new file mode 100644
index 000000000..2ba2e9d2c
--- /dev/null
+++ b/.sdkmanrc
@@ -0,0 +1,3 @@
+# Enable auto-env through the sdkman_auto_env config
+# Add key=value pairs of SDKs to use below
+java=11.0.19-tem
\ No newline at end of file
diff --git a/README.md b/README.md
index 9c0dfb5ec..1fe922997 100644
--- a/README.md
+++ b/README.md
@@ -18,11 +18,8 @@ This is the Dapr SDK for Java, including the following features:
## Getting Started
### Pre-Requisites
-* JDK 11 or above - the published jars are compatible with Java 8:
- * [Microsoft JDK 11](https://docs.microsoft.com/en-us/java/openjdk/download#openjdk-11)
- * [AdoptOpenJDK 11 - LTS](https://adoptopenjdk.net/)
- * [Oracle's JDK 11 - LTS](https://www.oracle.com/java/technologies/javase-jdk11-downloads.html)
- * [OpenJDK](https://openjdk.java.net/)
+* SDKMAN! installed (recommended):
+ * [SDKMAN!](https://sdkman.io)
* Java IDE installed:
* [IntelliJ](https://www.jetbrains.com/idea/download/)
* [Eclipse](https://www.eclipse.org/downloads/)
@@ -41,6 +38,10 @@ This is the Dapr SDK for Java, including the following features:
* [New Maven project in IntelliJ](https://www.jetbrains.com/help/idea/maven-support.html#create_new_maven_project)
* [Maven in 5 minutes](https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html)
+### Install JDK
+
+If using [SDKMAN!](https://sdkman.io), execute `sdk env install` to install the required JDK.
+
### Importing Dapr's Java SDK
For a Maven project, add the following to your `pom.xml` file:
```xml
@@ -52,19 +53,19 @@ For a Maven project, add the following to your `pom.xml` file:
io.dapr
dapr-sdk
- 1.8.0
+ 1.9.0
io.dapr
dapr-sdk-actors
- 1.8.0
+ 1.9.0
io.dapr
dapr-sdk-springboot
- 1.8.0
+ 1.9.0
...
@@ -78,11 +79,11 @@ For a Gradle project, add the following to your `build.gradle` file:
dependencies {
...
// Dapr's core SDK with all features, except Actors.
- compile('io.dapr:dapr-sdk:1.8.0')
+ compile('io.dapr:dapr-sdk:1.9.0')
// Dapr's SDK for Actors (optional).
- compile('io.dapr:dapr-sdk-actors:1.8.0')
+ compile('io.dapr:dapr-sdk-actors:1.9.0')
// Dapr's SDK integration with SpringBoot (optional).
- compile('io.dapr:dapr-sdk-springboot:1.8.0')
+ compile('io.dapr:dapr-sdk-springboot:1.9.0')
}
```
diff --git a/daprdocs/content/en/java-sdk-docs/_index.md b/daprdocs/content/en/java-sdk-docs/_index.md
index dc26c0369..d387251a6 100644
--- a/daprdocs/content/en/java-sdk-docs/_index.md
+++ b/daprdocs/content/en/java-sdk-docs/_index.md
@@ -4,6 +4,11 @@ title: "Dapr Java SDK"
linkTitle: "Java"
weight: 1000
description: Java SDK packages for developing Dapr applications
+cascade:
+ github_repo: https://github.com/dapr/java-sdk
+ github_subdir: daprdocs/content/en/java-sdk-docs
+ path_base_for_github_subdir: content/en/developing-applications/sdks/java/
+ github_branch: master
---
## Pre-requisites
@@ -31,19 +36,19 @@ For a Maven project, add the following to your `pom.xml` file:
io.dapr
dapr-sdk
- 1.8.0
+ 1.9.0
io.dapr
dapr-sdk-actors
- 1.8.0
+ 1.9.0
io.dapr
dapr-sdk-springboot
- 1.8.0
+ 1.9.0
...
@@ -57,11 +62,11 @@ For a Gradle project, add the following to your `build.gradle` file:
dependencies {
...
// Dapr's core SDK with all features, except Actors.
- compile('io.dapr:dapr-sdk:1.8.0')
+ compile('io.dapr:dapr-sdk:1.9.0')
// Dapr's SDK for Actors (optional).
- compile('io.dapr:dapr-sdk-actors:1.8.0')
+ compile('io.dapr:dapr-sdk-actors:1.9.0')
// Dapr's SDK integration with SpringBoot (optional).
- compile('io.dapr:dapr-sdk-springboot:1.8.0')
+ compile('io.dapr:dapr-sdk-springboot:1.9.0')
}
```
diff --git a/docs/allclasses-index.html b/docs/allclasses-index.html
index a27240c11..38e875f00 100644
--- a/docs/allclasses-index.html
+++ b/docs/allclasses-index.html
@@ -2,10 +2,10 @@
-
-
diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.Builder.html
new file mode 100644
index 000000000..36f87b778
--- /dev/null
+++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.Builder.html
@@ -0,0 +1,1368 @@
+
+
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+Summary:
+Nested |
+Field |
+Constr |
+Method
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+com.google.protobuf.AbstractMessageLite.Builder
+
+
+com.google.protobuf.AbstractMessage.Builder<BuilderType>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+All Methods Static Methods Instance Methods Concrete Methods
+
+Modifier and Type
+Method
+Description
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+addRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor field,
+ Object value)
+
+
+
+DaprProtos.SubtleWrapKeyRequest
+build ()
+
+
+
+DaprProtos.SubtleWrapKeyRequest
+buildPartial ()
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+clear ()
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+clearAlgorithm ()
+
+
+ Algorithm to use, as in the JWA standard.
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+clearAssociatedData ()
+
+
+ Associated Data when using AEAD ciphers (optional).
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+clearComponentName ()
+
+
+ Name of the component
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+clearField (com.google.protobuf.Descriptors.FieldDescriptor field)
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+clearKeyName ()
+
+
+ Name (or name/version) of the key.
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+clearNonce ()
+
+
+ Nonce / initialization vector.
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+clearOneof (com.google.protobuf.Descriptors.OneofDescriptor oneof)
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+clearPlaintextKey ()
+
+
+ Key to wrap
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+clone ()
+
+
+
+String
+getAlgorithm ()
+
+
+ Algorithm to use, as in the JWA standard.
+
+
+
+com.google.protobuf.ByteString
+getAlgorithmBytes ()
+
+
+ Algorithm to use, as in the JWA standard.
+
+
+
+com.google.protobuf.ByteString
+getAssociatedData ()
+
+
+ Associated Data when using AEAD ciphers (optional).
+
+
+
+String
+getComponentName ()
+
+
+ Name of the component
+
+
+
+com.google.protobuf.ByteString
+getComponentNameBytes ()
+
+
+ Name of the component
+
+
+
+DaprProtos.SubtleWrapKeyRequest
+getDefaultInstanceForType ()
+
+
+
+static com.google.protobuf.Descriptors.Descriptor
+getDescriptor ()
+
+
+
+com.google.protobuf.Descriptors.Descriptor
+getDescriptorForType ()
+
+
+
+String
+getKeyName ()
+
+
+ Name (or name/version) of the key.
+
+
+
+com.google.protobuf.ByteString
+getKeyNameBytes ()
+
+
+ Name (or name/version) of the key.
+
+
+
+com.google.protobuf.ByteString
+getNonce ()
+
+
+ Nonce / initialization vector.
+
+
+
+com.google.protobuf.ByteString
+getPlaintextKey ()
+
+
+ Key to wrap
+
+
+
+protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
+internalGetFieldAccessorTable ()
+
+
+
+boolean
+isInitialized ()
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+mergeFrom (com.google.protobuf.CodedInputStream input,
+ com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+mergeFrom (com.google.protobuf.Message other)
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+mergeFrom (DaprProtos.SubtleWrapKeyRequest other)
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+mergeUnknownFields (com.google.protobuf.UnknownFieldSet unknownFields)
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setAlgorithm (String value)
+
+
+ Algorithm to use, as in the JWA standard.
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setAlgorithmBytes (com.google.protobuf.ByteString value)
+
+
+ Algorithm to use, as in the JWA standard.
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setAssociatedData (com.google.protobuf.ByteString value)
+
+
+ Associated Data when using AEAD ciphers (optional).
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setComponentName (String value)
+
+
+ Name of the component
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setComponentNameBytes (com.google.protobuf.ByteString value)
+
+
+ Name of the component
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setField (com.google.protobuf.Descriptors.FieldDescriptor field,
+ Object value)
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setKeyName (String value)
+
+
+ Name (or name/version) of the key.
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setKeyNameBytes (com.google.protobuf.ByteString value)
+
+
+ Name (or name/version) of the key.
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setNonce (com.google.protobuf.ByteString value)
+
+
+ Nonce / initialization vector.
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setPlaintextKey (com.google.protobuf.ByteString value)
+
+
+ Key to wrap
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor field,
+ int index,
+ Object value)
+
+
+
+DaprProtos.SubtleWrapKeyRequest.Builder
+setUnknownFields (com.google.protobuf.UnknownFieldSet unknownFields)
+
+
+
+
+
+
+
+Methods inherited from class com.google.protobuf.GeneratedMessageV3.Builder
+getAllFields, getField, getFieldBuilder, getOneofFieldDescriptor, getParentForChildren, getRepeatedField, getRepeatedFieldBuilder, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof, internalGetMapField, internalGetMutableMapField, isClean, markClean, newBuilderForField, onBuilt, onChanged, setUnknownFieldsProto3
+
+
+
+
+
+Methods inherited from class com.google.protobuf.AbstractMessage.Builder
+findInitializationErrors, getInitializationErrorString, internalMergeFrom, mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, newUninitializedMessageException, toString
+
+
+
+
+
+Methods inherited from class com.google.protobuf.AbstractMessageLite.Builder
+addAll, addAll, mergeFrom, newUninitializedMessageException
+
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageLite.Builder
+mergeFrom
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageOrBuilder
+findInitializationErrors, getAllFields, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.html
new file mode 100644
index 000000000..1e09432d6
--- /dev/null
+++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.html
@@ -0,0 +1,1341 @@
+
+
+
+
+
+DaprProtos.SubtleWrapKeyRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+com.google.protobuf.AbstractMessageLite
+
+
+com.google.protobuf.AbstractMessage
+
+
+com.google.protobuf.GeneratedMessageV3
+
+
+io.dapr.v1.DaprProtos.SubtleWrapKeyRequest
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+
+Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3
+com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
+
+
+
+
+
+Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite
+com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+
+
+
+
+Fields inherited from class com.google.protobuf.GeneratedMessageV3
+alwaysUseFieldBuilders, unknownFields
+
+
+
+
+
+Fields inherited from class com.google.protobuf.AbstractMessage
+memoizedSize
+
+
+
+
+
+Fields inherited from class com.google.protobuf.AbstractMessageLite
+memoizedHashCode
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+
+Methods inherited from class com.google.protobuf.GeneratedMessageV3
+canUseUnsafe, computeStringSize, computeStringSizeNoTag, emptyBooleanList, emptyDoubleList, emptyFloatList, emptyIntList, emptyLongList, getAllFields, getDescriptorForType, getField, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, hasField, hasOneof, internalGetMapField, makeExtensionsImmutable, mergeFromAndMakeImmutableInternal, mutableCopy, mutableCopy, mutableCopy, mutableCopy, mutableCopy, newBooleanList, newBuilderForType, newDoubleList, newFloatList, newIntList, newLongList, parseDelimitedWithIOException, parseDelimitedWithIOException, parseUnknownField, parseUnknownFieldProto3, parseWithIOException, parseWithIOException, parseWithIOException, parseWithIOException, serializeBooleanMapTo, serializeIntegerMapTo, serializeLongMapTo, serializeStringMapTo, writeReplace, writeString, writeStringNoTag
+
+
+
+
+
+Methods inherited from class com.google.protobuf.AbstractMessage
+findInitializationErrors, getInitializationErrorString, hashBoolean, hashEnum, hashEnumList, hashFields, hashLong, toString
+
+
+
+
+
+Methods inherited from class com.google.protobuf.AbstractMessageLite
+addAll, addAll, checkByteStringIsUtf8, toByteArray, toByteString, writeDelimitedTo, writeTo
+
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageLite
+toByteArray, toByteString, writeDelimitedTo, writeTo
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageOrBuilder
+findInitializationErrors, getAllFields, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, hasField, hasOneof
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequestOrBuilder.html
new file mode 100644
index 000000000..61c998494
--- /dev/null
+++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequestOrBuilder.html
@@ -0,0 +1,500 @@
+
+
+
+
+
+DaprProtos.SubtleWrapKeyRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+Summary:
+Nested |
+Field |
+Constr |
+Method
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
+isInitialized
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageOrBuilder
+findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Method Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+getAlgorithm
+String getAlgorithm()
+
+ Algorithm to use, as in the JWA standard.
+
+
+
string algorithm = 3;
+
+Returns:
+The algorithm.
+
+
+
+
+
+
+
+
+
+
+
+
+getKeyName
+String getKeyName()
+
+ Name (or name/version) of the key.
+
+
+
string key_name = 4 [json_name = "keyName"];
+
+Returns:
+The keyName.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.Builder.html
new file mode 100644
index 000000000..cf52e054d
--- /dev/null
+++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.Builder.html
@@ -0,0 +1,872 @@
+
+
+
+
+
+DaprProtos.SubtleWrapKeyResponse.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+Summary:
+Nested |
+Field |
+Constr |
+Method
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+com.google.protobuf.AbstractMessageLite.Builder
+
+
+com.google.protobuf.AbstractMessage.Builder<BuilderType>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+
+Methods inherited from class com.google.protobuf.GeneratedMessageV3.Builder
+getAllFields, getField, getFieldBuilder, getOneofFieldDescriptor, getParentForChildren, getRepeatedField, getRepeatedFieldBuilder, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof, internalGetMapField, internalGetMutableMapField, isClean, markClean, newBuilderForField, onBuilt, onChanged, setUnknownFieldsProto3
+
+
+
+
+
+Methods inherited from class com.google.protobuf.AbstractMessage.Builder
+findInitializationErrors, getInitializationErrorString, internalMergeFrom, mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, newUninitializedMessageException, toString
+
+
+
+
+
+Methods inherited from class com.google.protobuf.AbstractMessageLite.Builder
+addAll, addAll, mergeFrom, newUninitializedMessageException
+
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageLite.Builder
+mergeFrom
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageOrBuilder
+findInitializationErrors, getAllFields, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.html
new file mode 100644
index 000000000..ede4718e5
--- /dev/null
+++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.html
@@ -0,0 +1,1073 @@
+
+
+
+
+
+DaprProtos.SubtleWrapKeyResponse (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+java.lang.Object
+
+
+com.google.protobuf.AbstractMessageLite
+
+
+com.google.protobuf.AbstractMessage
+
+
+com.google.protobuf.GeneratedMessageV3
+
+
+io.dapr.v1.DaprProtos.SubtleWrapKeyResponse
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+
+Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3
+com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
+
+
+
+
+
+Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite
+com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+
+
+
+
+Fields inherited from class com.google.protobuf.GeneratedMessageV3
+alwaysUseFieldBuilders, unknownFields
+
+
+
+
+
+Fields inherited from class com.google.protobuf.AbstractMessage
+memoizedSize
+
+
+
+
+
+Fields inherited from class com.google.protobuf.AbstractMessageLite
+memoizedHashCode
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+
+Methods inherited from class com.google.protobuf.GeneratedMessageV3
+canUseUnsafe, computeStringSize, computeStringSizeNoTag, emptyBooleanList, emptyDoubleList, emptyFloatList, emptyIntList, emptyLongList, getAllFields, getDescriptorForType, getField, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, hasField, hasOneof, internalGetMapField, makeExtensionsImmutable, mergeFromAndMakeImmutableInternal, mutableCopy, mutableCopy, mutableCopy, mutableCopy, mutableCopy, newBooleanList, newBuilderForType, newDoubleList, newFloatList, newIntList, newLongList, parseDelimitedWithIOException, parseDelimitedWithIOException, parseUnknownField, parseUnknownFieldProto3, parseWithIOException, parseWithIOException, parseWithIOException, parseWithIOException, serializeBooleanMapTo, serializeIntegerMapTo, serializeLongMapTo, serializeStringMapTo, writeReplace, writeString, writeStringNoTag
+
+
+
+
+
+Methods inherited from class com.google.protobuf.AbstractMessage
+findInitializationErrors, getInitializationErrorString, hashBoolean, hashEnum, hashEnumList, hashFields, hashLong, toString
+
+
+
+
+
+Methods inherited from class com.google.protobuf.AbstractMessageLite
+addAll, addAll, checkByteStringIsUtf8, toByteArray, toByteString, writeDelimitedTo, writeTo
+
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageLite
+toByteArray, toByteString, writeDelimitedTo, writeTo
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageOrBuilder
+findInitializationErrors, getAllFields, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, hasField, hasOneof
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponseOrBuilder.html
new file mode 100644
index 000000000..a66b813d0
--- /dev/null
+++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponseOrBuilder.html
@@ -0,0 +1,318 @@
+
+
+
+
+
+DaprProtos.SubtleWrapKeyResponseOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+Summary:
+Nested |
+Field |
+Constr |
+Method
+
+
+Detail:
+Field |
+Constr |
+Method
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
+isInitialized
+
+
+
+
+
+Methods inherited from interface com.google.protobuf.MessageOrBuilder
+findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.Builder.html
index c99169cce..c481afb0b 100644
--- a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.Builder.html
+++ b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.Builder.html
@@ -2,10 +2,10 @@
-
-DaprProtos.TerminateWorkflowRequest.Builder (dapr-sdk-parent 1.8.0 API)
+
+DaprProtos.TerminateWorkflowRequest.Builder (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequest.html
new file mode 100644
index 000000000..8dcf45f83
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequest.html
@@ -0,0 +1,341 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.DecryptRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.Builder.html
new file mode 100644
index 000000000..461cbc689
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.Builder.html
@@ -0,0 +1,353 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.DecryptRequestOptions.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.html
new file mode 100644
index 000000000..d9007ef78
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.html
@@ -0,0 +1,360 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.DecryptRequestOptions (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptionsOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptionsOrBuilder.html
new file mode 100644
index 000000000..70cb3e140
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptionsOrBuilder.html
@@ -0,0 +1,239 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.DecryptRequestOptionsOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOrBuilder.html
new file mode 100644
index 000000000..f78c64a96
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.DecryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.Builder.html
new file mode 100644
index 000000000..975ccb043
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.Builder.html
@@ -0,0 +1,311 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.DecryptResponse.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.html
new file mode 100644
index 000000000..debd5a511
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.html
@@ -0,0 +1,351 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.DecryptResponse (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponseOrBuilder.html
new file mode 100644
index 000000000..cfea19e02
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponseOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.DecryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html
index bfe940d49..8b1db3a36 100644
--- a/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html
+++ b/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html
@@ -2,10 +2,10 @@
-
-Uses of Class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder (dapr-sdk-parent 1.8.0 API)
+
+Uses of Class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequest.html
new file mode 100644
index 000000000..18b7153bf
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequest.html
@@ -0,0 +1,341 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.EncryptRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.Builder.html
new file mode 100644
index 000000000..32b872d79
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.Builder.html
@@ -0,0 +1,441 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.EncryptRequestOptions.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.html
new file mode 100644
index 000000000..b39940818
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.html
@@ -0,0 +1,360 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.EncryptRequestOptions (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptionsOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptionsOrBuilder.html
new file mode 100644
index 000000000..80d176110
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptionsOrBuilder.html
@@ -0,0 +1,239 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.EncryptRequestOptionsOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOrBuilder.html
new file mode 100644
index 000000000..6d253cd7a
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.EncryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.Builder.html
new file mode 100644
index 000000000..98a5c66c7
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.Builder.html
@@ -0,0 +1,311 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.EncryptResponse.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.html
new file mode 100644
index 000000000..ccebf9f6c
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.html
@@ -0,0 +1,351 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.EncryptResponse (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponseOrBuilder.html
new file mode 100644
index 000000000..c3788b789
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponseOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.EncryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html
index eb6668127..148e1c541 100644
--- a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html
+++ b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html
@@ -2,10 +2,10 @@
-
-Uses of Class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder (dapr-sdk-parent 1.8.0 API)
+
+Uses of Class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequest.html
new file mode 100644
index 000000000..ed90fc809
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequest.html
@@ -0,0 +1,359 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.PauseWorkflowRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequestOrBuilder.html
new file mode 100644
index 000000000..58a9814ab
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequestOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.PauseWorkflowRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html
index c0939572a..6515f41e5 100644
--- a/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html
+++ b/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html
@@ -2,10 +2,10 @@
-
-Uses of Class io.dapr.v1.DaprProtos.PublishEventRequest.Builder (dapr-sdk-parent 1.8.0 API)
+
+Uses of Class io.dapr.v1.DaprProtos.PublishEventRequest.Builder (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequest.html
new file mode 100644
index 000000000..2c948d9f1
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequest.html
@@ -0,0 +1,359 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.PurgeWorkflowRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequestOrBuilder.html
new file mode 100644
index 000000000..4ba606e70
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequestOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.PurgeWorkflowRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html
index 857114fb0..2622fd3f2 100644
--- a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html
+++ b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html
@@ -2,10 +2,10 @@
-
-Uses of Class io.dapr.v1.DaprProtos.QueryStateItem.Builder (dapr-sdk-parent 1.8.0 API)
+
+Uses of Class io.dapr.v1.DaprProtos.QueryStateItem.Builder (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.RaiseEventWorkflowRequest.html
similarity index 54%
rename from docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.html
rename to docs/io/dapr/v1/class-use/DaprProtos.RaiseEventWorkflowRequest.html
index 6c7572e00..3f9b3830c 100644
--- a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.html
+++ b/docs/io/dapr/v1/class-use/DaprProtos.RaiseEventWorkflowRequest.html
@@ -2,10 +2,10 @@
-
-Uses of Class io.dapr.v1.DaprProtos.TerminateWorkflowResponse (dapr-sdk-parent 1.8.0 API)
+
+Uses of Class io.dapr.v1.DaprProtos.RaiseEventWorkflowRequest (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequest.html
new file mode 100644
index 000000000..6db9937a1
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequest.html
@@ -0,0 +1,359 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.ResumeWorkflowRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequestOrBuilder.html
new file mode 100644
index 000000000..9f9c39e58
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequestOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.ResumeWorkflowRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html
index dd49a158b..ec6ed37c4 100644
--- a/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html
@@ -2,10 +2,10 @@
-
-Uses of Class io.dapr.v1.DaprProtos.SaveStateRequest.Builder (dapr-sdk-parent 1.8.0 API)
+
+Uses of Class io.dapr.v1.DaprProtos.SaveStateRequest.Builder (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponse.html
new file mode 100644
index 000000000..2a4a99150
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponse.html
@@ -0,0 +1,369 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.StartWorkflowResponse (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponseOrBuilder.html
new file mode 100644
index 000000000..9b6f57294
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponseOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.StartWorkflowResponseOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html
index 28aa8b5e5..b4657b21d 100644
--- a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html
@@ -2,10 +2,10 @@
-
-Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.8.0 API)
+
+Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequest.html
new file mode 100644
index 000000000..2fa90835f
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequest.html
@@ -0,0 +1,359 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleDecryptRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequestOrBuilder.html
new file mode 100644
index 000000000..67cb2d019
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequestOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleDecryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.Builder.html
new file mode 100644
index 000000000..c7d05fcb8
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.Builder.html
@@ -0,0 +1,295 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleDecryptResponse.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.html
new file mode 100644
index 000000000..11e20a9fb
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.html
@@ -0,0 +1,369 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleDecryptResponse (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponseOrBuilder.html
new file mode 100644
index 000000000..dc1f30264
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponseOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleDecryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.Builder.html
new file mode 100644
index 000000000..f3b3e06bd
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.Builder.html
@@ -0,0 +1,399 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleEncryptRequest.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.html
new file mode 100644
index 000000000..61a7c940c
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.html
@@ -0,0 +1,359 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleEncryptRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequestOrBuilder.html
new file mode 100644
index 000000000..f9c68615d
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequestOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleEncryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.Builder.html
new file mode 100644
index 000000000..c5df721ec
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.Builder.html
@@ -0,0 +1,311 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleEncryptResponse.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.html
new file mode 100644
index 000000000..09c9a5262
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.html
@@ -0,0 +1,369 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleEncryptResponse (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponseOrBuilder.html
new file mode 100644
index 000000000..5fc32f0aa
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponseOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleEncryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.Builder.html
new file mode 100644
index 000000000..463e33192
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.Builder.html
@@ -0,0 +1,351 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleGetKeyRequest.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.KeyFormat.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.KeyFormat.html
new file mode 100644
index 000000000..6863402e3
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.KeyFormat.html
@@ -0,0 +1,280 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleGetKeyRequest.KeyFormat (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.html
new file mode 100644
index 000000000..3067e9eeb
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.html
@@ -0,0 +1,359 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleGetKeyRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequestOrBuilder.html
new file mode 100644
index 000000000..7196d6939
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequestOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleGetKeyRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.Builder.html
new file mode 100644
index 000000000..b10b408a5
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.Builder.html
@@ -0,0 +1,327 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleGetKeyResponse.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.html
new file mode 100644
index 000000000..ead517753
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.html
@@ -0,0 +1,369 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleGetKeyResponse (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponseOrBuilder.html
new file mode 100644
index 000000000..fe42318a5
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponseOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleGetKeyResponseOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.Builder.html
new file mode 100644
index 000000000..008e87db2
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.Builder.html
@@ -0,0 +1,367 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleSignRequest.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.html
similarity index 56%
rename from docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.html
rename to docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.html
index 4846a94fe..40b06cfff 100644
--- a/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.html
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.html
@@ -2,10 +2,10 @@
-
-Uses of Class io.dapr.v1.DaprProtos.WorkflowReference (dapr-sdk-parent 1.8.0 API)
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleSignRequest (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponse.html
new file mode 100644
index 000000000..167f5bad5
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponse.html
@@ -0,0 +1,369 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleSignResponse (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponseOrBuilder.html
new file mode 100644
index 000000000..5034a2d1d
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponseOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleSignResponseOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.Builder.html
new file mode 100644
index 000000000..4e3cc18f6
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.Builder.html
@@ -0,0 +1,415 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleUnwrapKeyRequest.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.html
new file mode 100644
index 000000000..5ab115b45
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.html
@@ -0,0 +1,359 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleUnwrapKeyRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequestOrBuilder.html
new file mode 100644
index 000000000..8afe9ad72
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequestOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleUnwrapKeyRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.Builder.html
new file mode 100644
index 000000000..e59858d8e
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.Builder.html
@@ -0,0 +1,295 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleUnwrapKeyResponse.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.html
new file mode 100644
index 000000000..d25977d63
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.html
@@ -0,0 +1,369 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleUnwrapKeyResponse (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponseOrBuilder.html
new file mode 100644
index 000000000..baceb91d4
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponseOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleUnwrapKeyResponseOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.Builder.html
new file mode 100644
index 000000000..a49b17eac
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.Builder.html
@@ -0,0 +1,383 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleVerifyRequest.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.html
new file mode 100644
index 000000000..462c5d1fa
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.html
@@ -0,0 +1,359 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleVerifyRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequestOrBuilder.html
new file mode 100644
index 000000000..6148e0eb3
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequestOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleVerifyRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.Builder.html
new file mode 100644
index 000000000..d703c969c
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.Builder.html
@@ -0,0 +1,295 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleVerifyResponse.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.html
new file mode 100644
index 000000000..daf022bba
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.html
@@ -0,0 +1,369 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleVerifyResponse (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponseOrBuilder.html
new file mode 100644
index 000000000..873bdf78a
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponseOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleVerifyResponseOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.Builder.html
new file mode 100644
index 000000000..0fa9b077b
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.Builder.html
@@ -0,0 +1,399 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleWrapKeyRequest.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.html
new file mode 100644
index 000000000..29637c317
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.html
@@ -0,0 +1,359 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleWrapKeyRequest (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequestOrBuilder.html
new file mode 100644
index 000000000..de4a32e29
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequestOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleWrapKeyRequestOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.Builder.html
new file mode 100644
index 000000000..4f785535a
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.Builder.html
@@ -0,0 +1,311 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleWrapKeyResponse.Builder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.html
new file mode 100644
index 000000000..940507d75
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.html
@@ -0,0 +1,369 @@
+
+
+
+
+
+Uses of Class io.dapr.v1.DaprProtos.SubtleWrapKeyResponse (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponseOrBuilder.html
new file mode 100644
index 000000000..fce0d195c
--- /dev/null
+++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponseOrBuilder.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+Uses of Interface io.dapr.v1.DaprProtos.SubtleWrapKeyResponseOrBuilder (dapr-sdk-parent 1.9.0 API)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.Builder.html
index 01604b9b0..7060510be 100644
--- a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.Builder.html
+++ b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.Builder.html
@@ -2,10 +2,10 @@
-
-Uses of Class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder (dapr-sdk-parent 1.8.0 API)
+
+Uses of Class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html
index e0417801c..17d179307 100644
--- a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html
+++ b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html
@@ -2,10 +2,10 @@
-
-Uses of Class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder (dapr-sdk-parent 1.8.0 API)
+
+Uses of Class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/io/dapr/v1/class-use/DaprProtos.html b/docs/io/dapr/v1/class-use/DaprProtos.html
index 71b9fdc48..280d9bb74 100644
--- a/docs/io/dapr/v1/class-use/DaprProtos.html
+++ b/docs/io/dapr/v1/class-use/DaprProtos.html
@@ -2,10 +2,10 @@
-
-Uses of Class io.dapr.v1.DaprProtos (dapr-sdk-parent 1.8.0 API)
+
+Uses of Class io.dapr.v1.DaprProtos (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+
-
+
-
+
diff --git a/docs/overview-tree.html b/docs/overview-tree.html
index 8888a0fc8..0259cde1c 100644
--- a/docs/overview-tree.html
+++ b/docs/overview-tree.html
@@ -2,10 +2,10 @@
-
-Class Hierarchy (dapr-sdk-parent 1.8.0 API)
+
+Class Hierarchy (dapr-sdk-parent 1.9.0 API)
-
+
@@ -15,14 +15,14 @@
-
+
-
+