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

com.pulumi.azurenative.devcenter.outputs.GetNetworkConnectionResult Maven / Gradle / Ivy

There is a newer version: 2.78.0
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.azurenative.devcenter.outputs;

import com.pulumi.azurenative.devcenter.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class GetNetworkConnectionResult {
    /**
     * @return AAD Join type.
     * 
     */
    private String domainJoinType;
    /**
     * @return Active Directory domain name
     * 
     */
    private @Nullable String domainName;
    /**
     * @return The password for the account used to join domain
     * 
     */
    private @Nullable String domainPassword;
    /**
     * @return The username of an Active Directory account (user or service account) that has permissions to create computer objects in Active Directory. Required format: admin{@literal @}contoso.com.
     * 
     */
    private @Nullable String domainUsername;
    /**
     * @return Overall health status of the network connection. Health checks are run on creation, update, and periodically to validate the network connection.
     * 
     */
    private String healthCheckStatus;
    /**
     * @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
     * 
     */
    private String id;
    /**
     * @return The geo-location where the resource lives
     * 
     */
    private String location;
    /**
     * @return The name of the resource
     * 
     */
    private String name;
    /**
     * @return The name for resource group where NICs will be placed.
     * 
     */
    private @Nullable String networkingResourceGroupName;
    /**
     * @return Active Directory domain Organization Unit (OU)
     * 
     */
    private @Nullable String organizationUnit;
    /**
     * @return The provisioning state of the resource.
     * 
     */
    private String provisioningState;
    /**
     * @return The subnet to attach Virtual Machines to
     * 
     */
    private String subnetId;
    /**
     * @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     */
    private SystemDataResponse systemData;
    /**
     * @return Resource tags.
     * 
     */
    private @Nullable Map tags;
    /**
     * @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     * 
     */
    private String type;

    private GetNetworkConnectionResult() {}
    /**
     * @return AAD Join type.
     * 
     */
    public String domainJoinType() {
        return this.domainJoinType;
    }
    /**
     * @return Active Directory domain name
     * 
     */
    public Optional domainName() {
        return Optional.ofNullable(this.domainName);
    }
    /**
     * @return The password for the account used to join domain
     * 
     */
    public Optional domainPassword() {
        return Optional.ofNullable(this.domainPassword);
    }
    /**
     * @return The username of an Active Directory account (user or service account) that has permissions to create computer objects in Active Directory. Required format: admin{@literal @}contoso.com.
     * 
     */
    public Optional domainUsername() {
        return Optional.ofNullable(this.domainUsername);
    }
    /**
     * @return Overall health status of the network connection. Health checks are run on creation, update, and periodically to validate the network connection.
     * 
     */
    public String healthCheckStatus() {
        return this.healthCheckStatus;
    }
    /**
     * @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
     * 
     */
    public String id() {
        return this.id;
    }
    /**
     * @return The geo-location where the resource lives
     * 
     */
    public String location() {
        return this.location;
    }
    /**
     * @return The name of the resource
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return The name for resource group where NICs will be placed.
     * 
     */
    public Optional networkingResourceGroupName() {
        return Optional.ofNullable(this.networkingResourceGroupName);
    }
    /**
     * @return Active Directory domain Organization Unit (OU)
     * 
     */
    public Optional organizationUnit() {
        return Optional.ofNullable(this.organizationUnit);
    }
    /**
     * @return The provisioning state of the resource.
     * 
     */
    public String provisioningState() {
        return this.provisioningState;
    }
    /**
     * @return The subnet to attach Virtual Machines to
     * 
     */
    public String subnetId() {
        return this.subnetId;
    }
    /**
     * @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     */
    public SystemDataResponse systemData() {
        return this.systemData;
    }
    /**
     * @return Resource tags.
     * 
     */
    public Map tags() {
        return this.tags == null ? Map.of() : this.tags;
    }
    /**
     * @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     * 
     */
    public String type() {
        return this.type;
    }

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

    public static Builder builder(GetNetworkConnectionResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String domainJoinType;
        private @Nullable String domainName;
        private @Nullable String domainPassword;
        private @Nullable String domainUsername;
        private String healthCheckStatus;
        private String id;
        private String location;
        private String name;
        private @Nullable String networkingResourceGroupName;
        private @Nullable String organizationUnit;
        private String provisioningState;
        private String subnetId;
        private SystemDataResponse systemData;
        private @Nullable Map tags;
        private String type;
        public Builder() {}
        public Builder(GetNetworkConnectionResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.domainJoinType = defaults.domainJoinType;
    	      this.domainName = defaults.domainName;
    	      this.domainPassword = defaults.domainPassword;
    	      this.domainUsername = defaults.domainUsername;
    	      this.healthCheckStatus = defaults.healthCheckStatus;
    	      this.id = defaults.id;
    	      this.location = defaults.location;
    	      this.name = defaults.name;
    	      this.networkingResourceGroupName = defaults.networkingResourceGroupName;
    	      this.organizationUnit = defaults.organizationUnit;
    	      this.provisioningState = defaults.provisioningState;
    	      this.subnetId = defaults.subnetId;
    	      this.systemData = defaults.systemData;
    	      this.tags = defaults.tags;
    	      this.type = defaults.type;
        }

        @CustomType.Setter
        public Builder domainJoinType(String domainJoinType) {
            if (domainJoinType == null) {
              throw new MissingRequiredPropertyException("GetNetworkConnectionResult", "domainJoinType");
            }
            this.domainJoinType = domainJoinType;
            return this;
        }
        @CustomType.Setter
        public Builder domainName(@Nullable String domainName) {

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

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

            this.domainUsername = domainUsername;
            return this;
        }
        @CustomType.Setter
        public Builder healthCheckStatus(String healthCheckStatus) {
            if (healthCheckStatus == null) {
              throw new MissingRequiredPropertyException("GetNetworkConnectionResult", "healthCheckStatus");
            }
            this.healthCheckStatus = healthCheckStatus;
            return this;
        }
        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("GetNetworkConnectionResult", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder location(String location) {
            if (location == null) {
              throw new MissingRequiredPropertyException("GetNetworkConnectionResult", "location");
            }
            this.location = location;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetNetworkConnectionResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder networkingResourceGroupName(@Nullable String networkingResourceGroupName) {

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

            this.organizationUnit = organizationUnit;
            return this;
        }
        @CustomType.Setter
        public Builder provisioningState(String provisioningState) {
            if (provisioningState == null) {
              throw new MissingRequiredPropertyException("GetNetworkConnectionResult", "provisioningState");
            }
            this.provisioningState = provisioningState;
            return this;
        }
        @CustomType.Setter
        public Builder subnetId(String subnetId) {
            if (subnetId == null) {
              throw new MissingRequiredPropertyException("GetNetworkConnectionResult", "subnetId");
            }
            this.subnetId = subnetId;
            return this;
        }
        @CustomType.Setter
        public Builder systemData(SystemDataResponse systemData) {
            if (systemData == null) {
              throw new MissingRequiredPropertyException("GetNetworkConnectionResult", "systemData");
            }
            this.systemData = systemData;
            return this;
        }
        @CustomType.Setter
        public Builder tags(@Nullable Map tags) {

            this.tags = tags;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("GetNetworkConnectionResult", "type");
            }
            this.type = type;
            return this;
        }
        public GetNetworkConnectionResult build() {
            final var _resultValue = new GetNetworkConnectionResult();
            _resultValue.domainJoinType = domainJoinType;
            _resultValue.domainName = domainName;
            _resultValue.domainPassword = domainPassword;
            _resultValue.domainUsername = domainUsername;
            _resultValue.healthCheckStatus = healthCheckStatus;
            _resultValue.id = id;
            _resultValue.location = location;
            _resultValue.name = name;
            _resultValue.networkingResourceGroupName = networkingResourceGroupName;
            _resultValue.organizationUnit = organizationUnit;
            _resultValue.provisioningState = provisioningState;
            _resultValue.subnetId = subnetId;
            _resultValue.systemData = systemData;
            _resultValue.tags = tags;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy