1. Packages
  2. Azure Native
  3. API Docs
  4. recommendationsservice
  5. Account
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.recommendationsservice.Account

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

Account resource details.

Uses Azure REST API version 2022-03-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-02-01.

Other available API versions: 2022-02-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native recommendationsservice [ApiVersion]. See the version guide for details.

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" },
        },
    });

});
Copy
package main

import (
	recommendationsservice "github.com/pulumi/pulumi-azure-native-sdk/recommendationsservice/v3"
	"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
	})
}
Copy
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());

    }
}
Copy
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",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

account = azure_native.recommendationsservice.Account("account",
    account_name="sampleAccount",
    location="West US",
    properties={
        "configuration": azure_native.recommendationsservice.AccountConfiguration.CAPACITY,
        "endpoint_authentications": [{
            "aad_tenant_id": "tenant",
            "principal_id": "oid",
            "principal_type": azure_native.recommendationsservice.PrincipalType.USER,
        }],
    },
    resource_group_name="rg",
    tags={
        "Environment": "Prod",
    })
Copy
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
Copy

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,
            identity: Optional[ManagedServiceIdentityArgs] = 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 This property is required. string
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AccountArgs
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 exampleaccountResourceResourceFromRecommendationsservice = new AzureNative.RecommendationsService.Account("exampleaccountResourceResourceFromRecommendationsservice", new()
{
    ResourceGroupName = "string",
    AccountName = "string",
    Identity = new AzureNative.RecommendationsService.Inputs.ManagedServiceIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "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" },
    },
});
Copy
example, err := recommendationsservice.NewAccount(ctx, "exampleaccountResourceResourceFromRecommendationsservice", &recommendationsservice.AccountArgs{
	ResourceGroupName: pulumi.String("string"),
	AccountName:       pulumi.String("string"),
	Identity: &recommendationsservice.ManagedServiceIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			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"),
	},
})
Copy
var exampleaccountResourceResourceFromRecommendationsservice = new Account("exampleaccountResourceResourceFromRecommendationsservice", AccountArgs.builder()
    .resourceGroupName("string")
    .accountName("string")
    .identity(ManagedServiceIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .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());
Copy
exampleaccount_resource_resource_from_recommendationsservice = azure_native.recommendationsservice.Account("exampleaccountResourceResourceFromRecommendationsservice",
    resource_group_name="string",
    account_name="string",
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    location="string",
    properties={
        "configuration": "string",
        "cors": [{
            "allowed_origins": ["string"],
            "allowed_headers": ["string"],
            "allowed_methods": ["string"],
            "exposed_headers": ["string"],
            "max_age_in_seconds": 0,
        }],
        "endpoint_authentications": [{
            "aad_tenant_id": "string",
            "principal_id": "string",
            "principal_type": "string",
        }],
        "reports_connection_string": "string",
    },
    tags={
        "string": "string",
    })
Copy
const exampleaccountResourceResourceFromRecommendationsservice = new azure_native.recommendationsservice.Account("exampleaccountResourceResourceFromRecommendationsservice", {
    resourceGroupName: "string",
    accountName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: ["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",
    },
});
Copy
type: azure-native:recommendationsservice:Account
properties:
    accountName: string
    identity:
        type: string
        userAssignedIdentities:
            - 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
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Account resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AccountName Changes to this property will trigger replacement. string
The name of the RecommendationsService Account resource.
Identity Pulumi.AzureNative.RecommendationsService.Inputs.ManagedServiceIdentity
The identity used for the resource.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties Pulumi.AzureNative.RecommendationsService.Inputs.AccountResourceProperties
Account resource properties.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AccountName Changes to this property will trigger replacement. string
The name of the RecommendationsService Account resource.
Identity ManagedServiceIdentityArgs
The identity used for the resource.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties AccountResourcePropertiesArgs
Account resource properties.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
accountName Changes to this property will trigger replacement. String
The name of the RecommendationsService Account resource.
identity ManagedServiceIdentity
The identity used for the resource.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties AccountResourceProperties
Account resource properties.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
accountName Changes to this property will trigger replacement. string
The name of the RecommendationsService Account resource.
identity ManagedServiceIdentity
The identity used for the resource.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
properties AccountResourceProperties
Account resource properties.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
account_name Changes to this property will trigger replacement. str
The name of the RecommendationsService Account resource.
identity ManagedServiceIdentityArgs
The identity used for the resource.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
properties AccountResourcePropertiesArgs
Account resource properties.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
accountName Changes to this property will trigger replacement. String
The name of the RecommendationsService Account resource.
identity Property Map
The identity used for the resource.
location Changes to this property will trigger replacement. 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:

AzureApiVersion string
The Azure API version of the resource.
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"
AzureApiVersion string
The Azure API version of the resource.
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"
azureApiVersion String
The Azure API version of the resource.
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"
azureApiVersion string
The Azure API version of the resource.
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"
azure_api_version str
The Azure API version of the resource.
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"
azureApiVersion String
The Azure API version of the resource.
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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. []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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. []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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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.

ManagedServiceIdentity
, ManagedServiceIdentityArgs

Type This property is required. string | Pulumi.AzureNative.RecommendationsService.ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities List<string>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
Type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities []string
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities string[]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. str | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Sequence[str]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityResponse
, ManagedServiceIdentityResponseArgs

PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.RecommendationsService.Inputs.UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities map[string]UserAssignedIdentityResponse
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<String,UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principal_id This property is required. str
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. str
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<Property Map>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityType
, ManagedServiceIdentityTypeArgs

None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
ManagedServiceIdentityTypeNone
None
ManagedServiceIdentityTypeSystemAssigned
SystemAssigned
ManagedServiceIdentityTypeUserAssigned
UserAssigned
ManagedServiceIdentityType_SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
"None"
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned,UserAssigned"
SystemAssigned,UserAssigned

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.

UserAssignedIdentityResponse
, UserAssignedIdentityResponseArgs

ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.
clientId This property is required. string
The client ID of the assigned identity.
principalId This property is required. string
The principal ID of the assigned identity.
client_id This property is required. str
The client ID of the assigned identity.
principal_id This property is required. str
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.

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} 
Copy

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

Package Details

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