com.pulumi.azurenative.web.outputs.ApiReferenceResponse 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.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 ApiReferenceResponse {
/**
* @return Brand color
*
*/
private @Nullable String brandColor;
/**
* @return The custom API description
*
*/
private @Nullable String description;
/**
* @return The display name
*
*/
private @Nullable String displayName;
/**
* @return The icon URI
*
*/
private @Nullable String iconUri;
/**
* @return Resource reference id
*
*/
private @Nullable String id;
/**
* @return The name of the API
*
*/
private @Nullable String name;
/**
* @return The JSON representation of the swagger
*
*/
private @Nullable Object swagger;
/**
* @return Resource reference type
*
*/
private @Nullable String type;
private ApiReferenceResponse() {}
/**
* @return Brand color
*
*/
public Optional brandColor() {
return Optional.ofNullable(this.brandColor);
}
/**
* @return The custom API description
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return The display name
*
*/
public Optional displayName() {
return Optional.ofNullable(this.displayName);
}
/**
* @return The icon URI
*
*/
public Optional iconUri() {
return Optional.ofNullable(this.iconUri);
}
/**
* @return Resource reference id
*
*/
public Optional id() {
return Optional.ofNullable(this.id);
}
/**
* @return The name of the API
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* @return The JSON representation of the swagger
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy