com.pulumi.azurenative.storsimple.inputs.GetManagerExtendedInfoArgs 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.storsimple.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 GetManagerExtendedInfoArgs extends com.pulumi.resources.InvokeArgs {
public static final GetManagerExtendedInfoArgs Empty = new GetManagerExtendedInfoArgs();
/**
* The manager name
*
*/
@Import(name="managerName", required=true)
private Output managerName;
/**
* @return The manager name
*
*/
public Output managerName() {
return this.managerName;
}
/**
* The resource group name
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The resource group name
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetManagerExtendedInfoArgs() {}
private GetManagerExtendedInfoArgs(GetManagerExtendedInfoArgs $) {
this.managerName = $.managerName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetManagerExtendedInfoArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetManagerExtendedInfoArgs $;
public Builder() {
$ = new GetManagerExtendedInfoArgs();
}
public Builder(GetManagerExtendedInfoArgs defaults) {
$ = new GetManagerExtendedInfoArgs(Objects.requireNonNull(defaults));
}
/**
* @param managerName The manager name
*
* @return builder
*
*/
public Builder managerName(Output managerName) {
$.managerName = managerName;
return this;
}
/**
* @param managerName The manager name
*
* @return builder
*
*/
public Builder managerName(String managerName) {
return managerName(Output.of(managerName));
}
/**
* @param resourceGroupName The resource group name
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The resource group name
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetManagerExtendedInfoArgs build() {
if ($.managerName == null) {
throw new MissingRequiredPropertyException("GetManagerExtendedInfoArgs", "managerName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetManagerExtendedInfoArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy