
com.pulumi.azurenative.recoveryservices.inputs.GetReplicationStorageClassificationMappingPlainArgs Maven / Gradle / Ivy
// *** 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.recoveryservices.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetReplicationStorageClassificationMappingPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetReplicationStorageClassificationMappingPlainArgs Empty = new GetReplicationStorageClassificationMappingPlainArgs();
/**
* Fabric name.
*
*/
@Import(name="fabricName", required=true)
private String fabricName;
/**
* @return Fabric name.
*
*/
public String fabricName() {
return this.fabricName;
}
/**
* The name of the resource group where the recovery services vault is present.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group where the recovery services vault is present.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the recovery services vault.
*
*/
@Import(name="resourceName", required=true)
private String resourceName;
/**
* @return The name of the recovery services vault.
*
*/
public String resourceName() {
return this.resourceName;
}
/**
* Storage classification mapping name.
*
*/
@Import(name="storageClassificationMappingName", required=true)
private String storageClassificationMappingName;
/**
* @return Storage classification mapping name.
*
*/
public String storageClassificationMappingName() {
return this.storageClassificationMappingName;
}
/**
* Storage classification name.
*
*/
@Import(name="storageClassificationName", required=true)
private String storageClassificationName;
/**
* @return Storage classification name.
*
*/
public String storageClassificationName() {
return this.storageClassificationName;
}
private GetReplicationStorageClassificationMappingPlainArgs() {}
private GetReplicationStorageClassificationMappingPlainArgs(GetReplicationStorageClassificationMappingPlainArgs $) {
this.fabricName = $.fabricName;
this.resourceGroupName = $.resourceGroupName;
this.resourceName = $.resourceName;
this.storageClassificationMappingName = $.storageClassificationMappingName;
this.storageClassificationName = $.storageClassificationName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetReplicationStorageClassificationMappingPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetReplicationStorageClassificationMappingPlainArgs $;
public Builder() {
$ = new GetReplicationStorageClassificationMappingPlainArgs();
}
public Builder(GetReplicationStorageClassificationMappingPlainArgs defaults) {
$ = new GetReplicationStorageClassificationMappingPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param fabricName Fabric name.
*
* @return builder
*
*/
public Builder fabricName(String fabricName) {
$.fabricName = fabricName;
return this;
}
/**
* @param resourceGroupName The name of the resource group where the recovery services vault is present.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceName The name of the recovery services vault.
*
* @return builder
*
*/
public Builder resourceName(String resourceName) {
$.resourceName = resourceName;
return this;
}
/**
* @param storageClassificationMappingName Storage classification mapping name.
*
* @return builder
*
*/
public Builder storageClassificationMappingName(String storageClassificationMappingName) {
$.storageClassificationMappingName = storageClassificationMappingName;
return this;
}
/**
* @param storageClassificationName Storage classification name.
*
* @return builder
*
*/
public Builder storageClassificationName(String storageClassificationName) {
$.storageClassificationName = storageClassificationName;
return this;
}
public GetReplicationStorageClassificationMappingPlainArgs build() {
if ($.fabricName == null) {
throw new MissingRequiredPropertyException("GetReplicationStorageClassificationMappingPlainArgs", "fabricName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetReplicationStorageClassificationMappingPlainArgs", "resourceGroupName");
}
if ($.resourceName == null) {
throw new MissingRequiredPropertyException("GetReplicationStorageClassificationMappingPlainArgs", "resourceName");
}
if ($.storageClassificationMappingName == null) {
throw new MissingRequiredPropertyException("GetReplicationStorageClassificationMappingPlainArgs", "storageClassificationMappingName");
}
if ($.storageClassificationName == null) {
throw new MissingRequiredPropertyException("GetReplicationStorageClassificationMappingPlainArgs", "storageClassificationName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy