
com.pulumi.azurenative.videoanalyzer.inputs.StorageAccountArgs 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.videoanalyzer.inputs;
import com.pulumi.azurenative.videoanalyzer.inputs.ResourceIdentityArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* The details about the associated storage account.
*
*/
public final class StorageAccountArgs extends com.pulumi.resources.ResourceArgs {
public static final StorageAccountArgs Empty = new StorageAccountArgs();
/**
* The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
*
*/
@Import(name="id", required=true)
private Output id;
/**
* @return The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
*
*/
public Output id() {
return this.id;
}
/**
* A managed identity that Video Analyzer will use to access the storage account.
*
*/
@Import(name="identity")
private @Nullable Output identity;
/**
* @return A managed identity that Video Analyzer will use to access the storage account.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy