ifsrmderivedobjectsresult

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 (
	// IFsrmDerivedObjectsResult interface identifier 39322a2d-38ee-4d0d-8095-421a80849a82
	DerivedObjectsResultIID = &dcom.IID{Data1: 0x39322a2d, Data2: 0x38ee, Data3: 0x4d0d, Data4: []byte{0x80, 0x95, 0x42, 0x1a, 0x80, 0x84, 0x9a, 0x82}}
	// Syntax UUID
	DerivedObjectsResultSyntaxUUID = &uuid.UUID{TimeLow: 0x39322a2d, TimeMid: 0x38ee, TimeHiAndVersion: 0x4d0d, ClockSeqHiAndReserved: 0x80, ClockSeqLow: 0x95, Node: [6]uint8{0x42, 0x1a, 0x80, 0x84, 0x9a, 0x82}}
	// Syntax ID
	DerivedObjectsResultSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: DerivedObjectsResultSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0}
)
View Source
var (
	// import guard
	GoPackage = "dcom/fsrm"
)

Functions

func DerivedObjectsResultServerHandle

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

func NewDerivedObjectsResultServerHandle

func NewDerivedObjectsResultServerHandle(o DerivedObjectsResultServer) dcerpc.ServerHandle

func RegisterDerivedObjectsResultServer

func RegisterDerivedObjectsResultServer(conn dcerpc.Conn, o DerivedObjectsResultServer, opts ...dcerpc.Option)

Types

type DerivedObjectsResultClient

type DerivedObjectsResultClient interface {

	// IDispatch retrieval method.
	Dispatch() idispatch.DispatchClient

	// The DerivedObjects (get) method returns the collection of derived objects for the
	// calling template.
	//
	// Return Values: The method MUST return zero on success, or a nonzero error code on
	// failure.
	//
	//	+-------------------------+---------------------------------------+
	//	|         RETURN          |                                       |
	//	|       VALUE/CODE        |              DESCRIPTION              |
	//	|                         |                                       |
	//	+-------------------------+---------------------------------------+
	//	+-------------------------+---------------------------------------+
	//	| 0x80070057 E_INVALIDARG | The derivedObjects parameter is NULL. |
	//	+-------------------------+---------------------------------------+
	GetDerivedObjects(context.Context, *GetDerivedObjectsRequest, ...dcerpc.CallOption) (*GetDerivedObjectsResponse, error)

	// The Results (get) method returns the collection HRESULTS received when committing
	// derived objects that were updated as a result of the source template's call to CommitAndUpdateDerived.
	//
	// Return Values: The method MUST return zero on success, or a nonzero error code on
	// failure.
	//
	//	+-------------------------+--------------------------------+
	//	|         RETURN          |                                |
	//	|       VALUE/CODE        |          DESCRIPTION           |
	//	|                         |                                |
	//	+-------------------------+--------------------------------+
	//	+-------------------------+--------------------------------+
	//	| 0x80070057 E_INVALIDARG | The results parameter is NULL. |
	//	+-------------------------+--------------------------------+
	GetResults(context.Context, *GetResultsRequest, ...dcerpc.CallOption) (*GetResultsResponse, error)

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

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

IFsrmDerivedObjectsResult interface.

func NewDerivedObjectsResultClient

func NewDerivedObjectsResultClient(ctx context.Context, cc dcerpc.Conn, opts ...dcerpc.Option) (DerivedObjectsResultClient, error)

type DerivedObjectsResultServer

type DerivedObjectsResultServer interface {

	// IDispatch base class.
	idispatch.DispatchServer

	// The DerivedObjects (get) method returns the collection of derived objects for the
	// calling template.
	//
	// Return Values: The method MUST return zero on success, or a nonzero error code on
	// failure.
	//
	//	+-------------------------+---------------------------------------+
	//	|         RETURN          |                                       |
	//	|       VALUE/CODE        |              DESCRIPTION              |
	//	|                         |                                       |
	//	+-------------------------+---------------------------------------+
	//	+-------------------------+---------------------------------------+
	//	| 0x80070057 E_INVALIDARG | The derivedObjects parameter is NULL. |
	//	+-------------------------+---------------------------------------+
	GetDerivedObjects(context.Context, *GetDerivedObjectsRequest) (*GetDerivedObjectsResponse, error)

	// The Results (get) method returns the collection HRESULTS received when committing
	// derived objects that were updated as a result of the source template's call to CommitAndUpdateDerived.
	//
	// Return Values: The method MUST return zero on success, or a nonzero error code on
	// failure.
	//
	//	+-------------------------+--------------------------------+
	//	|         RETURN          |                                |
	//	|       VALUE/CODE        |          DESCRIPTION           |
	//	|                         |                                |
	//	+-------------------------+--------------------------------+
	//	+-------------------------+--------------------------------+
	//	| 0x80070057 E_INVALIDARG | The results parameter is NULL. |
	//	+-------------------------+--------------------------------+
	GetResults(context.Context, *GetResultsRequest) (*GetResultsResponse, error)
}

IFsrmDerivedObjectsResult server interface.

type GetDerivedObjectsRequest

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

GetDerivedObjectsRequest structure represents the DerivedObjects operation request

func (*GetDerivedObjectsRequest) MarshalNDR

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

func (*GetDerivedObjectsRequest) UnmarshalNDR

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

type GetDerivedObjectsResponse

type GetDerivedObjectsResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That *dcom.ORPCThat `idl:"name:That" json:"that"`
	// derivedObjects: Pointer to an IFsrmCollection interface pointer (section 3.2.4.2.1)
	// that upon completion contains interface pointers for the derived objects that were
	// updated as a result of the source template's call to CommitAndUpdateDerived. A caller
	// MUST release the collection interface received when it is done with it.
	DerivedObjects *fsrm.Collection `idl:"name:derivedObjects" json:"derived_objects"`
	// Return: The DerivedObjects return value.
	Return int32 `idl:"name:Return" json:"return"`
}

GetDerivedObjectsResponse structure represents the DerivedObjects operation response

func (*GetDerivedObjectsResponse) MarshalNDR

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

func (*GetDerivedObjectsResponse) UnmarshalNDR

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

type GetResultsRequest

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

GetResultsRequest structure represents the Results operation request

func (*GetResultsRequest) MarshalNDR

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

func (*GetResultsRequest) UnmarshalNDR

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

type GetResultsResponse

type GetResultsResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That *dcom.ORPCThat `idl:"name:That" json:"that"`
	// results: Pointer to an IFsrmCollection interface pointer (section 3.2.4.2.1) that
	// upon completion contains HRESULTS for the committing of derived objects that were
	// updated as a result of the source template's call to CommitAndUpdateDerived. A caller
	// MUST release the collection interface received when it is done with it.
	Results *fsrm.Collection `idl:"name:results" json:"results"`
	// Return: The Results return value.
	Return int32 `idl:"name:Return" json:"return"`
}

GetResultsResponse structure represents the Results operation response

func (*GetResultsResponse) MarshalNDR

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

func (*GetResultsResponse) UnmarshalNDR

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