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());
}
}
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
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 string
- The unique name of the resource.
- args SourceRentcastArgs
- 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 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 string
- The unique name of the resource.
- args SourceRentcastArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceRentcastArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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
Source
Rentcast 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
Rentcast 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
Rentcast 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
Rentcast 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
Rentcast 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 SourceRentcast resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceRentcast 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 SourceRentcast 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 SourceRentcast 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 SourceRentcast 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 SourceRentcast 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 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
- 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
Rentcast 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.
- Resource
Allocation SourceRentcast 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
Rentcast 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.
- Resource
Allocation SourceRentcast 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
Rentcast 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.
- resource
Allocation SourceRentcast 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
Rentcast 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.
- resource
Allocation SourceRentcast 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
Rentcast 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.
- resource_
allocation SourceRentcast 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
- 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
SourceRentcastConfiguration, SourceRentcastConfigurationArgs
- Api
Key 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
- Bath
Rooms 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
- Data
Type string - The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental
- Days
Old 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
- History
Range 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
- Property
Type 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 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
- Bath
Rooms 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
- Data
Type string - The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental
- Days
Old 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
- History
Range 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
- Property
Type 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 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
- bath
Rooms 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
- data
Type String - The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental
- days
Old 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
- history
Range 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
- property
Type 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 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
- bath
Rooms 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
- data
Type string - The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental
- days
Old 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
- history
Range 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
- property
Type 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 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
- api
Key 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
- bath
Rooms 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
- data
Type String - The type of aggregate market data to return. Defaults to "All" if not provided : All , Sale , Rental
- days
Old 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
- history
Range 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
- property
Type 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
Source
Rentcast Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<SourceRentcast Resource Allocation Job Specific>
- Default
Source
Rentcast Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []SourceRentcast Resource Allocation Job Specific
- default_
Source
Rentcast Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<SourceRentcast Resource Allocation Job Specific>
- default
Source
Rentcast Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics SourceRentcast Resource Allocation Job Specific[]
- default
Source
Rentcast Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[SourceRentcast Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
SourceRentcastResourceAllocationDefault, SourceRentcastResourceAllocationDefaultArgs
- 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
SourceRentcastResourceAllocationJobSpecific, SourceRentcastResourceAllocationJobSpecificArgs
- Job
Type 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"]
- Resource
Requirements SourceRentcast 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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements SourceRentcast 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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourceRentcast 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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourceRentcast 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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource_
requirements SourceRentcast 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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
SourceRentcastResourceAllocationJobSpecificResourceRequirements, SourceRentcastResourceAllocationJobSpecificResourceRequirementsArgs
- 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
$ pulumi import airbyte:index/sourceRentcast:SourceRentcast my_airbyte_source_rentcast ""
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.