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

com.pulumi.azurenative.workloads.outputs.GetSAPVirtualInstanceResult Maven / Gradle / Ivy

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

import com.pulumi.azurenative.workloads.outputs.DeploymentConfigurationResponse;
import com.pulumi.azurenative.workloads.outputs.DeploymentWithOSConfigurationResponse;
import com.pulumi.azurenative.workloads.outputs.DiscoveryConfigurationResponse;
import com.pulumi.azurenative.workloads.outputs.ManagedRGConfigurationResponse;
import com.pulumi.azurenative.workloads.outputs.SAPVirtualInstanceErrorResponse;
import com.pulumi.azurenative.workloads.outputs.SystemDataResponse;
import com.pulumi.azurenative.workloads.outputs.UserAssignedServiceIdentityResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class GetSAPVirtualInstanceResult {
    /**
     * @return Defines if the SAP system is being created using Azure Center for SAP solutions (ACSS) or if an existing SAP system is being registered with ACSS
     * 
     */
    private Object configuration;
    /**
     * @return Defines the environment type - Production/Non Production.
     * 
     */
    private String environment;
    /**
     * @return Indicates any errors on the Virtual Instance for SAP solutions resource.
     * 
     */
    private SAPVirtualInstanceErrorResponse errors;
    /**
     * @return Defines the health of SAP Instances.
     * 
     */
    private String health;
    /**
     * @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
     * 
     */
    private String id;
    /**
     * @return A pre-created user assigned identity with appropriate roles assigned. To learn more on identity and roles required, visit the ACSS how-to-guide.
     * 
     */
    private @Nullable UserAssignedServiceIdentityResponse identity;
    /**
     * @return The geo-location where the resource lives
     * 
     */
    private String location;
    /**
     * @return Managed resource group configuration
     * 
     */
    private @Nullable ManagedRGConfigurationResponse managedResourceGroupConfiguration;
    /**
     * @return The name of the resource
     * 
     */
    private String name;
    /**
     * @return Defines the provisioning states.
     * 
     */
    private String provisioningState;
    /**
     * @return Defines the SAP Product type.
     * 
     */
    private String sapProduct;
    /**
     * @return Defines the Virtual Instance for SAP state.
     * 
     */
    private String state;
    /**
     * @return Defines the SAP Instance status.
     * 
     */
    private String status;
    /**
     * @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 GetSAPVirtualInstanceResult() {}
    /**
     * @return Defines if the SAP system is being created using Azure Center for SAP solutions (ACSS) or if an existing SAP system is being registered with ACSS
     * 
     */
    public Object configuration() {
        return this.configuration;
    }
    /**
     * @return Defines the environment type - Production/Non Production.
     * 
     */
    public String environment() {
        return this.environment;
    }
    /**
     * @return Indicates any errors on the Virtual Instance for SAP solutions resource.
     * 
     */
    public SAPVirtualInstanceErrorResponse errors() {
        return this.errors;
    }
    /**
     * @return Defines the health of SAP Instances.
     * 
     */
    public String health() {
        return this.health;
    }
    /**
     * @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
     * 
     */
    public String id() {
        return this.id;
    }
    /**
     * @return A pre-created user assigned identity with appropriate roles assigned. To learn more on identity and roles required, visit the ACSS how-to-guide.
     * 
     */
    public Optional identity() {
        return Optional.ofNullable(this.identity);
    }
    /**
     * @return The geo-location where the resource lives
     * 
     */
    public String location() {
        return this.location;
    }
    /**
     * @return Managed resource group configuration
     * 
     */
    public Optional managedResourceGroupConfiguration() {
        return Optional.ofNullable(this.managedResourceGroupConfiguration);
    }
    /**
     * @return The name of the resource
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return Defines the provisioning states.
     * 
     */
    public String provisioningState() {
        return this.provisioningState;
    }
    /**
     * @return Defines the SAP Product type.
     * 
     */
    public String sapProduct() {
        return this.sapProduct;
    }
    /**
     * @return Defines the Virtual Instance for SAP state.
     * 
     */
    public String state() {
        return this.state;
    }
    /**
     * @return Defines the SAP Instance status.
     * 
     */
    public String status() {
        return this.status;
    }
    /**
     * @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(GetSAPVirtualInstanceResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private Object configuration;
        private String environment;
        private SAPVirtualInstanceErrorResponse errors;
        private String health;
        private String id;
        private @Nullable UserAssignedServiceIdentityResponse identity;
        private String location;
        private @Nullable ManagedRGConfigurationResponse managedResourceGroupConfiguration;
        private String name;
        private String provisioningState;
        private String sapProduct;
        private String state;
        private String status;
        private SystemDataResponse systemData;
        private @Nullable Map tags;
        private String type;
        public Builder() {}
        public Builder(GetSAPVirtualInstanceResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.configuration = defaults.configuration;
    	      this.environment = defaults.environment;
    	      this.errors = defaults.errors;
    	      this.health = defaults.health;
    	      this.id = defaults.id;
    	      this.identity = defaults.identity;
    	      this.location = defaults.location;
    	      this.managedResourceGroupConfiguration = defaults.managedResourceGroupConfiguration;
    	      this.name = defaults.name;
    	      this.provisioningState = defaults.provisioningState;
    	      this.sapProduct = defaults.sapProduct;
    	      this.state = defaults.state;
    	      this.status = defaults.status;
    	      this.systemData = defaults.systemData;
    	      this.tags = defaults.tags;
    	      this.type = defaults.type;
        }

        @CustomType.Setter
        public Builder configuration(Object configuration) {
            if (configuration == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "configuration");
            }
            this.configuration = configuration;
            return this;
        }
        @CustomType.Setter
        public Builder environment(String environment) {
            if (environment == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "environment");
            }
            this.environment = environment;
            return this;
        }
        @CustomType.Setter
        public Builder errors(SAPVirtualInstanceErrorResponse errors) {
            if (errors == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "errors");
            }
            this.errors = errors;
            return this;
        }
        @CustomType.Setter
        public Builder health(String health) {
            if (health == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "health");
            }
            this.health = health;
            return this;
        }
        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder identity(@Nullable UserAssignedServiceIdentityResponse identity) {

            this.identity = identity;
            return this;
        }
        @CustomType.Setter
        public Builder location(String location) {
            if (location == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "location");
            }
            this.location = location;
            return this;
        }
        @CustomType.Setter
        public Builder managedResourceGroupConfiguration(@Nullable ManagedRGConfigurationResponse managedResourceGroupConfiguration) {

            this.managedResourceGroupConfiguration = managedResourceGroupConfiguration;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder provisioningState(String provisioningState) {
            if (provisioningState == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "provisioningState");
            }
            this.provisioningState = provisioningState;
            return this;
        }
        @CustomType.Setter
        public Builder sapProduct(String sapProduct) {
            if (sapProduct == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "sapProduct");
            }
            this.sapProduct = sapProduct;
            return this;
        }
        @CustomType.Setter
        public Builder state(String state) {
            if (state == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "state");
            }
            this.state = state;
            return this;
        }
        @CustomType.Setter
        public Builder status(String status) {
            if (status == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "status");
            }
            this.status = status;
            return this;
        }
        @CustomType.Setter
        public Builder systemData(SystemDataResponse systemData) {
            if (systemData == null) {
              throw new MissingRequiredPropertyException("GetSAPVirtualInstanceResult", "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("GetSAPVirtualInstanceResult", "type");
            }
            this.type = type;
            return this;
        }
        public GetSAPVirtualInstanceResult build() {
            final var _resultValue = new GetSAPVirtualInstanceResult();
            _resultValue.configuration = configuration;
            _resultValue.environment = environment;
            _resultValue.errors = errors;
            _resultValue.health = health;
            _resultValue.id = id;
            _resultValue.identity = identity;
            _resultValue.location = location;
            _resultValue.managedResourceGroupConfiguration = managedResourceGroupConfiguration;
            _resultValue.name = name;
            _resultValue.provisioningState = provisioningState;
            _resultValue.sapProduct = sapProduct;
            _resultValue.state = state;
            _resultValue.status = status;
            _resultValue.systemData = systemData;
            _resultValue.tags = tags;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy