Documentation ¶
Index ¶
- func NewApplicationDataSourceSource() datasource.DataSource
- func NewApplicationFolderResource() resource.Resource
- func NewApplicationResource() resource.Resource
- 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 ApplicationFolderResourceModel
- type ApplicationResourceModel
- type InstalledAppResponseModel
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewApplicationDataSourceSource ¶
func NewApplicationDataSourceSource() datasource.DataSource
func NewApplicationFolderResource ¶
NewApplicationFolderResource is a helper function to simplify the provider implementation.
func NewApplicationResource ¶
NewApplicationResource is a helper function to simplify the provider implementation.
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 ApplicationFolderResourceModel ¶
type ApplicationFolderResourceModel struct { Id types.String `tfsdk:"id"` Name types.String `tfsdk:"name"` Path types.String `tfsdk:"path"` ParentPath types.String `tfsdk:"parent_path"` }
ApplicationFolderResourceModel maps the resource schema data.
func (ApplicationFolderResourceModel) RefreshPropertyValues ¶
func (r ApplicationFolderResourceModel) RefreshPropertyValues(application *citrixorchestration.AdminFolderResponseModel) ApplicationFolderResourceModel
type ApplicationResourceModel ¶
type ApplicationResourceModel struct { Id types.String `tfsdk:"id"` Name types.String `tfsdk:"name"` PublishedName types.String `tfsdk:"published_name"` Description types.String `tfsdk:"description"` InstalledAppProperties *InstalledAppResponseModel `tfsdk:"installed_app_properties"` DeliveryGroups []types.String `tfsdk:"delivery_groups"` ApplicationFolderPath types.String `tfsdk:"application_folder_path"` }
ApplicationResourceModel maps the resource schema data.
func (ApplicationResourceModel) RefreshPropertyValues ¶
func (r ApplicationResourceModel) RefreshPropertyValues(application *citrixorchestration.ApplicationDetailResponseModel) ApplicationResourceModel
type InstalledAppResponseModel ¶
type InstalledAppResponseModel struct { // The command-line arguments to use when launching the executable. Environment variables can be used. CommandLineArguments types.String `tfsdk:"command_line_arguments"` // The name of the executable file to launch. The full path need not be provided if it's already in the path. Environment variables can also be used. CommandLineExecutable types.String `tfsdk:"command_line_executable"` // The working directory which the executable is launched from. Environment variables can be used. WorkingDirectory types.String `tfsdk:"working_directory"` }
InstalledAppResponseModel Response object for installed application properties.
Click to show internal directories.
Click to hide internal directories.