
com.pulumi.azurenative.hybriddata.inputs.GetDataManagerArgs 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.hybriddata.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 GetDataManagerArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDataManagerArgs Empty = new GetDataManagerArgs();
/**
* The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
*
*/
@Import(name="dataManagerName", required=true)
private Output dataManagerName;
/**
* @return The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
*
*/
public Output dataManagerName() {
return this.dataManagerName;
}
/**
* The Resource Group Name
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The Resource Group Name
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetDataManagerArgs() {}
private GetDataManagerArgs(GetDataManagerArgs $) {
this.dataManagerName = $.dataManagerName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDataManagerArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDataManagerArgs $;
public Builder() {
$ = new GetDataManagerArgs();
}
public Builder(GetDataManagerArgs defaults) {
$ = new GetDataManagerArgs(Objects.requireNonNull(defaults));
}
/**
* @param dataManagerName The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
*
* @return builder
*
*/
public Builder dataManagerName(Output dataManagerName) {
$.dataManagerName = dataManagerName;
return this;
}
/**
* @param dataManagerName The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
*
* @return builder
*
*/
public Builder dataManagerName(String dataManagerName) {
return dataManagerName(Output.of(dataManagerName));
}
/**
* @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 GetDataManagerArgs build() {
if ($.dataManagerName == null) {
throw new MissingRequiredPropertyException("GetDataManagerArgs", "dataManagerName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetDataManagerArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy