airbyte.SourceGithub
Explore with Pulumi AI
SourceGithub Resource
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.SourceGithub;
import com.pulumi.airbyte.SourceGithubArgs;
import com.pulumi.airbyte.inputs.SourceGithubConfigurationArgs;
import com.pulumi.airbyte.inputs.SourceGithubConfigurationCredentialsArgs;
import com.pulumi.airbyte.inputs.SourceGithubConfigurationCredentialsOAuthArgs;
import com.pulumi.airbyte.inputs.SourceGithubConfigurationCredentialsPersonalAccessTokenArgs;
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 mySourceGithub = new SourceGithub("mySourceGithub", SourceGithubArgs.builder()
.configuration(SourceGithubConfigurationArgs.builder()
.api_url("https://github.com")
.branches("...")
.credentials(SourceGithubConfigurationCredentialsArgs.builder()
.oAuth(SourceGithubConfigurationCredentialsOAuthArgs.builder()
.accessToken("...my_access_token...")
.clientId("...my_client_id...")
.clientSecret("...my_client_secret...")
.build())
.personalAccessToken(SourceGithubConfigurationCredentialsPersonalAccessTokenArgs.builder()
.personalAccessToken("...my_personal_access_token...")
.build())
.build())
.max_waiting_time(10)
.repositories("...")
.start_date("2021-03-01T00:00:00Z")
.build())
.definitionId("eed1fe5e-7311-4b8b-9ce8-186629287c2f")
.secretId("...my_secret_id...")
.workspaceId("8cc76dd7-521b-4116-ab6d-3a729514b42f")
.build());
}
}
resources:
mySourceGithub:
type: airbyte:SourceGithub
properties:
configuration:
api_url: https://github.com
branches:
- '...'
credentials:
oAuth:
accessToken: '...my_access_token...'
clientId: '...my_client_id...'
clientSecret: '...my_client_secret...'
personalAccessToken:
personalAccessToken: '...my_personal_access_token...'
max_waiting_time: 10
repositories:
- '...'
start_date: 2021-03-01T00:00:00Z
definitionId: eed1fe5e-7311-4b8b-9ce8-186629287c2f
secretId: '...my_secret_id...'
workspaceId: 8cc76dd7-521b-4116-ab6d-3a729514b42f
Create SourceGithub Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceGithub(name: string, args: SourceGithubArgs, opts?: CustomResourceOptions);
@overload
def SourceGithub(resource_name: str,
args: SourceGithubArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceGithub(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceGithubConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourceGithub(ctx *Context, name string, args SourceGithubArgs, opts ...ResourceOption) (*SourceGithub, error)
public SourceGithub(string name, SourceGithubArgs args, CustomResourceOptions? opts = null)
public SourceGithub(String name, SourceGithubArgs args)
public SourceGithub(String name, SourceGithubArgs args, CustomResourceOptions options)
type: airbyte:SourceGithub
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 SourceGithubArgs
- 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 SourceGithubArgs
- 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 SourceGithubArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceGithubArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceGithubArgs
- 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 sourceGithubResource = new Airbyte.SourceGithub("sourceGithubResource", new()
{
Configuration = new Airbyte.Inputs.SourceGithubConfigurationArgs
{
Credentials = new Airbyte.Inputs.SourceGithubConfigurationCredentialsArgs
{
OAuth = new Airbyte.Inputs.SourceGithubConfigurationCredentialsOAuthArgs
{
AccessToken = "string",
ClientId = "string",
ClientSecret = "string",
},
PersonalAccessToken = new Airbyte.Inputs.SourceGithubConfigurationCredentialsPersonalAccessTokenArgs
{
PersonalAccessToken = "string",
},
},
Repositories = new[]
{
"string",
},
ApiUrl = "string",
Branches = new[]
{
"string",
},
MaxWaitingTime = 0,
StartDate = "string",
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceGithub(ctx, "sourceGithubResource", &airbyte.SourceGithubArgs{
Configuration: &.SourceGithubConfigurationArgs{
Credentials: &.SourceGithubConfigurationCredentialsArgs{
OAuth: &.SourceGithubConfigurationCredentialsOAuthArgs{
AccessToken: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
PersonalAccessToken: &.SourceGithubConfigurationCredentialsPersonalAccessTokenArgs{
PersonalAccessToken: pulumi.String("string"),
},
},
Repositories: pulumi.StringArray{
pulumi.String("string"),
},
ApiUrl: pulumi.String("string"),
Branches: pulumi.StringArray{
pulumi.String("string"),
},
MaxWaitingTime: pulumi.Float64(0),
StartDate: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceGithubResource = new SourceGithub("sourceGithubResource", SourceGithubArgs.builder()
.configuration(SourceGithubConfigurationArgs.builder()
.credentials(SourceGithubConfigurationCredentialsArgs.builder()
.oAuth(SourceGithubConfigurationCredentialsOAuthArgs.builder()
.accessToken("string")
.clientId("string")
.clientSecret("string")
.build())
.personalAccessToken(SourceGithubConfigurationCredentialsPersonalAccessTokenArgs.builder()
.personalAccessToken("string")
.build())
.build())
.repositories("string")
.apiUrl("string")
.branches("string")
.maxWaitingTime(0)
.startDate("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_github_resource = airbyte.SourceGithub("sourceGithubResource",
configuration={
"credentials": {
"o_auth": {
"access_token": "string",
"client_id": "string",
"client_secret": "string",
},
"personal_access_token": {
"personal_access_token": "string",
},
},
"repositories": ["string"],
"api_url": "string",
"branches": ["string"],
"max_waiting_time": 0,
"start_date": "string",
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourceGithubResource = new airbyte.SourceGithub("sourceGithubResource", {
configuration: {
credentials: {
oAuth: {
accessToken: "string",
clientId: "string",
clientSecret: "string",
},
personalAccessToken: {
personalAccessToken: "string",
},
},
repositories: ["string"],
apiUrl: "string",
branches: ["string"],
maxWaitingTime: 0,
startDate: "string",
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourceGithub
properties:
configuration:
apiUrl: string
branches:
- string
credentials:
oAuth:
accessToken: string
clientId: string
clientSecret: string
personalAccessToken:
personalAccessToken: string
maxWaitingTime: 0
repositories:
- string
startDate: string
definitionId: string
name: string
secretId: string
workspaceId: string
SourceGithub 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 SourceGithub resource accepts the following input properties:
- Configuration
Source
Github Configuration - 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
Github Configuration Args - 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
Github Configuration - 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
Github Configuration - 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
Github Configuration Args - 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
- 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 SourceGithub resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type String
Look up Existing SourceGithub Resource
Get an existing SourceGithub 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?: SourceGithubState, opts?: CustomResourceOptions): SourceGithub
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceGithubConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourceGithub
func GetSourceGithub(ctx *Context, name string, id IDInput, state *SourceGithubState, opts ...ResourceOption) (*SourceGithub, error)
public static SourceGithub Get(string name, Input<string> id, SourceGithubState? state, CustomResourceOptions? opts = null)
public static SourceGithub get(String name, Output<String> id, SourceGithubState state, CustomResourceOptions options)
resources: _: type: airbyte:SourceGithub 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
Github Configuration - 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.
- 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
Github Configuration Args - 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.
- 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
Github Configuration - 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.
- 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
Github Configuration - 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.
- 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
Github Configuration Args - 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.
- 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
- 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.
- 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
SourceGithubConfiguration, SourceGithubConfigurationArgs
- Credentials
Source
Github Configuration Credentials - Choose how to authenticate to GitHub
- Repositories List<string>
- List of GitHub organizations/repositories, e.g.
airbytehq/airbyte
for single repository,airbytehq/*
for get all repositories from organization and `airbytehq/a* for matching multiple repositories by pattern. - Api
Url string - Please enter your basic URL from self-hosted GitHub instance or leave it empty to use GitHub. Default: "https://api.github.com/"
- Branches List<string>
- List of GitHub repository branches to pull commits for, e.g.
airbytehq/airbyte/master
. If no branches are specified for a repository, the default branch will be pulled. - Max
Waiting doubleTime - Max Waiting Time for rate limit. Set higher value to wait till rate limits will be resetted to continue sync. Default: 10
- Start
Date string - The date from which you'd like to replicate data from GitHub in the format YYYY-MM-DDT00:00:00Z. If the date is not set, all data will be replicated. For the streams which support this configuration, only data generated on or after the start date will be replicated. This field doesn't apply to all streams, see the \n\ndocs\n\n for more info
- Credentials
Source
Github Configuration Credentials - Choose how to authenticate to GitHub
- Repositories []string
- List of GitHub organizations/repositories, e.g.
airbytehq/airbyte
for single repository,airbytehq/*
for get all repositories from organization and `airbytehq/a* for matching multiple repositories by pattern. - Api
Url string - Please enter your basic URL from self-hosted GitHub instance or leave it empty to use GitHub. Default: "https://api.github.com/"
- Branches []string
- List of GitHub repository branches to pull commits for, e.g.
airbytehq/airbyte/master
. If no branches are specified for a repository, the default branch will be pulled. - Max
Waiting float64Time - Max Waiting Time for rate limit. Set higher value to wait till rate limits will be resetted to continue sync. Default: 10
- Start
Date string - The date from which you'd like to replicate data from GitHub in the format YYYY-MM-DDT00:00:00Z. If the date is not set, all data will be replicated. For the streams which support this configuration, only data generated on or after the start date will be replicated. This field doesn't apply to all streams, see the \n\ndocs\n\n for more info
- credentials
Source
Github Configuration Credentials - Choose how to authenticate to GitHub
- repositories List<String>
- List of GitHub organizations/repositories, e.g.
airbytehq/airbyte
for single repository,airbytehq/*
for get all repositories from organization and `airbytehq/a* for matching multiple repositories by pattern. - api
Url String - Please enter your basic URL from self-hosted GitHub instance or leave it empty to use GitHub. Default: "https://api.github.com/"
- branches List<String>
- List of GitHub repository branches to pull commits for, e.g.
airbytehq/airbyte/master
. If no branches are specified for a repository, the default branch will be pulled. - max
Waiting DoubleTime - Max Waiting Time for rate limit. Set higher value to wait till rate limits will be resetted to continue sync. Default: 10
- start
Date String - The date from which you'd like to replicate data from GitHub in the format YYYY-MM-DDT00:00:00Z. If the date is not set, all data will be replicated. For the streams which support this configuration, only data generated on or after the start date will be replicated. This field doesn't apply to all streams, see the \n\ndocs\n\n for more info
- credentials
Source
Github Configuration Credentials - Choose how to authenticate to GitHub
- repositories string[]
- List of GitHub organizations/repositories, e.g.
airbytehq/airbyte
for single repository,airbytehq/*
for get all repositories from organization and `airbytehq/a* for matching multiple repositories by pattern. - api
Url string - Please enter your basic URL from self-hosted GitHub instance or leave it empty to use GitHub. Default: "https://api.github.com/"
- branches string[]
- List of GitHub repository branches to pull commits for, e.g.
airbytehq/airbyte/master
. If no branches are specified for a repository, the default branch will be pulled. - max
Waiting numberTime - Max Waiting Time for rate limit. Set higher value to wait till rate limits will be resetted to continue sync. Default: 10
- start
Date string - The date from which you'd like to replicate data from GitHub in the format YYYY-MM-DDT00:00:00Z. If the date is not set, all data will be replicated. For the streams which support this configuration, only data generated on or after the start date will be replicated. This field doesn't apply to all streams, see the \n\ndocs\n\n for more info
- credentials
Source
Github Configuration Credentials - Choose how to authenticate to GitHub
- repositories Sequence[str]
- List of GitHub organizations/repositories, e.g.
airbytehq/airbyte
for single repository,airbytehq/*
for get all repositories from organization and `airbytehq/a* for matching multiple repositories by pattern. - api_
url str - Please enter your basic URL from self-hosted GitHub instance or leave it empty to use GitHub. Default: "https://api.github.com/"
- branches Sequence[str]
- List of GitHub repository branches to pull commits for, e.g.
airbytehq/airbyte/master
. If no branches are specified for a repository, the default branch will be pulled. - max_
waiting_ floattime - Max Waiting Time for rate limit. Set higher value to wait till rate limits will be resetted to continue sync. Default: 10
- start_
date str - The date from which you'd like to replicate data from GitHub in the format YYYY-MM-DDT00:00:00Z. If the date is not set, all data will be replicated. For the streams which support this configuration, only data generated on or after the start date will be replicated. This field doesn't apply to all streams, see the \n\ndocs\n\n for more info
- credentials Property Map
- Choose how to authenticate to GitHub
- repositories List<String>
- List of GitHub organizations/repositories, e.g.
airbytehq/airbyte
for single repository,airbytehq/*
for get all repositories from organization and `airbytehq/a* for matching multiple repositories by pattern. - api
Url String - Please enter your basic URL from self-hosted GitHub instance or leave it empty to use GitHub. Default: "https://api.github.com/"
- branches List<String>
- List of GitHub repository branches to pull commits for, e.g.
airbytehq/airbyte/master
. If no branches are specified for a repository, the default branch will be pulled. - max
Waiting NumberTime - Max Waiting Time for rate limit. Set higher value to wait till rate limits will be resetted to continue sync. Default: 10
- start
Date String - The date from which you'd like to replicate data from GitHub in the format YYYY-MM-DDT00:00:00Z. If the date is not set, all data will be replicated. For the streams which support this configuration, only data generated on or after the start date will be replicated. This field doesn't apply to all streams, see the \n\ndocs\n\n for more info
SourceGithubConfigurationCredentials, SourceGithubConfigurationCredentialsArgs
SourceGithubConfigurationCredentialsOAuth, SourceGithubConfigurationCredentialsOAuthArgs
- Access
Token string - OAuth access token
- Client
Id string - OAuth Client Id
- Client
Secret string - OAuth Client secret
- Access
Token string - OAuth access token
- Client
Id string - OAuth Client Id
- Client
Secret string - OAuth Client secret
- access
Token String - OAuth access token
- client
Id String - OAuth Client Id
- client
Secret String - OAuth Client secret
- access
Token string - OAuth access token
- client
Id string - OAuth Client Id
- client
Secret string - OAuth Client secret
- access_
token str - OAuth access token
- client_
id str - OAuth Client Id
- client_
secret str - OAuth Client secret
- access
Token String - OAuth access token
- client
Id String - OAuth Client Id
- client
Secret String - OAuth Client secret
SourceGithubConfigurationCredentialsPersonalAccessToken, SourceGithubConfigurationCredentialsPersonalAccessTokenArgs
- Personal
Access stringToken - Log into GitHub and then generate a \n\npersonal access token\n\n. To load balance your API quota consumption across multiple API tokens, input multiple tokens separated with ","
- Personal
Access stringToken - Log into GitHub and then generate a \n\npersonal access token\n\n. To load balance your API quota consumption across multiple API tokens, input multiple tokens separated with ","
- personal
Access StringToken - Log into GitHub and then generate a \n\npersonal access token\n\n. To load balance your API quota consumption across multiple API tokens, input multiple tokens separated with ","
- personal
Access stringToken - Log into GitHub and then generate a \n\npersonal access token\n\n. To load balance your API quota consumption across multiple API tokens, input multiple tokens separated with ","
- personal_
access_ strtoken - Log into GitHub and then generate a \n\npersonal access token\n\n. To load balance your API quota consumption across multiple API tokens, input multiple tokens separated with ","
- personal
Access StringToken - Log into GitHub and then generate a \n\npersonal access token\n\n. To load balance your API quota consumption across multiple API tokens, input multiple tokens separated with ","
Import
$ pulumi import airbyte:index/sourceGithub:SourceGithub my_airbyte_source_github ""
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
airbyte
Terraform Provider.