com.pulumi.azurenative.eventgrid.outputs.InlineEventPropertiesResponse 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.eventgrid.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 InlineEventPropertiesResponse {
/**
* @return The dataSchemaUrl for the inline event.
*
*/
private @Nullable String dataSchemaUrl;
/**
* @return The description for the inline event.
*
*/
private @Nullable String description;
/**
* @return The displayName for the inline event.
*
*/
private @Nullable String displayName;
/**
* @return The documentationUrl for the inline event.
*
*/
private @Nullable String documentationUrl;
private InlineEventPropertiesResponse() {}
/**
* @return The dataSchemaUrl for the inline event.
*
*/
public Optional dataSchemaUrl() {
return Optional.ofNullable(this.dataSchemaUrl);
}
/**
* @return The description for the inline event.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return The displayName for the inline event.
*
*/
public Optional displayName() {
return Optional.ofNullable(this.displayName);
}
/**
* @return The documentationUrl for the inline event.
*
*/
public Optional documentationUrl() {
return Optional.ofNullable(this.documentationUrl);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(InlineEventPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String dataSchemaUrl;
private @Nullable String description;
private @Nullable String displayName;
private @Nullable String documentationUrl;
public Builder() {}
public Builder(InlineEventPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.dataSchemaUrl = defaults.dataSchemaUrl;
this.description = defaults.description;
this.displayName = defaults.displayName;
this.documentationUrl = defaults.documentationUrl;
}
@CustomType.Setter
public Builder dataSchemaUrl(@Nullable String dataSchemaUrl) {
this.dataSchemaUrl = dataSchemaUrl;
return this;
}
@CustomType.Setter
public Builder description(@Nullable String description) {
this.description = description;
return this;
}
@CustomType.Setter
public Builder displayName(@Nullable String displayName) {
this.displayName = displayName;
return this;
}
@CustomType.Setter
public Builder documentationUrl(@Nullable String documentationUrl) {
this.documentationUrl = documentationUrl;
return this;
}
public InlineEventPropertiesResponse build() {
final var _resultValue = new InlineEventPropertiesResponse();
_resultValue.dataSchemaUrl = dataSchemaUrl;
_resultValue.description = description;
_resultValue.displayName = displayName;
_resultValue.documentationUrl = documentationUrl;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy