Documentation
¶
Index ¶
- func NewApplicationDataSourceSource() datasource.DataSource
- type ApplicationDataSource
- func (d *ApplicationDataSource) Configure(ctx context.Context, req datasource.ConfigureRequest, ...)
- func (d *ApplicationDataSource) Metadata(ctx context.Context, req datasource.MetadataRequest, ...)
- func (d *ApplicationDataSource) Read(ctx context.Context, req datasource.ReadRequest, resp *datasource.ReadResponse)
- func (d *ApplicationDataSource) Schema(ctx context.Context, req datasource.SchemaRequest, ...)
- type ApplicationFolderDetailsDataSourceModel
- type ApplicationResourceModel
- type InstalledAppModel
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewApplicationDataSourceSource ¶
func NewApplicationDataSourceSource() datasource.DataSource
Types ¶
type ApplicationDataSource ¶
type ApplicationDataSource struct {
// contains filtered or unexported fields
}
ApplicationDataSource defines the data source implementation.
func (*ApplicationDataSource) Configure ¶
func (d *ApplicationDataSource) Configure(ctx context.Context, req datasource.ConfigureRequest, resp *datasource.ConfigureResponse)
func (*ApplicationDataSource) Metadata ¶
func (d *ApplicationDataSource) Metadata(ctx context.Context, req datasource.MetadataRequest, resp *datasource.MetadataResponse)
func (*ApplicationDataSource) Read ¶
func (d *ApplicationDataSource) Read(ctx context.Context, req datasource.ReadRequest, resp *datasource.ReadResponse)
func (*ApplicationDataSource) Schema ¶
func (d *ApplicationDataSource) Schema(ctx context.Context, req datasource.SchemaRequest, resp *datasource.SchemaResponse)
Schema defines the data source schema.
type ApplicationFolderDetailsDataSourceModel ¶
type ApplicationFolderDetailsDataSourceModel struct {
Path types.String `tfsdk:"path"`
TotalApplications types.Int64 `tfsdk:"total_applications"`
ApplicationsList []ApplicationResourceModel `tfsdk:"applications_list"`
}
func (ApplicationFolderDetailsDataSourceModel) RefreshPropertyValues ¶
func (r ApplicationFolderDetailsDataSourceModel) RefreshPropertyValues(apps *citrixorchestration.ApplicationResponseModelCollection) ApplicationFolderDetailsDataSourceModel
type ApplicationResourceModel ¶
type ApplicationResourceModel struct {
Name types.String `tfsdk:"name"`
PublishedName types.String `tfsdk:"published_name"`
Description types.String `tfsdk:"description"`
InstalledAppProperties InstalledAppModel `tfsdk:"installed_app_properties"`
DeliveryGroups []types.String `tfsdk:"delivery_groups"`
ApplicationFolderPath types.String `tfsdk:"application_folder_path"`
}
Click to show internal directories.
Click to hide internal directories.