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

com.pulumi.meraki.networks.outputs.GetCameraWirelessProfilesItemSsid 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.networks.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class GetCameraWirelessProfilesItemSsid {
    private String authMode;
    private String encryptionMode;
    private String name;

    private GetCameraWirelessProfilesItemSsid() {}
    public String authMode() {
        return this.authMode;
    }
    public String encryptionMode() {
        return this.encryptionMode;
    }
    public String name() {
        return this.name;
    }

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

    public static Builder builder(GetCameraWirelessProfilesItemSsid defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String authMode;
        private String encryptionMode;
        private String name;
        public Builder() {}
        public Builder(GetCameraWirelessProfilesItemSsid defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.authMode = defaults.authMode;
    	      this.encryptionMode = defaults.encryptionMode;
    	      this.name = defaults.name;
        }

        @CustomType.Setter
        public Builder authMode(String authMode) {
            if (authMode == null) {
              throw new MissingRequiredPropertyException("GetCameraWirelessProfilesItemSsid", "authMode");
            }
            this.authMode = authMode;
            return this;
        }
        @CustomType.Setter
        public Builder encryptionMode(String encryptionMode) {
            if (encryptionMode == null) {
              throw new MissingRequiredPropertyException("GetCameraWirelessProfilesItemSsid", "encryptionMode");
            }
            this.encryptionMode = encryptionMode;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetCameraWirelessProfilesItemSsid", "name");
            }
            this.name = name;
            return this;
        }
        public GetCameraWirelessProfilesItemSsid build() {
            final var _resultValue = new GetCameraWirelessProfilesItemSsid();
            _resultValue.authMode = authMode;
            _resultValue.encryptionMode = encryptionMode;
            _resultValue.name = name;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy