This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-3.x by this push:
new 9fffe88e7b3 Regen for commit 9d40582c4b72c8679e870793a84365e0bbaac274
9fffe88e7b3 is described below
commit 9fffe88e7b3c1e9e2cc446152b5bc788ee8a79b8
Author: oscerd <[email protected]>
AuthorDate: Sat May 6 09:11:26 2023 +0000
Regen for commit 9d40582c4b72c8679e870793a84365e0bbaac274
Signed-off-by: GitHub <[email protected]>
---
.../dsl/CosmosDbEndpointBuilderFactory.java | 108 ++++++++++++++++++++-
1 file changed, 105 insertions(+), 3 deletions(-)
diff --git
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/CosmosDbEndpointBuilderFactory.java
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/CosmosDbEndpointBuilderFactory.java
index ffa8d340c4f..c7e710a9764 100644
---
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/CosmosDbEndpointBuilderFactory.java
+++
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/CosmosDbEndpointBuilderFactory.java
@@ -679,7 +679,6 @@ public interface CosmosDbEndpointBuilderFactory {
*
* The option is a: <code>java.lang.String</code> type.
*
- * Required: true
* Group: security
*
* @param accountKey the value to set
@@ -689,6 +688,41 @@ public interface CosmosDbEndpointBuilderFactory {
doSetProperty("accountKey", accountKey);
return this;
}
+ /**
+ * Indicates whether to use the default identity mechanism instead of
+ * the access key.
+ *
+ * The option is a: <code>boolean</code> type.
+ *
+ * Default: false
+ * Group: security
+ *
+ * @param useDefaultIdentity the value to set
+ * @return the dsl builder
+ */
+ default CosmosDbEndpointConsumerBuilder useDefaultIdentity(
+ boolean useDefaultIdentity) {
+ doSetProperty("useDefaultIdentity", useDefaultIdentity);
+ return this;
+ }
+ /**
+ * Indicates whether to use the default identity mechanism instead of
+ * the access key.
+ *
+ * The option will be converted to a <code>boolean</code>
+ * type.
+ *
+ * Default: false
+ * Group: security
+ *
+ * @param useDefaultIdentity the value to set
+ * @return the dsl builder
+ */
+ default CosmosDbEndpointConsumerBuilder useDefaultIdentity(
+ String useDefaultIdentity) {
+ doSetProperty("useDefaultIdentity", useDefaultIdentity);
+ return this;
+ }
}
/**
@@ -1415,7 +1449,6 @@ public interface CosmosDbEndpointBuilderFactory {
*
* The option is a: <code>java.lang.String</code> type.
*
- * Required: true
* Group: security
*
* @param accountKey the value to set
@@ -1425,6 +1458,41 @@ public interface CosmosDbEndpointBuilderFactory {
doSetProperty("accountKey", accountKey);
return this;
}
+ /**
+ * Indicates whether to use the default identity mechanism instead of
+ * the access key.
+ *
+ * The option is a: <code>boolean</code> type.
+ *
+ * Default: false
+ * Group: security
+ *
+ * @param useDefaultIdentity the value to set
+ * @return the dsl builder
+ */
+ default CosmosDbEndpointProducerBuilder useDefaultIdentity(
+ boolean useDefaultIdentity) {
+ doSetProperty("useDefaultIdentity", useDefaultIdentity);
+ return this;
+ }
+ /**
+ * Indicates whether to use the default identity mechanism instead of
+ * the access key.
+ *
+ * The option will be converted to a <code>boolean</code>
+ * type.
+ *
+ * Default: false
+ * Group: security
+ *
+ * @param useDefaultIdentity the value to set
+ * @return the dsl builder
+ */
+ default CosmosDbEndpointProducerBuilder useDefaultIdentity(
+ String useDefaultIdentity) {
+ doSetProperty("useDefaultIdentity", useDefaultIdentity);
+ return this;
+ }
}
/**
@@ -1964,7 +2032,6 @@ public interface CosmosDbEndpointBuilderFactory {
*
* The option is a: <code>java.lang.String</code> type.
*
- * Required: true
* Group: security
*
* @param accountKey the value to set
@@ -1974,6 +2041,41 @@ public interface CosmosDbEndpointBuilderFactory {
doSetProperty("accountKey", accountKey);
return this;
}
+ /**
+ * Indicates whether to use the default identity mechanism instead of
+ * the access key.
+ *
+ * The option is a: <code>boolean</code> type.
+ *
+ * Default: false
+ * Group: security
+ *
+ * @param useDefaultIdentity the value to set
+ * @return the dsl builder
+ */
+ default CosmosDbEndpointBuilder useDefaultIdentity(
+ boolean useDefaultIdentity) {
+ doSetProperty("useDefaultIdentity", useDefaultIdentity);
+ return this;
+ }
+ /**
+ * Indicates whether to use the default identity mechanism instead of
+ * the access key.
+ *
+ * The option will be converted to a <code>boolean</code>
+ * type.
+ *
+ * Default: false
+ * Group: security
+ *
+ * @param useDefaultIdentity the value to set
+ * @return the dsl builder
+ */
+ default CosmosDbEndpointBuilder useDefaultIdentity(
+ String useDefaultIdentity) {
+ doSetProperty("useDefaultIdentity", useDefaultIdentity);
+ return this;
+ }
}
/**