com.pulumi.azurenative.recoveryservices.inputs.GetRecoveryPointAccessTokenPlainArgs 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.recoveryservices.inputs;
import com.pulumi.azurenative.recoveryservices.inputs.AADProperties;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetRecoveryPointAccessTokenPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetRecoveryPointAccessTokenPlainArgs Empty = new GetRecoveryPointAccessTokenPlainArgs();
/**
* Name of the container.
*
*/
@Import(name="containerName", required=true)
private String containerName;
/**
* @return Name of the container.
*
*/
public String containerName() {
return this.containerName;
}
/**
* Optional ETag.
*
*/
@Import(name="eTag")
private @Nullable String eTag;
/**
* @return Optional ETag.
*
*/
public Optional eTag() {
return Optional.ofNullable(this.eTag);
}
/**
* Fabric name associated with the container.
*
*/
@Import(name="fabricName", required=true)
private String fabricName;
/**
* @return Fabric name associated with the container.
*
*/
public String fabricName() {
return this.fabricName;
}
/**
* Resource location.
*
*/
@Import(name="location")
private @Nullable String location;
/**
* @return Resource location.
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* AADPropertiesResource properties
*
*/
@Import(name="properties")
private @Nullable AADProperties properties;
/**
* @return AADPropertiesResource properties
*
*/
public Optional properties() {
return Optional.ofNullable(this.properties);
}
/**
* Name of the Protected Item.
*
*/
@Import(name="protectedItemName", required=true)
private String protectedItemName;
/**
* @return Name of the Protected Item.
*
*/
public String protectedItemName() {
return this.protectedItemName;
}
/**
* Recovery Point Id
*
*/
@Import(name="recoveryPointId", required=true)
private String recoveryPointId;
/**
* @return Recovery Point Id
*
*/
public String recoveryPointId() {
return this.recoveryPointId;
}
/**
* 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;
}
/**
* Resource tags.
*
*/
@Import(name="tags")
private @Nullable Map tags;
/**
* @return Resource tags.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy