azure-native.community.CommunityTraining
Explore with Pulumi AI
A CommunityProviderHub resource Azure REST API version: 2023-11-01.
Example Usage
CreateCommunityTrainings
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var communityTraining = new AzureNative.Community.CommunityTraining("communityTraining", new()
{
CommunityTrainingName = "ctApplication",
DisasterRecoveryEnabled = true,
IdentityConfiguration = new AzureNative.Community.Inputs.IdentityConfigurationPropertiesArgs
{
B2cAuthenticationPolicy = "B2C_1_signup_signin",
B2cPasswordResetPolicy = "B2C_1_pwd_reset",
ClientId = "8c92390f-2f30-493d-bd13-d3c3eba3709d",
ClientSecret = "idenityConfigurationClientSecret",
CustomLoginParameters = "custom_hint",
DomainName = "cttenant",
IdentityType = "ADB2C",
TeamsEnabled = false,
TenantId = "c1ffbb60-88cf-4b83-b54f-c47ae6220c19",
},
Location = "southeastasia",
PortalAdminEmailAddress = "ctadmin@ct.com",
PortalName = "ctwebsite",
PortalOwnerEmailAddress = "ctcontact@ct.com",
PortalOwnerOrganizationName = "CT Portal Owner Organization",
ResourceGroupName = "rgCommunityTaining",
Sku = new AzureNative.Community.Inputs.SkuArgs
{
Name = "Commercial",
Tier = AzureNative.Community.SkuTier.Standard,
},
ZoneRedundancyEnabled = true,
});
});
package main
import (
community "github.com/pulumi/pulumi-azure-native-sdk/community/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := community.NewCommunityTraining(ctx, "communityTraining", &community.CommunityTrainingArgs{
CommunityTrainingName: pulumi.String("ctApplication"),
DisasterRecoveryEnabled: pulumi.Bool(true),
IdentityConfiguration: &community.IdentityConfigurationPropertiesArgs{
B2cAuthenticationPolicy: pulumi.String("B2C_1_signup_signin"),
B2cPasswordResetPolicy: pulumi.String("B2C_1_pwd_reset"),
ClientId: pulumi.String("8c92390f-2f30-493d-bd13-d3c3eba3709d"),
ClientSecret: pulumi.String("idenityConfigurationClientSecret"),
CustomLoginParameters: pulumi.String("custom_hint"),
DomainName: pulumi.String("cttenant"),
IdentityType: pulumi.String("ADB2C"),
TeamsEnabled: pulumi.Bool(false),
TenantId: pulumi.String("c1ffbb60-88cf-4b83-b54f-c47ae6220c19"),
},
Location: pulumi.String("southeastasia"),
PortalAdminEmailAddress: pulumi.String("ctadmin@ct.com"),
PortalName: pulumi.String("ctwebsite"),
PortalOwnerEmailAddress: pulumi.String("ctcontact@ct.com"),
PortalOwnerOrganizationName: pulumi.String("CT Portal Owner Organization"),
ResourceGroupName: pulumi.String("rgCommunityTaining"),
Sku: &community.SkuArgs{
Name: pulumi.String("Commercial"),
Tier: community.SkuTierStandard,
},
ZoneRedundancyEnabled: pulumi.Bool(true),
})
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.community.CommunityTraining;
import com.pulumi.azurenative.community.CommunityTrainingArgs;
import com.pulumi.azurenative.community.inputs.IdentityConfigurationPropertiesArgs;
import com.pulumi.azurenative.community.inputs.SkuArgs;
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 communityTraining = new CommunityTraining("communityTraining", CommunityTrainingArgs.builder()
.communityTrainingName("ctApplication")
.disasterRecoveryEnabled(true)
.identityConfiguration(IdentityConfigurationPropertiesArgs.builder()
.b2cAuthenticationPolicy("B2C_1_signup_signin")
.b2cPasswordResetPolicy("B2C_1_pwd_reset")
.clientId("8c92390f-2f30-493d-bd13-d3c3eba3709d")
.clientSecret("idenityConfigurationClientSecret")
.customLoginParameters("custom_hint")
.domainName("cttenant")
.identityType("ADB2C")
.teamsEnabled(false)
.tenantId("c1ffbb60-88cf-4b83-b54f-c47ae6220c19")
.build())
.location("southeastasia")
.portalAdminEmailAddress("ctadmin@ct.com")
.portalName("ctwebsite")
.portalOwnerEmailAddress("ctcontact@ct.com")
.portalOwnerOrganizationName("CT Portal Owner Organization")
.resourceGroupName("rgCommunityTaining")
.sku(SkuArgs.builder()
.name("Commercial")
.tier("Standard")
.build())
.zoneRedundancyEnabled(true)
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
community_training = azure_native.community.CommunityTraining("communityTraining",
community_training_name="ctApplication",
disaster_recovery_enabled=True,
identity_configuration=azure_native.community.IdentityConfigurationPropertiesArgs(
b2c_authentication_policy="B2C_1_signup_signin",
b2c_password_reset_policy="B2C_1_pwd_reset",
client_id="8c92390f-2f30-493d-bd13-d3c3eba3709d",
client_secret="idenityConfigurationClientSecret",
custom_login_parameters="custom_hint",
domain_name="cttenant",
identity_type="ADB2C",
teams_enabled=False,
tenant_id="c1ffbb60-88cf-4b83-b54f-c47ae6220c19",
),
location="southeastasia",
portal_admin_email_address="ctadmin@ct.com",
portal_name="ctwebsite",
portal_owner_email_address="ctcontact@ct.com",
portal_owner_organization_name="CT Portal Owner Organization",
resource_group_name="rgCommunityTaining",
sku=azure_native.community.SkuArgs(
name="Commercial",
tier=azure_native.community.SkuTier.STANDARD,
),
zone_redundancy_enabled=True)
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const communityTraining = new azure_native.community.CommunityTraining("communityTraining", {
communityTrainingName: "ctApplication",
disasterRecoveryEnabled: true,
identityConfiguration: {
b2cAuthenticationPolicy: "B2C_1_signup_signin",
b2cPasswordResetPolicy: "B2C_1_pwd_reset",
clientId: "8c92390f-2f30-493d-bd13-d3c3eba3709d",
clientSecret: "idenityConfigurationClientSecret",
customLoginParameters: "custom_hint",
domainName: "cttenant",
identityType: "ADB2C",
teamsEnabled: false,
tenantId: "c1ffbb60-88cf-4b83-b54f-c47ae6220c19",
},
location: "southeastasia",
portalAdminEmailAddress: "ctadmin@ct.com",
portalName: "ctwebsite",
portalOwnerEmailAddress: "ctcontact@ct.com",
portalOwnerOrganizationName: "CT Portal Owner Organization",
resourceGroupName: "rgCommunityTaining",
sku: {
name: "Commercial",
tier: azure_native.community.SkuTier.Standard,
},
zoneRedundancyEnabled: true,
});
resources:
communityTraining:
type: azure-native:community:CommunityTraining
properties:
communityTrainingName: ctApplication
disasterRecoveryEnabled: true
identityConfiguration:
b2cAuthenticationPolicy: B2C_1_signup_signin
b2cPasswordResetPolicy: B2C_1_pwd_reset
clientId: 8c92390f-2f30-493d-bd13-d3c3eba3709d
clientSecret: idenityConfigurationClientSecret
customLoginParameters: custom_hint
domainName: cttenant
identityType: ADB2C
teamsEnabled: false
tenantId: c1ffbb60-88cf-4b83-b54f-c47ae6220c19
location: southeastasia
portalAdminEmailAddress: ctadmin@ct.com
portalName: ctwebsite
portalOwnerEmailAddress: ctcontact@ct.com
portalOwnerOrganizationName: CT Portal Owner Organization
resourceGroupName: rgCommunityTaining
sku:
name: Commercial
tier: Standard
zoneRedundancyEnabled: true
Create CommunityTraining Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CommunityTraining(name: string, args: CommunityTrainingArgs, opts?: CustomResourceOptions);
@overload
def CommunityTraining(resource_name: str,
args: CommunityTrainingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CommunityTraining(resource_name: str,
opts: Optional[ResourceOptions] = None,
disaster_recovery_enabled: Optional[bool] = None,
identity_configuration: Optional[IdentityConfigurationPropertiesArgs] = None,
portal_admin_email_address: Optional[str] = None,
portal_name: Optional[str] = None,
portal_owner_email_address: Optional[str] = None,
portal_owner_organization_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
zone_redundancy_enabled: Optional[bool] = None,
community_training_name: Optional[str] = None,
location: Optional[str] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewCommunityTraining(ctx *Context, name string, args CommunityTrainingArgs, opts ...ResourceOption) (*CommunityTraining, error)
public CommunityTraining(string name, CommunityTrainingArgs args, CustomResourceOptions? opts = null)
public CommunityTraining(String name, CommunityTrainingArgs args)
public CommunityTraining(String name, CommunityTrainingArgs args, CustomResourceOptions options)
type: azure-native:community:CommunityTraining
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 CommunityTrainingArgs
- 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 CommunityTrainingArgs
- 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 CommunityTrainingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CommunityTrainingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CommunityTrainingArgs
- 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 communityTrainingResource = new AzureNative.Community.CommunityTraining("communityTrainingResource", new()
{
DisasterRecoveryEnabled = false,
IdentityConfiguration = new AzureNative.Community.Inputs.IdentityConfigurationPropertiesArgs
{
ClientId = "string",
ClientSecret = "string",
DomainName = "string",
IdentityType = "string",
TenantId = "string",
B2cAuthenticationPolicy = "string",
B2cPasswordResetPolicy = "string",
CustomLoginParameters = "string",
TeamsEnabled = false,
},
PortalAdminEmailAddress = "string",
PortalName = "string",
PortalOwnerEmailAddress = "string",
PortalOwnerOrganizationName = "string",
ResourceGroupName = "string",
ZoneRedundancyEnabled = false,
CommunityTrainingName = "string",
Location = "string",
Sku = new AzureNative.Community.Inputs.SkuArgs
{
Name = "string",
Capacity = 0,
Family = "string",
Size = "string",
Tier = AzureNative.Community.SkuTier.Free,
},
Tags =
{
{ "string", "string" },
},
});
example, err := community.NewCommunityTraining(ctx, "communityTrainingResource", &community.CommunityTrainingArgs{
DisasterRecoveryEnabled: pulumi.Bool(false),
IdentityConfiguration: &community.IdentityConfigurationPropertiesArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
DomainName: pulumi.String("string"),
IdentityType: pulumi.String("string"),
TenantId: pulumi.String("string"),
B2cAuthenticationPolicy: pulumi.String("string"),
B2cPasswordResetPolicy: pulumi.String("string"),
CustomLoginParameters: pulumi.String("string"),
TeamsEnabled: pulumi.Bool(false),
},
PortalAdminEmailAddress: pulumi.String("string"),
PortalName: pulumi.String("string"),
PortalOwnerEmailAddress: pulumi.String("string"),
PortalOwnerOrganizationName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ZoneRedundancyEnabled: pulumi.Bool(false),
CommunityTrainingName: pulumi.String("string"),
Location: pulumi.String("string"),
Sku: &community.SkuArgs{
Name: pulumi.String("string"),
Capacity: pulumi.Int(0),
Family: pulumi.String("string"),
Size: pulumi.String("string"),
Tier: community.SkuTierFree,
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var communityTrainingResource = new CommunityTraining("communityTrainingResource", CommunityTrainingArgs.builder()
.disasterRecoveryEnabled(false)
.identityConfiguration(IdentityConfigurationPropertiesArgs.builder()
.clientId("string")
.clientSecret("string")
.domainName("string")
.identityType("string")
.tenantId("string")
.b2cAuthenticationPolicy("string")
.b2cPasswordResetPolicy("string")
.customLoginParameters("string")
.teamsEnabled(false)
.build())
.portalAdminEmailAddress("string")
.portalName("string")
.portalOwnerEmailAddress("string")
.portalOwnerOrganizationName("string")
.resourceGroupName("string")
.zoneRedundancyEnabled(false)
.communityTrainingName("string")
.location("string")
.sku(SkuArgs.builder()
.name("string")
.capacity(0)
.family("string")
.size("string")
.tier("Free")
.build())
.tags(Map.of("string", "string"))
.build());
community_training_resource = azure_native.community.CommunityTraining("communityTrainingResource",
disaster_recovery_enabled=False,
identity_configuration=azure_native.community.IdentityConfigurationPropertiesArgs(
client_id="string",
client_secret="string",
domain_name="string",
identity_type="string",
tenant_id="string",
b2c_authentication_policy="string",
b2c_password_reset_policy="string",
custom_login_parameters="string",
teams_enabled=False,
),
portal_admin_email_address="string",
portal_name="string",
portal_owner_email_address="string",
portal_owner_organization_name="string",
resource_group_name="string",
zone_redundancy_enabled=False,
community_training_name="string",
location="string",
sku=azure_native.community.SkuArgs(
name="string",
capacity=0,
family="string",
size="string",
tier=azure_native.community.SkuTier.FREE,
),
tags={
"string": "string",
})
const communityTrainingResource = new azure_native.community.CommunityTraining("communityTrainingResource", {
disasterRecoveryEnabled: false,
identityConfiguration: {
clientId: "string",
clientSecret: "string",
domainName: "string",
identityType: "string",
tenantId: "string",
b2cAuthenticationPolicy: "string",
b2cPasswordResetPolicy: "string",
customLoginParameters: "string",
teamsEnabled: false,
},
portalAdminEmailAddress: "string",
portalName: "string",
portalOwnerEmailAddress: "string",
portalOwnerOrganizationName: "string",
resourceGroupName: "string",
zoneRedundancyEnabled: false,
communityTrainingName: "string",
location: "string",
sku: {
name: "string",
capacity: 0,
family: "string",
size: "string",
tier: azure_native.community.SkuTier.Free,
},
tags: {
string: "string",
},
});
type: azure-native:community:CommunityTraining
properties:
communityTrainingName: string
disasterRecoveryEnabled: false
identityConfiguration:
b2cAuthenticationPolicy: string
b2cPasswordResetPolicy: string
clientId: string
clientSecret: string
customLoginParameters: string
domainName: string
identityType: string
teamsEnabled: false
tenantId: string
location: string
portalAdminEmailAddress: string
portalName: string
portalOwnerEmailAddress: string
portalOwnerOrganizationName: string
resourceGroupName: string
sku:
capacity: 0
family: string
name: string
size: string
tier: Free
tags:
string: string
zoneRedundancyEnabled: false
CommunityTraining 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 CommunityTraining resource accepts the following input properties:
- Disaster
Recovery boolEnabled - To indicate whether the Community Training instance has Disaster Recovery enabled
- Identity
Configuration Pulumi.Azure Native. Community. Inputs. Identity Configuration Properties - The identity configuration of the Community Training resource
- Portal
Admin stringEmail Address - The email address of the portal admin
- Portal
Name string - The portal name (website name) of the Community Training instance
- Portal
Owner stringEmail Address - The email address of the portal owner. Will be used as the primary contact
- Portal
Owner stringOrganization Name - The organization name of the portal owner
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Zone
Redundancy boolEnabled - To indicate whether the Community Training instance has Zone Redundancy enabled
- Community
Training stringName - The name of the Community Training Resource
- Location string
- The geo-location where the resource lives
- Sku
Pulumi.
Azure Native. Community. Inputs. Sku - The SKU (Stock Keeping Unit) assigned to this resource.
- Dictionary<string, string>
- Resource tags.
- Disaster
Recovery boolEnabled - To indicate whether the Community Training instance has Disaster Recovery enabled
- Identity
Configuration IdentityConfiguration Properties Args - The identity configuration of the Community Training resource
- Portal
Admin stringEmail Address - The email address of the portal admin
- Portal
Name string - The portal name (website name) of the Community Training instance
- Portal
Owner stringEmail Address - The email address of the portal owner. Will be used as the primary contact
- Portal
Owner stringOrganization Name - The organization name of the portal owner
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Zone
Redundancy boolEnabled - To indicate whether the Community Training instance has Zone Redundancy enabled
- Community
Training stringName - The name of the Community Training Resource
- Location string
- The geo-location where the resource lives
- Sku
Sku
Args - The SKU (Stock Keeping Unit) assigned to this resource.
- map[string]string
- Resource tags.
- disaster
Recovery BooleanEnabled - To indicate whether the Community Training instance has Disaster Recovery enabled
- identity
Configuration IdentityConfiguration Properties - The identity configuration of the Community Training resource
- portal
Admin StringEmail Address - The email address of the portal admin
- portal
Name String - The portal name (website name) of the Community Training instance
- portal
Owner StringEmail Address - The email address of the portal owner. Will be used as the primary contact
- portal
Owner StringOrganization Name - The organization name of the portal owner
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- zone
Redundancy BooleanEnabled - To indicate whether the Community Training instance has Zone Redundancy enabled
- community
Training StringName - The name of the Community Training Resource
- location String
- The geo-location where the resource lives
- sku Sku
- The SKU (Stock Keeping Unit) assigned to this resource.
- Map<String,String>
- Resource tags.
- disaster
Recovery booleanEnabled - To indicate whether the Community Training instance has Disaster Recovery enabled
- identity
Configuration IdentityConfiguration Properties - The identity configuration of the Community Training resource
- portal
Admin stringEmail Address - The email address of the portal admin
- portal
Name string - The portal name (website name) of the Community Training instance
- portal
Owner stringEmail Address - The email address of the portal owner. Will be used as the primary contact
- portal
Owner stringOrganization Name - The organization name of the portal owner
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- zone
Redundancy booleanEnabled - To indicate whether the Community Training instance has Zone Redundancy enabled
- community
Training stringName - The name of the Community Training Resource
- location string
- The geo-location where the resource lives
- sku Sku
- The SKU (Stock Keeping Unit) assigned to this resource.
- {[key: string]: string}
- Resource tags.
- disaster_
recovery_ boolenabled - To indicate whether the Community Training instance has Disaster Recovery enabled
- identity_
configuration IdentityConfiguration Properties Args - The identity configuration of the Community Training resource
- portal_
admin_ stremail_ address - The email address of the portal admin
- portal_
name str - The portal name (website name) of the Community Training instance
- portal_
owner_ stremail_ address - The email address of the portal owner. Will be used as the primary contact
- portal_
owner_ strorganization_ name - The organization name of the portal owner
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- zone_
redundancy_ boolenabled - To indicate whether the Community Training instance has Zone Redundancy enabled
- community_
training_ strname - The name of the Community Training Resource
- location str
- The geo-location where the resource lives
- sku
Sku
Args - The SKU (Stock Keeping Unit) assigned to this resource.
- Mapping[str, str]
- Resource tags.
- disaster
Recovery BooleanEnabled - To indicate whether the Community Training instance has Disaster Recovery enabled
- identity
Configuration Property Map - The identity configuration of the Community Training resource
- portal
Admin StringEmail Address - The email address of the portal admin
- portal
Name String - The portal name (website name) of the Community Training instance
- portal
Owner StringEmail Address - The email address of the portal owner. Will be used as the primary contact
- portal
Owner StringOrganization Name - The organization name of the portal owner
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- zone
Redundancy BooleanEnabled - To indicate whether the Community Training instance has Zone Redundancy enabled
- community
Training StringName - The name of the Community Training Resource
- location String
- The geo-location where the resource lives
- sku Property Map
- The SKU (Stock Keeping Unit) assigned to this resource.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the CommunityTraining resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The status of the last operation.
- System
Data Pulumi.Azure Native. Community. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- 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
- Provisioning
State string - The status of the last operation.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- 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
- provisioning
State String - The status of the last operation.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- 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
- provisioning
State string - The status of the last operation.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- 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
- provisioning_
state str - The status of the last operation.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- 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
- provisioning
State String - The status of the last operation.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
IdentityConfigurationProperties, IdentityConfigurationPropertiesArgs
- Client
Id string - The clientId of the application registered in the selected identity provider for the Community Training Resource
- Client
Secret string - The client secret of the application registered in the selected identity provider for the Community Training Resource
- Domain
Name string - The domain name of the selected identity provider for the Community Training Resource
- Identity
Type string - The identity type of the Community Training Resource
- Tenant
Id string - The tenantId of the selected identity provider for the Community Training Resource
- B2c
Authentication stringPolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- B2c
Password stringReset Policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- Custom
Login stringParameters - The custom login parameters for the Community Training Resource
- Teams
Enabled bool - To indicate whether the Community Training Resource has Teams enabled
- Client
Id string - The clientId of the application registered in the selected identity provider for the Community Training Resource
- Client
Secret string - The client secret of the application registered in the selected identity provider for the Community Training Resource
- Domain
Name string - The domain name of the selected identity provider for the Community Training Resource
- Identity
Type string - The identity type of the Community Training Resource
- Tenant
Id string - The tenantId of the selected identity provider for the Community Training Resource
- B2c
Authentication stringPolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- B2c
Password stringReset Policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- Custom
Login stringParameters - The custom login parameters for the Community Training Resource
- Teams
Enabled bool - To indicate whether the Community Training Resource has Teams enabled
- client
Id String - The clientId of the application registered in the selected identity provider for the Community Training Resource
- client
Secret String - The client secret of the application registered in the selected identity provider for the Community Training Resource
- domain
Name String - The domain name of the selected identity provider for the Community Training Resource
- identity
Type String - The identity type of the Community Training Resource
- tenant
Id String - The tenantId of the selected identity provider for the Community Training Resource
- b2c
Authentication StringPolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- b2c
Password StringReset Policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- custom
Login StringParameters - The custom login parameters for the Community Training Resource
- teams
Enabled Boolean - To indicate whether the Community Training Resource has Teams enabled
- client
Id string - The clientId of the application registered in the selected identity provider for the Community Training Resource
- client
Secret string - The client secret of the application registered in the selected identity provider for the Community Training Resource
- domain
Name string - The domain name of the selected identity provider for the Community Training Resource
- identity
Type string - The identity type of the Community Training Resource
- tenant
Id string - The tenantId of the selected identity provider for the Community Training Resource
- b2c
Authentication stringPolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- b2c
Password stringReset Policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- custom
Login stringParameters - The custom login parameters for the Community Training Resource
- teams
Enabled boolean - To indicate whether the Community Training Resource has Teams enabled
- client_
id str - The clientId of the application registered in the selected identity provider for the Community Training Resource
- client_
secret str - The client secret of the application registered in the selected identity provider for the Community Training Resource
- domain_
name str - The domain name of the selected identity provider for the Community Training Resource
- identity_
type str - The identity type of the Community Training Resource
- tenant_
id str - The tenantId of the selected identity provider for the Community Training Resource
- b2c_
authentication_ strpolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- b2c_
password_ strreset_ policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- custom_
login_ strparameters - The custom login parameters for the Community Training Resource
- teams_
enabled bool - To indicate whether the Community Training Resource has Teams enabled
- client
Id String - The clientId of the application registered in the selected identity provider for the Community Training Resource
- client
Secret String - The client secret of the application registered in the selected identity provider for the Community Training Resource
- domain
Name String - The domain name of the selected identity provider for the Community Training Resource
- identity
Type String - The identity type of the Community Training Resource
- tenant
Id String - The tenantId of the selected identity provider for the Community Training Resource
- b2c
Authentication StringPolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- b2c
Password StringReset Policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- custom
Login StringParameters - The custom login parameters for the Community Training Resource
- teams
Enabled Boolean - To indicate whether the Community Training Resource has Teams enabled
IdentityConfigurationPropertiesResponse, IdentityConfigurationPropertiesResponseArgs
- Client
Id string - The clientId of the application registered in the selected identity provider for the Community Training Resource
- Client
Secret string - The client secret of the application registered in the selected identity provider for the Community Training Resource
- Domain
Name string - The domain name of the selected identity provider for the Community Training Resource
- Identity
Type string - The identity type of the Community Training Resource
- Tenant
Id string - The tenantId of the selected identity provider for the Community Training Resource
- B2c
Authentication stringPolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- B2c
Password stringReset Policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- Custom
Login stringParameters - The custom login parameters for the Community Training Resource
- Teams
Enabled bool - To indicate whether the Community Training Resource has Teams enabled
- Client
Id string - The clientId of the application registered in the selected identity provider for the Community Training Resource
- Client
Secret string - The client secret of the application registered in the selected identity provider for the Community Training Resource
- Domain
Name string - The domain name of the selected identity provider for the Community Training Resource
- Identity
Type string - The identity type of the Community Training Resource
- Tenant
Id string - The tenantId of the selected identity provider for the Community Training Resource
- B2c
Authentication stringPolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- B2c
Password stringReset Policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- Custom
Login stringParameters - The custom login parameters for the Community Training Resource
- Teams
Enabled bool - To indicate whether the Community Training Resource has Teams enabled
- client
Id String - The clientId of the application registered in the selected identity provider for the Community Training Resource
- client
Secret String - The client secret of the application registered in the selected identity provider for the Community Training Resource
- domain
Name String - The domain name of the selected identity provider for the Community Training Resource
- identity
Type String - The identity type of the Community Training Resource
- tenant
Id String - The tenantId of the selected identity provider for the Community Training Resource
- b2c
Authentication StringPolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- b2c
Password StringReset Policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- custom
Login StringParameters - The custom login parameters for the Community Training Resource
- teams
Enabled Boolean - To indicate whether the Community Training Resource has Teams enabled
- client
Id string - The clientId of the application registered in the selected identity provider for the Community Training Resource
- client
Secret string - The client secret of the application registered in the selected identity provider for the Community Training Resource
- domain
Name string - The domain name of the selected identity provider for the Community Training Resource
- identity
Type string - The identity type of the Community Training Resource
- tenant
Id string - The tenantId of the selected identity provider for the Community Training Resource
- b2c
Authentication stringPolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- b2c
Password stringReset Policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- custom
Login stringParameters - The custom login parameters for the Community Training Resource
- teams
Enabled boolean - To indicate whether the Community Training Resource has Teams enabled
- client_
id str - The clientId of the application registered in the selected identity provider for the Community Training Resource
- client_
secret str - The client secret of the application registered in the selected identity provider for the Community Training Resource
- domain_
name str - The domain name of the selected identity provider for the Community Training Resource
- identity_
type str - The identity type of the Community Training Resource
- tenant_
id str - The tenantId of the selected identity provider for the Community Training Resource
- b2c_
authentication_ strpolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- b2c_
password_ strreset_ policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- custom_
login_ strparameters - The custom login parameters for the Community Training Resource
- teams_
enabled bool - To indicate whether the Community Training Resource has Teams enabled
- client
Id String - The clientId of the application registered in the selected identity provider for the Community Training Resource
- client
Secret String - The client secret of the application registered in the selected identity provider for the Community Training Resource
- domain
Name String - The domain name of the selected identity provider for the Community Training Resource
- identity
Type String - The identity type of the Community Training Resource
- tenant
Id String - The tenantId of the selected identity provider for the Community Training Resource
- b2c
Authentication StringPolicy - The name of the authentication policy registered in ADB2C for the Community Training Resource
- b2c
Password StringReset Policy - The name of the password reset policy registered in ADB2C for the Community Training Resource
- custom
Login StringParameters - The custom login parameters for the Community Training Resource
- teams
Enabled Boolean - To indicate whether the Community Training Resource has Teams enabled
Sku, SkuArgs
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
Pulumi.
Azure Native. Community. Sku Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name str
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier "Free" | "Basic" | "Standard" | "Premium"
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
SkuResponse, SkuResponseArgs
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name str
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier str
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
SkuTier, SkuTierArgs
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Sku
Tier Free - Free
- Sku
Tier Basic - Basic
- Sku
Tier Standard - Standard
- Sku
Tier Premium - Premium
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- FREE
- Free
- BASIC
- Basic
- STANDARD
- Standard
- PREMIUM
- Premium
- "Free"
- Free
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
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:community:CommunityTraining ctApplication /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Community/communityTrainings/{communityTrainingName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0