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

com.pulumi.ns1.Provider Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show 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.ns1;

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

/**
 * The provider type for the ns1 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:ns1")
public class Provider extends com.pulumi.resources.ProviderResource {
    /**
     * The ns1 API key (required)
     * 
     */
    @Export(name="apikey", refs={String.class}, tree="[0]")
    private Output apikey;

    /**
     * @return The ns1 API key (required)
     * 
     */
    public Output> apikey() {
        return Codegen.optional(this.apikey);
    }
    /**
     * URL prefix (including version) for API calls
     * 
     */
    @Export(name="endpoint", refs={String.class}, tree="[0]")
    private Output endpoint;

    /**
     * @return URL prefix (including version) for API calls
     * 
     */
    public Output> endpoint() {
        return Codegen.optional(this.endpoint);
    }
    /**
     * User-Agent string to use in NS1 API requests
     * 
     */
    @Export(name="userAgent", refs={String.class}, tree="[0]")
    private Output userAgent;

    /**
     * @return User-Agent string to use in NS1 API requests
     * 
     */
    public Output> userAgent() {
        return Codegen.optional(this.userAgent);
    }

    /**
     *
     * @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("ns1", 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 - 2025 Weber Informatics LLC | Privacy Policy