
com.pulumi.azurenative.logic.outputs.GetIntegrationAccountSchemaResult 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.ContentLinkResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetIntegrationAccountSchemaResult {
/**
* @return The changed time.
*
*/
private String changedTime;
/**
* @return The content.
*
*/
private @Nullable String content;
/**
* @return The content link.
*
*/
private ContentLinkResponse contentLink;
/**
* @return The content type.
*
*/
private @Nullable String contentType;
/**
* @return The created time.
*
*/
private String createdTime;
/**
* @return The document name.
*
*/
private @Nullable String documentName;
/**
* @return The file name.
*
*/
private @Nullable String fileName;
/**
* @return The resource id.
*
*/
private String id;
/**
* @return The resource location.
*
*/
private @Nullable String location;
/**
* @return The metadata.
*
*/
private @Nullable Object metadata;
/**
* @return Gets the resource name.
*
*/
private String name;
/**
* @return The schema type.
*
*/
private String schemaType;
/**
* @return The resource tags.
*
*/
private @Nullable Map tags;
/**
* @return The target namespace of the schema.
*
*/
private @Nullable String targetNamespace;
/**
* @return Gets the resource type.
*
*/
private String type;
private GetIntegrationAccountSchemaResult() {}
/**
* @return The changed time.
*
*/
public String changedTime() {
return this.changedTime;
}
/**
* @return The content.
*
*/
public Optional content() {
return Optional.ofNullable(this.content);
}
/**
* @return The content link.
*
*/
public ContentLinkResponse contentLink() {
return this.contentLink;
}
/**
* @return The content type.
*
*/
public Optional contentType() {
return Optional.ofNullable(this.contentType);
}
/**
* @return The created time.
*
*/
public String createdTime() {
return this.createdTime;
}
/**
* @return The document name.
*
*/
public Optional documentName() {
return Optional.ofNullable(this.documentName);
}
/**
* @return The file name.
*
*/
public Optional fileName() {
return Optional.ofNullable(this.fileName);
}
/**
* @return The resource id.
*
*/
public String id() {
return this.id;
}
/**
* @return The resource location.
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* @return The metadata.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy