
com.pulumi.azurenative.logic.outputs.ListIntegrationAccountMapContentCallbackUrlResult 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.logic.outputs;
import com.pulumi.azurenative.logic.outputs.WorkflowTriggerListCallbackUrlQueriesResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ListIntegrationAccountMapContentCallbackUrlResult {
/**
* @return Gets the workflow trigger callback URL base path.
*
*/
private String basePath;
/**
* @return Gets the workflow trigger callback URL HTTP method.
*
*/
private String method;
/**
* @return Gets the workflow trigger callback URL query parameters.
*
*/
private @Nullable WorkflowTriggerListCallbackUrlQueriesResponse queries;
/**
* @return Gets the workflow trigger callback URL relative path.
*
*/
private String relativePath;
/**
* @return Gets the workflow trigger callback URL relative path parameters.
*
*/
private @Nullable List relativePathParameters;
/**
* @return Gets the workflow trigger callback URL.
*
*/
private String value;
private ListIntegrationAccountMapContentCallbackUrlResult() {}
/**
* @return Gets the workflow trigger callback URL base path.
*
*/
public String basePath() {
return this.basePath;
}
/**
* @return Gets the workflow trigger callback URL HTTP method.
*
*/
public String method() {
return this.method;
}
/**
* @return Gets the workflow trigger callback URL query parameters.
*
*/
public Optional queries() {
return Optional.ofNullable(this.queries);
}
/**
* @return Gets the workflow trigger callback URL relative path.
*
*/
public String relativePath() {
return this.relativePath;
}
/**
* @return Gets the workflow trigger callback URL relative path parameters.
*
*/
public List relativePathParameters() {
return this.relativePathParameters == null ? List.of() : this.relativePathParameters;
}
/**
* @return Gets the workflow trigger callback URL.
*
*/
public String value() {
return this.value;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListIntegrationAccountMapContentCallbackUrlResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String basePath;
private String method;
private @Nullable WorkflowTriggerListCallbackUrlQueriesResponse queries;
private String relativePath;
private @Nullable List relativePathParameters;
private String value;
public Builder() {}
public Builder(ListIntegrationAccountMapContentCallbackUrlResult defaults) {
Objects.requireNonNull(defaults);
this.basePath = defaults.basePath;
this.method = defaults.method;
this.queries = defaults.queries;
this.relativePath = defaults.relativePath;
this.relativePathParameters = defaults.relativePathParameters;
this.value = defaults.value;
}
@CustomType.Setter
public Builder basePath(String basePath) {
if (basePath == null) {
throw new MissingRequiredPropertyException("ListIntegrationAccountMapContentCallbackUrlResult", "basePath");
}
this.basePath = basePath;
return this;
}
@CustomType.Setter
public Builder method(String method) {
if (method == null) {
throw new MissingRequiredPropertyException("ListIntegrationAccountMapContentCallbackUrlResult", "method");
}
this.method = method;
return this;
}
@CustomType.Setter
public Builder queries(@Nullable WorkflowTriggerListCallbackUrlQueriesResponse queries) {
this.queries = queries;
return this;
}
@CustomType.Setter
public Builder relativePath(String relativePath) {
if (relativePath == null) {
throw new MissingRequiredPropertyException("ListIntegrationAccountMapContentCallbackUrlResult", "relativePath");
}
this.relativePath = relativePath;
return this;
}
@CustomType.Setter
public Builder relativePathParameters(@Nullable List relativePathParameters) {
this.relativePathParameters = relativePathParameters;
return this;
}
public Builder relativePathParameters(String... relativePathParameters) {
return relativePathParameters(List.of(relativePathParameters));
}
@CustomType.Setter
public Builder value(String value) {
if (value == null) {
throw new MissingRequiredPropertyException("ListIntegrationAccountMapContentCallbackUrlResult", "value");
}
this.value = value;
return this;
}
public ListIntegrationAccountMapContentCallbackUrlResult build() {
final var _resultValue = new ListIntegrationAccountMapContentCallbackUrlResult();
_resultValue.basePath = basePath;
_resultValue.method = method;
_resultValue.queries = queries;
_resultValue.relativePath = relativePath;
_resultValue.relativePathParameters = relativePathParameters;
_resultValue.value = value;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy