azure-native.sql.StartStopManagedInstanceSchedule
Explore with Pulumi AI
Managed instance’s Start/Stop schedule. Azure REST API version: 2022-11-01-preview.
Other available API versions: 2023-02-01-preview, 2023-05-01-preview, 2023-08-01-preview, 2024-05-01-preview.
Example Usage
Creates or updates the managed instance's Start/Stop schedule with all optional parameters specified.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var startStopManagedInstanceSchedule = new AzureNative.Sql.StartStopManagedInstanceSchedule("startStopManagedInstanceSchedule", new()
{
Description = "This is a schedule for our Dev/Test environment.",
ManagedInstanceName = "schedulemi",
ResourceGroupName = "schedulerg",
ScheduleList = new[]
{
new AzureNative.Sql.Inputs.ScheduleItemArgs
{
StartDay = AzureNative.Sql.DayOfWeek.Thursday,
StartTime = "18:00",
StopDay = AzureNative.Sql.DayOfWeek.Thursday,
StopTime = "17:00",
},
new AzureNative.Sql.Inputs.ScheduleItemArgs
{
StartDay = AzureNative.Sql.DayOfWeek.Thursday,
StartTime = "15:00",
StopDay = AzureNative.Sql.DayOfWeek.Thursday,
StopTime = "14:00",
},
},
StartStopScheduleName = "default",
TimeZoneId = "Central European Standard Time",
});
});
package main
import (
sql "github.com/pulumi/pulumi-azure-native-sdk/sql/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sql.NewStartStopManagedInstanceSchedule(ctx, "startStopManagedInstanceSchedule", &sql.StartStopManagedInstanceScheduleArgs{
Description: pulumi.String("This is a schedule for our Dev/Test environment."),
ManagedInstanceName: pulumi.String("schedulemi"),
ResourceGroupName: pulumi.String("schedulerg"),
ScheduleList: sql.ScheduleItemArray{
&sql.ScheduleItemArgs{
StartDay: pulumi.String(sql.DayOfWeekThursday),
StartTime: pulumi.String("18:00"),
StopDay: pulumi.String(sql.DayOfWeekThursday),
StopTime: pulumi.String("17:00"),
},
&sql.ScheduleItemArgs{
StartDay: pulumi.String(sql.DayOfWeekThursday),
StartTime: pulumi.String("15:00"),
StopDay: pulumi.String(sql.DayOfWeekThursday),
StopTime: pulumi.String("14:00"),
},
},
StartStopScheduleName: pulumi.String("default"),
TimeZoneId: pulumi.String("Central European Standard Time"),
})
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.sql.StartStopManagedInstanceSchedule;
import com.pulumi.azurenative.sql.StartStopManagedInstanceScheduleArgs;
import com.pulumi.azurenative.sql.inputs.ScheduleItemArgs;
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 startStopManagedInstanceSchedule = new StartStopManagedInstanceSchedule("startStopManagedInstanceSchedule", StartStopManagedInstanceScheduleArgs.builder()
.description("This is a schedule for our Dev/Test environment.")
.managedInstanceName("schedulemi")
.resourceGroupName("schedulerg")
.scheduleList(
ScheduleItemArgs.builder()
.startDay("Thursday")
.startTime("18:00")
.stopDay("Thursday")
.stopTime("17:00")
.build(),
ScheduleItemArgs.builder()
.startDay("Thursday")
.startTime("15:00")
.stopDay("Thursday")
.stopTime("14:00")
.build())
.startStopScheduleName("default")
.timeZoneId("Central European Standard Time")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
start_stop_managed_instance_schedule = azure_native.sql.StartStopManagedInstanceSchedule("startStopManagedInstanceSchedule",
description="This is a schedule for our Dev/Test environment.",
managed_instance_name="schedulemi",
resource_group_name="schedulerg",
schedule_list=[
{
"start_day": azure_native.sql.DayOfWeek.THURSDAY,
"start_time": "18:00",
"stop_day": azure_native.sql.DayOfWeek.THURSDAY,
"stop_time": "17:00",
},
{
"start_day": azure_native.sql.DayOfWeek.THURSDAY,
"start_time": "15:00",
"stop_day": azure_native.sql.DayOfWeek.THURSDAY,
"stop_time": "14:00",
},
],
start_stop_schedule_name="default",
time_zone_id="Central European Standard Time")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const startStopManagedInstanceSchedule = new azure_native.sql.StartStopManagedInstanceSchedule("startStopManagedInstanceSchedule", {
description: "This is a schedule for our Dev/Test environment.",
managedInstanceName: "schedulemi",
resourceGroupName: "schedulerg",
scheduleList: [
{
startDay: azure_native.sql.DayOfWeek.Thursday,
startTime: "18:00",
stopDay: azure_native.sql.DayOfWeek.Thursday,
stopTime: "17:00",
},
{
startDay: azure_native.sql.DayOfWeek.Thursday,
startTime: "15:00",
stopDay: azure_native.sql.DayOfWeek.Thursday,
stopTime: "14:00",
},
],
startStopScheduleName: "default",
timeZoneId: "Central European Standard Time",
});
resources:
startStopManagedInstanceSchedule:
type: azure-native:sql:StartStopManagedInstanceSchedule
properties:
description: This is a schedule for our Dev/Test environment.
managedInstanceName: schedulemi
resourceGroupName: schedulerg
scheduleList:
- startDay: Thursday
startTime: 18:00
stopDay: Thursday
stopTime: 17:00
- startDay: Thursday
startTime: 15:00
stopDay: Thursday
stopTime: 14:00
startStopScheduleName: default
timeZoneId: Central European Standard Time
Creates or updates the managed instance's Start/Stop schedule with no optional parameters specified.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var startStopManagedInstanceSchedule = new AzureNative.Sql.StartStopManagedInstanceSchedule("startStopManagedInstanceSchedule", new()
{
ManagedInstanceName = "schedulemi",
ResourceGroupName = "schedulerg",
ScheduleList = new[]
{
new AzureNative.Sql.Inputs.ScheduleItemArgs
{
StartDay = AzureNative.Sql.DayOfWeek.Thursday,
StartTime = "18:00",
StopDay = AzureNative.Sql.DayOfWeek.Thursday,
StopTime = "17:00",
},
new AzureNative.Sql.Inputs.ScheduleItemArgs
{
StartDay = AzureNative.Sql.DayOfWeek.Thursday,
StartTime = "15:00",
StopDay = AzureNative.Sql.DayOfWeek.Thursday,
StopTime = "14:00",
},
},
StartStopScheduleName = "default",
});
});
package main
import (
sql "github.com/pulumi/pulumi-azure-native-sdk/sql/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sql.NewStartStopManagedInstanceSchedule(ctx, "startStopManagedInstanceSchedule", &sql.StartStopManagedInstanceScheduleArgs{
ManagedInstanceName: pulumi.String("schedulemi"),
ResourceGroupName: pulumi.String("schedulerg"),
ScheduleList: sql.ScheduleItemArray{
&sql.ScheduleItemArgs{
StartDay: pulumi.String(sql.DayOfWeekThursday),
StartTime: pulumi.String("18:00"),
StopDay: pulumi.String(sql.DayOfWeekThursday),
StopTime: pulumi.String("17:00"),
},
&sql.ScheduleItemArgs{
StartDay: pulumi.String(sql.DayOfWeekThursday),
StartTime: pulumi.String("15:00"),
StopDay: pulumi.String(sql.DayOfWeekThursday),
StopTime: pulumi.String("14:00"),
},
},
StartStopScheduleName: pulumi.String("default"),
})
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.sql.StartStopManagedInstanceSchedule;
import com.pulumi.azurenative.sql.StartStopManagedInstanceScheduleArgs;
import com.pulumi.azurenative.sql.inputs.ScheduleItemArgs;
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 startStopManagedInstanceSchedule = new StartStopManagedInstanceSchedule("startStopManagedInstanceSchedule", StartStopManagedInstanceScheduleArgs.builder()
.managedInstanceName("schedulemi")
.resourceGroupName("schedulerg")
.scheduleList(
ScheduleItemArgs.builder()
.startDay("Thursday")
.startTime("18:00")
.stopDay("Thursday")
.stopTime("17:00")
.build(),
ScheduleItemArgs.builder()
.startDay("Thursday")
.startTime("15:00")
.stopDay("Thursday")
.stopTime("14:00")
.build())
.startStopScheduleName("default")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
start_stop_managed_instance_schedule = azure_native.sql.StartStopManagedInstanceSchedule("startStopManagedInstanceSchedule",
managed_instance_name="schedulemi",
resource_group_name="schedulerg",
schedule_list=[
{
"start_day": azure_native.sql.DayOfWeek.THURSDAY,
"start_time": "18:00",
"stop_day": azure_native.sql.DayOfWeek.THURSDAY,
"stop_time": "17:00",
},
{
"start_day": azure_native.sql.DayOfWeek.THURSDAY,
"start_time": "15:00",
"stop_day": azure_native.sql.DayOfWeek.THURSDAY,
"stop_time": "14:00",
},
],
start_stop_schedule_name="default")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const startStopManagedInstanceSchedule = new azure_native.sql.StartStopManagedInstanceSchedule("startStopManagedInstanceSchedule", {
managedInstanceName: "schedulemi",
resourceGroupName: "schedulerg",
scheduleList: [
{
startDay: azure_native.sql.DayOfWeek.Thursday,
startTime: "18:00",
stopDay: azure_native.sql.DayOfWeek.Thursday,
stopTime: "17:00",
},
{
startDay: azure_native.sql.DayOfWeek.Thursday,
startTime: "15:00",
stopDay: azure_native.sql.DayOfWeek.Thursday,
stopTime: "14:00",
},
],
startStopScheduleName: "default",
});
resources:
startStopManagedInstanceSchedule:
type: azure-native:sql:StartStopManagedInstanceSchedule
properties:
managedInstanceName: schedulemi
resourceGroupName: schedulerg
scheduleList:
- startDay: Thursday
startTime: 18:00
stopDay: Thursday
stopTime: 17:00
- startDay: Thursday
startTime: 15:00
stopDay: Thursday
stopTime: 14:00
startStopScheduleName: default
Create StartStopManagedInstanceSchedule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StartStopManagedInstanceSchedule(name: string, args: StartStopManagedInstanceScheduleArgs, opts?: CustomResourceOptions);
@overload
def StartStopManagedInstanceSchedule(resource_name: str,
args: StartStopManagedInstanceScheduleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StartStopManagedInstanceSchedule(resource_name: str,
opts: Optional[ResourceOptions] = None,
managed_instance_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
schedule_list: Optional[Sequence[ScheduleItemArgs]] = None,
description: Optional[str] = None,
start_stop_schedule_name: Optional[str] = None,
time_zone_id: Optional[str] = None)
func NewStartStopManagedInstanceSchedule(ctx *Context, name string, args StartStopManagedInstanceScheduleArgs, opts ...ResourceOption) (*StartStopManagedInstanceSchedule, error)
public StartStopManagedInstanceSchedule(string name, StartStopManagedInstanceScheduleArgs args, CustomResourceOptions? opts = null)
public StartStopManagedInstanceSchedule(String name, StartStopManagedInstanceScheduleArgs args)
public StartStopManagedInstanceSchedule(String name, StartStopManagedInstanceScheduleArgs args, CustomResourceOptions options)
type: azure-native:sql:StartStopManagedInstanceSchedule
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 StartStopManagedInstanceScheduleArgs
- 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 StartStopManagedInstanceScheduleArgs
- 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 StartStopManagedInstanceScheduleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StartStopManagedInstanceScheduleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StartStopManagedInstanceScheduleArgs
- 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 startStopManagedInstanceScheduleResource = new AzureNative.Sql.StartStopManagedInstanceSchedule("startStopManagedInstanceScheduleResource", new()
{
ManagedInstanceName = "string",
ResourceGroupName = "string",
ScheduleList = new[]
{
new AzureNative.Sql.Inputs.ScheduleItemArgs
{
StartDay = "string",
StartTime = "string",
StopDay = "string",
StopTime = "string",
},
},
Description = "string",
StartStopScheduleName = "string",
TimeZoneId = "string",
});
example, err := sql.NewStartStopManagedInstanceSchedule(ctx, "startStopManagedInstanceScheduleResource", &sql.StartStopManagedInstanceScheduleArgs{
ManagedInstanceName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ScheduleList: sql.ScheduleItemArray{
&sql.ScheduleItemArgs{
StartDay: pulumi.String("string"),
StartTime: pulumi.String("string"),
StopDay: pulumi.String("string"),
StopTime: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
StartStopScheduleName: pulumi.String("string"),
TimeZoneId: pulumi.String("string"),
})
var startStopManagedInstanceScheduleResource = new StartStopManagedInstanceSchedule("startStopManagedInstanceScheduleResource", StartStopManagedInstanceScheduleArgs.builder()
.managedInstanceName("string")
.resourceGroupName("string")
.scheduleList(ScheduleItemArgs.builder()
.startDay("string")
.startTime("string")
.stopDay("string")
.stopTime("string")
.build())
.description("string")
.startStopScheduleName("string")
.timeZoneId("string")
.build());
start_stop_managed_instance_schedule_resource = azure_native.sql.StartStopManagedInstanceSchedule("startStopManagedInstanceScheduleResource",
managed_instance_name="string",
resource_group_name="string",
schedule_list=[{
"startDay": "string",
"startTime": "string",
"stopDay": "string",
"stopTime": "string",
}],
description="string",
start_stop_schedule_name="string",
time_zone_id="string")
const startStopManagedInstanceScheduleResource = new azure_native.sql.StartStopManagedInstanceSchedule("startStopManagedInstanceScheduleResource", {
managedInstanceName: "string",
resourceGroupName: "string",
scheduleList: [{
startDay: "string",
startTime: "string",
stopDay: "string",
stopTime: "string",
}],
description: "string",
startStopScheduleName: "string",
timeZoneId: "string",
});
type: azure-native:sql:StartStopManagedInstanceSchedule
properties:
description: string
managedInstanceName: string
resourceGroupName: string
scheduleList:
- startDay: string
startTime: string
stopDay: string
stopTime: string
startStopScheduleName: string
timeZoneId: string
StartStopManagedInstanceSchedule 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 StartStopManagedInstanceSchedule resource accepts the following input properties:
- Managed
Instance stringName - The name of the managed instance.
- Resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Schedule
List List<Pulumi.Azure Native. Sql. Inputs. Schedule Item> - Schedule list.
- Description string
- The description of the schedule.
- Start
Stop stringSchedule Name - Name of the managed instance Start/Stop schedule.
- Time
Zone stringId - The time zone of the schedule.
- Managed
Instance stringName - The name of the managed instance.
- Resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Schedule
List []ScheduleItem Args - Schedule list.
- Description string
- The description of the schedule.
- Start
Stop stringSchedule Name - Name of the managed instance Start/Stop schedule.
- Time
Zone stringId - The time zone of the schedule.
- managed
Instance StringName - The name of the managed instance.
- resource
Group StringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- schedule
List List<ScheduleItem> - Schedule list.
- description String
- The description of the schedule.
- start
Stop StringSchedule Name - Name of the managed instance Start/Stop schedule.
- time
Zone StringId - The time zone of the schedule.
- managed
Instance stringName - The name of the managed instance.
- resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- schedule
List ScheduleItem[] - Schedule list.
- description string
- The description of the schedule.
- start
Stop stringSchedule Name - Name of the managed instance Start/Stop schedule.
- time
Zone stringId - The time zone of the schedule.
- managed_
instance_ strname - The name of the managed instance.
- resource_
group_ strname - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- schedule_
list Sequence[ScheduleItem Args] - Schedule list.
- description str
- The description of the schedule.
- start_
stop_ strschedule_ name - Name of the managed instance Start/Stop schedule.
- time_
zone_ strid - The time zone of the schedule.
- managed
Instance StringName - The name of the managed instance.
- resource
Group StringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- schedule
List List<Property Map> - Schedule list.
- description String
- The description of the schedule.
- start
Stop StringSchedule Name - Name of the managed instance Start/Stop schedule.
- time
Zone StringId - The time zone of the schedule.
Outputs
All input properties are implicitly available as output properties. Additionally, the StartStopManagedInstanceSchedule resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Next
Execution stringTime - Timestamp when the next action will be executed in the corresponding schedule time zone.
- Next
Run stringAction - Next action to be executed (Start or Stop)
- System
Data Pulumi.Azure Native. Sql. Outputs. System Data Response - System data of the scheduled resource.
- Type string
- Resource type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Next
Execution stringTime - Timestamp when the next action will be executed in the corresponding schedule time zone.
- Next
Run stringAction - Next action to be executed (Start or Stop)
- System
Data SystemData Response - System data of the scheduled resource.
- Type string
- Resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- next
Execution StringTime - Timestamp when the next action will be executed in the corresponding schedule time zone.
- next
Run StringAction - Next action to be executed (Start or Stop)
- system
Data SystemData Response - System data of the scheduled resource.
- type String
- Resource type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- next
Execution stringTime - Timestamp when the next action will be executed in the corresponding schedule time zone.
- next
Run stringAction - Next action to be executed (Start or Stop)
- system
Data SystemData Response - System data of the scheduled resource.
- type string
- Resource type.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- next_
execution_ strtime - Timestamp when the next action will be executed in the corresponding schedule time zone.
- next_
run_ straction - Next action to be executed (Start or Stop)
- system_
data SystemData Response - System data of the scheduled resource.
- type str
- Resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- next
Execution StringTime - Timestamp when the next action will be executed in the corresponding schedule time zone.
- next
Run StringAction - Next action to be executed (Start or Stop)
- system
Data Property Map - System data of the scheduled resource.
- type String
- Resource type.
Supporting Types
DayOfWeek, DayOfWeekArgs
- Sunday
- Sunday
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- Day
Of Week Sunday - Sunday
- Day
Of Week Monday - Monday
- Day
Of Week Tuesday - Tuesday
- Day
Of Week Wednesday - Wednesday
- Day
Of Week Thursday - Thursday
- Day
Of Week Friday - Friday
- Day
Of Week Saturday - Saturday
- Sunday
- Sunday
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- Sunday
- Sunday
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- SUNDAY
- Sunday
- MONDAY
- Monday
- TUESDAY
- Tuesday
- WEDNESDAY
- Wednesday
- THURSDAY
- Thursday
- FRIDAY
- Friday
- SATURDAY
- Saturday
- "Sunday"
- Sunday
- "Monday"
- Monday
- "Tuesday"
- Tuesday
- "Wednesday"
- Wednesday
- "Thursday"
- Thursday
- "Friday"
- Friday
- "Saturday"
- Saturday
ScheduleItem, ScheduleItemArgs
- Start
Day string | Pulumi.Azure Native. Sql. Day Of Week - Start day.
- Start
Time string - Start time.
- Stop
Day string | Pulumi.Azure Native. Sql. Day Of Week - Stop day.
- Stop
Time string - Stop time.
- start
Day String | "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" - Start day.
- start
Time String - Start time.
- stop
Day String | "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" - Stop day.
- stop
Time String - Stop time.
ScheduleItemResponse, ScheduleItemResponseArgs
- start_
day str - Start day.
- start_
time str - Start time.
- stop_
day str - Stop day.
- stop_
time str - Stop time.
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:sql:StartStopManagedInstanceSchedule default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/startStopSchedules/{startStopScheduleName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0