com.pulumi.meraki.organizations.outputs.InventoryOnboardingCloudMonitoringPrepareItemConfigParamsUserSecret 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.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class InventoryOnboardingCloudMonitoringPrepareItemConfigParamsUserSecret {
/**
* @return The hashed secret
*
*/
private @Nullable String hash;
private InventoryOnboardingCloudMonitoringPrepareItemConfigParamsUserSecret() {}
/**
* @return The hashed secret
*
*/
public Optional hash() {
return Optional.ofNullable(this.hash);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(InventoryOnboardingCloudMonitoringPrepareItemConfigParamsUserSecret defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String hash;
public Builder() {}
public Builder(InventoryOnboardingCloudMonitoringPrepareItemConfigParamsUserSecret defaults) {
Objects.requireNonNull(defaults);
this.hash = defaults.hash;
}
@CustomType.Setter
public Builder hash(@Nullable String hash) {
this.hash = hash;
return this;
}
public InventoryOnboardingCloudMonitoringPrepareItemConfigParamsUserSecret build() {
final var _resultValue = new InventoryOnboardingCloudMonitoringPrepareItemConfigParamsUserSecret();
_resultValue.hash = hash;
return _resultValue;
}
}
}