
com.pulumi.azurenative.web.inputs.ListWorkflowRunActionExpressionTracesArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.web.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class ListWorkflowRunActionExpressionTracesArgs extends com.pulumi.resources.InvokeArgs {
public static final ListWorkflowRunActionExpressionTracesArgs Empty = new ListWorkflowRunActionExpressionTracesArgs();
/**
* The workflow action name.
*
*/
@Import(name="actionName", required=true)
private Output actionName;
/**
* @return The workflow action name.
*
*/
public Output actionName() {
return this.actionName;
}
/**
* Site name.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return Site name.
*
*/
public Output name() {
return this.name;
}
/**
* Name of the resource group to which the resource belongs.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return Name of the resource group to which the resource belongs.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The workflow run name.
*
*/
@Import(name="runName", required=true)
private Output runName;
/**
* @return The workflow run name.
*
*/
public Output runName() {
return this.runName;
}
/**
* The workflow name.
*
*/
@Import(name="workflowName", required=true)
private Output workflowName;
/**
* @return The workflow name.
*
*/
public Output workflowName() {
return this.workflowName;
}
private ListWorkflowRunActionExpressionTracesArgs() {}
private ListWorkflowRunActionExpressionTracesArgs(ListWorkflowRunActionExpressionTracesArgs $) {
this.actionName = $.actionName;
this.name = $.name;
this.resourceGroupName = $.resourceGroupName;
this.runName = $.runName;
this.workflowName = $.workflowName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListWorkflowRunActionExpressionTracesArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ListWorkflowRunActionExpressionTracesArgs $;
public Builder() {
$ = new ListWorkflowRunActionExpressionTracesArgs();
}
public Builder(ListWorkflowRunActionExpressionTracesArgs defaults) {
$ = new ListWorkflowRunActionExpressionTracesArgs(Objects.requireNonNull(defaults));
}
/**
* @param actionName The workflow action name.
*
* @return builder
*
*/
public Builder actionName(Output actionName) {
$.actionName = actionName;
return this;
}
/**
* @param actionName The workflow action name.
*
* @return builder
*
*/
public Builder actionName(String actionName) {
return actionName(Output.of(actionName));
}
/**
* @param name Site name.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name Site name.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param resourceGroupName Name of the resource group to which the resource belongs.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName Name of the resource group to which the resource belongs.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param runName The workflow run name.
*
* @return builder
*
*/
public Builder runName(Output runName) {
$.runName = runName;
return this;
}
/**
* @param runName The workflow run name.
*
* @return builder
*
*/
public Builder runName(String runName) {
return runName(Output.of(runName));
}
/**
* @param workflowName The workflow name.
*
* @return builder
*
*/
public Builder workflowName(Output workflowName) {
$.workflowName = workflowName;
return this;
}
/**
* @param workflowName The workflow name.
*
* @return builder
*
*/
public Builder workflowName(String workflowName) {
return workflowName(Output.of(workflowName));
}
public ListWorkflowRunActionExpressionTracesArgs build() {
if ($.actionName == null) {
throw new MissingRequiredPropertyException("ListWorkflowRunActionExpressionTracesArgs", "actionName");
}
if ($.name == null) {
throw new MissingRequiredPropertyException("ListWorkflowRunActionExpressionTracesArgs", "name");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("ListWorkflowRunActionExpressionTracesArgs", "resourceGroupName");
}
if ($.runName == null) {
throw new MissingRequiredPropertyException("ListWorkflowRunActionExpressionTracesArgs", "runName");
}
if ($.workflowName == null) {
throw new MissingRequiredPropertyException("ListWorkflowRunActionExpressionTracesArgs", "workflowName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy