
com.pulumi.azurenative.apimanagement.outputs.ParameterExampleContractResponse 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.apimanagement.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ParameterExampleContractResponse {
/**
* @return Long description for the example
*
*/
private @Nullable String description;
/**
* @return A URL that points to the literal example
*
*/
private @Nullable String externalValue;
/**
* @return Short description for the example
*
*/
private @Nullable String summary;
/**
* @return Example value. May be a primitive value, or an object.
*
*/
private @Nullable Object value;
private ParameterExampleContractResponse() {}
/**
* @return Long description for the example
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return A URL that points to the literal example
*
*/
public Optional externalValue() {
return Optional.ofNullable(this.externalValue);
}
/**
* @return Short description for the example
*
*/
public Optional summary() {
return Optional.ofNullable(this.summary);
}
/**
* @return Example value. May be a primitive value, or an object.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy