com.pulumi.meraki.organizations.outputs.LicensingCotermLicensesMoveItemMovedLicenseCount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meraki Show documentation
Show all versions of meraki Show documentation
A Pulumi package for creating and managing Cisco Meraki resources
// *** 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;
}
}
}