azure-native.recommendationsservice.Account
Explore with Pulumi AI
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 (
	recommendationsservice "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 * 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",
    },
});
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",
    })
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.
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",
    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={
        "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",
    })
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
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:
- ResourceGroup stringName 
- 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.Azure Native. Recommendations Service. Inputs. Account Resource Properties 
- Account resource properties.
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- 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
AccountResource Properties Args 
- Account resource properties.
- map[string]string
- Resource tags.
- resourceGroup StringName 
- 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
AccountResource Properties 
- Account resource properties.
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- 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
AccountResource Properties 
- Account resource properties.
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- 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
AccountResource Properties Args 
- Account resource properties.
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- 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.
- 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.Azure Native. Recommendations Service. Outputs. System Data Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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
- AccountConfiguration Free 
- Free
- AccountConfiguration Capacity 
- Capacity
- Free
- Free
- Capacity
- Capacity
- Free
- Free
- Capacity
- Capacity
- FREE
- Free
- CAPACITY
- Capacity
- "Free"
- Free
- "Capacity"
- Capacity
AccountResourceProperties, AccountResourcePropertiesArgs      
- Configuration
string | Pulumi.Azure Native. Recommendations Service. Account Configuration 
- Account configuration. This can only be set at RecommendationsService Account creation.
- Cors
List<Pulumi.Azure Native. Recommendations Service. Inputs. Cors Rule> 
- The list of CORS details.
- EndpointAuthentications List<Pulumi.Azure Native. Recommendations Service. Inputs. Endpoint Authentication> 
- The list of service endpoints authentication details.
- ReportsConnection stringString 
- 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.
- ReportsConnection stringString 
- 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.
- reportsConnection StringString 
- 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.
- reportsConnection stringString 
- 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_ strstring 
- 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.
- reportsConnection StringString 
- 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.Azure Native. Recommendations Service. Inputs. Cors Rule Response> 
- The list of CORS details.
- EndpointAuthentications List<Pulumi.Azure Native. Recommendations Service. Inputs. Endpoint Authentication Response> 
- The list of service endpoints authentication details.
- ReportsConnection stringString 
- 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
[]CorsRule Response 
- The list of CORS details.
- EndpointAuthentications []EndpointAuthentication Response 
- The list of service endpoints authentication details.
- ReportsConnection stringString 
- 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<CorsRule Response> 
- The list of CORS details.
- endpointAuthentications List<EndpointAuthentication Response> 
- The list of service endpoints authentication details.
- reportsConnection StringString 
- 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
CorsRule Response[] 
- The list of CORS details.
- endpointAuthentications EndpointAuthentication Response[] 
- The list of service endpoints authentication details.
- reportsConnection stringString 
- 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[CorsRule Response] 
- The list of CORS details.
- endpoint_authentications Sequence[EndpointAuthentication Response] 
- The list of service endpoints authentication details.
- reports_connection_ strstring 
- 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.
- reportsConnection StringString 
- 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.
- MaxAge intIn Seconds 
- 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.
- MaxAge intIn Seconds 
- 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.
- maxAge IntegerIn Seconds 
- 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.
- maxAge numberIn Seconds 
- 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_ intin_ seconds 
- 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.
- maxAge NumberIn Seconds 
- 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.
- MaxAge intIn Seconds 
- 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.
- MaxAge intIn Seconds 
- 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.
- maxAge IntegerIn Seconds 
- 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.
- maxAge numberIn Seconds 
- 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_ intin_ seconds 
- 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.
- maxAge NumberIn Seconds 
- The number of seconds that the client/browser should cache a preflight response.
EndpointAuthentication, EndpointAuthenticationArgs    
- AadTenant stringID 
- AAD tenant ID.
- PrincipalID string
- AAD principal ID.
- PrincipalType string | Pulumi.Azure Native. Recommendations Service. Principal Type 
- AAD principal type.
- AadTenant stringID 
- AAD tenant ID.
- PrincipalID string
- AAD principal ID.
- PrincipalType string | PrincipalType 
- AAD principal type.
- aadTenant StringID 
- AAD tenant ID.
- principalID String
- AAD principal ID.
- principalType String | PrincipalType 
- AAD principal type.
- aadTenant stringID 
- AAD tenant ID.
- principalID string
- AAD principal ID.
- principalType string | PrincipalType 
- AAD principal type.
- aad_tenant_ strid 
- AAD tenant ID.
- principal_id str
- AAD principal ID.
- principal_type str | PrincipalType 
- AAD principal type.
- aadTenant StringID 
- AAD tenant ID.
- principalID String
- AAD principal ID.
- principalType String | "Application" | "User"
- AAD principal type.
EndpointAuthenticationResponse, EndpointAuthenticationResponseArgs      
- AadTenant stringID 
- AAD tenant ID.
- PrincipalID string
- AAD principal ID.
- PrincipalType string
- AAD principal type.
- AadTenant stringID 
- AAD tenant ID.
- PrincipalID string
- AAD principal ID.
- PrincipalType string
- AAD principal type.
- aadTenant StringID 
- AAD tenant ID.
- principalID String
- AAD principal ID.
- principalType String
- AAD principal type.
- aadTenant stringID 
- AAD tenant ID.
- principalID string
- AAD principal ID.
- principalType string
- AAD principal type.
- aad_tenant_ strid 
- AAD tenant ID.
- principal_id str
- AAD principal ID.
- principal_type str
- AAD principal type.
- aadTenant StringID 
- AAD tenant ID.
- principalID String
- AAD principal ID.
- principalType String
- AAD principal type.
PrincipalType, PrincipalTypeArgs    
- Application
- Application
- User
- User
- PrincipalType Application 
- Application
- PrincipalType User 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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