azure-native.datashare.ScheduledTrigger
Explore with Pulumi AI
A type of trigger based on schedule API Version: 2020-09-01.
Example Usage
Triggers_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var scheduledTrigger = new AzureNative.DataShare.ScheduledTrigger("scheduledTrigger", new()
{
AccountName = "Account1",
Kind = "ScheduleBased",
RecurrenceInterval = "Day",
ResourceGroupName = "SampleResourceGroup",
ShareSubscriptionName = "ShareSubscription1",
SynchronizationMode = "Incremental",
SynchronizationTime = "2018-11-14T04:47:52.9614956Z",
TriggerName = "Trigger1",
});
});
package main
import (
datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datashare.NewScheduledTrigger(ctx, "scheduledTrigger", &datashare.ScheduledTriggerArgs{
AccountName: pulumi.String("Account1"),
Kind: pulumi.String("ScheduleBased"),
RecurrenceInterval: pulumi.String("Day"),
ResourceGroupName: pulumi.String("SampleResourceGroup"),
ShareSubscriptionName: pulumi.String("ShareSubscription1"),
SynchronizationMode: pulumi.String("Incremental"),
SynchronizationTime: pulumi.String("2018-11-14T04:47:52.9614956Z"),
TriggerName: pulumi.String("Trigger1"),
})
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.datashare.ScheduledTrigger;
import com.pulumi.azurenative.datashare.ScheduledTriggerArgs;
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 scheduledTrigger = new ScheduledTrigger("scheduledTrigger", ScheduledTriggerArgs.builder()
.accountName("Account1")
.kind("ScheduleBased")
.recurrenceInterval("Day")
.resourceGroupName("SampleResourceGroup")
.shareSubscriptionName("ShareSubscription1")
.synchronizationMode("Incremental")
.synchronizationTime("2018-11-14T04:47:52.9614956Z")
.triggerName("Trigger1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
scheduled_trigger = azure_native.datashare.ScheduledTrigger("scheduledTrigger",
account_name="Account1",
kind="ScheduleBased",
recurrence_interval="Day",
resource_group_name="SampleResourceGroup",
share_subscription_name="ShareSubscription1",
synchronization_mode="Incremental",
synchronization_time="2018-11-14T04:47:52.9614956Z",
trigger_name="Trigger1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const scheduledTrigger = new azure_native.datashare.ScheduledTrigger("scheduledTrigger", {
accountName: "Account1",
kind: "ScheduleBased",
recurrenceInterval: "Day",
resourceGroupName: "SampleResourceGroup",
shareSubscriptionName: "ShareSubscription1",
synchronizationMode: "Incremental",
synchronizationTime: "2018-11-14T04:47:52.9614956Z",
triggerName: "Trigger1",
});
resources:
scheduledTrigger:
type: azure-native:datashare:ScheduledTrigger
properties:
accountName: Account1
kind: ScheduleBased
recurrenceInterval: Day
resourceGroupName: SampleResourceGroup
shareSubscriptionName: ShareSubscription1
synchronizationMode: Incremental
synchronizationTime: 2018-11-14T04:47:52.9614956Z
triggerName: Trigger1
Create ScheduledTrigger Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ScheduledTrigger(name: string, args: ScheduledTriggerArgs, opts?: CustomResourceOptions);
@overload
def ScheduledTrigger(resource_name: str,
args: ScheduledTriggerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ScheduledTrigger(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
recurrence_interval: Optional[Union[str, RecurrenceInterval]] = None,
resource_group_name: Optional[str] = None,
share_subscription_name: Optional[str] = None,
synchronization_time: Optional[str] = None,
synchronization_mode: Optional[Union[str, SynchronizationMode]] = None,
trigger_name: Optional[str] = None)
func NewScheduledTrigger(ctx *Context, name string, args ScheduledTriggerArgs, opts ...ResourceOption) (*ScheduledTrigger, error)
public ScheduledTrigger(string name, ScheduledTriggerArgs args, CustomResourceOptions? opts = null)
public ScheduledTrigger(String name, ScheduledTriggerArgs args)
public ScheduledTrigger(String name, ScheduledTriggerArgs args, CustomResourceOptions options)
type: azure-native:datashare:ScheduledTrigger
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 ScheduledTriggerArgs
- 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 ScheduledTriggerArgs
- 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 ScheduledTriggerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ScheduledTriggerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ScheduledTriggerArgs
- 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 scheduledTriggerResource = new AzureNative.Datashare.ScheduledTrigger("scheduledTriggerResource", new()
{
AccountName = "string",
Kind = "string",
RecurrenceInterval = "string",
ResourceGroupName = "string",
ShareSubscriptionName = "string",
SynchronizationTime = "string",
SynchronizationMode = "string",
TriggerName = "string",
});
example, err := datashare.NewScheduledTrigger(ctx, "scheduledTriggerResource", &datashare.ScheduledTriggerArgs{
AccountName: "string",
Kind: "string",
RecurrenceInterval: "string",
ResourceGroupName: "string",
ShareSubscriptionName: "string",
SynchronizationTime: "string",
SynchronizationMode: "string",
TriggerName: "string",
})
var scheduledTriggerResource = new ScheduledTrigger("scheduledTriggerResource", ScheduledTriggerArgs.builder()
.accountName("string")
.kind("string")
.recurrenceInterval("string")
.resourceGroupName("string")
.shareSubscriptionName("string")
.synchronizationTime("string")
.synchronizationMode("string")
.triggerName("string")
.build());
scheduled_trigger_resource = azure_native.datashare.ScheduledTrigger("scheduledTriggerResource",
account_name=string,
kind=string,
recurrence_interval=string,
resource_group_name=string,
share_subscription_name=string,
synchronization_time=string,
synchronization_mode=string,
trigger_name=string)
const scheduledTriggerResource = new azure_native.datashare.ScheduledTrigger("scheduledTriggerResource", {
accountName: "string",
kind: "string",
recurrenceInterval: "string",
resourceGroupName: "string",
shareSubscriptionName: "string",
synchronizationTime: "string",
synchronizationMode: "string",
triggerName: "string",
});
type: azure-native:datashare:ScheduledTrigger
properties:
accountName: string
kind: string
recurrenceInterval: string
resourceGroupName: string
shareSubscriptionName: string
synchronizationMode: string
synchronizationTime: string
triggerName: string
ScheduledTrigger 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 ScheduledTrigger resource accepts the following input properties:
- Account
Name string - The name of the share account.
- Recurrence
Interval string | Pulumi.Azure Native. Data Share. Recurrence Interval - Recurrence Interval
- Resource
Group stringName - The resource group name.
- string
- The name of the share subscription which will hold the data set sink.
- Synchronization
Time string - Synchronization time
- Synchronization
Mode string | Pulumi.Azure Native. Data Share. Synchronization Mode - Synchronization mode
- Trigger
Name string - The name of the trigger.
- Account
Name string - The name of the share account.
- Recurrence
Interval string | RecurrenceInterval - Recurrence Interval
- Resource
Group stringName - The resource group name.
- string
- The name of the share subscription which will hold the data set sink.
- Synchronization
Time string - Synchronization time
- Synchronization
Mode string | SynchronizationMode - Synchronization mode
- Trigger
Name string - The name of the trigger.
- account
Name String - The name of the share account.
- recurrence
Interval String | RecurrenceInterval - Recurrence Interval
- resource
Group StringName - The resource group name.
- String
- The name of the share subscription which will hold the data set sink.
- synchronization
Time String - Synchronization time
- synchronization
Mode String | SynchronizationMode - Synchronization mode
- trigger
Name String - The name of the trigger.
- account
Name string - The name of the share account.
- recurrence
Interval string | RecurrenceInterval - Recurrence Interval
- resource
Group stringName - The resource group name.
- string
- The name of the share subscription which will hold the data set sink.
- synchronization
Time string - Synchronization time
- synchronization
Mode string | SynchronizationMode - Synchronization mode
- trigger
Name string - The name of the trigger.
- account_
name str - The name of the share account.
- recurrence_
interval str | RecurrenceInterval - Recurrence Interval
- resource_
group_ strname - The resource group name.
- str
- The name of the share subscription which will hold the data set sink.
- synchronization_
time str - Synchronization time
- synchronization_
mode str | SynchronizationMode - Synchronization mode
- trigger_
name str - The name of the trigger.
- account
Name String - The name of the share account.
- recurrence
Interval String | "Hour" | "Day" - Recurrence Interval
- resource
Group StringName - The resource group name.
- String
- The name of the share subscription which will hold the data set sink.
- synchronization
Time String - Synchronization time
- synchronization
Mode String | "Incremental" | "FullSync" - Synchronization mode
- trigger
Name String - The name of the trigger.
Outputs
All input properties are implicitly available as output properties. Additionally, the ScheduledTrigger resource produces the following output properties:
- Created
At string - Time at which the trigger was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the azure resource
- Provisioning
State string - Gets the provisioning state
- System
Data Pulumi.Azure Native. Data Share. Outputs. System Data Response - System Data of the Azure resource.
- Trigger
Status string - Gets the trigger state
- Type string
- Type of the azure resource
- User
Name string - Name of the user who created the trigger.
- Created
At string - Time at which the trigger was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the azure resource
- Provisioning
State string - Gets the provisioning state
- System
Data SystemData Response - System Data of the Azure resource.
- Trigger
Status string - Gets the trigger state
- Type string
- Type of the azure resource
- User
Name string - Name of the user who created the trigger.
- created
At String - Time at which the trigger was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the azure resource
- provisioning
State String - Gets the provisioning state
- system
Data SystemData Response - System Data of the Azure resource.
- trigger
Status String - Gets the trigger state
- type String
- Type of the azure resource
- user
Name String - Name of the user who created the trigger.
- created
At string - Time at which the trigger was created.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the azure resource
- provisioning
State string - Gets the provisioning state
- system
Data SystemData Response - System Data of the Azure resource.
- trigger
Status string - Gets the trigger state
- type string
- Type of the azure resource
- user
Name string - Name of the user who created the trigger.
- created_
at str - Time at which the trigger was created.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the azure resource
- provisioning_
state str - Gets the provisioning state
- system_
data SystemData Response - System Data of the Azure resource.
- trigger_
status str - Gets the trigger state
- type str
- Type of the azure resource
- user_
name str - Name of the user who created the trigger.
- created
At String - Time at which the trigger was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the azure resource
- provisioning
State String - Gets the provisioning state
- system
Data Property Map - System Data of the Azure resource.
- trigger
Status String - Gets the trigger state
- type String
- Type of the azure resource
- user
Name String - Name of the user who created the trigger.
Supporting Types
RecurrenceInterval, RecurrenceIntervalArgs
- Hour
- Hour
- Day
- Day
- Recurrence
Interval Hour - Hour
- Recurrence
Interval Day - Day
- Hour
- Hour
- Day
- Day
- Hour
- Hour
- Day
- Day
- HOUR
- Hour
- DAY
- Day
- "Hour"
- Hour
- "Day"
- Day
SynchronizationMode, SynchronizationModeArgs
- Incremental
- Incremental
- Full
Sync - FullSync
- Synchronization
Mode Incremental - Incremental
- Synchronization
Mode Full Sync - FullSync
- Incremental
- Incremental
- Full
Sync - FullSync
- Incremental
- Incremental
- Full
Sync - FullSync
- INCREMENTAL
- Incremental
- FULL_SYNC
- FullSync
- "Incremental"
- Incremental
- "Full
Sync" - FullSync
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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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:datashare:ScheduledTrigger Trigger1 /subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.DataShare/accounts/Account1/shareSubscriptions/ShareSubscription1/triggers/Trigger1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0