com.pulumi.azurenative.security.inputs.AzureDevOpsScopeEnvironmentDataArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* The AzureDevOps scope connector's environment data
*
*/
public final class AzureDevOpsScopeEnvironmentDataArgs extends com.pulumi.resources.ResourceArgs {
public static final AzureDevOpsScopeEnvironmentDataArgs Empty = new AzureDevOpsScopeEnvironmentDataArgs();
/**
* The type of the environment data.
* Expected value is 'AzureDevOpsScope'.
*
*/
@Import(name="environmentType", required=true)
private Output environmentType;
/**
* @return The type of the environment data.
* Expected value is 'AzureDevOpsScope'.
*
*/
public Output environmentType() {
return this.environmentType;
}
private AzureDevOpsScopeEnvironmentDataArgs() {}
private AzureDevOpsScopeEnvironmentDataArgs(AzureDevOpsScopeEnvironmentDataArgs $) {
this.environmentType = $.environmentType;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AzureDevOpsScopeEnvironmentDataArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private AzureDevOpsScopeEnvironmentDataArgs $;
public Builder() {
$ = new AzureDevOpsScopeEnvironmentDataArgs();
}
public Builder(AzureDevOpsScopeEnvironmentDataArgs defaults) {
$ = new AzureDevOpsScopeEnvironmentDataArgs(Objects.requireNonNull(defaults));
}
/**
* @param environmentType The type of the environment data.
* Expected value is 'AzureDevOpsScope'.
*
* @return builder
*
*/
public Builder environmentType(Output environmentType) {
$.environmentType = environmentType;
return this;
}
/**
* @param environmentType The type of the environment data.
* Expected value is 'AzureDevOpsScope'.
*
* @return builder
*
*/
public Builder environmentType(String environmentType) {
return environmentType(Output.of(environmentType));
}
public AzureDevOpsScopeEnvironmentDataArgs build() {
$.environmentType = Codegen.stringProp("environmentType").output().arg($.environmentType).require();
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy