nexus 2.6.0 published on Thursday, May 8, 2025 by datadrivers
nexus.getBlobstoreAzure
PRO Feature
Use this data source to get details of an existing Nexus Azure blobstore.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nexus from "@pulumi/nexus";
const example = nexus.getBlobstoreAzure({
name: "example",
});
import pulumi
import pulumi_nexus as nexus
example = nexus.get_blobstore_azure(name="example")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/nexus/v2/nexus"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nexus.LookupBlobstoreAzure(ctx, &nexus.LookupBlobstoreAzureArgs{
Name: "example",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nexus = Pulumi.Nexus;
return await Deployment.RunAsync(() =>
{
var example = Nexus.GetBlobstoreAzure.Invoke(new()
{
Name = "example",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nexus.NexusFunctions;
import com.pulumi.nexus.inputs.GetBlobstoreAzureArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = NexusFunctions.getBlobstoreAzure(GetBlobstoreAzureArgs.builder()
.name("example")
.build());
}
}
variables:
example:
fn::invoke:
function: nexus:getBlobstoreAzure
arguments:
name: example
Using getBlobstoreAzure
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getBlobstoreAzure(args: GetBlobstoreAzureArgs, opts?: InvokeOptions): Promise<GetBlobstoreAzureResult>
function getBlobstoreAzureOutput(args: GetBlobstoreAzureOutputArgs, opts?: InvokeOptions): Output<GetBlobstoreAzureResult>
def get_blobstore_azure(name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBlobstoreAzureResult
def get_blobstore_azure_output(name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetBlobstoreAzureResult]
func LookupBlobstoreAzure(ctx *Context, args *LookupBlobstoreAzureArgs, opts ...InvokeOption) (*LookupBlobstoreAzureResult, error)
func LookupBlobstoreAzureOutput(ctx *Context, args *LookupBlobstoreAzureOutputArgs, opts ...InvokeOption) LookupBlobstoreAzureResultOutput
> Note: This function is named LookupBlobstoreAzure
in the Go SDK.
public static class GetBlobstoreAzure
{
public static Task<GetBlobstoreAzureResult> InvokeAsync(GetBlobstoreAzureArgs args, InvokeOptions? opts = null)
public static Output<GetBlobstoreAzureResult> Invoke(GetBlobstoreAzureInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetBlobstoreAzureResult> getBlobstoreAzure(GetBlobstoreAzureArgs args, InvokeOptions options)
public static Output<GetBlobstoreAzureResult> getBlobstoreAzure(GetBlobstoreAzureArgs args, InvokeOptions options)
fn::invoke:
function: nexus:index/getBlobstoreAzure:getBlobstoreAzure
arguments:
# arguments dictionary
The following arguments are supported:
- Name string
- Blobstore name
- Name string
- Blobstore name
- name String
- Blobstore name
- name string
- Blobstore name
- name str
- Blobstore name
- name String
- Blobstore name
getBlobstoreAzure Result
The following output properties are available:
- Blob
Count double - Count of blobs
- Bucket
Configurations List<GetBlobstore Azure Bucket Configuration> - The Azure specific configuration details for the Azure object that'll contain the blob store
- Id string
- Used to identify data source at nexus
- Name string
- Blobstore name
- Soft
Quotas List<GetBlobstore Azure Soft Quota> - Soft quota of the blobstore
- Total
Size doubleIn Bytes - The total size of the blobstore in Bytes
- Blob
Count float64 - Count of blobs
- Bucket
Configurations []GetBlobstore Azure Bucket Configuration - The Azure specific configuration details for the Azure object that'll contain the blob store
- Id string
- Used to identify data source at nexus
- Name string
- Blobstore name
- Soft
Quotas []GetBlobstore Azure Soft Quota - Soft quota of the blobstore
- Total
Size float64In Bytes - The total size of the blobstore in Bytes
- blob
Count Double - Count of blobs
- bucket
Configurations List<GetBlobstore Azure Bucket Configuration> - The Azure specific configuration details for the Azure object that'll contain the blob store
- id String
- Used to identify data source at nexus
- name String
- Blobstore name
- soft
Quotas List<GetBlobstore Azure Soft Quota> - Soft quota of the blobstore
- total
Size DoubleIn Bytes - The total size of the blobstore in Bytes
- blob
Count number - Count of blobs
- bucket
Configurations GetBlobstore Azure Bucket Configuration[] - The Azure specific configuration details for the Azure object that'll contain the blob store
- id string
- Used to identify data source at nexus
- name string
- Blobstore name
- soft
Quotas GetBlobstore Azure Soft Quota[] - Soft quota of the blobstore
- total
Size numberIn Bytes - The total size of the blobstore in Bytes
- blob_
count float - Count of blobs
- bucket_
configurations Sequence[GetBlobstore Azure Bucket Configuration] - The Azure specific configuration details for the Azure object that'll contain the blob store
- id str
- Used to identify data source at nexus
- name str
- Blobstore name
- soft_
quotas Sequence[GetBlobstore Azure Soft Quota] - Soft quota of the blobstore
- total_
size_ floatin_ bytes - The total size of the blobstore in Bytes
- blob
Count Number - Count of blobs
- bucket
Configurations List<Property Map> - The Azure specific configuration details for the Azure object that'll contain the blob store
- id String
- Used to identify data source at nexus
- name String
- Blobstore name
- soft
Quotas List<Property Map> - Soft quota of the blobstore
- total
Size NumberIn Bytes - The total size of the blobstore in Bytes
Supporting Types
GetBlobstoreAzureBucketConfiguration
- account
Name String - authentications List<Property Map>
- container
Name String
GetBlobstoreAzureBucketConfigurationAuthentication
- Authentication
Method string
- Authentication
Method string
- authentication
Method String
- authentication
Method string
- authentication
Method String
GetBlobstoreAzureSoftQuota
Package Details
- Repository
- nexus datadrivers/terraform-provider-nexus
- License
- Notes
- This Pulumi package is based on the
nexus
Terraform Provider.