We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 210c69e commit 60c3da9Copy full SHA for 60c3da9
src/main/java/org/opensearch/flowframework/model/Config.java
@@ -106,20 +106,23 @@ public static Config parse(XContentParser parser) throws IOException {
106
}
107
108
/**
109
+ * Gets the master key used for encryption.
110
* @return the masterKey
111
*/
112
public String masterKey() {
113
return masterKey;
114
115
116
117
+ * Gets the creation time of the config.
118
* @return the createTime
119
120
public Instant createTime() {
121
return createTime;
122
123
124
125
+ * Gets the tenant ID associated with the config.
126
* @return the tenantId
127
128
public Object tenantId() {
0 commit comments