azure-native.hybriddata.JobDefinition
Explore with Pulumi AI
Job Definition.
Uses Azure REST API version 2019-06-01. In version 2.x of the Azure Native provider, it used API version 2019-06-01.
Create JobDefinition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new JobDefinition(name: string, args: JobDefinitionArgs, opts?: CustomResourceOptions);
@overload
def JobDefinition(resource_name: str,
args: JobDefinitionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def JobDefinition(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
data_manager_name: Optional[str] = None,
state: Optional[State] = None,
data_service_name: Optional[str] = None,
data_sink_id: Optional[str] = None,
data_source_id: Optional[str] = None,
job_definition_name: Optional[str] = None,
last_modified_time: Optional[str] = None,
customer_secrets: Optional[Sequence[CustomerSecretArgs]] = None,
run_location: Optional[RunLocation] = None,
schedules: Optional[Sequence[ScheduleArgs]] = None,
data_service_input: Optional[Any] = None,
user_confirmation: Optional[UserConfirmation] = None)
func NewJobDefinition(ctx *Context, name string, args JobDefinitionArgs, opts ...ResourceOption) (*JobDefinition, error)
public JobDefinition(string name, JobDefinitionArgs args, CustomResourceOptions? opts = null)
public JobDefinition(String name, JobDefinitionArgs args)
public JobDefinition(String name, JobDefinitionArgs args, CustomResourceOptions options)
type: azure-native:hybriddata:JobDefinition
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. JobDefinitionArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. JobDefinitionArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. JobDefinitionArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. JobDefinitionArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. JobDefinitionArgs - 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 jobDefinitionResource = new AzureNative.HybridData.JobDefinition("jobDefinitionResource", new()
{
ResourceGroupName = "string",
DataManagerName = "string",
State = AzureNative.HybridData.State.Disabled,
DataServiceName = "string",
DataSinkId = "string",
DataSourceId = "string",
JobDefinitionName = "string",
LastModifiedTime = "string",
CustomerSecrets = new[]
{
new AzureNative.HybridData.Inputs.CustomerSecretArgs
{
Algorithm = AzureNative.HybridData.SupportedAlgorithm.None,
KeyIdentifier = "string",
KeyValue = "string",
},
},
RunLocation = AzureNative.HybridData.RunLocation.None,
Schedules = new[]
{
new AzureNative.HybridData.Inputs.ScheduleArgs
{
Name = "string",
PolicyList = new[]
{
"string",
},
},
},
DataServiceInput = "any",
UserConfirmation = AzureNative.HybridData.UserConfirmation.NotRequired,
});
example, err := hybriddata.NewJobDefinition(ctx, "jobDefinitionResource", &hybriddata.JobDefinitionArgs{
ResourceGroupName: pulumi.String("string"),
DataManagerName: pulumi.String("string"),
State: hybriddata.StateDisabled,
DataServiceName: pulumi.String("string"),
DataSinkId: pulumi.String("string"),
DataSourceId: pulumi.String("string"),
JobDefinitionName: pulumi.String("string"),
LastModifiedTime: pulumi.String("string"),
CustomerSecrets: hybriddata.CustomerSecretArray{
&hybriddata.CustomerSecretArgs{
Algorithm: hybriddata.SupportedAlgorithmNone,
KeyIdentifier: pulumi.String("string"),
KeyValue: pulumi.String("string"),
},
},
RunLocation: hybriddata.RunLocationNone,
Schedules: hybriddata.ScheduleArray{
&hybriddata.ScheduleArgs{
Name: pulumi.String("string"),
PolicyList: pulumi.StringArray{
pulumi.String("string"),
},
},
},
DataServiceInput: pulumi.Any("any"),
UserConfirmation: hybriddata.UserConfirmationNotRequired,
})
var jobDefinitionResource = new JobDefinition("jobDefinitionResource", JobDefinitionArgs.builder()
.resourceGroupName("string")
.dataManagerName("string")
.state("Disabled")
.dataServiceName("string")
.dataSinkId("string")
.dataSourceId("string")
.jobDefinitionName("string")
.lastModifiedTime("string")
.customerSecrets(CustomerSecretArgs.builder()
.algorithm("None")
.keyIdentifier("string")
.keyValue("string")
.build())
.runLocation("none")
.schedules(ScheduleArgs.builder()
.name("string")
.policyList("string")
.build())
.dataServiceInput("any")
.userConfirmation("NotRequired")
.build());
job_definition_resource = azure_native.hybriddata.JobDefinition("jobDefinitionResource",
resource_group_name="string",
data_manager_name="string",
state=azure_native.hybriddata.State.DISABLED,
data_service_name="string",
data_sink_id="string",
data_source_id="string",
job_definition_name="string",
last_modified_time="string",
customer_secrets=[{
"algorithm": azure_native.hybriddata.SupportedAlgorithm.NONE,
"key_identifier": "string",
"key_value": "string",
}],
run_location=azure_native.hybriddata.RunLocation.NONE,
schedules=[{
"name": "string",
"policy_list": ["string"],
}],
data_service_input="any",
user_confirmation=azure_native.hybriddata.UserConfirmation.NOT_REQUIRED)
const jobDefinitionResource = new azure_native.hybriddata.JobDefinition("jobDefinitionResource", {
resourceGroupName: "string",
dataManagerName: "string",
state: azure_native.hybriddata.State.Disabled,
dataServiceName: "string",
dataSinkId: "string",
dataSourceId: "string",
jobDefinitionName: "string",
lastModifiedTime: "string",
customerSecrets: [{
algorithm: azure_native.hybriddata.SupportedAlgorithm.None,
keyIdentifier: "string",
keyValue: "string",
}],
runLocation: azure_native.hybriddata.RunLocation.None,
schedules: [{
name: "string",
policyList: ["string"],
}],
dataServiceInput: "any",
userConfirmation: azure_native.hybriddata.UserConfirmation.NotRequired,
});
type: azure-native:hybriddata:JobDefinition
properties:
customerSecrets:
- algorithm: None
keyIdentifier: string
keyValue: string
dataManagerName: string
dataServiceInput: any
dataServiceName: string
dataSinkId: string
dataSourceId: string
jobDefinitionName: string
lastModifiedTime: string
resourceGroupName: string
runLocation: none
schedules:
- name: string
policyList:
- string
state: Disabled
userConfirmation: NotRequired
JobDefinition 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 JobDefinition resource accepts the following input properties:
- Data
Manager Name This property is required. Changes to this property will trigger replacement.
- The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- Data
Service Name This property is required. Changes to this property will trigger replacement.
- The data service type of the job definition.
- Data
Sink Id This property is required. string - Data Sink Id associated to the job definition.
- Data
Source Id This property is required. string - Data Source Id associated to the job definition.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- State
This property is required. Pulumi.Azure Native. Hybrid Data. State - State of the job definition.
- Customer
Secrets List<Pulumi.Azure Native. Hybrid Data. Inputs. Customer Secret> - List of customer secrets containing a key identifier and key value. The key identifier is a way for the specific data source to understand the key. Value contains customer secret encrypted by the encryptionKeys.
- Data
Service objectInput - A generic json used differently by each data service type.
- Job
Definition Name Changes to this property will trigger replacement.
- The job definition name to be created or updated.
- Last
Modified stringTime - Last modified time of the job definition.
- Run
Location Pulumi.Azure Native. Hybrid Data. Run Location - This is the preferred geo location for the job to run.
- Schedules
List<Pulumi.
Azure Native. Hybrid Data. Inputs. Schedule> - Schedule for running the job definition
- User
Confirmation Pulumi.Azure Native. Hybrid Data. User Confirmation - Enum to detect if user confirmation is required. If not passed will default to NotRequired.
- Data
Manager Name This property is required. Changes to this property will trigger replacement.
- The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- Data
Service Name This property is required. Changes to this property will trigger replacement.
- The data service type of the job definition.
- Data
Sink Id This property is required. string - Data Sink Id associated to the job definition.
- Data
Source Id This property is required. string - Data Source Id associated to the job definition.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- State
This property is required. State - State of the job definition.
- Customer
Secrets []CustomerSecret Args - List of customer secrets containing a key identifier and key value. The key identifier is a way for the specific data source to understand the key. Value contains customer secret encrypted by the encryptionKeys.
- Data
Service interface{}Input - A generic json used differently by each data service type.
- Job
Definition Name Changes to this property will trigger replacement.
- The job definition name to be created or updated.
- Last
Modified stringTime - Last modified time of the job definition.
- Run
Location RunLocation - This is the preferred geo location for the job to run.
- Schedules
[]Schedule
Args - Schedule for running the job definition
- User
Confirmation UserConfirmation - Enum to detect if user confirmation is required. If not passed will default to NotRequired.
- data
Manager Name This property is required. Changes to this property will trigger replacement.
- The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- data
Service Name This property is required. Changes to this property will trigger replacement.
- The data service type of the job definition.
- data
Sink Id This property is required. String - Data Sink Id associated to the job definition.
- data
Source Id This property is required. String - Data Source Id associated to the job definition.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- state
This property is required. State - State of the job definition.
- customer
Secrets List<CustomerSecret> - List of customer secrets containing a key identifier and key value. The key identifier is a way for the specific data source to understand the key. Value contains customer secret encrypted by the encryptionKeys.
- data
Service ObjectInput - A generic json used differently by each data service type.
- job
Definition Name Changes to this property will trigger replacement.
- The job definition name to be created or updated.
- last
Modified StringTime - Last modified time of the job definition.
- run
Location RunLocation - This is the preferred geo location for the job to run.
- schedules List<Schedule>
- Schedule for running the job definition
- user
Confirmation UserConfirmation - Enum to detect if user confirmation is required. If not passed will default to NotRequired.
- data
Manager Name This property is required. Changes to this property will trigger replacement.
- The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- data
Service Name This property is required. Changes to this property will trigger replacement.
- The data service type of the job definition.
- data
Sink Id This property is required. string - Data Sink Id associated to the job definition.
- data
Source Id This property is required. string - Data Source Id associated to the job definition.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- state
This property is required. State - State of the job definition.
- customer
Secrets CustomerSecret[] - List of customer secrets containing a key identifier and key value. The key identifier is a way for the specific data source to understand the key. Value contains customer secret encrypted by the encryptionKeys.
- data
Service anyInput - A generic json used differently by each data service type.
- job
Definition Name Changes to this property will trigger replacement.
- The job definition name to be created or updated.
- last
Modified stringTime - Last modified time of the job definition.
- run
Location RunLocation - This is the preferred geo location for the job to run.
- schedules Schedule[]
- Schedule for running the job definition
- user
Confirmation UserConfirmation - Enum to detect if user confirmation is required. If not passed will default to NotRequired.
- data_
manager_ name This property is required. Changes to this property will trigger replacement.
- The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- data_
service_ name This property is required. Changes to this property will trigger replacement.
- The data service type of the job definition.
- data_
sink_ id This property is required. str - Data Sink Id associated to the job definition.
- data_
source_ id This property is required. str - Data Source Id associated to the job definition.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- state
This property is required. State - State of the job definition.
- customer_
secrets Sequence[CustomerSecret Args] - List of customer secrets containing a key identifier and key value. The key identifier is a way for the specific data source to understand the key. Value contains customer secret encrypted by the encryptionKeys.
- data_
service_ Anyinput - A generic json used differently by each data service type.
- job_
definition_ name Changes to this property will trigger replacement.
- The job definition name to be created or updated.
- last_
modified_ strtime - Last modified time of the job definition.
- run_
location RunLocation - This is the preferred geo location for the job to run.
- schedules
Sequence[Schedule
Args] - Schedule for running the job definition
- user_
confirmation UserConfirmation - Enum to detect if user confirmation is required. If not passed will default to NotRequired.
- data
Manager Name This property is required. Changes to this property will trigger replacement.
- The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
- data
Service Name This property is required. Changes to this property will trigger replacement.
- The data service type of the job definition.
- data
Sink Id This property is required. String - Data Sink Id associated to the job definition.
- data
Source Id This property is required. String - Data Source Id associated to the job definition.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The Resource Group Name
- state
This property is required. "Disabled" | "Enabled" | "Supported" - State of the job definition.
- customer
Secrets List<Property Map> - List of customer secrets containing a key identifier and key value. The key identifier is a way for the specific data source to understand the key. Value contains customer secret encrypted by the encryptionKeys.
- data
Service AnyInput - A generic json used differently by each data service type.
- job
Definition Name Changes to this property will trigger replacement.
- The job definition name to be created or updated.
- last
Modified StringTime - Last modified time of the job definition.
- run
Location "none" | "australiaeast" | "australiasoutheast" | "brazilsouth" | "canadacentral" | "canadaeast" | "centralindia" | "centralus" | "eastasia" | "eastus" | "eastus2" | "japaneast" | "japanwest" | "koreacentral" | "koreasouth" | "southeastasia" | "southcentralus" | "southindia" | "northcentralus" | "northeurope" | "uksouth" | "ukwest" | "westcentralus" | "westeurope" | "westindia" | "westus" | "westus2" - This is the preferred geo location for the job to run.
- schedules List<Property Map>
- Schedule for running the job definition
- user
Confirmation "NotRequired" | "Required" - Enum to detect if user confirmation is required. If not passed will default to NotRequired.
Outputs
All input properties are implicitly available as output properties. Additionally, the JobDefinition resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the object.
- Type string
- Type of the object.
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the object.
- Type string
- Type of the object.
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the object.
- type String
- Type of the object.
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the object.
- type string
- Type of the object.
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the object.
- type str
- Type of the object.
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the object.
- type String
- Type of the object.
Supporting Types
CustomerSecret, CustomerSecretArgs
- Algorithm
This property is required. Pulumi.Azure Native. Hybrid Data. Supported Algorithm - The encryption algorithm used to encrypt data.
- Key
Identifier This property is required. string - The identifier to the data service input object which this secret corresponds to.
- Key
Value This property is required. string - It contains the encrypted customer secret.
- Algorithm
This property is required. SupportedAlgorithm - The encryption algorithm used to encrypt data.
- Key
Identifier This property is required. string - The identifier to the data service input object which this secret corresponds to.
- Key
Value This property is required. string - It contains the encrypted customer secret.
- algorithm
This property is required. SupportedAlgorithm - The encryption algorithm used to encrypt data.
- key
Identifier This property is required. String - The identifier to the data service input object which this secret corresponds to.
- key
Value This property is required. String - It contains the encrypted customer secret.
- algorithm
This property is required. SupportedAlgorithm - The encryption algorithm used to encrypt data.
- key
Identifier This property is required. string - The identifier to the data service input object which this secret corresponds to.
- key
Value This property is required. string - It contains the encrypted customer secret.
- algorithm
This property is required. SupportedAlgorithm - The encryption algorithm used to encrypt data.
- key_
identifier This property is required. str - The identifier to the data service input object which this secret corresponds to.
- key_
value This property is required. str - It contains the encrypted customer secret.
- algorithm
This property is required. "None" | "RSA1_5" | "RSA_OAEP" | "PlainText" - The encryption algorithm used to encrypt data.
- key
Identifier This property is required. String - The identifier to the data service input object which this secret corresponds to.
- key
Value This property is required. String - It contains the encrypted customer secret.
CustomerSecretResponse, CustomerSecretResponseArgs
- Algorithm
This property is required. string - The encryption algorithm used to encrypt data.
- Key
Identifier This property is required. string - The identifier to the data service input object which this secret corresponds to.
- Key
Value This property is required. string - It contains the encrypted customer secret.
- Algorithm
This property is required. string - The encryption algorithm used to encrypt data.
- Key
Identifier This property is required. string - The identifier to the data service input object which this secret corresponds to.
- Key
Value This property is required. string - It contains the encrypted customer secret.
- algorithm
This property is required. String - The encryption algorithm used to encrypt data.
- key
Identifier This property is required. String - The identifier to the data service input object which this secret corresponds to.
- key
Value This property is required. String - It contains the encrypted customer secret.
- algorithm
This property is required. string - The encryption algorithm used to encrypt data.
- key
Identifier This property is required. string - The identifier to the data service input object which this secret corresponds to.
- key
Value This property is required. string - It contains the encrypted customer secret.
- algorithm
This property is required. str - The encryption algorithm used to encrypt data.
- key_
identifier This property is required. str - The identifier to the data service input object which this secret corresponds to.
- key_
value This property is required. str - It contains the encrypted customer secret.
- algorithm
This property is required. String - The encryption algorithm used to encrypt data.
- key
Identifier This property is required. String - The identifier to the data service input object which this secret corresponds to.
- key
Value This property is required. String - It contains the encrypted customer secret.
RunLocation, RunLocationArgs
- None
- none
- Australiaeast
- australiaeast
- Australiasoutheast
- australiasoutheast
- Brazilsouth
- brazilsouth
- Canadacentral
- canadacentral
- Canadaeast
- canadaeast
- Centralindia
- centralindia
- Centralus
- centralus
- Eastasia
- eastasia
- Eastus
- eastus
- Eastus2
- eastus2
- Japaneast
- japaneast
- Japanwest
- japanwest
- Koreacentral
- koreacentral
- Koreasouth
- koreasouth
- Southeastasia
- southeastasia
- Southcentralus
- southcentralus
- Southindia
- southindia
- Northcentralus
- northcentralus
- Northeurope
- northeurope
- Uksouth
- uksouth
- Ukwest
- ukwest
- Westcentralus
- westcentralus
- Westeurope
- westeurope
- Westindia
- westindia
- Westus
- westus
- Westus2
- westus2
- Run
Location None - none
- Run
Location Australiaeast - australiaeast
- Run
Location Australiasoutheast - australiasoutheast
- Run
Location Brazilsouth - brazilsouth
- Run
Location Canadacentral - canadacentral
- Run
Location Canadaeast - canadaeast
- Run
Location Centralindia - centralindia
- Run
Location Centralus - centralus
- Run
Location Eastasia - eastasia
- Run
Location Eastus - eastus
- Run
Location Eastus2 - eastus2
- Run
Location Japaneast - japaneast
- Run
Location Japanwest - japanwest
- Run
Location Koreacentral - koreacentral
- Run
Location Koreasouth - koreasouth
- Run
Location Southeastasia - southeastasia
- Run
Location Southcentralus - southcentralus
- Run
Location Southindia - southindia
- Run
Location Northcentralus - northcentralus
- Run
Location Northeurope - northeurope
- Run
Location Uksouth - uksouth
- Run
Location Ukwest - ukwest
- Run
Location Westcentralus - westcentralus
- Run
Location Westeurope - westeurope
- Run
Location Westindia - westindia
- Run
Location Westus - westus
- Run
Location Westus2 - westus2
- None
- none
- Australiaeast
- australiaeast
- Australiasoutheast
- australiasoutheast
- Brazilsouth
- brazilsouth
- Canadacentral
- canadacentral
- Canadaeast
- canadaeast
- Centralindia
- centralindia
- Centralus
- centralus
- Eastasia
- eastasia
- Eastus
- eastus
- Eastus2
- eastus2
- Japaneast
- japaneast
- Japanwest
- japanwest
- Koreacentral
- koreacentral
- Koreasouth
- koreasouth
- Southeastasia
- southeastasia
- Southcentralus
- southcentralus
- Southindia
- southindia
- Northcentralus
- northcentralus
- Northeurope
- northeurope
- Uksouth
- uksouth
- Ukwest
- ukwest
- Westcentralus
- westcentralus
- Westeurope
- westeurope
- Westindia
- westindia
- Westus
- westus
- Westus2
- westus2
- None
- none
- Australiaeast
- australiaeast
- Australiasoutheast
- australiasoutheast
- Brazilsouth
- brazilsouth
- Canadacentral
- canadacentral
- Canadaeast
- canadaeast
- Centralindia
- centralindia
- Centralus
- centralus
- Eastasia
- eastasia
- Eastus
- eastus
- Eastus2
- eastus2
- Japaneast
- japaneast
- Japanwest
- japanwest
- Koreacentral
- koreacentral
- Koreasouth
- koreasouth
- Southeastasia
- southeastasia
- Southcentralus
- southcentralus
- Southindia
- southindia
- Northcentralus
- northcentralus
- Northeurope
- northeurope
- Uksouth
- uksouth
- Ukwest
- ukwest
- Westcentralus
- westcentralus
- Westeurope
- westeurope
- Westindia
- westindia
- Westus
- westus
- Westus2
- westus2
- NONE
- none
- AUSTRALIAEAST
- australiaeast
- AUSTRALIASOUTHEAST
- australiasoutheast
- BRAZILSOUTH
- brazilsouth
- CANADACENTRAL
- canadacentral
- CANADAEAST
- canadaeast
- CENTRALINDIA
- centralindia
- CENTRALUS
- centralus
- EASTASIA
- eastasia
- EASTUS
- eastus
- EASTUS2
- eastus2
- JAPANEAST
- japaneast
- JAPANWEST
- japanwest
- KOREACENTRAL
- koreacentral
- KOREASOUTH
- koreasouth
- SOUTHEASTASIA
- southeastasia
- SOUTHCENTRALUS
- southcentralus
- SOUTHINDIA
- southindia
- NORTHCENTRALUS
- northcentralus
- NORTHEUROPE
- northeurope
- UKSOUTH
- uksouth
- UKWEST
- ukwest
- WESTCENTRALUS
- westcentralus
- WESTEUROPE
- westeurope
- WESTINDIA
- westindia
- WESTUS
- westus
- WESTUS2
- westus2
- "none"
- none
- "australiaeast"
- australiaeast
- "australiasoutheast"
- australiasoutheast
- "brazilsouth"
- brazilsouth
- "canadacentral"
- canadacentral
- "canadaeast"
- canadaeast
- "centralindia"
- centralindia
- "centralus"
- centralus
- "eastasia"
- eastasia
- "eastus"
- eastus
- "eastus2"
- eastus2
- "japaneast"
- japaneast
- "japanwest"
- japanwest
- "koreacentral"
- koreacentral
- "koreasouth"
- koreasouth
- "southeastasia"
- southeastasia
- "southcentralus"
- southcentralus
- "southindia"
- southindia
- "northcentralus"
- northcentralus
- "northeurope"
- northeurope
- "uksouth"
- uksouth
- "ukwest"
- ukwest
- "westcentralus"
- westcentralus
- "westeurope"
- westeurope
- "westindia"
- westindia
- "westus"
- westus
- "westus2"
- westus2
Schedule, ScheduleArgs
- Name string
- Name of the schedule.
- Policy
List List<string> - A list of repetition intervals in ISO 8601 format.
- Name string
- Name of the schedule.
- Policy
List []string - A list of repetition intervals in ISO 8601 format.
- name String
- Name of the schedule.
- policy
List List<String> - A list of repetition intervals in ISO 8601 format.
- name string
- Name of the schedule.
- policy
List string[] - A list of repetition intervals in ISO 8601 format.
- name str
- Name of the schedule.
- policy_
list Sequence[str] - A list of repetition intervals in ISO 8601 format.
- name String
- Name of the schedule.
- policy
List List<String> - A list of repetition intervals in ISO 8601 format.
ScheduleResponse, ScheduleResponseArgs
- Name string
- Name of the schedule.
- Policy
List List<string> - A list of repetition intervals in ISO 8601 format.
- Name string
- Name of the schedule.
- Policy
List []string - A list of repetition intervals in ISO 8601 format.
- name String
- Name of the schedule.
- policy
List List<String> - A list of repetition intervals in ISO 8601 format.
- name string
- Name of the schedule.
- policy
List string[] - A list of repetition intervals in ISO 8601 format.
- name str
- Name of the schedule.
- policy_
list Sequence[str] - A list of repetition intervals in ISO 8601 format.
- name String
- Name of the schedule.
- policy
List List<String> - A list of repetition intervals in ISO 8601 format.
State, StateArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Supported
- Supported
- State
Disabled - Disabled
- State
Enabled - Enabled
- State
Supported - Supported
- Disabled
- Disabled
- Enabled
- Enabled
- Supported
- Supported
- Disabled
- Disabled
- Enabled
- Enabled
- Supported
- Supported
- DISABLED
- Disabled
- ENABLED
- Enabled
- SUPPORTED
- Supported
- "Disabled"
- Disabled
- "Enabled"
- Enabled
- "Supported"
- Supported
SupportedAlgorithm, SupportedAlgorithmArgs
- None
- None
- RSA1_5
- RSA1_5
- RSA_OAEP
- RSA_OAEP
- Plain
Text - PlainText
- Supported
Algorithm None - None
- Supported
Algorithm_RSA1_5 - RSA1_5
- Supported
Algorithm_RSA_OAEP - RSA_OAEP
- Supported
Algorithm Plain Text - PlainText
- None
- None
- RSA1_5
- RSA1_5
- RSA_OAEP
- RSA_OAEP
- Plain
Text - PlainText
- None
- None
- RSA1_5
- RSA1_5
- RSA_OAEP
- RSA_OAEP
- Plain
Text - PlainText
- NONE
- None
- RSA1_5
- RSA1_5
- RS_A_OAEP
- RSA_OAEP
- PLAIN_TEXT
- PlainText
- "None"
- None
- "RSA1_5"
- RSA1_5
- "RSA_OAEP"
- RSA_OAEP
- "Plain
Text" - PlainText
UserConfirmation, UserConfirmationArgs
- Not
Required - NotRequired
- Required
- Required
- User
Confirmation Not Required - NotRequired
- User
Confirmation Required - Required
- Not
Required - NotRequired
- Required
- Required
- Not
Required - NotRequired
- Required
- Required
- NOT_REQUIRED
- NotRequired
- REQUIRED
- Required
- "Not
Required" - NotRequired
- "Required"
- Required
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:hybriddata:JobDefinition jobdeffromtestcode1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HybridData/dataManagers/{dataManagerName}/dataServices/{dataServiceName}/jobDefinitions/{jobDefinitionName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0