
com.pulumi.azurenative.hybriddata.outputs.GetDataStoreResult 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.outputs;
import com.pulumi.azurenative.hybriddata.outputs.CustomerSecretResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetDataStoreResult {
/**
* @return List of customer secrets containing a key identifier and key value. The key identifier is a way for the specific data source to understand the key. Value contains customer secret encrypted by the encryptionKeys.
*
*/
private @Nullable List customerSecrets;
/**
* @return The arm id of the data store type.
*
*/
private String dataStoreTypeId;
/**
* @return A generic json used differently by each data source type.
*
*/
private @Nullable Object extendedProperties;
/**
* @return Id of the object.
*
*/
private String id;
/**
* @return Name of the object.
*
*/
private String name;
/**
* @return Arm Id for the manager resource to which the data source is associated. This is optional.
*
*/
private @Nullable String repositoryId;
/**
* @return State of the data source.
*
*/
private String state;
/**
* @return Type of the object.
*
*/
private String type;
private GetDataStoreResult() {}
/**
* @return List of customer secrets containing a key identifier and key value. The key identifier is a way for the specific data source to understand the key. Value contains customer secret encrypted by the encryptionKeys.
*
*/
public List customerSecrets() {
return this.customerSecrets == null ? List.of() : this.customerSecrets;
}
/**
* @return The arm id of the data store type.
*
*/
public String dataStoreTypeId() {
return this.dataStoreTypeId;
}
/**
* @return A generic json used differently by each data source type.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy