1. Packages
  2. Azure Native
  3. API Docs
  4. recommendationsservice
  5. Account
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.recommendationsservice.Account

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

    Account resource details. Azure REST API version: 2022-02-01. Prior API version in Azure Native 1.x: 2022-02-01.

    Other available API versions: 2022-03-01-preview.

    Example Usage

    Create or update RecommendationsService Account resource

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var account = new AzureNative.RecommendationsService.Account("account", new()
        {
            AccountName = "sampleAccount",
            Location = "West US",
            Properties = new AzureNative.RecommendationsService.Inputs.AccountResourcePropertiesArgs
            {
                Configuration = AzureNative.RecommendationsService.AccountConfiguration.Capacity,
                EndpointAuthentications = new[]
                {
                    new AzureNative.RecommendationsService.Inputs.EndpointAuthenticationArgs
                    {
                        AadTenantID = "tenant",
                        PrincipalID = "oid",
                        PrincipalType = AzureNative.RecommendationsService.PrincipalType.User,
                    },
                },
            },
            ResourceGroupName = "rg",
            Tags = 
            {
                { "Environment", "Prod" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/recommendationsservice/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := recommendationsservice.NewAccount(ctx, "account", &recommendationsservice.AccountArgs{
    			AccountName: pulumi.String("sampleAccount"),
    			Location:    pulumi.String("West US"),
    			Properties: &recommendationsservice.AccountResourcePropertiesArgs{
    				Configuration: pulumi.String(recommendationsservice.AccountConfigurationCapacity),
    				EndpointAuthentications: recommendationsservice.EndpointAuthenticationArray{
    					&recommendationsservice.EndpointAuthenticationArgs{
    						AadTenantID:   pulumi.String("tenant"),
    						PrincipalID:   pulumi.String("oid"),
    						PrincipalType: pulumi.String(recommendationsservice.PrincipalTypeUser),
    					},
    				},
    			},
    			ResourceGroupName: pulumi.String("rg"),
    			Tags: pulumi.StringMap{
    				"Environment": pulumi.String("Prod"),
    			},
    		})
    		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.recommendationsservice.Account;
    import com.pulumi.azurenative.recommendationsservice.AccountArgs;
    import com.pulumi.azurenative.recommendationsservice.inputs.AccountResourcePropertiesArgs;
    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 account = new Account("account", AccountArgs.builder()        
                .accountName("sampleAccount")
                .location("West US")
                .properties(AccountResourcePropertiesArgs.builder()
                    .configuration("Capacity")
                    .endpointAuthentications(EndpointAuthenticationArgs.builder()
                        .aadTenantID("tenant")
                        .principalID("oid")
                        .principalType("User")
                        .build())
                    .build())
                .resourceGroupName("rg")
                .tags(Map.of("Environment", "Prod"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    account = azure_native.recommendationsservice.Account("account",
        account_name="sampleAccount",
        location="West US",
        properties=azure_native.recommendationsservice.AccountResourcePropertiesArgs(
            configuration=azure_native.recommendationsservice.AccountConfiguration.CAPACITY,
            endpoint_authentications=[azure_native.recommendationsservice.EndpointAuthenticationArgs(
                aad_tenant_id="tenant",
                principal_id="oid",
                principal_type=azure_native.recommendationsservice.PrincipalType.USER,
            )],
        ),
        resource_group_name="rg",
        tags={
            "Environment": "Prod",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const account = new azure_native.recommendationsservice.Account("account", {
        accountName: "sampleAccount",
        location: "West US",
        properties: {
            configuration: azure_native.recommendationsservice.AccountConfiguration.Capacity,
            endpointAuthentications: [{
                aadTenantID: "tenant",
                principalID: "oid",
                principalType: azure_native.recommendationsservice.PrincipalType.User,
            }],
        },
        resourceGroupName: "rg",
        tags: {
            Environment: "Prod",
        },
    });
    
    resources:
      account:
        type: azure-native:recommendationsservice:Account
        properties:
          accountName: sampleAccount
          location: West US
          properties:
            configuration: Capacity
            endpointAuthentications:
              - aadTenantID: tenant
                principalID: oid
                principalType: User
          resourceGroupName: rg
          tags:
            Environment: Prod
    

    Create Account Resource

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

    Constructor syntax

    new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
    @overload
    def Account(resource_name: str,
                args: AccountArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Account(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                resource_group_name: Optional[str] = None,
                account_name: Optional[str] = None,
                location: Optional[str] = None,
                properties: Optional[AccountResourcePropertiesArgs] = None,
                tags: Optional[Mapping[str, str]] = None)
    func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
    public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
    public Account(String name, AccountArgs args)
    public Account(String name, AccountArgs args, CustomResourceOptions options)
    
    type: azure-native:recommendationsservice:Account
    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 AccountArgs
    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 AccountArgs
    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 AccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountArgs
    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 exampleaccountResourceResourceFromRecommendationsservice = new AzureNative.RecommendationsService.Account("exampleaccountResourceResourceFromRecommendationsservice", new()
    {
        ResourceGroupName = "string",
        AccountName = "string",
        Location = "string",
        Properties = new AzureNative.RecommendationsService.Inputs.AccountResourcePropertiesArgs
        {
            Configuration = "string",
            Cors = new[]
            {
                new AzureNative.RecommendationsService.Inputs.CorsRuleArgs
                {
                    AllowedOrigins = new[]
                    {
                        "string",
                    },
                    AllowedHeaders = new[]
                    {
                        "string",
                    },
                    AllowedMethods = new[]
                    {
                        "string",
                    },
                    ExposedHeaders = new[]
                    {
                        "string",
                    },
                    MaxAgeInSeconds = 0,
                },
            },
            EndpointAuthentications = new[]
            {
                new AzureNative.RecommendationsService.Inputs.EndpointAuthenticationArgs
                {
                    AadTenantID = "string",
                    PrincipalID = "string",
                    PrincipalType = "string",
                },
            },
            ReportsConnectionString = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := recommendationsservice.NewAccount(ctx, "exampleaccountResourceResourceFromRecommendationsservice", &recommendationsservice.AccountArgs{
    ResourceGroupName: pulumi.String("string"),
    AccountName: pulumi.String("string"),
    Location: pulumi.String("string"),
    Properties: &recommendationsservice.AccountResourcePropertiesArgs{
    Configuration: pulumi.String("string"),
    Cors: recommendationsservice.CorsRuleArray{
    &recommendationsservice.CorsRuleArgs{
    AllowedOrigins: pulumi.StringArray{
    pulumi.String("string"),
    },
    AllowedHeaders: pulumi.StringArray{
    pulumi.String("string"),
    },
    AllowedMethods: pulumi.StringArray{
    pulumi.String("string"),
    },
    ExposedHeaders: pulumi.StringArray{
    pulumi.String("string"),
    },
    MaxAgeInSeconds: pulumi.Int(0),
    },
    },
    EndpointAuthentications: recommendationsservice.EndpointAuthenticationArray{
    &recommendationsservice.EndpointAuthenticationArgs{
    AadTenantID: pulumi.String("string"),
    PrincipalID: pulumi.String("string"),
    PrincipalType: pulumi.String("string"),
    },
    },
    ReportsConnectionString: pulumi.String("string"),
    },
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var exampleaccountResourceResourceFromRecommendationsservice = new Account("exampleaccountResourceResourceFromRecommendationsservice", AccountArgs.builder()        
        .resourceGroupName("string")
        .accountName("string")
        .location("string")
        .properties(AccountResourcePropertiesArgs.builder()
            .configuration("string")
            .cors(CorsRuleArgs.builder()
                .allowedOrigins("string")
                .allowedHeaders("string")
                .allowedMethods("string")
                .exposedHeaders("string")
                .maxAgeInSeconds(0)
                .build())
            .endpointAuthentications(EndpointAuthenticationArgs.builder()
                .aadTenantID("string")
                .principalID("string")
                .principalType("string")
                .build())
            .reportsConnectionString("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    exampleaccount_resource_resource_from_recommendationsservice = azure_native.recommendationsservice.Account("exampleaccountResourceResourceFromRecommendationsservice",
        resource_group_name="string",
        account_name="string",
        location="string",
        properties=azure_native.recommendationsservice.AccountResourcePropertiesArgs(
            configuration="string",
            cors=[azure_native.recommendationsservice.CorsRuleArgs(
                allowed_origins=["string"],
                allowed_headers=["string"],
                allowed_methods=["string"],
                exposed_headers=["string"],
                max_age_in_seconds=0,
            )],
            endpoint_authentications=[azure_native.recommendationsservice.EndpointAuthenticationArgs(
                aad_tenant_id="string",
                principal_id="string",
                principal_type="string",
            )],
            reports_connection_string="string",
        ),
        tags={
            "string": "string",
        })
    
    const exampleaccountResourceResourceFromRecommendationsservice = new azure_native.recommendationsservice.Account("exampleaccountResourceResourceFromRecommendationsservice", {
        resourceGroupName: "string",
        accountName: "string",
        location: "string",
        properties: {
            configuration: "string",
            cors: [{
                allowedOrigins: ["string"],
                allowedHeaders: ["string"],
                allowedMethods: ["string"],
                exposedHeaders: ["string"],
                maxAgeInSeconds: 0,
            }],
            endpointAuthentications: [{
                aadTenantID: "string",
                principalID: "string",
                principalType: "string",
            }],
            reportsConnectionString: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:recommendationsservice:Account
    properties:
        accountName: string
        location: string
        properties:
            configuration: string
            cors:
                - allowedHeaders:
                    - string
                  allowedMethods:
                    - string
                  allowedOrigins:
                    - string
                  exposedHeaders:
                    - string
                  maxAgeInSeconds: 0
            endpointAuthentications:
                - aadTenantID: string
                  principalID: string
                  principalType: string
            reportsConnectionString: string
        resourceGroupName: string
        tags:
            string: string
    

    Account 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 Account resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AccountName string
    The name of the RecommendationsService Account resource.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.RecommendationsService.Inputs.AccountResourceProperties
    Account resource properties.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AccountName string
    The name of the RecommendationsService Account resource.
    Location string
    The geo-location where the resource lives
    Properties AccountResourcePropertiesArgs
    Account resource properties.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    accountName String
    The name of the RecommendationsService Account resource.
    location String
    The geo-location where the resource lives
    properties AccountResourceProperties
    Account resource properties.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    accountName string
    The name of the RecommendationsService Account resource.
    location string
    The geo-location where the resource lives
    properties AccountResourceProperties
    Account resource properties.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    account_name str
    The name of the RecommendationsService Account resource.
    location str
    The geo-location where the resource lives
    properties AccountResourcePropertiesArgs
    Account resource properties.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    accountName String
    The name of the RecommendationsService Account resource.
    location String
    The geo-location where the resource lives
    properties Property Map
    Account resource properties.
    tags Map<String>
    Resource tags.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.RecommendationsService.Outputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AccountConfiguration, AccountConfigurationArgs

    Free
    Free
    Capacity
    Capacity
    AccountConfigurationFree
    Free
    AccountConfigurationCapacity
    Capacity
    Free
    Free
    Capacity
    Capacity
    Free
    Free
    Capacity
    Capacity
    FREE
    Free
    CAPACITY
    Capacity
    "Free"
    Free
    "Capacity"
    Capacity

    AccountResourceProperties, AccountResourcePropertiesArgs

    Configuration string | Pulumi.AzureNative.RecommendationsService.AccountConfiguration
    Account configuration. This can only be set at RecommendationsService Account creation.
    Cors List<Pulumi.AzureNative.RecommendationsService.Inputs.CorsRule>
    The list of CORS details.
    EndpointAuthentications List<Pulumi.AzureNative.RecommendationsService.Inputs.EndpointAuthentication>
    The list of service endpoints authentication details.
    ReportsConnectionString string
    Connection string to write Accounts reports to.
    Configuration string | AccountConfiguration
    Account configuration. This can only be set at RecommendationsService Account creation.
    Cors []CorsRule
    The list of CORS details.
    EndpointAuthentications []EndpointAuthentication
    The list of service endpoints authentication details.
    ReportsConnectionString string
    Connection string to write Accounts reports to.
    configuration String | AccountConfiguration
    Account configuration. This can only be set at RecommendationsService Account creation.
    cors List<CorsRule>
    The list of CORS details.
    endpointAuthentications List<EndpointAuthentication>
    The list of service endpoints authentication details.
    reportsConnectionString String
    Connection string to write Accounts reports to.
    configuration string | AccountConfiguration
    Account configuration. This can only be set at RecommendationsService Account creation.
    cors CorsRule[]
    The list of CORS details.
    endpointAuthentications EndpointAuthentication[]
    The list of service endpoints authentication details.
    reportsConnectionString string
    Connection string to write Accounts reports to.
    configuration str | AccountConfiguration
    Account configuration. This can only be set at RecommendationsService Account creation.
    cors Sequence[CorsRule]
    The list of CORS details.
    endpoint_authentications Sequence[EndpointAuthentication]
    The list of service endpoints authentication details.
    reports_connection_string str
    Connection string to write Accounts reports to.
    configuration String | "Free" | "Capacity"
    Account configuration. This can only be set at RecommendationsService Account creation.
    cors List<Property Map>
    The list of CORS details.
    endpointAuthentications List<Property Map>
    The list of service endpoints authentication details.
    reportsConnectionString String
    Connection string to write Accounts reports to.

    AccountResourceResponseProperties, AccountResourceResponsePropertiesArgs

    ProvisioningState string
    The resource provisioning state.
    Configuration string
    Account configuration. This can only be set at RecommendationsService Account creation.
    Cors List<Pulumi.AzureNative.RecommendationsService.Inputs.CorsRuleResponse>
    The list of CORS details.
    EndpointAuthentications List<Pulumi.AzureNative.RecommendationsService.Inputs.EndpointAuthenticationResponse>
    The list of service endpoints authentication details.
    ReportsConnectionString string
    Connection string to write Accounts reports to.
    ProvisioningState string
    The resource provisioning state.
    Configuration string
    Account configuration. This can only be set at RecommendationsService Account creation.
    Cors []CorsRuleResponse
    The list of CORS details.
    EndpointAuthentications []EndpointAuthenticationResponse
    The list of service endpoints authentication details.
    ReportsConnectionString string
    Connection string to write Accounts reports to.
    provisioningState String
    The resource provisioning state.
    configuration String
    Account configuration. This can only be set at RecommendationsService Account creation.
    cors List<CorsRuleResponse>
    The list of CORS details.
    endpointAuthentications List<EndpointAuthenticationResponse>
    The list of service endpoints authentication details.
    reportsConnectionString String
    Connection string to write Accounts reports to.
    provisioningState string
    The resource provisioning state.
    configuration string
    Account configuration. This can only be set at RecommendationsService Account creation.
    cors CorsRuleResponse[]
    The list of CORS details.
    endpointAuthentications EndpointAuthenticationResponse[]
    The list of service endpoints authentication details.
    reportsConnectionString string
    Connection string to write Accounts reports to.
    provisioning_state str
    The resource provisioning state.
    configuration str
    Account configuration. This can only be set at RecommendationsService Account creation.
    cors Sequence[CorsRuleResponse]
    The list of CORS details.
    endpoint_authentications Sequence[EndpointAuthenticationResponse]
    The list of service endpoints authentication details.
    reports_connection_string str
    Connection string to write Accounts reports to.
    provisioningState String
    The resource provisioning state.
    configuration String
    Account configuration. This can only be set at RecommendationsService Account creation.
    cors List<Property Map>
    The list of CORS details.
    endpointAuthentications List<Property Map>
    The list of service endpoints authentication details.
    reportsConnectionString String
    Connection string to write Accounts reports to.

    CorsRule, CorsRuleArgs

    AllowedOrigins List<string>
    The origin domains that are permitted to make a request against the service via CORS.
    AllowedHeaders List<string>
    The request headers that the origin domain may specify on the CORS request.
    AllowedMethods List<string>
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    ExposedHeaders List<string>
    The response headers to expose to CORS clients.
    MaxAgeInSeconds int
    The number of seconds that the client/browser should cache a preflight response.
    AllowedOrigins []string
    The origin domains that are permitted to make a request against the service via CORS.
    AllowedHeaders []string
    The request headers that the origin domain may specify on the CORS request.
    AllowedMethods []string
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    ExposedHeaders []string
    The response headers to expose to CORS clients.
    MaxAgeInSeconds int
    The number of seconds that the client/browser should cache a preflight response.
    allowedOrigins List<String>
    The origin domains that are permitted to make a request against the service via CORS.
    allowedHeaders List<String>
    The request headers that the origin domain may specify on the CORS request.
    allowedMethods List<String>
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    exposedHeaders List<String>
    The response headers to expose to CORS clients.
    maxAgeInSeconds Integer
    The number of seconds that the client/browser should cache a preflight response.
    allowedOrigins string[]
    The origin domains that are permitted to make a request against the service via CORS.
    allowedHeaders string[]
    The request headers that the origin domain may specify on the CORS request.
    allowedMethods string[]
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    exposedHeaders string[]
    The response headers to expose to CORS clients.
    maxAgeInSeconds number
    The number of seconds that the client/browser should cache a preflight response.
    allowed_origins Sequence[str]
    The origin domains that are permitted to make a request against the service via CORS.
    allowed_headers Sequence[str]
    The request headers that the origin domain may specify on the CORS request.
    allowed_methods Sequence[str]
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    exposed_headers Sequence[str]
    The response headers to expose to CORS clients.
    max_age_in_seconds int
    The number of seconds that the client/browser should cache a preflight response.
    allowedOrigins List<String>
    The origin domains that are permitted to make a request against the service via CORS.
    allowedHeaders List<String>
    The request headers that the origin domain may specify on the CORS request.
    allowedMethods List<String>
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    exposedHeaders List<String>
    The response headers to expose to CORS clients.
    maxAgeInSeconds Number
    The number of seconds that the client/browser should cache a preflight response.

    CorsRuleResponse, CorsRuleResponseArgs

    AllowedOrigins List<string>
    The origin domains that are permitted to make a request against the service via CORS.
    AllowedHeaders List<string>
    The request headers that the origin domain may specify on the CORS request.
    AllowedMethods List<string>
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    ExposedHeaders List<string>
    The response headers to expose to CORS clients.
    MaxAgeInSeconds int
    The number of seconds that the client/browser should cache a preflight response.
    AllowedOrigins []string
    The origin domains that are permitted to make a request against the service via CORS.
    AllowedHeaders []string
    The request headers that the origin domain may specify on the CORS request.
    AllowedMethods []string
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    ExposedHeaders []string
    The response headers to expose to CORS clients.
    MaxAgeInSeconds int
    The number of seconds that the client/browser should cache a preflight response.
    allowedOrigins List<String>
    The origin domains that are permitted to make a request against the service via CORS.
    allowedHeaders List<String>
    The request headers that the origin domain may specify on the CORS request.
    allowedMethods List<String>
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    exposedHeaders List<String>
    The response headers to expose to CORS clients.
    maxAgeInSeconds Integer
    The number of seconds that the client/browser should cache a preflight response.
    allowedOrigins string[]
    The origin domains that are permitted to make a request against the service via CORS.
    allowedHeaders string[]
    The request headers that the origin domain may specify on the CORS request.
    allowedMethods string[]
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    exposedHeaders string[]
    The response headers to expose to CORS clients.
    maxAgeInSeconds number
    The number of seconds that the client/browser should cache a preflight response.
    allowed_origins Sequence[str]
    The origin domains that are permitted to make a request against the service via CORS.
    allowed_headers Sequence[str]
    The request headers that the origin domain may specify on the CORS request.
    allowed_methods Sequence[str]
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    exposed_headers Sequence[str]
    The response headers to expose to CORS clients.
    max_age_in_seconds int
    The number of seconds that the client/browser should cache a preflight response.
    allowedOrigins List<String>
    The origin domains that are permitted to make a request against the service via CORS.
    allowedHeaders List<String>
    The request headers that the origin domain may specify on the CORS request.
    allowedMethods List<String>
    The methods (HTTP request verbs) that the origin domain may use for a CORS request.
    exposedHeaders List<String>
    The response headers to expose to CORS clients.
    maxAgeInSeconds Number
    The number of seconds that the client/browser should cache a preflight response.

    EndpointAuthentication, EndpointAuthenticationArgs

    AadTenantID string
    AAD tenant ID.
    PrincipalID string
    AAD principal ID.
    PrincipalType string | Pulumi.AzureNative.RecommendationsService.PrincipalType
    AAD principal type.
    AadTenantID string
    AAD tenant ID.
    PrincipalID string
    AAD principal ID.
    PrincipalType string | PrincipalType
    AAD principal type.
    aadTenantID String
    AAD tenant ID.
    principalID String
    AAD principal ID.
    principalType String | PrincipalType
    AAD principal type.
    aadTenantID string
    AAD tenant ID.
    principalID string
    AAD principal ID.
    principalType string | PrincipalType
    AAD principal type.
    aad_tenant_id str
    AAD tenant ID.
    principal_id str
    AAD principal ID.
    principal_type str | PrincipalType
    AAD principal type.
    aadTenantID String
    AAD tenant ID.
    principalID String
    AAD principal ID.
    principalType String | "Application" | "User"
    AAD principal type.

    EndpointAuthenticationResponse, EndpointAuthenticationResponseArgs

    AadTenantID string
    AAD tenant ID.
    PrincipalID string
    AAD principal ID.
    PrincipalType string
    AAD principal type.
    AadTenantID string
    AAD tenant ID.
    PrincipalID string
    AAD principal ID.
    PrincipalType string
    AAD principal type.
    aadTenantID String
    AAD tenant ID.
    principalID String
    AAD principal ID.
    principalType String
    AAD principal type.
    aadTenantID string
    AAD tenant ID.
    principalID string
    AAD principal ID.
    principalType string
    AAD principal type.
    aad_tenant_id str
    AAD tenant ID.
    principal_id str
    AAD principal ID.
    principal_type str
    AAD principal type.
    aadTenantID String
    AAD tenant ID.
    principalID String
    AAD principal ID.
    principalType String
    AAD principal type.

    PrincipalType, PrincipalTypeArgs

    Application
    Application
    User
    User
    PrincipalTypeApplication
    Application
    PrincipalTypeUser
    User
    Application
    Application
    User
    User
    Application
    Application
    User
    User
    APPLICATION
    Application
    USER
    User
    "Application"
    Application
    "User"
    User

    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:recommendationsservice:Account sampleAccount /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecommendationsService/accounts/{accountName} 
    

    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