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

com.pulumi.azurenative.azurestackhci.outputs.GetDeploymentSettingResult Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.azurestackhci.outputs;

import com.pulumi.azurenative.azurestackhci.outputs.DeploymentConfigurationResponse;
import com.pulumi.azurenative.azurestackhci.outputs.ReportedPropertiesResponse;
import com.pulumi.azurenative.azurestackhci.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;

@CustomType
public final class GetDeploymentSettingResult {
    /**
     * @return Azure resource ids of Arc machines to be part of cluster.
     * 
     */
    private List arcNodeResourceIds;
    /**
     * @return Scale units will contains list of deployment data
     * 
     */
    private DeploymentConfigurationResponse deploymentConfiguration;
    /**
     * @return The deployment mode for cluster deployment.
     * 
     */
    private String deploymentMode;
    /**
     * @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
     * 
     */
    private String id;
    /**
     * @return The name of the resource
     * 
     */
    private String name;
    /**
     * @return DeploymentSetting provisioning state
     * 
     */
    private String provisioningState;
    /**
     * @return Deployment Status reported from cluster.
     * 
     */
    private ReportedPropertiesResponse reportedProperties;
    /**
     * @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     */
    private SystemDataResponse systemData;
    /**
     * @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     * 
     */
    private String type;

    private GetDeploymentSettingResult() {}
    /**
     * @return Azure resource ids of Arc machines to be part of cluster.
     * 
     */
    public List arcNodeResourceIds() {
        return this.arcNodeResourceIds;
    }
    /**
     * @return Scale units will contains list of deployment data
     * 
     */
    public DeploymentConfigurationResponse deploymentConfiguration() {
        return this.deploymentConfiguration;
    }
    /**
     * @return The deployment mode for cluster deployment.
     * 
     */
    public String deploymentMode() {
        return this.deploymentMode;
    }
    /**
     * @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 name of the resource
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return DeploymentSetting provisioning state
     * 
     */
    public String provisioningState() {
        return this.provisioningState;
    }
    /**
     * @return Deployment Status reported from cluster.
     * 
     */
    public ReportedPropertiesResponse reportedProperties() {
        return this.reportedProperties;
    }
    /**
     * @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     */
    public SystemDataResponse systemData() {
        return this.systemData;
    }
    /**
     * @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(GetDeploymentSettingResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private List arcNodeResourceIds;
        private DeploymentConfigurationResponse deploymentConfiguration;
        private String deploymentMode;
        private String id;
        private String name;
        private String provisioningState;
        private ReportedPropertiesResponse reportedProperties;
        private SystemDataResponse systemData;
        private String type;
        public Builder() {}
        public Builder(GetDeploymentSettingResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.arcNodeResourceIds = defaults.arcNodeResourceIds;
    	      this.deploymentConfiguration = defaults.deploymentConfiguration;
    	      this.deploymentMode = defaults.deploymentMode;
    	      this.id = defaults.id;
    	      this.name = defaults.name;
    	      this.provisioningState = defaults.provisioningState;
    	      this.reportedProperties = defaults.reportedProperties;
    	      this.systemData = defaults.systemData;
    	      this.type = defaults.type;
        }

        @CustomType.Setter
        public Builder arcNodeResourceIds(List arcNodeResourceIds) {
            if (arcNodeResourceIds == null) {
              throw new MissingRequiredPropertyException("GetDeploymentSettingResult", "arcNodeResourceIds");
            }
            this.arcNodeResourceIds = arcNodeResourceIds;
            return this;
        }
        public Builder arcNodeResourceIds(String... arcNodeResourceIds) {
            return arcNodeResourceIds(List.of(arcNodeResourceIds));
        }
        @CustomType.Setter
        public Builder deploymentConfiguration(DeploymentConfigurationResponse deploymentConfiguration) {
            if (deploymentConfiguration == null) {
              throw new MissingRequiredPropertyException("GetDeploymentSettingResult", "deploymentConfiguration");
            }
            this.deploymentConfiguration = deploymentConfiguration;
            return this;
        }
        @CustomType.Setter
        public Builder deploymentMode(String deploymentMode) {
            if (deploymentMode == null) {
              throw new MissingRequiredPropertyException("GetDeploymentSettingResult", "deploymentMode");
            }
            this.deploymentMode = deploymentMode;
            return this;
        }
        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("GetDeploymentSettingResult", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetDeploymentSettingResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder provisioningState(String provisioningState) {
            if (provisioningState == null) {
              throw new MissingRequiredPropertyException("GetDeploymentSettingResult", "provisioningState");
            }
            this.provisioningState = provisioningState;
            return this;
        }
        @CustomType.Setter
        public Builder reportedProperties(ReportedPropertiesResponse reportedProperties) {
            if (reportedProperties == null) {
              throw new MissingRequiredPropertyException("GetDeploymentSettingResult", "reportedProperties");
            }
            this.reportedProperties = reportedProperties;
            return this;
        }
        @CustomType.Setter
        public Builder systemData(SystemDataResponse systemData) {
            if (systemData == null) {
              throw new MissingRequiredPropertyException("GetDeploymentSettingResult", "systemData");
            }
            this.systemData = systemData;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("GetDeploymentSettingResult", "type");
            }
            this.type = type;
            return this;
        }
        public GetDeploymentSettingResult build() {
            final var _resultValue = new GetDeploymentSettingResult();
            _resultValue.arcNodeResourceIds = arcNodeResourceIds;
            _resultValue.deploymentConfiguration = deploymentConfiguration;
            _resultValue.deploymentMode = deploymentMode;
            _resultValue.id = id;
            _resultValue.name = name;
            _resultValue.provisioningState = provisioningState;
            _resultValue.reportedProperties = reportedProperties;
            _resultValue.systemData = systemData;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy