All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.spotinst.aws.OceanExtendedResourceDefinition Maven / Gradle / Ivy

The newest version!
// *** 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.spotinst.aws;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import com.pulumi.spotinst.Utilities;
import com.pulumi.spotinst.aws.OceanExtendedResourceDefinitionArgs;
import com.pulumi.spotinst.aws.inputs.OceanExtendedResourceDefinitionState;
import java.lang.String;
import java.util.Map;
import javax.annotation.Nullable;

/**
 * Provides a Spotinst Ocean AWS Extended Resource Definition resource.
 * 
 * ## Example Usage
 * 
 * <!--Start PulumiCodeChooser -->
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.spotinst.aws.OceanExtendedResourceDefinition;
 * import com.pulumi.spotinst.aws.OceanExtendedResourceDefinitionArgs;
 * 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 example = new OceanExtendedResourceDefinition("example", OceanExtendedResourceDefinitionArgs.builder()
 *             .name("terraform_extended_resource_definition")
 *             .resourceMapping(Map.ofEntries(
 *                 Map.entry("c3.large", "2Ki"),
 *                 Map.entry("c3.xlarge", "4Ki")
 *             ))
 *             .build());
 * 
 *     }
 * }
 * }
 * 
* <!--End PulumiCodeChooser --> * */ @ResourceType(type="spotinst:aws/oceanExtendedResourceDefinition:OceanExtendedResourceDefinition") public class OceanExtendedResourceDefinition extends com.pulumi.resources.CustomResource { /** * The extended resource name as should be requested by your pods and registered to the nodes. Cannot be updated. * The name should be a valid Kubernetes extended resource name. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return The extended resource name as should be requested by your pods and registered to the nodes. Cannot be updated. * The name should be a valid Kubernetes extended resource name. * */ public Output name() { return this.name; } /** * A mapping between AWS instanceType or * as default and its value for the given extended resource. * */ @Export(name="resourceMapping", refs={Map.class,String.class}, tree="[0,1,1]") private Output> resourceMapping; /** * @return A mapping between AWS instanceType or * as default and its value for the given extended resource. * */ public Output> resourceMapping() { return this.resourceMapping; } /** * * @param name The _unique_ name of the resulting resource. */ public OceanExtendedResourceDefinition(java.lang.String name) { this(name, OceanExtendedResourceDefinitionArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public OceanExtendedResourceDefinition(java.lang.String name, OceanExtendedResourceDefinitionArgs 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 OceanExtendedResourceDefinition(java.lang.String name, OceanExtendedResourceDefinitionArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("spotinst:aws/oceanExtendedResourceDefinition:OceanExtendedResourceDefinition", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private OceanExtendedResourceDefinition(java.lang.String name, Output id, @Nullable OceanExtendedResourceDefinitionState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("spotinst:aws/oceanExtendedResourceDefinition:OceanExtendedResourceDefinition", name, state, makeResourceOptions(options, id), false); } private static OceanExtendedResourceDefinitionArgs makeArgs(OceanExtendedResourceDefinitionArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? OceanExtendedResourceDefinitionArgs.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()) .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 state * @param options Optional settings to control the behavior of the CustomResource. */ public static OceanExtendedResourceDefinition get(java.lang.String name, Output id, @Nullable OceanExtendedResourceDefinitionState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new OceanExtendedResourceDefinition(name, id, state, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy