1. Packages
  2. Azure Native
  3. API Docs
  4. azureactivedirectory
  5. GuestUsage
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.azureactivedirectory.GuestUsage

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    Guest Usages Resource Azure REST API version: 2021-04-01. Prior API version in Azure Native 1.x: 2020-05-01-preview.

    Other available API versions: 2023-01-18-preview, 2023-05-17-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 (
    	"github.com/pulumi/pulumi-azure-native-sdk/azureactivedirectory/v2"
    	"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.

    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: pulumi.String("string"),
    Location: pulumi.String("string"),
    ResourceName: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    TenantId: pulumi.String("string"),
    })
    
    var guestUsageResource = new GuestUsage("guestUsageResource", GuestUsageArgs.builder()        
        .resourceGroupName("string")
        .location("string")
        .resourceName("string")
        .tags(Map.of("string", "string"))
        .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 Azure AD B2C 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 Azure AD B2C 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 Azure AD B2C 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 Azure AD B2C 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 Azure AD B2C 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 Azure AD B2C 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.
    SystemData Pulumi.AzureNative.AzureActiveDirectory.Outputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the 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.
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the 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.
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the 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.
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the 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.
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the 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.
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the Guest Usages resource.

    Supporting Types

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the 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/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureActiveDirectory/guestUsages/{resourceName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi