com.pulumi.azurenative.integrationspaces.outputs.TrackingCorrelationContextResponse 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.integrationspaces.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class TrackingCorrelationContextResponse {
/**
* @return The operation name for correlation context.
*
*/
private @Nullable String operationName;
/**
* @return The operation type for correlation context.
*
*/
private @Nullable String operationType;
/**
* @return The name of the correlation property.
*
*/
private @Nullable String propertyName;
/**
* @return The template expression for correlation context property value.
*
*/
private @Nullable String value;
private TrackingCorrelationContextResponse() {}
/**
* @return The operation name for correlation context.
*
*/
public Optional operationName() {
return Optional.ofNullable(this.operationName);
}
/**
* @return The operation type for correlation context.
*
*/
public Optional operationType() {
return Optional.ofNullable(this.operationType);
}
/**
* @return The name of the correlation property.
*
*/
public Optional propertyName() {
return Optional.ofNullable(this.propertyName);
}
/**
* @return The template expression for correlation context property value.
*
*/
public Optional value() {
return Optional.ofNullable(this.value);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(TrackingCorrelationContextResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String operationName;
private @Nullable String operationType;
private @Nullable String propertyName;
private @Nullable String value;
public Builder() {}
public Builder(TrackingCorrelationContextResponse defaults) {
Objects.requireNonNull(defaults);
this.operationName = defaults.operationName;
this.operationType = defaults.operationType;
this.propertyName = defaults.propertyName;
this.value = defaults.value;
}
@CustomType.Setter
public Builder operationName(@Nullable String operationName) {
this.operationName = operationName;
return this;
}
@CustomType.Setter
public Builder operationType(@Nullable String operationType) {
this.operationType = operationType;
return this;
}
@CustomType.Setter
public Builder propertyName(@Nullable String propertyName) {
this.propertyName = propertyName;
return this;
}
@CustomType.Setter
public Builder value(@Nullable String value) {
this.value = value;
return this;
}
public TrackingCorrelationContextResponse build() {
final var _resultValue = new TrackingCorrelationContextResponse();
_resultValue.operationName = operationName;
_resultValue.operationType = operationType;
_resultValue.propertyName = propertyName;
_resultValue.value = value;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy