Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup<Wit
interface WithDefinition {
/**
* Specifies definition.
* @param definition The definition
* @param definition The definition. See [Schema reference for Workflow Definition Language in Azure Logic Apps](https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language)
* @return the next definition stage
*/
WithCreate withDefinition(Object definition);
Expand Down Expand Up @@ -182,7 +182,7 @@ interface UpdateStages {
interface WithDefinition {
/**
* Specifies definition.
* @param definition The definition
* @param definition The definition. See [Schema reference for Workflow Definition Language in Azure Logic Apps](https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language)
* @return the next update stage
*/
Update withDefinition(Object definition);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ public class WorkflowInner extends Resource {
private ResourceReference integrationAccount;

/**
* The definition.
* The definition. See [Schema reference for Workflow Definition Language
* in Azure Logic
* Apps](https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language).
*/
@JsonProperty(value = "properties.definition")
private Object definition;
Expand Down Expand Up @@ -197,7 +199,7 @@ public WorkflowInner withIntegrationAccount(ResourceReference integrationAccount
}

/**
* Get the definition.
* Get the definition. See [Schema reference for Workflow Definition Language in Azure Logic Apps](https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language).
*
* @return the definition value
*/
Expand All @@ -206,7 +208,7 @@ public Object definition() {
}

/**
* Set the definition.
* Set the definition. See [Schema reference for Workflow Definition Language in Azure Logic Apps](https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language).
*
* @param definition the definition value to set
* @return the WorkflowInner object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup<Wit
interface WithDefinition {
/**
* Specifies definition.
* @param definition The definition
* @param definition The definition. See [Schema reference for Workflow Definition Language in Azure Logic Apps](https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language)
* @return the next definition stage
*/
WithCreate withDefinition(Object definition);
Expand Down Expand Up @@ -182,7 +182,7 @@ interface UpdateStages {
interface WithDefinition {
/**
* Specifies definition.
* @param definition The definition
* @param definition The definition. See [Schema reference for Workflow Definition Language in Azure Logic Apps](https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language)
* @return the next update stage
*/
Update withDefinition(Object definition);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ public class WorkflowInner extends Resource {
private ResourceReference integrationAccount;

/**
* The definition.
* The definition. See [Schema reference for Workflow Definition Language
* in Azure Logic
* Apps](https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language).
*/
@JsonProperty(value = "properties.definition")
private Object definition;
Expand Down Expand Up @@ -197,7 +199,7 @@ public WorkflowInner withIntegrationAccount(ResourceReference integrationAccount
}

/**
* Get the definition.
* Get the definition. See [Schema reference for Workflow Definition Language in Azure Logic Apps](https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language).
*
* @return the definition value
*/
Expand All @@ -206,7 +208,7 @@ public Object definition() {
}

/**
* Set the definition.
* Set the definition. See [Schema reference for Workflow Definition Language in Azure Logic Apps](https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language).
*
* @param definition the definition value to set
* @return the WorkflowInner object itself.
Expand Down