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

com.pulumi.spotinst.Provider 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;

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.ProviderArgs;
import com.pulumi.spotinst.Utilities;
import java.lang.String;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * The provider type for the spotinst package. By default, resources use package-wide configuration
 * settings, however an explicit `Provider` instance may be created and passed during resource
 * construction to achieve fine-grained programmatic control over provider settings. See the
 * [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.
 * 
 */
@ResourceType(type="pulumi:providers:spotinst")
public class Provider extends com.pulumi.resources.ProviderResource {
    /**
     * Spotinst Account ID
     * 
     */
    @Export(name="account", refs={String.class}, tree="[0]")
    private Output account;

    /**
     * @return Spotinst Account ID
     * 
     */
    public Output> account() {
        return Codegen.optional(this.account);
    }
    /**
     * Spotinst SDK Feature Flags
     * 
     */
    @Export(name="featureFlags", refs={String.class}, tree="[0]")
    private Output featureFlags;

    /**
     * @return Spotinst SDK Feature Flags
     * 
     */
    public Output> featureFlags() {
        return Codegen.optional(this.featureFlags);
    }
    /**
     * Spotinst Personal API Access Token
     * 
     */
    @Export(name="token", refs={String.class}, tree="[0]")
    private Output token;

    /**
     * @return Spotinst Personal API Access Token
     * 
     */
    public Output> token() {
        return Codegen.optional(this.token);
    }

    /**
     *
     * @param name The _unique_ name of the resulting resource.
     */
    public Provider(java.lang.String name) {
        this(name, ProviderArgs.Empty);
    }
    /**
     *
     * @param name The _unique_ name of the resulting resource.
     * @param args The arguments to use to populate this resource's properties.
     */
    public Provider(java.lang.String name, @Nullable ProviderArgs 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 Provider(java.lang.String name, @Nullable ProviderArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
        super("spotinst", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
    }

    private static ProviderArgs makeArgs(@Nullable ProviderArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
        if (options != null && options.getUrn().isPresent()) {
            return null;
        }
        return args == null ? ProviderArgs.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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy