com.pulumi.azurenative.testbase.CustomImage 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.testbase;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.testbase.CustomImageArgs;
import com.pulumi.azurenative.testbase.outputs.ImageValidationResultsResponse;
import com.pulumi.azurenative.testbase.outputs.SystemDataResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.Double;
import java.lang.String;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* The test base custom image resource.
* Azure REST API version: 2023-11-01-preview.
*
* ## Example Usage
* ### CustomImageCreate
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.testbase.CustomImage;
* import com.pulumi.azurenative.testbase.CustomImageArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
*
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
*
* public static void stack(Context ctx) {
* var customImage = new CustomImage("customImage", CustomImageArgs.builder()
* .customImageName("image-2cfb2edc-13bc-4d54-8d6e-38b2a233b003")
* .definitionName("contoso-image-def")
* .resourceGroupName("contoso-rg1")
* .source("VHD")
* .testBaseAccountName("contoso-testBaseAccount1")
* .versionName("1.0.0")
* .vhdId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-rg1/providers/Microsoft.TestBase/testBaseAccounts/contoso-testBaseAccount1/VHDs/vhd-00ac3ccd-1503-4ee5-aa26-26569cfafe88")
* .build());
*
* }
* }
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:testbase:CustomImage image-2cfb2edc-13bc-4d54-8d6e-38b2a233b003 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.TestBase/testBaseAccounts/{testBaseAccountName}/customImages/{customImageName}
* ```
*
*/
@ResourceType(type="azure-native:testbase:CustomImage")
public class CustomImage extends com.pulumi.resources.CustomResource {
/**
* The UTC timestamp when the custom image was published.
*
*/
@Export(name="creationTime", refs={String.class}, tree="[0]")
private Output creationTime;
/**
* @return The UTC timestamp when the custom image was published.
*
*/
public Output creationTime() {
return this.creationTime;
}
/**
* Image definition name.
*
*/
@Export(name="definitionName", refs={String.class}, tree="[0]")
private Output definitionName;
/**
* @return Image definition name.
*
*/
public Output definitionName() {
return this.definitionName;
}
/**
* The name of the resource
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return The name of the resource
*
*/
public Output name() {
return this.name;
}
/**
* This property indicates the size of the VHD to be created.
*
*/
@Export(name="osDiskImageSizeInGB", refs={Double.class}, tree="[0]")
private Output osDiskImageSizeInGB;
/**
* @return This property indicates the size of the VHD to be created.
*
*/
public Output osDiskImageSizeInGB() {
return this.osDiskImageSizeInGB;
}
/**
* Product of the custom image.
*
*/
@Export(name="product", refs={String.class}, tree="[0]")
private Output product;
/**
* @return Product of the custom image.
*
*/
public Output product() {
return this.product;
}
/**
* The provisioning state of the resource.
*
*/
@Export(name="provisioningState", refs={String.class}, tree="[0]")
private Output provisioningState;
/**
* @return The provisioning state of the resource.
*
*/
public Output provisioningState() {
return this.provisioningState;
}
/**
* Release of the custom image OS.
*
*/
@Export(name="release", refs={String.class}, tree="[0]")
private Output release;
/**
* @return Release of the custom image OS.
*
*/
public Output release() {
return this.release;
}
/**
* The release version date of the release of the custom image OS.
*
*/
@Export(name="releaseVersionDate", refs={String.class}, tree="[0]")
private Output releaseVersionDate;
/**
* @return The release version date of the release of the custom image OS.
*
*/
public Output releaseVersionDate() {
return this.releaseVersionDate;
}
/**
* Custom image source type.
*
*/
@Export(name="source", refs={String.class}, tree="[0]")
private Output source;
/**
* @return Custom image source type.
*
*/
public Output source() {
return this.source;
}
/**
* Status of the custom image.
*
*/
@Export(name="status", refs={String.class}, tree="[0]")
private Output status;
/**
* @return Status of the custom image.
*
*/
public Output status() {
return this.status;
}
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
@Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]")
private Output systemData;
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
public Output systemData() {
return this.systemData;
}
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
@Export(name="type", refs={String.class}, tree="[0]")
private Output type;
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
public Output type() {
return this.type;
}
/**
* The validation result of the custom image.
*
*/
@Export(name="validationResults", refs={ImageValidationResultsResponse.class}, tree="[0]")
private Output validationResults;
/**
* @return The validation result of the custom image.
*
*/
public Output validationResults() {
return this.validationResults;
}
/**
* Image version name.
*
*/
@Export(name="versionName", refs={String.class}, tree="[0]")
private Output versionName;
/**
* @return Image version name.
*
*/
public Output versionName() {
return this.versionName;
}
/**
* The file name of the associated VHD resource.
*
*/
@Export(name="vhdFileName", refs={String.class}, tree="[0]")
private Output vhdFileName;
/**
* @return The file name of the associated VHD resource.
*
*/
public Output vhdFileName() {
return this.vhdFileName;
}
/**
* The Id of the associated VHD resource.
*
*/
@Export(name="vhdId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> vhdId;
/**
* @return The Id of the associated VHD resource.
*
*/
public Output> vhdId() {
return Codegen.optional(this.vhdId);
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public CustomImage(java.lang.String name) {
this(name, CustomImageArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public CustomImage(java.lang.String name, CustomImageArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public CustomImage(java.lang.String name, CustomImageArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:testbase:CustomImage", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private CustomImage(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:testbase:CustomImage", name, null, makeResourceOptions(options, id), false);
}
private static CustomImageArgs makeArgs(CustomImageArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? CustomImageArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.aliases(List.of(
Output.of(Alias.builder().type("azure-native:testbase/v20231101preview:CustomImage").build())
))
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static CustomImage get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new CustomImage(name, id, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy