1. Packages
  2. Azure Native v1
  3. API Docs
  4. azureactivedirectory
  5. GuestUsage
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.azureactivedirectory.GuestUsage

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    Guest Usages Resource API Version: 2020-05-01-preview.

    Example Usage

    GuestUsages_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var guestUsage = new AzureNative.AzureActiveDirectory.GuestUsage("guestUsage", new()
        {
            ResourceGroupName = "contosoResourceGroup",
            ResourceName = "contoso.onmicrosoft.com",
        });
    
    });
    
    package main
    
    import (
    	azureactivedirectory "github.com/pulumi/pulumi-azure-native-sdk/azureactivedirectory"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := azureactivedirectory.NewGuestUsage(ctx, "guestUsage", &azureactivedirectory.GuestUsageArgs{
    			ResourceGroupName: pulumi.String("contosoResourceGroup"),
    			ResourceName:      pulumi.String("contoso.onmicrosoft.com"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.azureactivedirectory.GuestUsage;
    import com.pulumi.azurenative.azureactivedirectory.GuestUsageArgs;
    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) {
            var guestUsage = new GuestUsage("guestUsage", GuestUsageArgs.builder()        
                .resourceGroupName("contosoResourceGroup")
                .resourceName("contoso.onmicrosoft.com")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    guest_usage = azure_native.azureactivedirectory.GuestUsage("guestUsage",
        resource_group_name="contosoResourceGroup",
        resource_name_="contoso.onmicrosoft.com")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const guestUsage = new azure_native.azureactivedirectory.GuestUsage("guestUsage", {
        resourceGroupName: "contosoResourceGroup",
        resourceName: "contoso.onmicrosoft.com",
    });
    
    resources:
      guestUsage:
        type: azure-native:azureactivedirectory:GuestUsage
        properties:
          resourceGroupName: contosoResourceGroup
          resourceName: contoso.onmicrosoft.com
    

    Create GuestUsage Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new GuestUsage(name: string, args: GuestUsageArgs, opts?: CustomResourceOptions);
    @overload
    def GuestUsage(resource_name: str,
                   args: GuestUsageArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def GuestUsage(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   resource_group_name: Optional[str] = None,
                   location: Optional[str] = None,
                   resource_name_: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   tenant_id: Optional[str] = None)
    func NewGuestUsage(ctx *Context, name string, args GuestUsageArgs, opts ...ResourceOption) (*GuestUsage, error)
    public GuestUsage(string name, GuestUsageArgs args, CustomResourceOptions? opts = null)
    public GuestUsage(String name, GuestUsageArgs args)
    public GuestUsage(String name, GuestUsageArgs args, CustomResourceOptions options)
    
    type: azure-native:azureactivedirectory:GuestUsage
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args GuestUsageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args GuestUsageArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args GuestUsageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GuestUsageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GuestUsageArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var guestUsageResource = new AzureNative.Azureactivedirectory.GuestUsage("guestUsageResource", new()
    {
        ResourceGroupName = "string",
        Location = "string",
        ResourceName = "string",
        Tags = 
        {
            { "string", "string" },
        },
        TenantId = "string",
    });
    
    example, err := azureactivedirectory.NewGuestUsage(ctx, "guestUsageResource", &azureactivedirectory.GuestUsageArgs{
    	ResourceGroupName: "string",
    	Location:          "string",
    	ResourceName:      "string",
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    	TenantId: "string",
    })
    
    var guestUsageResource = new GuestUsage("guestUsageResource", GuestUsageArgs.builder()
        .resourceGroupName("string")
        .location("string")
        .resourceName("string")
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .tenantId("string")
        .build());
    
    guest_usage_resource = azure_native.azureactivedirectory.GuestUsage("guestUsageResource",
        resource_group_name=string,
        location=string,
        resource_name_=string,
        tags={
            string: string,
        },
        tenant_id=string)
    
    const guestUsageResource = new azure_native.azureactivedirectory.GuestUsage("guestUsageResource", {
        resourceGroupName: "string",
        location: "string",
        resourceName: "string",
        tags: {
            string: "string",
        },
        tenantId: "string",
    });
    
    type: azure-native:azureactivedirectory:GuestUsage
    properties:
        location: string
        resourceGroupName: string
        resourceName: string
        tags:
            string: string
        tenantId: string
    

    GuestUsage Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The GuestUsage resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group.
    Location string
    Location of the Guest Usages resource.
    ResourceName string
    The initial domain name of the AAD tenant.
    Tags Dictionary<string, string>
    Key-value pairs of additional resource provisioning properties.
    TenantId string
    An identifier for the tenant for which the resource is being created
    ResourceGroupName string
    The name of the resource group.
    Location string
    Location of the Guest Usages resource.
    ResourceName string
    The initial domain name of the AAD tenant.
    Tags map[string]string
    Key-value pairs of additional resource provisioning properties.
    TenantId string
    An identifier for the tenant for which the resource is being created
    resourceGroupName String
    The name of the resource group.
    location String
    Location of the Guest Usages resource.
    resourceName String
    The initial domain name of the AAD tenant.
    tags Map<String,String>
    Key-value pairs of additional resource provisioning properties.
    tenantId String
    An identifier for the tenant for which the resource is being created
    resourceGroupName string
    The name of the resource group.
    location string
    Location of the Guest Usages resource.
    resourceName string
    The initial domain name of the AAD tenant.
    tags {[key: string]: string}
    Key-value pairs of additional resource provisioning properties.
    tenantId string
    An identifier for the tenant for which the resource is being created
    resource_group_name str
    The name of the resource group.
    location str
    Location of the Guest Usages resource.
    resource_name str
    The initial domain name of the AAD tenant.
    tags Mapping[str, str]
    Key-value pairs of additional resource provisioning properties.
    tenant_id str
    An identifier for the tenant for which the resource is being created
    resourceGroupName String
    The name of the resource group.
    location String
    Location of the Guest Usages resource.
    resourceName String
    The initial domain name of the AAD tenant.
    tags Map<String>
    Key-value pairs of additional resource provisioning properties.
    tenantId String
    An identifier for the tenant for which the resource is being created

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GuestUsage resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the Guest Usages resource.
    Type string
    The type of the Guest Usages resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the Guest Usages resource.
    Type string
    The type of the Guest Usages resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the Guest Usages resource.
    type String
    The type of the Guest Usages resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the Guest Usages resource.
    type string
    The type of the Guest Usages resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the Guest Usages resource.
    type str
    The type of the Guest Usages resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the Guest Usages resource.
    type String
    The type of the Guest Usages resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:azureactivedirectory:GuestUsage contoso.onmicrosoft.com /subscriptions/c80fb759-c965-4c6a-9110-9b2b2d038882/resourceGroups/contosoResourceGroup/providers/Microsoft.AzureActiveDirectory/guestUsages/contoso.onmicrosoft.com 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi