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

com.pulumi.meraki.organizations.inputs.LicensesPermanentlyQueuedLicenseArgs Maven / Gradle / Ivy

There is a newer version: 0.4.0-alpha.1731736975
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.meraki.organizations.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class LicensesPermanentlyQueuedLicenseArgs extends com.pulumi.resources.ResourceArgs {

    public static final LicensesPermanentlyQueuedLicenseArgs Empty = new LicensesPermanentlyQueuedLicenseArgs();

    /**
     * The duration of the individual license
     * 
     */
    @Import(name="durationInDays")
    private @Nullable Output durationInDays;

    /**
     * @return The duration of the individual license
     * 
     */
    public Optional> durationInDays() {
        return Optional.ofNullable(this.durationInDays);
    }

    /**
     * Permanently queued license ID
     * 
     */
    @Import(name="id")
    private @Nullable Output id;

    /**
     * @return Permanently queued license ID
     * 
     */
    public Optional> id() {
        return Optional.ofNullable(this.id);
    }

    /**
     * License key
     * 
     */
    @Import(name="licenseKey")
    private @Nullable Output licenseKey;

    /**
     * @return License key
     * 
     */
    public Optional> licenseKey() {
        return Optional.ofNullable(this.licenseKey);
    }

    /**
     * License type
     * 
     */
    @Import(name="licenseType")
    private @Nullable Output licenseType;

    /**
     * @return License type
     * 
     */
    public Optional> licenseType() {
        return Optional.ofNullable(this.licenseType);
    }

    /**
     * Order number
     * 
     */
    @Import(name="orderNumber")
    private @Nullable Output orderNumber;

    /**
     * @return Order number
     * 
     */
    public Optional> orderNumber() {
        return Optional.ofNullable(this.orderNumber);
    }

    private LicensesPermanentlyQueuedLicenseArgs() {}

    private LicensesPermanentlyQueuedLicenseArgs(LicensesPermanentlyQueuedLicenseArgs $) {
        this.durationInDays = $.durationInDays;
        this.id = $.id;
        this.licenseKey = $.licenseKey;
        this.licenseType = $.licenseType;
        this.orderNumber = $.orderNumber;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(LicensesPermanentlyQueuedLicenseArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private LicensesPermanentlyQueuedLicenseArgs $;

        public Builder() {
            $ = new LicensesPermanentlyQueuedLicenseArgs();
        }

        public Builder(LicensesPermanentlyQueuedLicenseArgs defaults) {
            $ = new LicensesPermanentlyQueuedLicenseArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param durationInDays The duration of the individual license
         * 
         * @return builder
         * 
         */
        public Builder durationInDays(@Nullable Output durationInDays) {
            $.durationInDays = durationInDays;
            return this;
        }

        /**
         * @param durationInDays The duration of the individual license
         * 
         * @return builder
         * 
         */
        public Builder durationInDays(Integer durationInDays) {
            return durationInDays(Output.of(durationInDays));
        }

        /**
         * @param id Permanently queued license ID
         * 
         * @return builder
         * 
         */
        public Builder id(@Nullable Output id) {
            $.id = id;
            return this;
        }

        /**
         * @param id Permanently queued license ID
         * 
         * @return builder
         * 
         */
        public Builder id(String id) {
            return id(Output.of(id));
        }

        /**
         * @param licenseKey License key
         * 
         * @return builder
         * 
         */
        public Builder licenseKey(@Nullable Output licenseKey) {
            $.licenseKey = licenseKey;
            return this;
        }

        /**
         * @param licenseKey License key
         * 
         * @return builder
         * 
         */
        public Builder licenseKey(String licenseKey) {
            return licenseKey(Output.of(licenseKey));
        }

        /**
         * @param licenseType License type
         * 
         * @return builder
         * 
         */
        public Builder licenseType(@Nullable Output licenseType) {
            $.licenseType = licenseType;
            return this;
        }

        /**
         * @param licenseType License type
         * 
         * @return builder
         * 
         */
        public Builder licenseType(String licenseType) {
            return licenseType(Output.of(licenseType));
        }

        /**
         * @param orderNumber Order number
         * 
         * @return builder
         * 
         */
        public Builder orderNumber(@Nullable Output orderNumber) {
            $.orderNumber = orderNumber;
            return this;
        }

        /**
         * @param orderNumber Order number
         * 
         * @return builder
         * 
         */
        public Builder orderNumber(String orderNumber) {
            return orderNumber(Output.of(orderNumber));
        }

        public LicensesPermanentlyQueuedLicenseArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy