iapphostconfiglocation

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Apr 30, 2024 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// IAppHostConfigLocation interface identifier 370af178-7758-4dad-8146-7391f6e18585
	AppHostConfigLocationIID = &dcom.IID{Data1: 0x370af178, Data2: 0x7758, Data3: 0x4dad, Data4: []byte{0x81, 0x46, 0x73, 0x91, 0xf6, 0xe1, 0x85, 0x85}}
	// Syntax UUID
	AppHostConfigLocationSyntaxUUID = &uuid.UUID{TimeLow: 0x370af178, TimeMid: 0x7758, TimeHiAndVersion: 0x4dad, ClockSeqHiAndReserved: 0x81, ClockSeqLow: 0x46, Node: [6]uint8{0x73, 0x91, 0xf6, 0xe1, 0x85, 0x85}}
	// Syntax ID
	AppHostConfigLocationSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: AppHostConfigLocationSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0}
)
View Source
var (
	// import guard
	GoPackage = "dcom/iisa"
)

Functions

func AppHostConfigLocationServerHandle

func AppHostConfigLocationServerHandle(ctx context.Context, o AppHostConfigLocationServer, opNum int, r ndr.Reader) (dcerpc.Operation, error)

func NewAppHostConfigLocationServerHandle

func NewAppHostConfigLocationServerHandle(o AppHostConfigLocationServer) dcerpc.ServerHandle

func RegisterAppHostConfigLocationServer

func RegisterAppHostConfigLocationServer(conn dcerpc.Conn, o AppHostConfigLocationServer, opts ...dcerpc.Option)

Types

type AddConfigSectionRequest

type AddConfigSectionRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This        *dcom.ORPCThis `idl:"name:This" json:"this"`
	SectionName *oaut.String   `idl:"name:bstrSectionName" json:"section_name"`
}

AddConfigSectionRequest structure represents the AddConfigSection operation request

func (*AddConfigSectionRequest) MarshalNDR

func (o *AddConfigSectionRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*AddConfigSectionRequest) UnmarshalNDR

func (o *AddConfigSectionRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type AddConfigSectionResponse

type AddConfigSectionResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That         *dcom.ORPCThat       `idl:"name:That" json:"that"`
	AdminElement *iisa.AppHostElement `idl:"name:ppAdminElement" json:"admin_element"`
	// Return: The AddConfigSection return value.
	Return int32 `idl:"name:Return" json:"return"`
}

AddConfigSectionResponse structure represents the AddConfigSection operation response

func (*AddConfigSectionResponse) MarshalNDR

func (o *AddConfigSectionResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*AddConfigSectionResponse) UnmarshalNDR

func (o *AddConfigSectionResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type AppHostConfigLocationClient

type AppHostConfigLocationClient interface {

	// IUnknown retrieval method.
	Unknown() iunknown.UnknownClient

	// Path operation.
	GetPath(context.Context, *GetPathRequest, ...dcerpc.CallOption) (*GetPathResponse, error)

	// Count operation.
	GetCount(context.Context, *GetCountRequest, ...dcerpc.CallOption) (*GetCountResponse, error)

	// Item operation.
	GetItem(context.Context, *GetItemRequest, ...dcerpc.CallOption) (*GetItemResponse, error)

	// AddConfigSection operation.
	AddConfigSection(context.Context, *AddConfigSectionRequest, ...dcerpc.CallOption) (*AddConfigSectionResponse, error)

	// DeleteConfigSection operation.
	DeleteConfigSection(context.Context, *DeleteConfigSectionRequest, ...dcerpc.CallOption) (*DeleteConfigSectionResponse, error)

	// AlterContext alters the client context.
	AlterContext(context.Context, ...dcerpc.Option) error

	// IPID sets the object interface identifier.
	IPID(context.Context, *dcom.IPID) AppHostConfigLocationClient
}

IAppHostConfigLocation interface.

func NewAppHostConfigLocationClient

func NewAppHostConfigLocationClient(ctx context.Context, cc dcerpc.Conn, opts ...dcerpc.Option) (AppHostConfigLocationClient, error)

type AppHostConfigLocationServer

type AppHostConfigLocationServer interface {

	// IUnknown base class.
	iunknown.UnknownServer

	// Path operation.
	GetPath(context.Context, *GetPathRequest) (*GetPathResponse, error)

	// Count operation.
	GetCount(context.Context, *GetCountRequest) (*GetCountResponse, error)

	// Item operation.
	GetItem(context.Context, *GetItemRequest) (*GetItemResponse, error)

	// AddConfigSection operation.
	AddConfigSection(context.Context, *AddConfigSectionRequest) (*AddConfigSectionResponse, error)

	// DeleteConfigSection operation.
	DeleteConfigSection(context.Context, *DeleteConfigSectionRequest) (*DeleteConfigSectionResponse, error)
}

IAppHostConfigLocation server interface.

type DeleteConfigSectionRequest

type DeleteConfigSectionRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This  *dcom.ORPCThis `idl:"name:This" json:"this"`
	Index *oaut.Variant  `idl:"name:cIndex" json:"index"`
}

DeleteConfigSectionRequest structure represents the DeleteConfigSection operation request

func (*DeleteConfigSectionRequest) MarshalNDR

func (o *DeleteConfigSectionRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*DeleteConfigSectionRequest) UnmarshalNDR

func (o *DeleteConfigSectionRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type DeleteConfigSectionResponse

type DeleteConfigSectionResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That *dcom.ORPCThat `idl:"name:That" json:"that"`
	// Return: The DeleteConfigSection return value.
	Return int32 `idl:"name:Return" json:"return"`
}

DeleteConfigSectionResponse structure represents the DeleteConfigSection operation response

func (*DeleteConfigSectionResponse) MarshalNDR

func (*DeleteConfigSectionResponse) UnmarshalNDR

func (o *DeleteConfigSectionResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetCountRequest

type GetCountRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This *dcom.ORPCThis `idl:"name:This" json:"this"`
}

GetCountRequest structure represents the Count operation request

func (*GetCountRequest) MarshalNDR

func (o *GetCountRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetCountRequest) UnmarshalNDR

func (o *GetCountRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetCountResponse

type GetCountResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That  *dcom.ORPCThat `idl:"name:That" json:"that"`
	Count uint32         `idl:"name:pcCount" json:"count"`
	// Return: The Count return value.
	Return int32 `idl:"name:Return" json:"return"`
}

GetCountResponse structure represents the Count operation response

func (*GetCountResponse) MarshalNDR

func (o *GetCountResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetCountResponse) UnmarshalNDR

func (o *GetCountResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetItemRequest

type GetItemRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This  *dcom.ORPCThis `idl:"name:This" json:"this"`
	Index *oaut.Variant  `idl:"name:cIndex" json:"index"`
}

GetItemRequest structure represents the Item operation request

func (*GetItemRequest) MarshalNDR

func (o *GetItemRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetItemRequest) UnmarshalNDR

func (o *GetItemRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetItemResponse

type GetItemResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That    *dcom.ORPCThat       `idl:"name:That" json:"that"`
	Section *iisa.AppHostElement `idl:"name:ppSection" json:"section"`
	// Return: The Item return value.
	Return int32 `idl:"name:Return" json:"return"`
}

GetItemResponse structure represents the Item operation response

func (*GetItemResponse) MarshalNDR

func (o *GetItemResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetItemResponse) UnmarshalNDR

func (o *GetItemResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetPathRequest

type GetPathRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This *dcom.ORPCThis `idl:"name:This" json:"this"`
}

GetPathRequest structure represents the Path operation request

func (*GetPathRequest) MarshalNDR

func (o *GetPathRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetPathRequest) UnmarshalNDR

func (o *GetPathRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetPathResponse

type GetPathResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That         *dcom.ORPCThat `idl:"name:That" json:"that"`
	LocationPath *oaut.String   `idl:"name:pbstrLocationPath" json:"location_path"`
	// Return: The Path return value.
	Return int32 `idl:"name:Return" json:"return"`
}

GetPathResponse structure represents the Path operation response

func (*GetPathResponse) MarshalNDR

func (o *GetPathResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetPathResponse) UnmarshalNDR

func (o *GetPathResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

Jump to

Keyboard shortcuts

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