1. Packages
  2. Airbyte Provider
  3. API Docs
  4. SourceRentcast
airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq

airbyte.SourceRentcast

Explore with Pulumi AI

SourceRentcast 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.SourceRentcast;
import com.pulumi.airbyte.SourceRentcastArgs;
import com.pulumi.airbyte.inputs.SourceRentcastConfigurationArgs;
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 mySourceRentcast = new SourceRentcast("mySourceRentcast", SourceRentcastArgs.builder()
            .configuration(SourceRentcastConfigurationArgs.builder()
                .address("...my_address...")
                .api_key("...my_api_key...")
                .bath_rooms(4)
                .bedrooms(6.5)
                .city("...my_city...")
                .data_type("...my_data_type...")
                .days_old("...my_days_old...")
                .history_range("...my_history_range...")
                .latitude("...my_latitude...")
                .longitude("...my_longitude...")
                .property_type("...my_property_type...")
                .radius("...my_radius...")
                .state("...my_state...")
                .status("...my_status...")
                .zipcode("...my_zipcode...")
                .build())
            .definitionId("bfe52bf4-2ea5-49dd-9abb-b29c6b50de3d")
            .secretId("...my_secret_id...")
            .workspaceId("3f87ec5f-32c1-47a2-a7ac-1ceb39bed343")
            .build());

    }
}
Copy
resources:
  mySourceRentcast:
    type: airbyte:SourceRentcast
    properties:
      configuration:
        address: '...my_address...'
        api_key: '...my_api_key...'
        bath_rooms: 4
        bedrooms: 6.5
        city: '...my_city...'
        data_type: '...my_data_type...'
        days_old: '...my_days_old...'
        history_range: '...my_history_range...'
        latitude: '...my_latitude...'
        longitude: '...my_longitude...'
        property_type: '...my_property_type...'
        radius: '...my_radius...'
        state: '...my_state...'
        status: '...my_status...'
        zipcode: '...my_zipcode...'
      definitionId: bfe52bf4-2ea5-49dd-9abb-b29c6b50de3d
      secretId: '...my_secret_id...'
      workspaceId: 3f87ec5f-32c1-47a2-a7ac-1ceb39bed343
Copy

Create SourceRentcast Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new SourceRentcast(name: string, args: SourceRentcastArgs, opts?: CustomResourceOptions);
@overload
def SourceRentcast(resource_name: str,
                   args: SourceRentcastArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def SourceRentcast(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   configuration: Optional[SourceRentcastConfigurationArgs] = None,
                   workspace_id: Optional[str] = None,
                   definition_id: Optional[str] = None,
                   name: Optional[str] = None,
                   secret_id: Optional[str] = None)
func NewSourceRentcast(ctx *Context, name string, args SourceRentcastArgs, opts ...ResourceOption) (*SourceRentcast, error)
public SourceRentcast(string name, SourceRentcastArgs args, CustomResourceOptions? opts = null)
public SourceRentcast(String name, SourceRentcastArgs args)
public SourceRentcast(String name, SourceRentcastArgs args, CustomResourceOptions options)
type: airbyte:SourceRentcast
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. SourceRentcastArgs
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. SourceRentcastArgs
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. SourceRentcastArgs
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. SourceRentcastArgs
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. SourceRentcastArgs
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 sourceRentcastResource = new Airbyte.SourceRentcast("sourceRentcastResource", new()
{
    Configuration = new Airbyte.Inputs.SourceRentcastConfigurationArgs
    {
        ApiKey = "string",
        DaysOld = "string",
        BathRooms = 0,
        Bedrooms = 0,
        City = "string",
        DataType = "string",
        Address = "string",
        HistoryRange = "string",
        Latitude = "string",
        Longitude = "string",
        PropertyType = "string",
        Radius = "string",
        State = "string",
        Status = "string",
        Zipcode = "string",
    },
    WorkspaceId = "string",
    DefinitionId = "string",
    Name = "string",
    SecretId = "string",
});
Copy
example, err := airbyte.NewSourceRentcast(ctx, "sourceRentcastResource", &airbyte.SourceRentcastArgs{
Configuration: &.SourceRentcastConfigurationArgs{
ApiKey: pulumi.String("string"),
DaysOld: pulumi.String("string"),
BathRooms: pulumi.Float64(0),
Bedrooms: pulumi.Float64(0),
City: pulumi.String("string"),
DataType: pulumi.String("string"),
Address: pulumi.String("string"),
HistoryRange: pulumi.String("string"),
Latitude: pulumi.String("string"),
Longitude: pulumi.String("string"),
PropertyType: pulumi.String("string"),
Radius: pulumi.String("string"),
State: pulumi.String("string"),
Status: pulumi.String("string"),
Zipcode: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
Copy
var sourceRentcastResource = new SourceRentcast("sourceRentcastResource", SourceRentcastArgs.builder()
    .configuration(SourceRentcastConfigurationArgs.builder()
        .apiKey("string")
        .daysOld("string")
        .bathRooms(0)
        .bedrooms(0)
        .city("string")
        .dataType("string")
        .address("string")
        .historyRange("string")
        .latitude("string")
        .longitude("string")
        .propertyType("string")
        .radius("string")
        .state("string")
        .status("string")
        .zipcode("string")
        .build())
    .workspaceId("string")
    .definitionId("string")
    .name("string")
    .secretId("string")
    .build());
Copy
source_rentcast_resource = airbyte.SourceRentcast("sourceRentcastResource",
    configuration={
        "api_key": "string",
        "days_old": "string",
        "bath_rooms": 0,
        "bedrooms": 0,
        "city": "string",
        "data_type": "string",
        "address": "string",
        "history_range": "string",
        "latitude": "string",
        "longitude": "string",
        "property_type": "string",
        "radius": "string",
        "state": "string",
        "status": "string",
        "zipcode": "string",
    },
    workspace_id="string",
    definition_id="string",
    name="string",
    secret_id="string")
Copy
const sourceRentcastResource = new airbyte.SourceRentcast("sourceRentcastResource", {
    configuration: {
        apiKey: "string",
        daysOld: "string",
        bathRooms: 0,
        bedrooms: 0,
        city: "string",
        dataType: "string",
        address: "string",
        historyRange: "string",
        latitude: "string",
        longitude: "string",
        propertyType: "string",
        radius: "string",
        state: "string",
        status: "string",
        zipcode: "string",
    },
    workspaceId: "string",
    definitionId: "string",
    name: "string",
    secretId: "string",
});
Copy
type: airbyte:SourceRentcast
properties:
    configuration:
        address: string
        apiKey: string
        bathRooms: 0
        bedrooms: 0
        city: string
        dataType: string
        daysOld: string
        historyRange: string
        latitude: string
        longitude: string
        propertyType: string
        radius: string
        state: string
        status: string
        zipcode: string
    definitionId: string
    name: string
    secretId: string
    workspaceId: string
Copy

SourceRentcast 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 SourceRentcast resource accepts the following input properties:

Configuration This property is required. SourceRentcastConfiguration
WorkspaceId This property is required. string
DefinitionId 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.
SecretId string
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
Configuration This property is required. SourceRentcastConfigurationArgs
WorkspaceId This property is required. string
DefinitionId 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.
SecretId string
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
configuration This property is required. SourceRentcastConfiguration
workspaceId This property is required. String
definitionId 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.
secretId String
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
configuration This property is required. SourceRentcastConfiguration
workspaceId This property is required. string
definitionId 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.
secretId string
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
configuration This property is required. SourceRentcastConfigurationArgs
workspace_id This property is required. 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 This property is required. Property Map
workspaceId This property is required. String
definitionId 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.
secretId 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 SourceRentcast resource produces the following output properties:

CreatedAt double
Id string
The provider-assigned unique ID for this managed resource.
ResourceAllocation SourceRentcastResourceAllocation
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.
SourceId string
SourceType string
CreatedAt float64
Id string
The provider-assigned unique ID for this managed resource.
ResourceAllocation SourceRentcastResourceAllocation
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.
SourceId string
SourceType string
createdAt Double
id String
The provider-assigned unique ID for this managed resource.
resourceAllocation SourceRentcastResourceAllocation
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.
sourceId String
sourceType String
createdAt number
id string
The provider-assigned unique ID for this managed resource.
resourceAllocation SourceRentcastResourceAllocation
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.
sourceId string
sourceType string
created_at float
id str
The provider-assigned unique ID for this managed resource.
resource_allocation SourceRentcastResourceAllocation
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
createdAt Number
id String
The provider-assigned unique ID for this managed resource.
resourceAllocation 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.
sourceId String
sourceType String

Look up Existing SourceRentcast Resource

Get an existing SourceRentcast 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?: SourceRentcastState, opts?: CustomResourceOptions): SourceRentcast
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        configuration: Optional[SourceRentcastConfigurationArgs] = None,
        created_at: Optional[float] = None,
        definition_id: Optional[str] = None,
        name: Optional[str] = None,
        resource_allocation: Optional[SourceRentcastResourceAllocationArgs] = None,
        secret_id: Optional[str] = None,
        source_id: Optional[str] = None,
        source_type: Optional[str] = None,
        workspace_id: Optional[str] = None) -> SourceRentcast
func GetSourceRentcast(ctx *Context, name string, id IDInput, state *SourceRentcastState, opts ...ResourceOption) (*SourceRentcast, error)
public static SourceRentcast Get(string name, Input<string> id, SourceRentcastState? state, CustomResourceOptions? opts = null)
public static SourceRentcast get(String name, Output<String> id, SourceRentcastState state, CustomResourceOptions options)
resources:  _:    type: airbyte:SourceRentcast    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Configuration SourceRentcastConfiguration
CreatedAt double
DefinitionId 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.
ResourceAllocation SourceRentcastResourceAllocation
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.
SecretId string
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
SourceId string
SourceType string
WorkspaceId string
Configuration SourceRentcastConfigurationArgs
CreatedAt float64
DefinitionId 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.
ResourceAllocation SourceRentcastResourceAllocationArgs
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.
SecretId string
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
SourceId string
SourceType string
WorkspaceId string
configuration SourceRentcastConfiguration
createdAt Double
definitionId 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.
resourceAllocation SourceRentcastResourceAllocation
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.
secretId String
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
sourceId String
sourceType String
workspaceId String
configuration SourceRentcastConfiguration
createdAt number
definitionId 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.
resourceAllocation SourceRentcastResourceAllocation
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.
secretId string
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
sourceId string
sourceType string
workspaceId string
configuration SourceRentcastConfigurationArgs
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 SourceRentcastResourceAllocationArgs
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
createdAt Number
definitionId 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.
resourceAllocation 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.
secretId String
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
sourceId String
sourceType String
workspaceId String

Supporting Types

SourceRentcastConfiguration
, SourceRentcastConfigurationArgs

ApiKey This property is required. string
Address string
The full address of the property, in the format of Street, City, State, Zip. Used to retrieve data for a specific property, or together with the radius parameter to search for listings in a specific area
BathRooms double
The number of bathrooms, used to search for listings matching this criteria. Supports fractions to indicate partial bathrooms
Bedrooms double
The number of bedrooms, used to search for listings matching this criteria. Use 0 to indicate a studio layout
City string
The name of the city, used to search for listings in a specific city. This parameter is case-sensitive
DataType string
The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental
DaysOld string
The maximum number of days since a property was listed on the market, with a minimum of 1 or The maximum number of days since a property was last sold, with a minimum of 1. Used to search for properties that were sold within the specified date range
HistoryRange string
The time range for historical record entries, in months. Defaults to 12 if not provided
Latitude string
The latitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
Longitude string
The longitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
PropertyType string
The type of the property, used to search for listings matching this criteria : Single Family , Condo , Townhouse , Manufactured , Multi-Family , Apartment , Land ,
Radius string
The radius of the search area in miles, with a maximum of 100. Use in combination with the latitude/longitude or address parameters to search for listings in a specific area
State string
The 2-character state abbreviation, used to search for listings in a specific state. This parameter is case-sensitive
Status string
The current listing status, used to search for listings matching this criteria : Active or Inactive
Zipcode string
The 5-digit zip code, used to search for listings in a specific zip code
ApiKey This property is required. string
Address string
The full address of the property, in the format of Street, City, State, Zip. Used to retrieve data for a specific property, or together with the radius parameter to search for listings in a specific area
BathRooms float64
The number of bathrooms, used to search for listings matching this criteria. Supports fractions to indicate partial bathrooms
Bedrooms float64
The number of bedrooms, used to search for listings matching this criteria. Use 0 to indicate a studio layout
City string
The name of the city, used to search for listings in a specific city. This parameter is case-sensitive
DataType string
The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental
DaysOld string
The maximum number of days since a property was listed on the market, with a minimum of 1 or The maximum number of days since a property was last sold, with a minimum of 1. Used to search for properties that were sold within the specified date range
HistoryRange string
The time range for historical record entries, in months. Defaults to 12 if not provided
Latitude string
The latitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
Longitude string
The longitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
PropertyType string
The type of the property, used to search for listings matching this criteria : Single Family , Condo , Townhouse , Manufactured , Multi-Family , Apartment , Land ,
Radius string
The radius of the search area in miles, with a maximum of 100. Use in combination with the latitude/longitude or address parameters to search for listings in a specific area
State string
The 2-character state abbreviation, used to search for listings in a specific state. This parameter is case-sensitive
Status string
The current listing status, used to search for listings matching this criteria : Active or Inactive
Zipcode string
The 5-digit zip code, used to search for listings in a specific zip code
apiKey This property is required. String
address String
The full address of the property, in the format of Street, City, State, Zip. Used to retrieve data for a specific property, or together with the radius parameter to search for listings in a specific area
bathRooms Double
The number of bathrooms, used to search for listings matching this criteria. Supports fractions to indicate partial bathrooms
bedrooms Double
The number of bedrooms, used to search for listings matching this criteria. Use 0 to indicate a studio layout
city String
The name of the city, used to search for listings in a specific city. This parameter is case-sensitive
dataType String
The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental
daysOld String
The maximum number of days since a property was listed on the market, with a minimum of 1 or The maximum number of days since a property was last sold, with a minimum of 1. Used to search for properties that were sold within the specified date range
historyRange String
The time range for historical record entries, in months. Defaults to 12 if not provided
latitude String
The latitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
longitude String
The longitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
propertyType String
The type of the property, used to search for listings matching this criteria : Single Family , Condo , Townhouse , Manufactured , Multi-Family , Apartment , Land ,
radius String
The radius of the search area in miles, with a maximum of 100. Use in combination with the latitude/longitude or address parameters to search for listings in a specific area
state String
The 2-character state abbreviation, used to search for listings in a specific state. This parameter is case-sensitive
status String
The current listing status, used to search for listings matching this criteria : Active or Inactive
zipcode String
The 5-digit zip code, used to search for listings in a specific zip code
apiKey This property is required. string
address string
The full address of the property, in the format of Street, City, State, Zip. Used to retrieve data for a specific property, or together with the radius parameter to search for listings in a specific area
bathRooms number
The number of bathrooms, used to search for listings matching this criteria. Supports fractions to indicate partial bathrooms
bedrooms number
The number of bedrooms, used to search for listings matching this criteria. Use 0 to indicate a studio layout
city string
The name of the city, used to search for listings in a specific city. This parameter is case-sensitive
dataType string
The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental
daysOld string
The maximum number of days since a property was listed on the market, with a minimum of 1 or The maximum number of days since a property was last sold, with a minimum of 1. Used to search for properties that were sold within the specified date range
historyRange string
The time range for historical record entries, in months. Defaults to 12 if not provided
latitude string
The latitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
longitude string
The longitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
propertyType string
The type of the property, used to search for listings matching this criteria : Single Family , Condo , Townhouse , Manufactured , Multi-Family , Apartment , Land ,
radius string
The radius of the search area in miles, with a maximum of 100. Use in combination with the latitude/longitude or address parameters to search for listings in a specific area
state string
The 2-character state abbreviation, used to search for listings in a specific state. This parameter is case-sensitive
status string
The current listing status, used to search for listings matching this criteria : Active or Inactive
zipcode string
The 5-digit zip code, used to search for listings in a specific zip code
api_key This property is required. str
address str
The full address of the property, in the format of Street, City, State, Zip. Used to retrieve data for a specific property, or together with the radius parameter to search for listings in a specific area
bath_rooms float
The number of bathrooms, used to search for listings matching this criteria. Supports fractions to indicate partial bathrooms
bedrooms float
The number of bedrooms, used to search for listings matching this criteria. Use 0 to indicate a studio layout
city str
The name of the city, used to search for listings in a specific city. This parameter is case-sensitive
data_type str
The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental
days_old str
The maximum number of days since a property was listed on the market, with a minimum of 1 or The maximum number of days since a property was last sold, with a minimum of 1. Used to search for properties that were sold within the specified date range
history_range str
The time range for historical record entries, in months. Defaults to 12 if not provided
latitude str
The latitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
longitude str
The longitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
property_type str
The type of the property, used to search for listings matching this criteria : Single Family , Condo , Townhouse , Manufactured , Multi-Family , Apartment , Land ,
radius str
The radius of the search area in miles, with a maximum of 100. Use in combination with the latitude/longitude or address parameters to search for listings in a specific area
state str
The 2-character state abbreviation, used to search for listings in a specific state. This parameter is case-sensitive
status str
The current listing status, used to search for listings matching this criteria : Active or Inactive
zipcode str
The 5-digit zip code, used to search for listings in a specific zip code
apiKey This property is required. String
address String
The full address of the property, in the format of Street, City, State, Zip. Used to retrieve data for a specific property, or together with the radius parameter to search for listings in a specific area
bathRooms Number
The number of bathrooms, used to search for listings matching this criteria. Supports fractions to indicate partial bathrooms
bedrooms Number
The number of bedrooms, used to search for listings matching this criteria. Use 0 to indicate a studio layout
city String
The name of the city, used to search for listings in a specific city. This parameter is case-sensitive
dataType String
The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental
daysOld String
The maximum number of days since a property was listed on the market, with a minimum of 1 or The maximum number of days since a property was last sold, with a minimum of 1. Used to search for properties that were sold within the specified date range
historyRange String
The time range for historical record entries, in months. Defaults to 12 if not provided
latitude String
The latitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
longitude String
The longitude of the search area. Use the latitude/longitude and radius parameters to search for listings in a specific area
propertyType String
The type of the property, used to search for listings matching this criteria : Single Family , Condo , Townhouse , Manufactured , Multi-Family , Apartment , Land ,
radius String
The radius of the search area in miles, with a maximum of 100. Use in combination with the latitude/longitude or address parameters to search for listings in a specific area
state String
The 2-character state abbreviation, used to search for listings in a specific state. This parameter is case-sensitive
status String
The current listing status, used to search for listings matching this criteria : Active or Inactive
zipcode String
The 5-digit zip code, used to search for listings in a specific zip code

SourceRentcastResourceAllocation
, SourceRentcastResourceAllocationArgs

Default SourceRentcastResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
JobSpecifics List<SourceRentcastResourceAllocationJobSpecific>
Default SourceRentcastResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
JobSpecifics []SourceRentcastResourceAllocationJobSpecific
default_ SourceRentcastResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
jobSpecifics List<SourceRentcastResourceAllocationJobSpecific>
default SourceRentcastResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
jobSpecifics SourceRentcastResourceAllocationJobSpecific[]
default SourceRentcastResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
job_specifics Sequence[SourceRentcastResourceAllocationJobSpecific]
default Property Map
optional resource requirements to run workers (blank for unbounded allocations)
jobSpecifics List<Property Map>

SourceRentcastResourceAllocationDefault
, SourceRentcastResourceAllocationDefaultArgs

SourceRentcastResourceAllocationJobSpecific
, SourceRentcastResourceAllocationJobSpecificArgs

JobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
ResourceRequirements SourceRentcastResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
JobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
ResourceRequirements SourceRentcastResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType String
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements SourceRentcastResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements SourceRentcastResourceAllocationJobSpecificResourceRequirements
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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resource_requirements SourceRentcastResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType String
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements Property Map
optional resource requirements to run workers (blank for unbounded allocations)

SourceRentcastResourceAllocationJobSpecificResourceRequirements
, SourceRentcastResourceAllocationJobSpecificResourceRequirementsArgs

Import

$ pulumi import airbyte:index/sourceRentcast:SourceRentcast my_airbyte_source_rentcast ""
Copy

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.