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

com.pulumi.meraki.organizations.outputs.LicensingCotermLicensesMoveItemMovedLicenseCount 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.outputs;

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

@CustomType
public final class LicensingCotermLicensesMoveItemMovedLicenseCount {
    /**
     * @return The number of counts the license contains of this model
     * 
     */
    private @Nullable Integer count;
    /**
     * @return The license model type
     * 
     */
    private @Nullable String model;

    private LicensingCotermLicensesMoveItemMovedLicenseCount() {}
    /**
     * @return The number of counts the license contains of this model
     * 
     */
    public Optional count() {
        return Optional.ofNullable(this.count);
    }
    /**
     * @return The license model type
     * 
     */
    public Optional model() {
        return Optional.ofNullable(this.model);
    }

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

    public static Builder builder(LicensingCotermLicensesMoveItemMovedLicenseCount defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Integer count;
        private @Nullable String model;
        public Builder() {}
        public Builder(LicensingCotermLicensesMoveItemMovedLicenseCount defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.count = defaults.count;
    	      this.model = defaults.model;
        }

        @CustomType.Setter
        public Builder count(@Nullable Integer count) {

            this.count = count;
            return this;
        }
        @CustomType.Setter
        public Builder model(@Nullable String model) {

            this.model = model;
            return this;
        }
        public LicensingCotermLicensesMoveItemMovedLicenseCount build() {
            final var _resultValue = new LicensingCotermLicensesMoveItemMovedLicenseCount();
            _resultValue.count = count;
            _resultValue.model = model;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy