SourceWorkday Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as airbyte from "@pulumi/airbyte";
const mySourceWorkday = new airbyte.SourceWorkday("my_source_workday", {
configuration: {
additionalProperties: "{ \"see\": \"documentation\" }",
credentials: {
password: "...my_password...",
username: "...my_username...",
},
host: "...my_host...",
numWorkers: 1,
reportIds: [{
reportId: "...my_report_id...",
}],
tenantId: "...my_tenant_id...",
},
definitionId: "caf3b67e-129c-4e9e-a530-2b6adcf4997d",
name: "...my_name...",
secretId: "...my_secret_id...",
workspaceId: "40a9f4d4-7bdd-4a7c-90bb-08fd63077df2",
});
import pulumi
import pulumi_airbyte as airbyte
my_source_workday = airbyte.SourceWorkday("my_source_workday",
configuration={
"additional_properties": "{ \"see\": \"documentation\" }",
"credentials": {
"password": "...my_password...",
"username": "...my_username...",
},
"host": "...my_host...",
"num_workers": 1,
"report_ids": [{
"report_id": "...my_report_id...",
}],
"tenant_id": "...my_tenant_id...",
},
definition_id="caf3b67e-129c-4e9e-a530-2b6adcf4997d",
name="...my_name...",
secret_id="...my_secret_id...",
workspace_id="40a9f4d4-7bdd-4a7c-90bb-08fd63077df2")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/airbyte/airbyte"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := airbyte.NewSourceWorkday(ctx, "my_source_workday", &airbyte.SourceWorkdayArgs{
Configuration: &airbyte.SourceWorkdayConfigurationArgs{
AdditionalProperties: pulumi.String("{ \"see\": \"documentation\" }"),
Credentials: &airbyte.SourceWorkdayConfigurationCredentialsArgs{
Password: pulumi.String("...my_password..."),
Username: pulumi.String("...my_username..."),
},
Host: pulumi.String("...my_host..."),
NumWorkers: pulumi.Float64(1),
ReportIds: airbyte.SourceWorkdayConfigurationReportIdArray{
&airbyte.SourceWorkdayConfigurationReportIdArgs{
ReportId: pulumi.String("...my_report_id..."),
},
},
TenantId: pulumi.String("...my_tenant_id..."),
},
DefinitionId: pulumi.String("caf3b67e-129c-4e9e-a530-2b6adcf4997d"),
Name: pulumi.String("...my_name..."),
SecretId: pulumi.String("...my_secret_id..."),
WorkspaceId: pulumi.String("40a9f4d4-7bdd-4a7c-90bb-08fd63077df2"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Airbyte = Pulumi.Airbyte;
return await Deployment.RunAsync(() =>
{
var mySourceWorkday = new Airbyte.SourceWorkday("my_source_workday", new()
{
Configuration = new Airbyte.Inputs.SourceWorkdayConfigurationArgs
{
AdditionalProperties = "{ \"see\": \"documentation\" }",
Credentials = new Airbyte.Inputs.SourceWorkdayConfigurationCredentialsArgs
{
Password = "...my_password...",
Username = "...my_username...",
},
Host = "...my_host...",
NumWorkers = 1,
ReportIds = new[]
{
new Airbyte.Inputs.SourceWorkdayConfigurationReportIdArgs
{
ReportId = "...my_report_id...",
},
},
TenantId = "...my_tenant_id...",
},
DefinitionId = "caf3b67e-129c-4e9e-a530-2b6adcf4997d",
Name = "...my_name...",
SecretId = "...my_secret_id...",
WorkspaceId = "40a9f4d4-7bdd-4a7c-90bb-08fd63077df2",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.SourceWorkday;
import com.pulumi.airbyte.SourceWorkdayArgs;
import com.pulumi.airbyte.inputs.SourceWorkdayConfigurationArgs;
import com.pulumi.airbyte.inputs.SourceWorkdayConfigurationCredentialsArgs;
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 mySourceWorkday = new SourceWorkday("mySourceWorkday", SourceWorkdayArgs.builder()
.configuration(SourceWorkdayConfigurationArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.credentials(SourceWorkdayConfigurationCredentialsArgs.builder()
.password("...my_password...")
.username("...my_username...")
.build())
.host("...my_host...")
.numWorkers(1.0)
.reportIds(SourceWorkdayConfigurationReportIdArgs.builder()
.reportId("...my_report_id...")
.build())
.tenantId("...my_tenant_id...")
.build())
.definitionId("caf3b67e-129c-4e9e-a530-2b6adcf4997d")
.name("...my_name...")
.secretId("...my_secret_id...")
.workspaceId("40a9f4d4-7bdd-4a7c-90bb-08fd63077df2")
.build());
}
}
resources:
mySourceWorkday:
type: airbyte:SourceWorkday
name: my_source_workday
properties:
configuration:
additionalProperties: '{ "see": "documentation" }'
credentials:
password: '...my_password...'
username: '...my_username...'
host: '...my_host...'
numWorkers: 1
reportIds:
- reportId: '...my_report_id...'
tenantId: '...my_tenant_id...'
definitionId: caf3b67e-129c-4e9e-a530-2b6adcf4997d
name: '...my_name...'
secretId: '...my_secret_id...'
workspaceId: 40a9f4d4-7bdd-4a7c-90bb-08fd63077df2
Create SourceWorkday Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceWorkday(name: string, args: SourceWorkdayArgs, opts?: CustomResourceOptions);@overload
def SourceWorkday(resource_name: str,
args: SourceWorkdayArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceWorkday(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceWorkdayConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)func NewSourceWorkday(ctx *Context, name string, args SourceWorkdayArgs, opts ...ResourceOption) (*SourceWorkday, error)public SourceWorkday(string name, SourceWorkdayArgs args, CustomResourceOptions? opts = null)
public SourceWorkday(String name, SourceWorkdayArgs args)
public SourceWorkday(String name, SourceWorkdayArgs args, CustomResourceOptions options)
type: airbyte:SourceWorkday
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 SourceWorkdayArgs
- 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 SourceWorkdayArgs
- 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 SourceWorkdayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceWorkdayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceWorkdayArgs
- 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 sourceWorkdayResource = new Airbyte.SourceWorkday("sourceWorkdayResource", new()
{
Configuration = new Airbyte.Inputs.SourceWorkdayConfigurationArgs
{
Credentials = new Airbyte.Inputs.SourceWorkdayConfigurationCredentialsArgs
{
Password = "string",
Username = "string",
},
Host = "string",
ReportIds = new[]
{
new Airbyte.Inputs.SourceWorkdayConfigurationReportIdArgs
{
ReportId = "string",
},
},
TenantId = "string",
AdditionalProperties = "string",
NumWorkers = 0,
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceWorkday(ctx, "sourceWorkdayResource", &airbyte.SourceWorkdayArgs{
Configuration: &airbyte.SourceWorkdayConfigurationArgs{
Credentials: &airbyte.SourceWorkdayConfigurationCredentialsArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
Host: pulumi.String("string"),
ReportIds: airbyte.SourceWorkdayConfigurationReportIdArray{
&airbyte.SourceWorkdayConfigurationReportIdArgs{
ReportId: pulumi.String("string"),
},
},
TenantId: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
NumWorkers: pulumi.Float64(0),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceWorkdayResource = new SourceWorkday("sourceWorkdayResource", SourceWorkdayArgs.builder()
.configuration(SourceWorkdayConfigurationArgs.builder()
.credentials(SourceWorkdayConfigurationCredentialsArgs.builder()
.password("string")
.username("string")
.build())
.host("string")
.reportIds(SourceWorkdayConfigurationReportIdArgs.builder()
.reportId("string")
.build())
.tenantId("string")
.additionalProperties("string")
.numWorkers(0.0)
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_workday_resource = airbyte.SourceWorkday("sourceWorkdayResource",
configuration={
"credentials": {
"password": "string",
"username": "string",
},
"host": "string",
"report_ids": [{
"report_id": "string",
}],
"tenant_id": "string",
"additional_properties": "string",
"num_workers": 0,
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourceWorkdayResource = new airbyte.SourceWorkday("sourceWorkdayResource", {
configuration: {
credentials: {
password: "string",
username: "string",
},
host: "string",
reportIds: [{
reportId: "string",
}],
tenantId: "string",
additionalProperties: "string",
numWorkers: 0,
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourceWorkday
properties:
configuration:
additionalProperties: string
credentials:
password: string
username: string
host: string
numWorkers: 0
reportIds:
- reportId: string
tenantId: string
definitionId: string
name: string
secretId: string
workspaceId: string
SourceWorkday 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 SourceWorkday resource accepts the following input properties:
- Configuration
Source
Workday Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
Source
Workday Configuration Args - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Workday Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Workday Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Workday Configuration Args - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration Property Map
- The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceWorkday resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceWorkday Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceWorkday Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourceWorkday Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourceWorkday Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- resource_
allocation SourceWorkday Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id String - source
Type String
Look up Existing SourceWorkday Resource
Get an existing SourceWorkday resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SourceWorkdayState, opts?: CustomResourceOptions): SourceWorkday@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceWorkdayConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
resource_allocation: Optional[SourceWorkdayResourceAllocationArgs] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourceWorkdayfunc GetSourceWorkday(ctx *Context, name string, id IDInput, state *SourceWorkdayState, opts ...ResourceOption) (*SourceWorkday, error)public static SourceWorkday Get(string name, Input<string> id, SourceWorkdayState? state, CustomResourceOptions? opts = null)public static SourceWorkday get(String name, Output<String> id, SourceWorkdayState state, CustomResourceOptions options)resources: _: type: airbyte:SourceWorkday get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Configuration
Source
Workday Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceWorkday Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- Configuration
Source
Workday Configuration Args - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceWorkday Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- configuration
Source
Workday Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceWorkday Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
- configuration
Source
Workday Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- created
At number - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceWorkday Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id string - source
Type string - workspace
Id string
- configuration
Source
Workday Configuration Args - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- resource_
allocation SourceWorkday Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source_
id str - source_
type str - workspace_
id str
- configuration Property Map
- The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
Supporting Types
SourceWorkdayConfiguration, SourceWorkdayConfigurationArgs
- Credentials
Source
Workday Configuration Credentials - Credentials for connecting to the Workday (RAAS) API.
- Host string
- Report
Ids List<SourceWorkday Configuration Report Id> - Report IDs can be found by clicking the three dots on the right side of the report > Web Service > View URLs > in JSON url copy everything between Workday tenant/ and ?format=json.
- Tenant
Id string - Additional
Properties string - Parsed as JSON.
- Num
Workers double - The number of worker threads to use for the sync. Default: 10
- Credentials
Source
Workday Configuration Credentials - Credentials for connecting to the Workday (RAAS) API.
- Host string
- Report
Ids []SourceWorkday Configuration Report Id - Report IDs can be found by clicking the three dots on the right side of the report > Web Service > View URLs > in JSON url copy everything between Workday tenant/ and ?format=json.
- Tenant
Id string - Additional
Properties string - Parsed as JSON.
- Num
Workers float64 - The number of worker threads to use for the sync. Default: 10
- credentials
Source
Workday Configuration Credentials - Credentials for connecting to the Workday (RAAS) API.
- host String
- report
Ids List<SourceWorkday Configuration Report Id> - Report IDs can be found by clicking the three dots on the right side of the report > Web Service > View URLs > in JSON url copy everything between Workday tenant/ and ?format=json.
- tenant
Id String - additional
Properties String - Parsed as JSON.
- num
Workers Double - The number of worker threads to use for the sync. Default: 10
- credentials
Source
Workday Configuration Credentials - Credentials for connecting to the Workday (RAAS) API.
- host string
- report
Ids SourceWorkday Configuration Report Id[] - Report IDs can be found by clicking the three dots on the right side of the report > Web Service > View URLs > in JSON url copy everything between Workday tenant/ and ?format=json.
- tenant
Id string - additional
Properties string - Parsed as JSON.
- num
Workers number - The number of worker threads to use for the sync. Default: 10
- credentials
Source
Workday Configuration Credentials - Credentials for connecting to the Workday (RAAS) API.
- host str
- report_
ids Sequence[SourceWorkday Configuration Report Id] - Report IDs can be found by clicking the three dots on the right side of the report > Web Service > View URLs > in JSON url copy everything between Workday tenant/ and ?format=json.
- tenant_
id str - additional_
properties str - Parsed as JSON.
- num_
workers float - The number of worker threads to use for the sync. Default: 10
- credentials Property Map
- Credentials for connecting to the Workday (RAAS) API.
- host String
- report
Ids List<Property Map> - Report IDs can be found by clicking the three dots on the right side of the report > Web Service > View URLs > in JSON url copy everything between Workday tenant/ and ?format=json.
- tenant
Id String - additional
Properties String - Parsed as JSON.
- num
Workers Number - The number of worker threads to use for the sync. Default: 10
SourceWorkdayConfigurationCredentials, SourceWorkdayConfigurationCredentialsArgs
SourceWorkdayConfigurationReportId, SourceWorkdayConfigurationReportIdArgs
- Report
Id string
- Report
Id string
- report
Id String
- report
Id string
- report_
id str
- report
Id String
SourceWorkdayResourceAllocation, SourceWorkdayResourceAllocationArgs
- Default
Source
Workday Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<SourceWorkday Resource Allocation Job Specific>
- Default
Source
Workday Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []SourceWorkday Resource Allocation Job Specific
- default_
Source
Workday Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<SourceWorkday Resource Allocation Job Specific>
- default
Source
Workday Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics SourceWorkday Resource Allocation Job Specific[]
- default
Source
Workday Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[SourceWorkday Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
SourceWorkdayResourceAllocationDefault, SourceWorkdayResourceAllocationDefaultArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
SourceWorkdayResourceAllocationJobSpecific, SourceWorkdayResourceAllocationJobSpecificArgs
- Job
Type string - enum that describes the different types of jobs that the platform runs.
- Resource
Requirements SourceWorkday Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Type string - enum that describes the different types of jobs that the platform runs.
- Resource
Requirements SourceWorkday Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs.
- resource
Requirements SourceWorkday Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type string - enum that describes the different types of jobs that the platform runs.
- resource
Requirements SourceWorkday Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job_
type str - enum that describes the different types of jobs that the platform runs.
- resource_
requirements SourceWorkday Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs.
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
SourceWorkdayResourceAllocationJobSpecificResourceRequirements, SourceWorkdayResourceAllocationJobSpecificResourceRequirementsArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
Import
In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:
terraform
import {
to = airbyte_source_workday.my_airbyte_source_workday
id = “…”
}
The pulumi import command can be used, for example:
$ pulumi import airbyte:index/sourceWorkday:SourceWorkday my_airbyte_source_workday "..."
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- airbyte airbytehq/terraform-provider-airbyte
- License
- Notes
- This Pulumi package is based on the
airbyteTerraform Provider.
