
com.pulumi.azurenative.app.inputs.ListLogicAppWorkflowsConnectionsPlainArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.app.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class ListLogicAppWorkflowsConnectionsPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final ListLogicAppWorkflowsConnectionsPlainArgs Empty = new ListLogicAppWorkflowsConnectionsPlainArgs();
/**
* Name of the Container App.
*
*/
@Import(name="containerAppName", required=true)
private String containerAppName;
/**
* @return Name of the Container App.
*
*/
public String containerAppName() {
return this.containerAppName;
}
/**
* Name of the Logic App, the extension resource.
*
*/
@Import(name="logicAppName", required=true)
private String logicAppName;
/**
* @return Name of the Logic App, the extension resource.
*
*/
public String logicAppName() {
return this.logicAppName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private ListLogicAppWorkflowsConnectionsPlainArgs() {}
private ListLogicAppWorkflowsConnectionsPlainArgs(ListLogicAppWorkflowsConnectionsPlainArgs $) {
this.containerAppName = $.containerAppName;
this.logicAppName = $.logicAppName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListLogicAppWorkflowsConnectionsPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ListLogicAppWorkflowsConnectionsPlainArgs $;
public Builder() {
$ = new ListLogicAppWorkflowsConnectionsPlainArgs();
}
public Builder(ListLogicAppWorkflowsConnectionsPlainArgs defaults) {
$ = new ListLogicAppWorkflowsConnectionsPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param containerAppName Name of the Container App.
*
* @return builder
*
*/
public Builder containerAppName(String containerAppName) {
$.containerAppName = containerAppName;
return this;
}
/**
* @param logicAppName Name of the Logic App, the extension resource.
*
* @return builder
*
*/
public Builder logicAppName(String logicAppName) {
$.logicAppName = logicAppName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public ListLogicAppWorkflowsConnectionsPlainArgs build() {
if ($.containerAppName == null) {
throw new MissingRequiredPropertyException("ListLogicAppWorkflowsConnectionsPlainArgs", "containerAppName");
}
if ($.logicAppName == null) {
throw new MissingRequiredPropertyException("ListLogicAppWorkflowsConnectionsPlainArgs", "logicAppName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("ListLogicAppWorkflowsConnectionsPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy