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 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",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const account = new azure_native.recommendationsservice.Account("account", {
accountName: "sampleAccount",
location: "West US",
properties: {
configuration: azure_native.recommendationsservice.AccountConfiguration.Capacity,
endpointAuthentications: [{
aadTenantID: "tenant",
principalID: "oid",
principalType: azure_native.recommendationsservice.PrincipalType.User,
}],
},
resourceGroupName: "rg",
tags: {
Environment: "Prod",
},
});
resources:
account:
type: azure-native:recommendationsservice:Account
properties:
accountName: sampleAccount
location: West US
properties:
configuration: Capacity
endpointAuthentications:
- aadTenantID: tenant
principalID: oid
principalType: User
resourceGroupName: rg
tags:
Environment: Prod
Create Account Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
@overload
def Account(resource_name: str,
args: AccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Account(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
account_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[AccountResourcePropertiesArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
public Account(String name, AccountArgs args)
public Account(String name, AccountArgs args, CustomResourceOptions options)
type: azure-native:recommendationsservice:Account
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
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": [{
"allowedOrigins": ["string"],
"allowedHeaders": ["string"],
"allowedMethods": ["string"],
"exposedHeaders": ["string"],
"maxAgeInSeconds": 0,
}],
"endpointAuthentications": [{
"aadTenantID": "string",
"principalID": "string",
"principalType": "string",
}],
"reportsConnectionString": "string",
},
tags={
"string": "string",
})
const exampleaccountResourceResourceFromRecommendationsservice = new azure_native.recommendationsservice.Account("exampleaccountResourceResourceFromRecommendationsservice", {
resourceGroupName: "string",
accountName: "string",
location: "string",
properties: {
configuration: "string",
cors: [{
allowedOrigins: ["string"],
allowedHeaders: ["string"],
allowedMethods: ["string"],
exposedHeaders: ["string"],
maxAgeInSeconds: 0,
}],
endpointAuthentications: [{
aadTenantID: "string",
principalID: "string",
principalType: "string",
}],
reportsConnectionString: "string",
},
tags: {
string: "string",
},
});
type: azure-native:recommendationsservice:Account
properties:
accountName: string
location: string
properties:
configuration: string
cors:
- allowedHeaders:
- string
allowedMethods:
- string
allowedOrigins:
- string
exposedHeaders:
- string
maxAgeInSeconds: 0
endpointAuthentications:
- aadTenantID: string
principalID: string
principalType: string
reportsConnectionString: string
resourceGroupName: string
tags:
string: string
Account Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Account resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Account
Name 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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Account
Name string - The name of the RecommendationsService Account resource.
- Location string
- The geo-location where the resource lives
- Properties
Account
Resource Properties Args - Account resource properties.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- account
Name String - The name of the RecommendationsService Account resource.
- location String
- The geo-location where the resource lives
- properties
Account
Resource Properties - Account resource properties.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- account
Name string - The name of the RecommendationsService Account resource.
- location string
- The geo-location where the resource lives
- properties
Account
Resource 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
Account
Resource Properties Args - Account resource properties.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- account
Name 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
- System
Data 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
- System
Data 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
- system
Data 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
- system
Data 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
- system
Data 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
- Account
Configuration Free - Free
- Account
Configuration 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.
- Endpoint
Authentications List<Pulumi.Azure Native. Recommendations Service. Inputs. Endpoint Authentication> - The list of service endpoints authentication details.
- Reports
Connection stringString - Connection string to write Accounts reports to.
- Configuration
string | Account
Configuration - Account configuration. This can only be set at RecommendationsService Account creation.
- Cors
[]Cors
Rule - The list of CORS details.
- Endpoint
Authentications []EndpointAuthentication - The list of service endpoints authentication details.
- Reports
Connection stringString - Connection string to write Accounts reports to.
- configuration
String | Account
Configuration - Account configuration. This can only be set at RecommendationsService Account creation.
- cors
List<Cors
Rule> - The list of CORS details.
- endpoint
Authentications List<EndpointAuthentication> - The list of service endpoints authentication details.
- reports
Connection StringString - Connection string to write Accounts reports to.
- configuration
string | Account
Configuration - Account configuration. This can only be set at RecommendationsService Account creation.
- cors
Cors
Rule[] - The list of CORS details.
- endpoint
Authentications EndpointAuthentication[] - The list of service endpoints authentication details.
- reports
Connection stringString - Connection string to write Accounts reports to.
- configuration
str | Account
Configuration - Account configuration. This can only be set at RecommendationsService Account creation.
- cors
Sequence[Cors
Rule] - 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.
- endpoint
Authentications List<Property Map> - The list of service endpoints authentication details.
- reports
Connection StringString - Connection string to write Accounts reports to.
AccountResourceResponseProperties, AccountResourceResponsePropertiesArgs
- Provisioning
State 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.
- Endpoint
Authentications List<Pulumi.Azure Native. Recommendations Service. Inputs. Endpoint Authentication Response> - The list of service endpoints authentication details.
- Reports
Connection stringString - Connection string to write Accounts reports to.
- Provisioning
State string - The resource provisioning state.
- Configuration string
- Account configuration. This can only be set at RecommendationsService Account creation.
- Cors
[]Cors
Rule Response - The list of CORS details.
- Endpoint
Authentications []EndpointAuthentication Response - The list of service endpoints authentication details.
- Reports
Connection stringString - Connection string to write Accounts reports to.
- provisioning
State String - The resource provisioning state.
- configuration String
- Account configuration. This can only be set at RecommendationsService Account creation.
- cors
List<Cors
Rule Response> - The list of CORS details.
- endpoint
Authentications List<EndpointAuthentication Response> - The list of service endpoints authentication details.
- reports
Connection StringString - Connection string to write Accounts reports to.
- provisioning
State string - The resource provisioning state.
- configuration string
- Account configuration. This can only be set at RecommendationsService Account creation.
- cors
Cors
Rule Response[] - The list of CORS details.
- endpoint
Authentications EndpointAuthentication Response[] - The list of service endpoints authentication details.
- reports
Connection 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[Cors
Rule 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.
- provisioning
State 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.
- endpoint
Authentications List<Property Map> - The list of service endpoints authentication details.
- reports
Connection StringString - Connection string to write Accounts reports to.
CorsRule, CorsRuleArgs
- Allowed
Origins List<string> - The origin domains that are permitted to make a request against the service via CORS.
- Allowed
Headers List<string> - The request headers that the origin domain may specify on the CORS request.
- Allowed
Methods List<string> - The methods (HTTP request verbs) that the origin domain may use for a CORS request.
- Exposed
Headers List<string> - 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.
- Allowed
Origins []string - The origin domains that are permitted to make a request against the service via CORS.
- Allowed
Headers []string - The request headers that the origin domain may specify on the CORS request.
- Allowed
Methods []string - The methods (HTTP request verbs) that the origin domain may use for a CORS request.
- Exposed
Headers []string - 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.
- allowed
Origins List<String> - The origin domains that are permitted to make a request against the service via CORS.
- allowed
Headers List<String> - The request headers that the origin domain may specify on the CORS request.
- allowed
Methods List<String> - The methods (HTTP request verbs) that the origin domain may use for a CORS request.
- exposed
Headers List<String> - The response headers to expose to CORS clients.
- max
Age IntegerIn Seconds - The number of seconds that the client/browser should cache a preflight response.
- allowed
Origins string[] - The origin domains that are permitted to make a request against the service via CORS.
- allowed
Headers string[] - The request headers that the origin domain may specify on the CORS request.
- allowed
Methods string[] - The methods (HTTP request verbs) that the origin domain may use for a CORS request.
- exposed
Headers string[] - The response headers to expose to CORS clients.
- max
Age 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.
- allowed
Origins List<String> - The origin domains that are permitted to make a request against the service via CORS.
- allowed
Headers List<String> - The request headers that the origin domain may specify on the CORS request.
- allowed
Methods List<String> - The methods (HTTP request verbs) that the origin domain may use for a CORS request.
- exposed
Headers List<String> - The response headers to expose to CORS clients.
- max
Age NumberIn Seconds - The number of seconds that the client/browser should cache a preflight response.
CorsRuleResponse, CorsRuleResponseArgs
- Allowed
Origins List<string> - The origin domains that are permitted to make a request against the service via CORS.
- Allowed
Headers List<string> - The request headers that the origin domain may specify on the CORS request.
- Allowed
Methods List<string> - The methods (HTTP request verbs) that the origin domain may use for a CORS request.
- Exposed
Headers List<string> - 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.
- Allowed
Origins []string - The origin domains that are permitted to make a request against the service via CORS.
- Allowed
Headers []string - The request headers that the origin domain may specify on the CORS request.
- Allowed
Methods []string - The methods (HTTP request verbs) that the origin domain may use for a CORS request.
- Exposed
Headers []string - 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.
- allowed
Origins List<String> - The origin domains that are permitted to make a request against the service via CORS.
- allowed
Headers List<String> - The request headers that the origin domain may specify on the CORS request.
- allowed
Methods List<String> - The methods (HTTP request verbs) that the origin domain may use for a CORS request.
- exposed
Headers List<String> - The response headers to expose to CORS clients.
- max
Age IntegerIn Seconds - The number of seconds that the client/browser should cache a preflight response.
- allowed
Origins string[] - The origin domains that are permitted to make a request against the service via CORS.
- allowed
Headers string[] - The request headers that the origin domain may specify on the CORS request.
- allowed
Methods string[] - The methods (HTTP request verbs) that the origin domain may use for a CORS request.
- exposed
Headers string[] - The response headers to expose to CORS clients.
- max
Age 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.
- allowed
Origins List<String> - The origin domains that are permitted to make a request against the service via CORS.
- allowed
Headers List<String> - The request headers that the origin domain may specify on the CORS request.
- allowed
Methods List<String> - The methods (HTTP request verbs) that the origin domain may use for a CORS request.
- exposed
Headers List<String> - The response headers to expose to CORS clients.
- max
Age NumberIn Seconds - The number of seconds that the client/browser should cache a preflight response.
EndpointAuthentication, EndpointAuthenticationArgs
- Aad
Tenant stringID - AAD tenant ID.
- Principal
ID string - AAD principal ID.
- Principal
Type string | Pulumi.Azure Native. Recommendations Service. Principal Type - AAD principal type.
- Aad
Tenant stringID - AAD tenant ID.
- Principal
ID string - AAD principal ID.
- Principal
Type string | PrincipalType - AAD principal type.
- aad
Tenant StringID - AAD tenant ID.
- principal
ID String - AAD principal ID.
- principal
Type String | PrincipalType - AAD principal type.
- aad
Tenant stringID - AAD tenant ID.
- principal
ID string - AAD principal ID.
- principal
Type string | PrincipalType - AAD principal type.
- aad_
tenant_ strid - AAD tenant ID.
- principal_
id str - AAD principal ID.
- principal_
type str | PrincipalType - AAD principal type.
- aad
Tenant StringID - AAD tenant ID.
- principal
ID String - AAD principal ID.
- principal
Type String | "Application" | "User" - AAD principal type.
EndpointAuthenticationResponse, EndpointAuthenticationResponseArgs
- Aad
Tenant stringID - AAD tenant ID.
- Principal
ID string - AAD principal ID.
- Principal
Type string - AAD principal type.
- Aad
Tenant stringID - AAD tenant ID.
- Principal
ID string - AAD principal ID.
- Principal
Type string - AAD principal type.
- aad
Tenant StringID - AAD tenant ID.
- principal
ID String - AAD principal ID.
- principal
Type String - AAD principal type.
- aad
Tenant stringID - AAD tenant ID.
- principal
ID string - AAD principal ID.
- principal
Type string - AAD principal type.
- aad_
tenant_ strid - AAD tenant ID.
- principal_
id str - AAD principal ID.
- principal_
type str - AAD principal type.
- aad
Tenant StringID - AAD tenant ID.
- principal
ID String - AAD principal ID.
- principal
Type String - AAD principal type.
PrincipalType, PrincipalTypeArgs
- Application
- Application
- User
- User
- Principal
Type Application - Application
- Principal
Type User - User
- Application
- Application
- User
- User
- Application
- Application
- User
- User
- APPLICATION
- Application
- USER
- User
- "Application"
- Application
- "User"
- User
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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