
com.pulumi.azurenative.logic.outputs.AssemblyPropertiesResponse 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.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.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AssemblyPropertiesResponse {
/**
* @return The assembly culture.
*
*/
private @Nullable String assemblyCulture;
/**
* @return The assembly name.
*
*/
private String assemblyName;
/**
* @return The assembly public key token.
*
*/
private @Nullable String assemblyPublicKeyToken;
/**
* @return The assembly version.
*
*/
private @Nullable String assemblyVersion;
/**
* @return The artifact changed time.
*
*/
private @Nullable String changedTime;
private @Nullable Object content;
/**
* @return The content link.
*
*/
private @Nullable ContentLinkResponse contentLink;
/**
* @return The content type.
*
*/
private @Nullable String contentType;
/**
* @return The artifact creation time.
*
*/
private @Nullable String createdTime;
private @Nullable Object metadata;
private AssemblyPropertiesResponse() {}
/**
* @return The assembly culture.
*
*/
public Optional assemblyCulture() {
return Optional.ofNullable(this.assemblyCulture);
}
/**
* @return The assembly name.
*
*/
public String assemblyName() {
return this.assemblyName;
}
/**
* @return The assembly public key token.
*
*/
public Optional assemblyPublicKeyToken() {
return Optional.ofNullable(this.assemblyPublicKeyToken);
}
/**
* @return The assembly version.
*
*/
public Optional assemblyVersion() {
return Optional.ofNullable(this.assemblyVersion);
}
/**
* @return The artifact changed time.
*
*/
public Optional changedTime() {
return Optional.ofNullable(this.changedTime);
}
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy