azure-native.recommendationsservice.Account

Explore with Pulumi AI

Account resource details. API Version: 2022-02-01.

Example Usage

Create or update RecommendationsService Account resource

using System.Collections.Generic;
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 = "Capacity",
            EndpointAuthentications = new[]
            {
                new AzureNative.RecommendationsService.Inputs.EndpointAuthenticationArgs
                {
                    AadTenantID = "tenant",
                    PrincipalID = "oid",
                    PrincipalType = "User",
                },
            },
        },
        ResourceGroupName = "rg",
        Tags = 
        {
            { "Environment", "Prod" },
        },
    });

});
package main

import (
	recommendationsservice "github.com/pulumi/pulumi-azure-native/sdk/go/azure/recommendationsservice"
	"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.AccountResourceResponseProperties{
				Configuration: pulumi.String("Capacity"),
				EndpointAuthentications: recommendationsservice.EndpointAuthenticationArray{
					&recommendationsservice.EndpointAuthenticationArgs{
						AadTenantID:   pulumi.String("tenant"),
						PrincipalID:   pulumi.String("oid"),
						PrincipalType: pulumi.String("User"),
					},
				},
			},
			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 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(Map.ofEntries(
                Map.entry("configuration", "Capacity"),
                Map.entry("endpointAuthentications", Map.ofEntries(
                    Map.entry("aadTenantID", "tenant"),
                    Map.entry("principalID", "oid"),
                    Map.entry("principalType", "User")
                ))
            ))
            .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.AccountResourceResponsePropertiesArgs(
        configuration="Capacity",
        endpoint_authentications=[azure_native.recommendationsservice.EndpointAuthenticationArgs(
            aad_tenant_id="tenant",
            principal_id="oid",
            principal_type="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: "Capacity",
        endpointAuthentications: [{
            aadTenantID: "tenant",
            principalID: "oid",
            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

new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
@overload
def Account(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            account_name: Optional[str] = None,
            location: Optional[str] = None,
            properties: Optional[AccountResourcePropertiesArgs] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None)
@overload
def Account(resource_name: str,
            args: AccountArgs,
            opts: Optional[ResourceOptions] = 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.

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.

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.AccountResourcePropertiesArgs

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 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 AccountResourcePropertiesArgs

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

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

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

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

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

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

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

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

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

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/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/rg/providers/Microsoft.RecommendationsService/accounts/sampleAccount 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0