iapphostwritableadminmanager

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: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// IAppHostWritableAdminManager interface identifier fa7660f6-7b3f-4237-a8bf-ed0ad0dcbbd9
	AppHostWritableAdminManagerIID = &dcom.IID{Data1: 0xfa7660f6, Data2: 0x7b3f, Data3: 0x4237, Data4: []byte{0xa8, 0xbf, 0xed, 0x0a, 0xd0, 0xdc, 0xbb, 0xd9}}
	// Syntax UUID
	AppHostWritableAdminManagerSyntaxUUID = &uuid.UUID{TimeLow: 0xfa7660f6, TimeMid: 0x7b3f, TimeHiAndVersion: 0x4237, ClockSeqHiAndReserved: 0xa8, ClockSeqLow: 0xbf, Node: [6]uint8{0xed, 0xa, 0xd0, 0xdc, 0xbb, 0xd9}}
	// Syntax ID
	AppHostWritableAdminManagerSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: AppHostWritableAdminManagerSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0}
)
View Source
var (
	// import guard
	GoPackage = "dcom/iisa"
)

Functions

func AppHostWritableAdminManagerServerHandle

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

func RegisterAppHostWritableAdminManagerServer

func RegisterAppHostWritableAdminManagerServer(conn dcerpc.Conn, o AppHostWritableAdminManagerServer, opts ...dcerpc.Option)

Types

type AppHostWritableAdminManagerClient

type AppHostWritableAdminManagerClient interface {

	// IAppHostAdminManager retrieval method.
	AppHostAdminManager() iapphostadminmanager.AppHostAdminManagerClient

	// CommitChanges operation.
	CommitChanges(context.Context, *CommitChangesRequest, ...dcerpc.CallOption) (*CommitChangesResponse, error)

	// CommitPath operation.
	GetCommitPath(context.Context, *GetCommitPathRequest, ...dcerpc.CallOption) (*GetCommitPathResponse, error)

	// CommitPath operation.
	SetCommitPath(context.Context, *SetCommitPathRequest, ...dcerpc.CallOption) (*SetCommitPathResponse, error)

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

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

IAppHostWritableAdminManager interface.

func NewAppHostWritableAdminManagerClient

func NewAppHostWritableAdminManagerClient(ctx context.Context, cc dcerpc.Conn, opts ...dcerpc.Option) (AppHostWritableAdminManagerClient, error)

type AppHostWritableAdminManagerServer

type AppHostWritableAdminManagerServer interface {

	// IAppHostAdminManager base class.
	iapphostadminmanager.AppHostAdminManagerServer

	// CommitChanges operation.
	CommitChanges(context.Context, *CommitChangesRequest) (*CommitChangesResponse, error)

	// CommitPath operation.
	GetCommitPath(context.Context, *GetCommitPathRequest) (*GetCommitPathResponse, error)

	// CommitPath operation.
	SetCommitPath(context.Context, *SetCommitPathRequest) (*SetCommitPathResponse, error)
}

IAppHostWritableAdminManager server interface.

type CommitChangesRequest

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

CommitChangesRequest structure represents the CommitChanges operation request

func (*CommitChangesRequest) MarshalNDR

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

func (*CommitChangesRequest) UnmarshalNDR

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

type CommitChangesResponse

type CommitChangesResponse 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 CommitChanges return value.
	Return int32 `idl:"name:Return" json:"return"`
}

CommitChangesResponse structure represents the CommitChanges operation response

func (*CommitChangesResponse) MarshalNDR

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

func (*CommitChangesResponse) UnmarshalNDR

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

type GetCommitPathRequest

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

GetCommitPathRequest structure represents the CommitPath operation request

func (*GetCommitPathRequest) MarshalNDR

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

func (*GetCommitPathRequest) UnmarshalNDR

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

type GetCommitPathResponse

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

GetCommitPathResponse structure represents the CommitPath operation response

func (*GetCommitPathResponse) MarshalNDR

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

func (*GetCommitPathResponse) UnmarshalNDR

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

type SetCommitPathRequest

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

SetCommitPathRequest structure represents the CommitPath operation request

func (*SetCommitPathRequest) MarshalNDR

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

func (*SetCommitPathRequest) UnmarshalNDR

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

type SetCommitPathResponse

type SetCommitPathResponse 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 CommitPath return value.
	Return int32 `idl:"name:Return" json:"return"`
}

SetCommitPathResponse structure represents the CommitPath operation response

func (*SetCommitPathResponse) MarshalNDR

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

func (*SetCommitPathResponse) UnmarshalNDR

func (o *SetCommitPathResponse) 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