Azure Classic
getDiskAccess
Use this data source to access information about an existing Disk Access.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Azure.Compute.GetDiskAccess.InvokeAsync(new Azure.Compute.GetDiskAccessArgs
{
Name = "existing",
ResourceGroupName = "existing",
}));
this.Id = example.Apply(example => example.Id);
}
[Output("id")]
public Output<string> Id { get; set; }
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/compute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := compute.LookupDiskAccess(ctx, &compute.LookupDiskAccessArgs{
Name: "existing",
ResourceGroupName: "existing",
}, nil)
if err != nil {
return err
}
ctx.Export("id", example.Id)
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.compute.ComputeFunctions;
import com.pulumi.azure.compute.inputs.GetDiskAccessArgs;
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 = ComputeFunctions.getDiskAccess(GetDiskAccessArgs.builder()
.name("existing")
.resourceGroupName("existing")
.build());
ctx.export("id", example.applyValue(getDiskAccessResult -> getDiskAccessResult.id()));
}
}
import pulumi
import pulumi_azure as azure
example = azure.compute.get_disk_access(name="existing",
resource_group_name="existing")
pulumi.export("id", example.id)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.compute.getDiskAccess({
name: "existing",
resourceGroupName: "existing",
});
export const id = example.then(example => example.id);
variables:
example:
Fn::Invoke:
Function: azure:compute:getDiskAccess
Arguments:
name: existing
resourceGroupName: existing
outputs:
id: ${example.id}
Using getDiskAccess
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 getDiskAccess(args: GetDiskAccessArgs, opts?: InvokeOptions): Promise<GetDiskAccessResult>
function getDiskAccessOutput(args: GetDiskAccessOutputArgs, opts?: InvokeOptions): Output<GetDiskAccessResult>
def get_disk_access(name: Optional[str] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
opts: Optional[InvokeOptions] = None) -> GetDiskAccessResult
def get_disk_access_output(name: Optional[pulumi.Input[str]] = None,
resource_group_name: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDiskAccessResult]
func LookupDiskAccess(ctx *Context, args *LookupDiskAccessArgs, opts ...InvokeOption) (*LookupDiskAccessResult, error)
func LookupDiskAccessOutput(ctx *Context, args *LookupDiskAccessOutputArgs, opts ...InvokeOption) LookupDiskAccessResultOutput
> Note: This function is named LookupDiskAccess
in the Go SDK.
public static class GetDiskAccess
{
public static Task<GetDiskAccessResult> InvokeAsync(GetDiskAccessArgs args, InvokeOptions? opts = null)
public static Output<GetDiskAccessResult> Invoke(GetDiskAccessInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDiskAccessResult> getDiskAccess(GetDiskAccessArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Fn::Invoke:
Function: azure:compute/getDiskAccess:getDiskAccess
Arguments:
# Arguments dictionary
The following arguments are supported:
- Name string
The name of this Disk Access.
- Resource
Group stringName The name of the Resource Group where the Disk Access exists.
- Dictionary<string, string>
A mapping of tags which should be assigned to the Disk Access.
- Name string
The name of this Disk Access.
- Resource
Group stringName The name of the Resource Group where the Disk Access exists.
- map[string]string
A mapping of tags which should be assigned to the Disk Access.
- name String
The name of this Disk Access.
- resource
Group StringName The name of the Resource Group where the Disk Access exists.
- Map<String,String>
A mapping of tags which should be assigned to the Disk Access.
- name string
The name of this Disk Access.
- resource
Group stringName The name of the Resource Group where the Disk Access exists.
- {[key: string]: string}
A mapping of tags which should be assigned to the Disk Access.
- name str
The name of this Disk Access.
- resource_
group_ strname The name of the Resource Group where the Disk Access exists.
- Mapping[str, str]
A mapping of tags which should be assigned to the Disk Access.
- name String
The name of this Disk Access.
- resource
Group StringName The name of the Resource Group where the Disk Access exists.
- Map<String>
A mapping of tags which should be assigned to the Disk Access.
getDiskAccess Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
- Resource
Group stringName - Dictionary<string, string>
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
- Resource
Group stringName - map[string]string
- id String
The provider-assigned unique ID for this managed resource.
- name String
- resource
Group StringName - Map<String,String>
- id string
The provider-assigned unique ID for this managed resource.
- name string
- resource
Group stringName - {[key: string]: string}
- id str
The provider-assigned unique ID for this managed resource.
- name str
- resource_
group_ strname - Mapping[str, str]
- id String
The provider-assigned unique ID for this managed resource.
- name String
- resource
Group StringName - Map<String>
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.