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

com.pulumi.azurenative.security.outputs.AzureDevOpsScopeEnvironmentDataResponse Maven / Gradle / Ivy

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

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

@CustomType
public final class AzureDevOpsScopeEnvironmentDataResponse {
    /**
     * @return The type of the environment data.
     * Expected value is 'AzureDevOpsScope'.
     * 
     */
    private String environmentType;

    private AzureDevOpsScopeEnvironmentDataResponse() {}
    /**
     * @return The type of the environment data.
     * Expected value is 'AzureDevOpsScope'.
     * 
     */
    public String environmentType() {
        return this.environmentType;
    }

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

    public static Builder builder(AzureDevOpsScopeEnvironmentDataResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String environmentType;
        public Builder() {}
        public Builder(AzureDevOpsScopeEnvironmentDataResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.environmentType = defaults.environmentType;
        }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy