lifecycleworkflowworkflowtaskreporttaskprocessingresult

package
v0.20241118.1115603 Latest Latest
Warning

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

Go to latest
Published: Nov 18, 2024 License: MPL-2.0 Imports: 9 Imported by: 1

README

github.com/hashicorp/go-azure-sdk/microsoft-graph/identitygovernance/stable/lifecycleworkflowworkflowtaskreporttaskprocessingresult Documentation

The lifecycleworkflowworkflowtaskreporttaskprocessingresult SDK allows for interaction with Microsoft Graph identitygovernance (API Version stable).

This readme covers example usages, but further information on using this SDK can be found in the project root.

Import Path

import "github.com/hashicorp/go-azure-sdk/microsoft-graph/identitygovernance/stable/lifecycleworkflowworkflowtaskreporttaskprocessingresult"

Client Initialization

client := lifecycleworkflowworkflowtaskreporttaskprocessingresult.NewLifecycleWorkflowWorkflowTaskReportTaskProcessingResultClientWithBaseURI("https://graph.microsoft.com")
client.Client.Authorizer = authorizer

Example Usage: LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient.CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResume

ctx := context.TODO()
id := lifecycleworkflowworkflowtaskreporttaskprocessingresult.NewIdentityGovernanceLifecycleWorkflowWorkflowIdTaskReportIdTaskProcessingResultID("workflowId", "taskReportId", "taskProcessingResultId")

payload := lifecycleworkflowworkflowtaskreporttaskprocessingresult.CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResumeRequest{
	// ...
}


read, err := client.CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResume(ctx, id, payload, lifecycleworkflowworkflowtaskreporttaskprocessingresult.DefaultCreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResumeOperationOptions())
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient.GetLifecycleWorkflowTaskReportTaskProcessingResult

ctx := context.TODO()
id := lifecycleworkflowworkflowtaskreporttaskprocessingresult.NewIdentityGovernanceLifecycleWorkflowWorkflowIdTaskReportIdTaskProcessingResultID("workflowId", "taskReportId", "taskProcessingResultId")

read, err := client.GetLifecycleWorkflowTaskReportTaskProcessingResult(ctx, id, lifecycleworkflowworkflowtaskreporttaskprocessingresult.DefaultGetLifecycleWorkflowTaskReportTaskProcessingResultOperationOptions())
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient.GetLifecycleWorkflowTaskReportTaskProcessingResultsCount

ctx := context.TODO()
id := lifecycleworkflowworkflowtaskreporttaskprocessingresult.NewIdentityGovernanceLifecycleWorkflowWorkflowIdTaskReportID("workflowId", "taskReportId")

read, err := client.GetLifecycleWorkflowTaskReportTaskProcessingResultsCount(ctx, id, lifecycleworkflowworkflowtaskreporttaskprocessingresult.DefaultGetLifecycleWorkflowTaskReportTaskProcessingResultsCountOperationOptions())
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient.ListLifecycleWorkflowTaskReportTaskProcessingResults

ctx := context.TODO()
id := lifecycleworkflowworkflowtaskreporttaskprocessingresult.NewIdentityGovernanceLifecycleWorkflowWorkflowIdTaskReportID("workflowId", "taskReportId")

// alternatively `client.ListLifecycleWorkflowTaskReportTaskProcessingResults(ctx, id, lifecycleworkflowworkflowtaskreporttaskprocessingresult.DefaultListLifecycleWorkflowTaskReportTaskProcessingResultsOperationOptions())` can be used to do batched pagination
items, err := client.ListLifecycleWorkflowTaskReportTaskProcessingResultsComplete(ctx, id, lifecycleworkflowworkflowtaskreporttaskprocessingresult.DefaultListLifecycleWorkflowTaskReportTaskProcessingResultsOperationOptions())
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResumeOperationOptions

type CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResumeOperationOptions struct {
	Metadata  *odata.Metadata
	RetryFunc client.RequestRetryFunc
}

func (CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResumeOperationOptions) ToHeaders

func (CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResumeOperationOptions) ToOData

func (CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResumeOperationOptions) ToQuery

type CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResumeOperationResponse

type CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResumeOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
}

type CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResumeRequest

type CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResumeRequest struct {
	Data   *stable.IdentityGovernanceCustomTaskExtensionCallbackData `json:"data,omitempty"`
	Source nullable.Type[string]                                     `json:"source,omitempty"`
	Type   nullable.Type[string]                                     `json:"type,omitempty"`
}

type GetLifecycleWorkflowTaskReportTaskProcessingResultOperationOptions

type GetLifecycleWorkflowTaskReportTaskProcessingResultOperationOptions struct {
	Expand    *odata.Expand
	Metadata  *odata.Metadata
	RetryFunc client.RequestRetryFunc
	Select    *[]string
}

func (GetLifecycleWorkflowTaskReportTaskProcessingResultOperationOptions) ToHeaders

func (GetLifecycleWorkflowTaskReportTaskProcessingResultOperationOptions) ToOData

func (GetLifecycleWorkflowTaskReportTaskProcessingResultOperationOptions) ToQuery

type GetLifecycleWorkflowTaskReportTaskProcessingResultOperationResponse

type GetLifecycleWorkflowTaskReportTaskProcessingResultOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *stable.IdentityGovernanceTaskProcessingResult
}

type GetLifecycleWorkflowTaskReportTaskProcessingResultsCountOperationOptions

type GetLifecycleWorkflowTaskReportTaskProcessingResultsCountOperationOptions struct {
	Filter    *string
	Metadata  *odata.Metadata
	RetryFunc client.RequestRetryFunc
	Search    *string
}

func (GetLifecycleWorkflowTaskReportTaskProcessingResultsCountOperationOptions) ToHeaders

func (GetLifecycleWorkflowTaskReportTaskProcessingResultsCountOperationOptions) ToOData

func (GetLifecycleWorkflowTaskReportTaskProcessingResultsCountOperationOptions) ToQuery

type GetLifecycleWorkflowTaskReportTaskProcessingResultsCountOperationResponse

type GetLifecycleWorkflowTaskReportTaskProcessingResultsCountOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]byte
}

type IdentityGovernanceTaskProcessingResultOperationPredicate

type IdentityGovernanceTaskProcessingResultOperationPredicate struct {
}

func (IdentityGovernanceTaskProcessingResultOperationPredicate) Matches

type LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient

type LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient struct {
	Client *msgraph.Client
}

func NewLifecycleWorkflowWorkflowTaskReportTaskProcessingResultClientWithBaseURI

func NewLifecycleWorkflowWorkflowTaskReportTaskProcessingResultClientWithBaseURI(sdkApi sdkEnv.Api) (*LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient, error)

func (LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient) CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResume

CreateLifecycleWorkflowTaskReportTaskProcessingResultIdentityGovernanceResume - Invoke action resume. Resume a task processing result that's inProgress. In the default case an Azure Logic Apps system-assigned managed identity calls this API. For more information, see: Lifecycle Workflows extensibility approach.

func (LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient) GetLifecycleWorkflowTaskReportTaskProcessingResult

GetLifecycleWorkflowTaskReportTaskProcessingResult - Get taskProcessingResults from identityGovernance. The related lifecycle workflow taskProcessingResults.

func (LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient) GetLifecycleWorkflowTaskReportTaskProcessingResultsCount

GetLifecycleWorkflowTaskReportTaskProcessingResultsCount - Get the number of the resource

func (LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient) ListLifecycleWorkflowTaskReportTaskProcessingResults

ListLifecycleWorkflowTaskReportTaskProcessingResults - List taskProcessingResult (for a taskReport). Get the task processing result resources from the taskReport.

func (LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient) ListLifecycleWorkflowTaskReportTaskProcessingResultsComplete

ListLifecycleWorkflowTaskReportTaskProcessingResultsComplete retrieves all the results into a single object

func (LifecycleWorkflowWorkflowTaskReportTaskProcessingResultClient) ListLifecycleWorkflowTaskReportTaskProcessingResultsCompleteMatchingPredicate

ListLifecycleWorkflowTaskReportTaskProcessingResultsCompleteMatchingPredicate retrieves all the results and then applies the predicate

type ListLifecycleWorkflowTaskReportTaskProcessingResultsCompleteResult

type ListLifecycleWorkflowTaskReportTaskProcessingResultsCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []stable.IdentityGovernanceTaskProcessingResult
}

type ListLifecycleWorkflowTaskReportTaskProcessingResultsCustomPager

type ListLifecycleWorkflowTaskReportTaskProcessingResultsCustomPager struct {
	NextLink *odata.Link `json:"@odata.nextLink"`
}

type ListLifecycleWorkflowTaskReportTaskProcessingResultsOperationOptions

type ListLifecycleWorkflowTaskReportTaskProcessingResultsOperationOptions struct {
	Count     *bool
	Expand    *odata.Expand
	Filter    *string
	Metadata  *odata.Metadata
	OrderBy   *odata.OrderBy
	RetryFunc client.RequestRetryFunc
	Search    *string
	Select    *[]string
	Skip      *int64
	Top       *int64
}

func (ListLifecycleWorkflowTaskReportTaskProcessingResultsOperationOptions) ToHeaders

func (ListLifecycleWorkflowTaskReportTaskProcessingResultsOperationOptions) ToOData

func (ListLifecycleWorkflowTaskReportTaskProcessingResultsOperationOptions) ToQuery

type ListLifecycleWorkflowTaskReportTaskProcessingResultsOperationResponse

type ListLifecycleWorkflowTaskReportTaskProcessingResultsOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]stable.IdentityGovernanceTaskProcessingResult
}

Jump to

Keyboard shortcuts

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