Skip to content

Latest commit

 

History

History
77 lines (55 loc) · 2.66 KB

source_microsoft_sharepoint.md

File metadata and controls

77 lines (55 loc) · 2.66 KB
page_title subcategory description
airbyte_source_microsoft_sharepoint Data Source - terraform-provider-airbyte
SourceMicrosoftSharepoint DataSource

airbyte_source_microsoft_sharepoint (Data Source)

SourceMicrosoftSharepoint DataSource

Example Usage

data "airbyte_source_microsoft_sharepoint" "my_source_microsoftsharepoint" {
  source_id = "...my_source_id..."
}

Schema

Required

  • source_id (String)

Read-Only

  • configuration (String) The values required to configure the source. Parsed as JSON.
  • created_at (Number)
  • definition_id (String)
  • name (String)
  • resource_allocation (Attributes) 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. (see below for nested schema)
  • source_type (String)
  • workspace_id (String)

Nested Schema for resource_allocation

Read-Only:

Nested Schema for resource_allocation.default

Read-Only:

  • cpu_limit (String)
  • cpu_request (String)
  • ephemeral_storage_limit (String)
  • ephemeral_storage_request (String)
  • memory_limit (String)
  • memory_request (String)

Nested Schema for resource_allocation.job_specific

Read-Only:

  • job_type (String) enum that describes the different types of jobs that the platform runs.
  • resource_requirements (Attributes) optional resource requirements to run workers (blank for unbounded allocations) (see below for nested schema)

Nested Schema for resource_allocation.job_specific.resource_requirements

Read-Only:

  • cpu_limit (String)
  • cpu_request (String)
  • ephemeral_storage_limit (String)
  • ephemeral_storage_request (String)
  • memory_limit (String)
  • memory_request (String)