azure-native.devtestlab.ServiceFabric
Explore with Pulumi AI
A Service Fabric. Azure REST API version: 2018-09-15. Prior API version in Azure Native 1.x: 2018-09-15.
Example Usage
ServiceFabrics_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var serviceFabric = new AzureNative.DevTestLab.ServiceFabric("serviceFabric", new()
    {
        EnvironmentId = "{environmentId}",
        ExternalServiceFabricId = "{serviceFabricId}",
        LabName = "{labName}",
        Location = "{location}",
        Name = "{serviceFabricName}",
        ResourceGroupName = "resourceGroupName",
        Tags = 
        {
            { "tagName1", "tagValue1" },
        },
        UserName = "{userName}",
    });
});
package main
import (
	devtestlab "github.com/pulumi/pulumi-azure-native-sdk/devtestlab/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := devtestlab.NewServiceFabric(ctx, "serviceFabric", &devtestlab.ServiceFabricArgs{
			EnvironmentId:           pulumi.String("{environmentId}"),
			ExternalServiceFabricId: pulumi.String("{serviceFabricId}"),
			LabName:                 pulumi.String("{labName}"),
			Location:                pulumi.String("{location}"),
			Name:                    pulumi.String("{serviceFabricName}"),
			ResourceGroupName:       pulumi.String("resourceGroupName"),
			Tags: pulumi.StringMap{
				"tagName1": pulumi.String("tagValue1"),
			},
			UserName: pulumi.String("{userName}"),
		})
		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.devtestlab.ServiceFabric;
import com.pulumi.azurenative.devtestlab.ServiceFabricArgs;
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 serviceFabric = new ServiceFabric("serviceFabric", ServiceFabricArgs.builder()
            .environmentId("{environmentId}")
            .externalServiceFabricId("{serviceFabricId}")
            .labName("{labName}")
            .location("{location}")
            .name("{serviceFabricName}")
            .resourceGroupName("resourceGroupName")
            .tags(Map.of("tagName1", "tagValue1"))
            .userName("{userName}")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const serviceFabric = new azure_native.devtestlab.ServiceFabric("serviceFabric", {
    environmentId: "{environmentId}",
    externalServiceFabricId: "{serviceFabricId}",
    labName: "{labName}",
    location: "{location}",
    name: "{serviceFabricName}",
    resourceGroupName: "resourceGroupName",
    tags: {
        tagName1: "tagValue1",
    },
    userName: "{userName}",
});
import pulumi
import pulumi_azure_native as azure_native
service_fabric = azure_native.devtestlab.ServiceFabric("serviceFabric",
    environment_id="{environmentId}",
    external_service_fabric_id="{serviceFabricId}",
    lab_name="{labName}",
    location="{location}",
    name="{serviceFabricName}",
    resource_group_name="resourceGroupName",
    tags={
        "tagName1": "tagValue1",
    },
    user_name="{userName}")
resources:
  serviceFabric:
    type: azure-native:devtestlab:ServiceFabric
    properties:
      environmentId: '{environmentId}'
      externalServiceFabricId: '{serviceFabricId}'
      labName: '{labName}'
      location: '{location}'
      name: '{serviceFabricName}'
      resourceGroupName: resourceGroupName
      tags:
        tagName1: tagValue1
      userName: '{userName}'
Create ServiceFabric Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceFabric(name: string, args: ServiceFabricArgs, opts?: CustomResourceOptions);@overload
def ServiceFabric(resource_name: str,
                  args: ServiceFabricArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def ServiceFabric(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  lab_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  user_name: Optional[str] = None,
                  environment_id: Optional[str] = None,
                  external_service_fabric_id: Optional[str] = None,
                  location: Optional[str] = None,
                  name: Optional[str] = None,
                  tags: Optional[Mapping[str, str]] = None)func NewServiceFabric(ctx *Context, name string, args ServiceFabricArgs, opts ...ResourceOption) (*ServiceFabric, error)public ServiceFabric(string name, ServiceFabricArgs args, CustomResourceOptions? opts = null)
public ServiceFabric(String name, ServiceFabricArgs args)
public ServiceFabric(String name, ServiceFabricArgs args, CustomResourceOptions options)
type: azure-native:devtestlab:ServiceFabric
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 ServiceFabricArgs
- 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 ServiceFabricArgs
- 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 ServiceFabricArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceFabricArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceFabricArgs
- 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 serviceFabricResource = new AzureNative.DevTestLab.ServiceFabric("serviceFabricResource", new()
{
    LabName = "string",
    ResourceGroupName = "string",
    UserName = "string",
    EnvironmentId = "string",
    ExternalServiceFabricId = "string",
    Location = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := devtestlab.NewServiceFabric(ctx, "serviceFabricResource", &devtestlab.ServiceFabricArgs{
	LabName:                 pulumi.String("string"),
	ResourceGroupName:       pulumi.String("string"),
	UserName:                pulumi.String("string"),
	EnvironmentId:           pulumi.String("string"),
	ExternalServiceFabricId: pulumi.String("string"),
	Location:                pulumi.String("string"),
	Name:                    pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var serviceFabricResource = new ServiceFabric("serviceFabricResource", ServiceFabricArgs.builder()
    .labName("string")
    .resourceGroupName("string")
    .userName("string")
    .environmentId("string")
    .externalServiceFabricId("string")
    .location("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
service_fabric_resource = azure_native.devtestlab.ServiceFabric("serviceFabricResource",
    lab_name="string",
    resource_group_name="string",
    user_name="string",
    environment_id="string",
    external_service_fabric_id="string",
    location="string",
    name="string",
    tags={
        "string": "string",
    })
const serviceFabricResource = new azure_native.devtestlab.ServiceFabric("serviceFabricResource", {
    labName: "string",
    resourceGroupName: "string",
    userName: "string",
    environmentId: "string",
    externalServiceFabricId: "string",
    location: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:devtestlab:ServiceFabric
properties:
    environmentId: string
    externalServiceFabricId: string
    labName: string
    location: string
    name: string
    resourceGroupName: string
    tags:
        string: string
    userName: string
ServiceFabric 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 ServiceFabric resource accepts the following input properties:
- LabName string
- The name of the lab.
- ResourceGroup stringName 
- The name of the resource group.
- UserName string
- The name of the user profile.
- EnvironmentId string
- The resource id of the environment under which the service fabric resource is present
- ExternalService stringFabric Id 
- The backing service fabric resource's id
- Location string
- The location of the resource.
- Name string
- The name of the service fabric.
- Dictionary<string, string>
- The tags of the resource.
- LabName string
- The name of the lab.
- ResourceGroup stringName 
- The name of the resource group.
- UserName string
- The name of the user profile.
- EnvironmentId string
- The resource id of the environment under which the service fabric resource is present
- ExternalService stringFabric Id 
- The backing service fabric resource's id
- Location string
- The location of the resource.
- Name string
- The name of the service fabric.
- map[string]string
- The tags of the resource.
- labName String
- The name of the lab.
- resourceGroup StringName 
- The name of the resource group.
- userName String
- The name of the user profile.
- environmentId String
- The resource id of the environment under which the service fabric resource is present
- externalService StringFabric Id 
- The backing service fabric resource's id
- location String
- The location of the resource.
- name String
- The name of the service fabric.
- Map<String,String>
- The tags of the resource.
- labName string
- The name of the lab.
- resourceGroup stringName 
- The name of the resource group.
- userName string
- The name of the user profile.
- environmentId string
- The resource id of the environment under which the service fabric resource is present
- externalService stringFabric Id 
- The backing service fabric resource's id
- location string
- The location of the resource.
- name string
- The name of the service fabric.
- {[key: string]: string}
- The tags of the resource.
- lab_name str
- The name of the lab.
- resource_group_ strname 
- The name of the resource group.
- user_name str
- The name of the user profile.
- environment_id str
- The resource id of the environment under which the service fabric resource is present
- external_service_ strfabric_ id 
- The backing service fabric resource's id
- location str
- The location of the resource.
- name str
- The name of the service fabric.
- Mapping[str, str]
- The tags of the resource.
- labName String
- The name of the lab.
- resourceGroup StringName 
- The name of the resource group.
- userName String
- The name of the user profile.
- environmentId String
- The resource id of the environment under which the service fabric resource is present
- externalService StringFabric Id 
- The backing service fabric resource's id
- location String
- The location of the resource.
- name String
- The name of the service fabric.
- Map<String>
- The tags of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceFabric resource produces the following output properties:
- ApplicableSchedule Pulumi.Azure Native. Dev Test Lab. Outputs. Applicable Schedule Response 
- The applicable schedule for the virtual machine.
- Id string
- The provider-assigned unique ID for this managed resource.
- ProvisioningState string
- The provisioning status of the resource.
- Type string
- The type of the resource.
- UniqueIdentifier string
- The unique immutable identifier of a resource (Guid).
- ApplicableSchedule ApplicableSchedule Response 
- The applicable schedule for the virtual machine.
- Id string
- The provider-assigned unique ID for this managed resource.
- ProvisioningState string
- The provisioning status of the resource.
- Type string
- The type of the resource.
- UniqueIdentifier string
- The unique immutable identifier of a resource (Guid).
- applicableSchedule ApplicableSchedule Response 
- The applicable schedule for the virtual machine.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioningState String
- The provisioning status of the resource.
- type String
- The type of the resource.
- uniqueIdentifier String
- The unique immutable identifier of a resource (Guid).
- applicableSchedule ApplicableSchedule Response 
- The applicable schedule for the virtual machine.
- id string
- The provider-assigned unique ID for this managed resource.
- provisioningState string
- The provisioning status of the resource.
- type string
- The type of the resource.
- uniqueIdentifier string
- The unique immutable identifier of a resource (Guid).
- applicable_schedule ApplicableSchedule Response 
- The applicable schedule for the virtual machine.
- id str
- The provider-assigned unique ID for this managed resource.
- provisioning_state str
- The provisioning status of the resource.
- type str
- The type of the resource.
- unique_identifier str
- The unique immutable identifier of a resource (Guid).
- applicableSchedule Property Map
- The applicable schedule for the virtual machine.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioningState String
- The provisioning status of the resource.
- type String
- The type of the resource.
- uniqueIdentifier String
- The unique immutable identifier of a resource (Guid).
Supporting Types
ApplicableScheduleResponse, ApplicableScheduleResponseArgs      
- Id string
- The identifier of the resource.
- Name string
- The name of the resource.
- Type string
- The type of the resource.
- LabVms Pulumi.Shutdown Azure Native. Dev Test Lab. Inputs. Schedule Response 
- The auto-shutdown schedule, if one has been set at the lab or lab resource level.
- LabVms Pulumi.Startup Azure Native. Dev Test Lab. Inputs. Schedule Response 
- The auto-startup schedule, if one has been set at the lab or lab resource level.
- Location string
- The location of the resource.
- Dictionary<string, string>
- The tags of the resource.
- Id string
- The identifier of the resource.
- Name string
- The name of the resource.
- Type string
- The type of the resource.
- LabVms ScheduleShutdown Response 
- The auto-shutdown schedule, if one has been set at the lab or lab resource level.
- LabVms ScheduleStartup Response 
- The auto-startup schedule, if one has been set at the lab or lab resource level.
- Location string
- The location of the resource.
- map[string]string
- The tags of the resource.
- id String
- The identifier of the resource.
- name String
- The name of the resource.
- type String
- The type of the resource.
- labVms ScheduleShutdown Response 
- The auto-shutdown schedule, if one has been set at the lab or lab resource level.
- labVms ScheduleStartup Response 
- The auto-startup schedule, if one has been set at the lab or lab resource level.
- location String
- The location of the resource.
- Map<String,String>
- The tags of the resource.
- id string
- The identifier of the resource.
- name string
- The name of the resource.
- type string
- The type of the resource.
- labVms ScheduleShutdown Response 
- The auto-shutdown schedule, if one has been set at the lab or lab resource level.
- labVms ScheduleStartup Response 
- The auto-startup schedule, if one has been set at the lab or lab resource level.
- location string
- The location of the resource.
- {[key: string]: string}
- The tags of the resource.
- id str
- The identifier of the resource.
- name str
- The name of the resource.
- type str
- The type of the resource.
- lab_vms_ Scheduleshutdown Response 
- The auto-shutdown schedule, if one has been set at the lab or lab resource level.
- lab_vms_ Schedulestartup Response 
- The auto-startup schedule, if one has been set at the lab or lab resource level.
- location str
- The location of the resource.
- Mapping[str, str]
- The tags of the resource.
- id String
- The identifier of the resource.
- name String
- The name of the resource.
- type String
- The type of the resource.
- labVms Property MapShutdown 
- The auto-shutdown schedule, if one has been set at the lab or lab resource level.
- labVms Property MapStartup 
- The auto-startup schedule, if one has been set at the lab or lab resource level.
- location String
- The location of the resource.
- Map<String>
- The tags of the resource.
DayDetailsResponse, DayDetailsResponseArgs      
- Time string
- The time of day the schedule will occur.
- Time string
- The time of day the schedule will occur.
- time String
- The time of day the schedule will occur.
- time string
- The time of day the schedule will occur.
- time str
- The time of day the schedule will occur.
- time String
- The time of day the schedule will occur.
HourDetailsResponse, HourDetailsResponseArgs      
- Minute int
- Minutes of the hour the schedule will run.
- Minute int
- Minutes of the hour the schedule will run.
- minute Integer
- Minutes of the hour the schedule will run.
- minute number
- Minutes of the hour the schedule will run.
- minute int
- Minutes of the hour the schedule will run.
- minute Number
- Minutes of the hour the schedule will run.
NotificationSettingsResponse, NotificationSettingsResponseArgs      
- EmailRecipient string
- The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- NotificationLocale string
- The locale to use when sending a notification (fallback for unsupported languages is EN).
- Status string
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- TimeIn intMinutes 
- Time in minutes before event at which notification will be sent.
- WebhookUrl string
- The webhook URL to which the notification will be sent.
- EmailRecipient string
- The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- NotificationLocale string
- The locale to use when sending a notification (fallback for unsupported languages is EN).
- Status string
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- TimeIn intMinutes 
- Time in minutes before event at which notification will be sent.
- WebhookUrl string
- The webhook URL to which the notification will be sent.
- emailRecipient String
- The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notificationLocale String
- The locale to use when sending a notification (fallback for unsupported languages is EN).
- status String
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- timeIn IntegerMinutes 
- Time in minutes before event at which notification will be sent.
- webhookUrl String
- The webhook URL to which the notification will be sent.
- emailRecipient string
- The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notificationLocale string
- The locale to use when sending a notification (fallback for unsupported languages is EN).
- status string
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- timeIn numberMinutes 
- Time in minutes before event at which notification will be sent.
- webhookUrl string
- The webhook URL to which the notification will be sent.
- email_recipient str
- The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification_locale str
- The locale to use when sending a notification (fallback for unsupported languages is EN).
- status str
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- time_in_ intminutes 
- Time in minutes before event at which notification will be sent.
- webhook_url str
- The webhook URL to which the notification will be sent.
- emailRecipient String
- The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notificationLocale String
- The locale to use when sending a notification (fallback for unsupported languages is EN).
- status String
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- timeIn NumberMinutes 
- Time in minutes before event at which notification will be sent.
- webhookUrl String
- The webhook URL to which the notification will be sent.
ScheduleResponse, ScheduleResponseArgs    
- CreatedDate string
- The creation date of the schedule.
- Id string
- The identifier of the resource.
- Name string
- The name of the resource.
- ProvisioningState string
- The provisioning status of the resource.
- Type string
- The type of the resource.
- UniqueIdentifier string
- The unique immutable identifier of a resource (Guid).
- DailyRecurrence Pulumi.Azure Native. Dev Test Lab. Inputs. Day Details Response 
- If the schedule will occur once each day of the week, specify the daily recurrence.
- HourlyRecurrence Pulumi.Azure Native. Dev Test Lab. Inputs. Hour Details Response 
- If the schedule will occur multiple times a day, specify the hourly recurrence.
- Location string
- The location of the resource.
- NotificationSettings Pulumi.Azure Native. Dev Test Lab. Inputs. Notification Settings Response 
- Notification settings.
- Status string
- The status of the schedule (i.e. Enabled, Disabled)
- Dictionary<string, string>
- The tags of the resource.
- TargetResource stringId 
- The resource ID to which the schedule belongs
- TaskType string
- The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- TimeZone stringId 
- The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md)
- WeeklyRecurrence Pulumi.Azure Native. Dev Test Lab. Inputs. Week Details Response 
- If the schedule will occur only some days of the week, specify the weekly recurrence.
- CreatedDate string
- The creation date of the schedule.
- Id string
- The identifier of the resource.
- Name string
- The name of the resource.
- ProvisioningState string
- The provisioning status of the resource.
- Type string
- The type of the resource.
- UniqueIdentifier string
- The unique immutable identifier of a resource (Guid).
- DailyRecurrence DayDetails Response 
- If the schedule will occur once each day of the week, specify the daily recurrence.
- HourlyRecurrence HourDetails Response 
- If the schedule will occur multiple times a day, specify the hourly recurrence.
- Location string
- The location of the resource.
- NotificationSettings NotificationSettings Response 
- Notification settings.
- Status string
- The status of the schedule (i.e. Enabled, Disabled)
- map[string]string
- The tags of the resource.
- TargetResource stringId 
- The resource ID to which the schedule belongs
- TaskType string
- The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- TimeZone stringId 
- The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md)
- WeeklyRecurrence WeekDetails Response 
- If the schedule will occur only some days of the week, specify the weekly recurrence.
- createdDate String
- The creation date of the schedule.
- id String
- The identifier of the resource.
- name String
- The name of the resource.
- provisioningState String
- The provisioning status of the resource.
- type String
- The type of the resource.
- uniqueIdentifier String
- The unique immutable identifier of a resource (Guid).
- dailyRecurrence DayDetails Response 
- If the schedule will occur once each day of the week, specify the daily recurrence.
- hourlyRecurrence HourDetails Response 
- If the schedule will occur multiple times a day, specify the hourly recurrence.
- location String
- The location of the resource.
- notificationSettings NotificationSettings Response 
- Notification settings.
- status String
- The status of the schedule (i.e. Enabled, Disabled)
- Map<String,String>
- The tags of the resource.
- targetResource StringId 
- The resource ID to which the schedule belongs
- taskType String
- The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- timeZone StringId 
- The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md)
- weeklyRecurrence WeekDetails Response 
- If the schedule will occur only some days of the week, specify the weekly recurrence.
- createdDate string
- The creation date of the schedule.
- id string
- The identifier of the resource.
- name string
- The name of the resource.
- provisioningState string
- The provisioning status of the resource.
- type string
- The type of the resource.
- uniqueIdentifier string
- The unique immutable identifier of a resource (Guid).
- dailyRecurrence DayDetails Response 
- If the schedule will occur once each day of the week, specify the daily recurrence.
- hourlyRecurrence HourDetails Response 
- If the schedule will occur multiple times a day, specify the hourly recurrence.
- location string
- The location of the resource.
- notificationSettings NotificationSettings Response 
- Notification settings.
- status string
- The status of the schedule (i.e. Enabled, Disabled)
- {[key: string]: string}
- The tags of the resource.
- targetResource stringId 
- The resource ID to which the schedule belongs
- taskType string
- The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- timeZone stringId 
- The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md)
- weeklyRecurrence WeekDetails Response 
- If the schedule will occur only some days of the week, specify the weekly recurrence.
- created_date str
- The creation date of the schedule.
- id str
- The identifier of the resource.
- name str
- The name of the resource.
- provisioning_state str
- The provisioning status of the resource.
- type str
- The type of the resource.
- unique_identifier str
- The unique immutable identifier of a resource (Guid).
- daily_recurrence DayDetails Response 
- If the schedule will occur once each day of the week, specify the daily recurrence.
- hourly_recurrence HourDetails Response 
- If the schedule will occur multiple times a day, specify the hourly recurrence.
- location str
- The location of the resource.
- notification_settings NotificationSettings Response 
- Notification settings.
- status str
- The status of the schedule (i.e. Enabled, Disabled)
- Mapping[str, str]
- The tags of the resource.
- target_resource_ strid 
- The resource ID to which the schedule belongs
- task_type str
- The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- time_zone_ strid 
- The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md)
- weekly_recurrence WeekDetails Response 
- If the schedule will occur only some days of the week, specify the weekly recurrence.
- createdDate String
- The creation date of the schedule.
- id String
- The identifier of the resource.
- name String
- The name of the resource.
- provisioningState String
- The provisioning status of the resource.
- type String
- The type of the resource.
- uniqueIdentifier String
- The unique immutable identifier of a resource (Guid).
- dailyRecurrence Property Map
- If the schedule will occur once each day of the week, specify the daily recurrence.
- hourlyRecurrence Property Map
- If the schedule will occur multiple times a day, specify the hourly recurrence.
- location String
- The location of the resource.
- notificationSettings Property Map
- Notification settings.
- status String
- The status of the schedule (i.e. Enabled, Disabled)
- Map<String>
- The tags of the resource.
- targetResource StringId 
- The resource ID to which the schedule belongs
- taskType String
- The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- timeZone StringId 
- The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md)
- weeklyRecurrence Property Map
- If the schedule will occur only some days of the week, specify the weekly recurrence.
WeekDetailsResponse, WeekDetailsResponseArgs      
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:devtestlab:ServiceFabric {serviceFabricName} /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{name} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0