airbyte.SourceBreezometer
Explore with Pulumi AI
SourceBreezometer 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.SourceBreezometer;
import com.pulumi.airbyte.SourceBreezometerArgs;
import com.pulumi.airbyte.inputs.SourceBreezometerConfigurationArgs;
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 mySourceBreezometer = new SourceBreezometer("mySourceBreezometer", SourceBreezometerArgs.builder()
.configuration(SourceBreezometerConfigurationArgs.builder()
.api_key("...my_api_key...")
.days_to_forecast(3)
.historic_hours(30)
.hours_to_forecast(30)
.latitude("54.675003")
.longitude("-113.550282")
.radius(50)
.build())
.definitionId("1c519f7c-7ebb-4667-aa1f-d6ef608553ce")
.secretId("...my_secret_id...")
.workspaceId("bbb987c2-7298-4301-92bb-f47b2617a049")
.build());
}
}
resources:
mySourceBreezometer:
type: airbyte:SourceBreezometer
properties:
configuration:
api_key: '...my_api_key...'
days_to_forecast: 3
historic_hours: 30
hours_to_forecast: 30
latitude: '54.675003'
longitude: '-113.550282'
radius: 50
definitionId: 1c519f7c-7ebb-4667-aa1f-d6ef608553ce
secretId: '...my_secret_id...'
workspaceId: bbb987c2-7298-4301-92bb-f47b2617a049
Create SourceBreezometer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceBreezometer(name: string, args: SourceBreezometerArgs, opts?: CustomResourceOptions);
@overload
def SourceBreezometer(resource_name: str,
args: SourceBreezometerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceBreezometer(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceBreezometerConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourceBreezometer(ctx *Context, name string, args SourceBreezometerArgs, opts ...ResourceOption) (*SourceBreezometer, error)
public SourceBreezometer(string name, SourceBreezometerArgs args, CustomResourceOptions? opts = null)
public SourceBreezometer(String name, SourceBreezometerArgs args)
public SourceBreezometer(String name, SourceBreezometerArgs args, CustomResourceOptions options)
type: airbyte:SourceBreezometer
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 SourceBreezometerArgs
- 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 SourceBreezometerArgs
- 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 SourceBreezometerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceBreezometerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceBreezometerArgs
- 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 sourceBreezometerResource = new Airbyte.SourceBreezometer("sourceBreezometerResource", new()
{
Configuration = new Airbyte.Inputs.SourceBreezometerConfigurationArgs
{
ApiKey = "string",
Latitude = "string",
Longitude = "string",
DaysToForecast = 0,
HistoricHours = 0,
HoursToForecast = 0,
Radius = 0,
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceBreezometer(ctx, "sourceBreezometerResource", &airbyte.SourceBreezometerArgs{
Configuration: &.SourceBreezometerConfigurationArgs{
ApiKey: pulumi.String("string"),
Latitude: pulumi.String("string"),
Longitude: pulumi.String("string"),
DaysToForecast: pulumi.Float64(0),
HistoricHours: pulumi.Float64(0),
HoursToForecast: pulumi.Float64(0),
Radius: pulumi.Float64(0),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceBreezometerResource = new SourceBreezometer("sourceBreezometerResource", SourceBreezometerArgs.builder()
.configuration(SourceBreezometerConfigurationArgs.builder()
.apiKey("string")
.latitude("string")
.longitude("string")
.daysToForecast(0)
.historicHours(0)
.hoursToForecast(0)
.radius(0)
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_breezometer_resource = airbyte.SourceBreezometer("sourceBreezometerResource",
configuration={
"api_key": "string",
"latitude": "string",
"longitude": "string",
"days_to_forecast": 0,
"historic_hours": 0,
"hours_to_forecast": 0,
"radius": 0,
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourceBreezometerResource = new airbyte.SourceBreezometer("sourceBreezometerResource", {
configuration: {
apiKey: "string",
latitude: "string",
longitude: "string",
daysToForecast: 0,
historicHours: 0,
hoursToForecast: 0,
radius: 0,
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourceBreezometer
properties:
configuration:
apiKey: string
daysToForecast: 0
historicHours: 0
hoursToForecast: 0
latitude: string
longitude: string
radius: 0
definitionId: string
name: string
secretId: string
workspaceId: string
SourceBreezometer 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 SourceBreezometer resource accepts the following input properties:
- Configuration
Source
Breezometer 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
Breezometer 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
Breezometer 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
Breezometer 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
Breezometer 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 SourceBreezometer 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 SourceBreezometer Resource
Get an existing SourceBreezometer 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?: SourceBreezometerState, opts?: CustomResourceOptions): SourceBreezometer
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceBreezometerConfigurationArgs] = 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) -> SourceBreezometer
func GetSourceBreezometer(ctx *Context, name string, id IDInput, state *SourceBreezometerState, opts ...ResourceOption) (*SourceBreezometer, error)
public static SourceBreezometer Get(string name, Input<string> id, SourceBreezometerState? state, CustomResourceOptions? opts = null)
public static SourceBreezometer get(String name, Output<String> id, SourceBreezometerState state, CustomResourceOptions options)
resources: _: type: airbyte:SourceBreezometer 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
Breezometer 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
Breezometer 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
Breezometer 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
Breezometer 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
Breezometer 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
SourceBreezometerConfiguration, SourceBreezometerConfigurationArgs
- Api
Key string - Your API Access Key. See \n\nhere\n\n.
- Latitude string
- Latitude of the monitored location.
- Longitude string
- Longitude of the monitored location.
- Days
To doubleForecast - Number of days to forecast. Minimum 1, maximum 3. Valid for Polen and Weather Forecast streams.
- Historic
Hours double - Number of hours retireve from Air Quality History stream. Minimum 1, maximum 720.
- Hours
To doubleForecast - Number of hours to forecast. Minimum 1, maximum 96. Valid for Air Quality Forecast stream.
- Radius double
- Desired radius from the location provided. Minimum 5, maximum 100. Valid for Wildfires streams.
- Api
Key string - Your API Access Key. See \n\nhere\n\n.
- Latitude string
- Latitude of the monitored location.
- Longitude string
- Longitude of the monitored location.
- Days
To float64Forecast - Number of days to forecast. Minimum 1, maximum 3. Valid for Polen and Weather Forecast streams.
- Historic
Hours float64 - Number of hours retireve from Air Quality History stream. Minimum 1, maximum 720.
- Hours
To float64Forecast - Number of hours to forecast. Minimum 1, maximum 96. Valid for Air Quality Forecast stream.
- Radius float64
- Desired radius from the location provided. Minimum 5, maximum 100. Valid for Wildfires streams.
- api
Key String - Your API Access Key. See \n\nhere\n\n.
- latitude String
- Latitude of the monitored location.
- longitude String
- Longitude of the monitored location.
- days
To DoubleForecast - Number of days to forecast. Minimum 1, maximum 3. Valid for Polen and Weather Forecast streams.
- historic
Hours Double - Number of hours retireve from Air Quality History stream. Minimum 1, maximum 720.
- hours
To DoubleForecast - Number of hours to forecast. Minimum 1, maximum 96. Valid for Air Quality Forecast stream.
- radius Double
- Desired radius from the location provided. Minimum 5, maximum 100. Valid for Wildfires streams.
- api
Key string - Your API Access Key. See \n\nhere\n\n.
- latitude string
- Latitude of the monitored location.
- longitude string
- Longitude of the monitored location.
- days
To numberForecast - Number of days to forecast. Minimum 1, maximum 3. Valid for Polen and Weather Forecast streams.
- historic
Hours number - Number of hours retireve from Air Quality History stream. Minimum 1, maximum 720.
- hours
To numberForecast - Number of hours to forecast. Minimum 1, maximum 96. Valid for Air Quality Forecast stream.
- radius number
- Desired radius from the location provided. Minimum 5, maximum 100. Valid for Wildfires streams.
- api_
key str - Your API Access Key. See \n\nhere\n\n.
- latitude str
- Latitude of the monitored location.
- longitude str
- Longitude of the monitored location.
- days_
to_ floatforecast - Number of days to forecast. Minimum 1, maximum 3. Valid for Polen and Weather Forecast streams.
- historic_
hours float - Number of hours retireve from Air Quality History stream. Minimum 1, maximum 720.
- hours_
to_ floatforecast - Number of hours to forecast. Minimum 1, maximum 96. Valid for Air Quality Forecast stream.
- radius float
- Desired radius from the location provided. Minimum 5, maximum 100. Valid for Wildfires streams.
- api
Key String - Your API Access Key. See \n\nhere\n\n.
- latitude String
- Latitude of the monitored location.
- longitude String
- Longitude of the monitored location.
- days
To NumberForecast - Number of days to forecast. Minimum 1, maximum 3. Valid for Polen and Weather Forecast streams.
- historic
Hours Number - Number of hours retireve from Air Quality History stream. Minimum 1, maximum 720.
- hours
To NumberForecast - Number of hours to forecast. Minimum 1, maximum 96. Valid for Air Quality Forecast stream.
- radius Number
- Desired radius from the location provided. Minimum 5, maximum 100. Valid for Wildfires streams.
Import
$ pulumi import airbyte:index/sourceBreezometer:SourceBreezometer my_airbyte_source_breezometer ""
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.