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 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}")
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}",
});
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
The ServiceFabric resource accepts the following input properties:
- Lab
Name string - The name of the lab.
- Resource
Group stringName - The name of the resource group.
- User
Name string - The name of the user profile.
- Environment
Id string - The resource id of the environment under which the service fabric resource is present
- External
Service 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.
- Lab
Name string - The name of the lab.
- Resource
Group stringName - The name of the resource group.
- User
Name string - The name of the user profile.
- Environment
Id string - The resource id of the environment under which the service fabric resource is present
- External
Service 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.
- lab
Name String - The name of the lab.
- resource
Group StringName - The name of the resource group.
- user
Name String - The name of the user profile.
- environment
Id String - The resource id of the environment under which the service fabric resource is present
- external
Service 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.
- lab
Name string - The name of the lab.
- resource
Group stringName - The name of the resource group.
- user
Name string - The name of the user profile.
- environment
Id string - The resource id of the environment under which the service fabric resource is present
- external
Service 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.
- lab
Name String - The name of the lab.
- resource
Group StringName - The name of the resource group.
- user
Name String - The name of the user profile.
- environment
Id String - The resource id of the environment under which the service fabric resource is present
- external
Service 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:
- Applicable
Schedule 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.
- Provisioning
State string - The provisioning status of the resource.
- Type string
- The type of the resource.
- Unique
Identifier string - The unique immutable identifier of a resource (Guid).
- Applicable
Schedule ApplicableSchedule Response - The applicable schedule for the virtual machine.
- Id string
- The provider-assigned unique ID for this managed resource.
- Provisioning
State string - The provisioning status of the resource.
- Type string
- The type of the resource.
- Unique
Identifier string - The unique immutable identifier of a resource (Guid).
- applicable
Schedule ApplicableSchedule Response - The applicable schedule for the virtual machine.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioning
State String - The provisioning status of the resource.
- type String
- The type of the resource.
- unique
Identifier String - The unique immutable identifier of a resource (Guid).
- applicable
Schedule ApplicableSchedule Response - The applicable schedule for the virtual machine.
- id string
- The provider-assigned unique ID for this managed resource.
- provisioning
State string - The provisioning status of the resource.
- type string
- The type of the resource.
- unique
Identifier 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).
- applicable
Schedule Property Map - The applicable schedule for the virtual machine.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioning
State String - The provisioning status of the resource.
- type String
- The type of the resource.
- unique
Identifier 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.
- Lab
Vms 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.
- Lab
Vms 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.
- 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 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.
- 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 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.
- 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 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.
- lab
Vms Property MapShutdown - The auto-shutdown schedule, if one has been set at the lab or lab resource level.
- lab
Vms 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
- Email
Recipient string - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- Notification
Locale 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).
- Time
In intMinutes - Time in minutes before event at which notification will be sent.
- Webhook
Url string - The webhook URL to which the notification will be sent.
- Email
Recipient string - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- Notification
Locale 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).
- Time
In intMinutes - Time in minutes before event at which notification will be sent.
- Webhook
Url string - The webhook URL to which the notification will be sent.
- email
Recipient String - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification
Locale 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).
- time
In IntegerMinutes - Time in minutes before event at which notification will be sent.
- webhook
Url String - The webhook URL to which the notification will be sent.
- email
Recipient string - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification
Locale 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).
- time
In numberMinutes - Time in minutes before event at which notification will be sent.
- webhook
Url 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.
- email
Recipient String - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification
Locale 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).
- time
In NumberMinutes - Time in minutes before event at which notification will be sent.
- webhook
Url String - The webhook URL to which the notification will be sent.
ScheduleResponse, ScheduleResponseArgs
- Created
Date string - The creation date of the schedule.
- Id string
- The identifier of the resource.
- Name string
- The name of the resource.
- Provisioning
State string - The provisioning status of the resource.
- Type string
- The type of the resource.
- Unique
Identifier string - The unique immutable identifier of a resource (Guid).
- Daily
Recurrence 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.
- Hourly
Recurrence 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.
- Notification
Settings 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.
- Target
Resource stringId - The resource ID to which the schedule belongs
- Task
Type string - The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- Time
Zone 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) - Weekly
Recurrence 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.
- Created
Date string - The creation date of the schedule.
- Id string
- The identifier of the resource.
- Name string
- The name of the resource.
- Provisioning
State string - The provisioning status of the resource.
- Type string
- The type of the resource.
- Unique
Identifier string - 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 string
- The location of the resource.
- Notification
Settings NotificationSettings Response - Notification settings.
- Status string
- The status of the schedule (i.e. Enabled, Disabled)
- map[string]string
- The tags of the resource.
- Target
Resource stringId - The resource ID to which the schedule belongs
- Task
Type string - The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- Time
Zone 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) - Weekly
Recurrence WeekDetails Response - If the schedule will occur only some days of the week, specify the weekly recurrence.
- created
Date String - The creation date of the schedule.
- id String
- The identifier of the resource.
- name String
- The name of the resource.
- provisioning
State String - The provisioning status of the resource.
- type String
- The type of the resource.
- unique
Identifier String - 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 String
- The location of the resource.
- notification
Settings NotificationSettings Response - Notification settings.
- status String
- The status of the schedule (i.e. Enabled, Disabled)
- Map<String,String>
- The tags of the resource.
- target
Resource StringId - The resource ID to which the schedule belongs
- task
Type String - The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- time
Zone 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) - weekly
Recurrence WeekDetails Response - If the schedule will occur only some days of the week, specify the weekly recurrence.
- created
Date string - The creation date of the schedule.
- id string
- The identifier of the resource.
- name string
- The name of the resource.
- provisioning
State string - The provisioning status of the resource.
- type string
- The type of the resource.
- unique
Identifier string - 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 string
- The location of the resource.
- notification
Settings NotificationSettings Response - Notification settings.
- status string
- The status of the schedule (i.e. Enabled, Disabled)
- {[key: string]: string}
- The tags of the resource.
- target
Resource stringId - The resource ID to which the schedule belongs
- task
Type string - The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- time
Zone 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) - weekly
Recurrence 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.
- created
Date String - The creation date of the schedule.
- id String
- The identifier of the resource.
- name String
- The name of the resource.
- provisioning
State String - The provisioning status of the resource.
- type String
- The type of the resource.
- unique
Identifier String - The unique immutable identifier of a resource (Guid).
- daily
Recurrence Property Map - If the schedule will occur once each day of the week, specify the daily recurrence.
- hourly
Recurrence Property Map - If the schedule will occur multiple times a day, specify the hourly recurrence.
- location String
- The location of the resource.
- notification
Settings Property Map - Notification settings.
- status String
- The status of the schedule (i.e. Enabled, Disabled)
- Map<String>
- The tags of the resource.
- target
Resource StringId - The resource ID to which the schedule belongs
- task
Type String - The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- time
Zone 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) - weekly
Recurrence 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