This pull request includes significant changes to multiple resource and data source files within the internal/services directory. The main focus is on refactoring to use the new helpers.TypeInfo structure and improving context management by integrating the helpers.EnterRequestContext function.
This pull request includes significant changes to multiple resource and data source files within the
internal/services
directory. The main focus is on refactoring to use the newhelpers.TypeInfo
structure and improving context management by integrating thehelpers.EnterRequestContext
function.Refactoring to use
helpers.TypeInfo
:internal/services/admin_management_application/resource_admin_management_application.go
: ReplacedProviderTypeName
andTypeName
withhelpers.TypeInfo
and updated methods to useFullTypeName()
. [1] [2]internal/services/application/datasource_environment_application_packages.go
: ReplacedProviderTypeName
andTypeName
withhelpers.TypeInfo
. [1] [2]internal/services/application/datasource_tenant_application_packages.go
: ReplacedProviderTypeName
andTypeName
withhelpers.TypeInfo
. [1] [2]internal/services/application/resource_environment_application_package_install.go
: ReplacedProviderTypeName
andTypeName
withhelpers.TypeInfo
. [1] [2]Improved context management:
internal/services/admin_management_application/resource_admin_management_application.go
: Integratedhelpers.EnterRequestContext
in multiple methods to manage context more effectively. [1] [2] [3] [4]internal/services/application/datasource_environment_application_packages.go
: Integratedhelpers.EnterRequestContext
in theRead
method.internal/services/application/datasource_tenant_application_packages.go
: Integratedhelpers.EnterRequestContext
in theRead
method.internal/services/application/resource_environment_application_package_install.go
: Integratedhelpers.EnterRequestContext
in multiple methods to manage context more effectively. [1] [2] [3] [4] [5]