com.pulumi.azurenative.scvmm.inputs.GetCloudArgs 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.scvmm.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetCloudArgs extends com.pulumi.resources.InvokeArgs {
public static final GetCloudArgs Empty = new GetCloudArgs();
/**
* Name of the Cloud.
*
*/
@Import(name="cloudName", required=true)
private Output cloudName;
/**
* @return Name of the Cloud.
*
*/
public Output cloudName() {
return this.cloudName;
}
/**
* The name of the resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetCloudArgs() {}
private GetCloudArgs(GetCloudArgs $) {
this.cloudName = $.cloudName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetCloudArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetCloudArgs $;
public Builder() {
$ = new GetCloudArgs();
}
public Builder(GetCloudArgs defaults) {
$ = new GetCloudArgs(Objects.requireNonNull(defaults));
}
/**
* @param cloudName Name of the Cloud.
*
* @return builder
*
*/
public Builder cloudName(Output cloudName) {
$.cloudName = cloudName;
return this;
}
/**
* @param cloudName Name of the Cloud.
*
* @return builder
*
*/
public Builder cloudName(String cloudName) {
return cloudName(Output.of(cloudName));
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetCloudArgs build() {
if ($.cloudName == null) {
throw new MissingRequiredPropertyException("GetCloudArgs", "cloudName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetCloudArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy