ippool

package
v0.22.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 4, 2026 License: MPL-2.0 Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewDataSource

func NewDataSource() datasource.DataSource

NewDataSource initialises an ip_pool datasource

func NewResource

func NewResource() resource.Resource

NewResource is a helper function to simplify the provider implementation.

Types

type DataSource

type DataSource struct {
	// contains filtered or unexported fields
}

func (*DataSource) Configure

Configure adds the provider configured client to the data source.

func (*DataSource) Metadata

Metadata returns the data source type name.

func (*DataSource) Read

Read refreshes the Terraform state with the latest data.

func (*DataSource) Schema

Schema defines the schema for the data source.

type DataSourceModel

type DataSourceModel struct {
	Description  types.String   `tfsdk:"description"`
	ID           types.String   `tfsdk:"id"`
	IPVersion    types.String   `tfsdk:"ip_version"`
	IsDefault    types.Bool     `tfsdk:"is_default"`
	Name         types.String   `tfsdk:"name"`
	PoolType     types.String   `tfsdk:"pool_type"`
	Timeouts     timeouts.Value `tfsdk:"timeouts"`
	TimeCreated  types.String   `tfsdk:"time_created"`
	TimeModified types.String   `tfsdk:"time_modified"`
}

type RangeResourceModel

type RangeResourceModel struct {
	FirstAddress types.String `tfsdk:"first_address"`
	LastAddress  types.String `tfsdk:"last_address"`
}

type Resource

type Resource struct {
	// contains filtered or unexported fields
}

Resource is the resource implementation.

func (*Resource) Configure

Configure adds the provider configured client to the data source.

func (*Resource) Create

func (r *Resource) Create(
	ctx context.Context,
	req resource.CreateRequest,
	resp *resource.CreateResponse,
)

Create creates the resource and sets the initial Terraform state.

func (*Resource) Delete

func (r *Resource) Delete(
	ctx context.Context,
	req resource.DeleteRequest,
	resp *resource.DeleteResponse,
)

Delete deletes the resource and removes the Terraform state on success.

func (*Resource) ImportState

func (r *Resource) ImportState(
	ctx context.Context,
	req resource.ImportStateRequest,
	resp *resource.ImportStateResponse,
)

func (*Resource) Metadata

Metadata returns the resource type name.

func (*Resource) Read

func (r *Resource) Read(
	ctx context.Context,
	req resource.ReadRequest,
	resp *resource.ReadResponse,
)

Read refreshes the Terraform state with the latest data.

func (*Resource) Schema

Schema defines the schema for the resource.

func (*Resource) Update

func (r *Resource) Update(
	ctx context.Context,
	req resource.UpdateRequest,
	resp *resource.UpdateResponse,
)

Update updates the resource and sets the updated Terraform state on success.

type ResourceModel

type ResourceModel struct {
	Description  types.String         `tfsdk:"description"`
	ID           types.String         `tfsdk:"id"`
	Name         types.String         `tfsdk:"name"`
	Ranges       []RangeResourceModel `tfsdk:"ranges"`
	TimeCreated  types.String         `tfsdk:"time_created"`
	TimeModified types.String         `tfsdk:"time_modified"`
	Timeouts     timeouts.Value       `tfsdk:"timeouts"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL