officeconsents

package
v0.20231214.1160726 Latest Latest
Warning

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

Go to latest
Published: Dec 14, 2023 License: MPL-2.0 Imports: 9 Imported by: 0

README

github.com/hashicorp/go-azure-sdk/resource-manager/securityinsights/2021-09-01-preview/officeconsents Documentation

The officeconsents SDK allows for interaction with the Azure Resource Manager Service securityinsights (API Version 2021-09-01-preview).

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/resource-manager/securityinsights/2021-09-01-preview/officeconsents"

Client Initialization

client := officeconsents.NewOfficeConsentsClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: OfficeConsentsClient.Delete

ctx := context.TODO()
id := officeconsents.NewOfficeConsentID("12345678-1234-9876-4563-123456789012", "example-resource-group", "workspaceValue", "consentIdValue")

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

Example Usage: OfficeConsentsClient.Get

ctx := context.TODO()
id := officeconsents.NewOfficeConsentID("12345678-1234-9876-4563-123456789012", "example-resource-group", "workspaceValue", "consentIdValue")

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

Example Usage: OfficeConsentsClient.List

ctx := context.TODO()
id := officeconsents.NewWorkspaceID("12345678-1234-9876-4563-123456789012", "example-resource-group", "workspaceValue")

// alternatively `client.List(ctx, id)` can be used to do batched pagination
items, err := client.ListComplete(ctx, id)
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

func ValidateOfficeConsentID

func ValidateOfficeConsentID(input interface{}, key string) (warnings []string, errors []error)

ValidateOfficeConsentID checks that 'input' can be parsed as a Office Consent ID

func ValidateWorkspaceID

func ValidateWorkspaceID(input interface{}, key string) (warnings []string, errors []error)

ValidateWorkspaceID checks that 'input' can be parsed as a Workspace ID

Types

type DeleteOperationResponse added in v0.20230906.1160501

type DeleteOperationResponse struct {
	HttpResponse *http.Response
}

type GetOperationResponse added in v0.20230906.1160501

type GetOperationResponse struct {
	HttpResponse *http.Response
	Model        *OfficeConsent
}

type ListCompleteResult added in v0.20230906.1160501

type ListCompleteResult struct {
	Items []OfficeConsent
}

type ListOperationResponse added in v0.20230906.1160501

type ListOperationResponse struct {
	HttpResponse *http.Response
	Model        *[]OfficeConsent
	// contains filtered or unexported fields
}

func (ListOperationResponse) HasMore added in v0.20230906.1160501

func (r ListOperationResponse) HasMore() bool

func (ListOperationResponse) LoadMore added in v0.20230906.1160501

func (r ListOperationResponse) LoadMore(ctx context.Context) (resp ListOperationResponse, err error)

type OfficeConsent

type OfficeConsent struct {
	Id         *string                  `json:"id,omitempty"`
	Name       *string                  `json:"name,omitempty"`
	Properties *OfficeConsentProperties `json:"properties,omitempty"`
	SystemData *systemdata.SystemData   `json:"systemData,omitempty"`
	Type       *string                  `json:"type,omitempty"`
}

type OfficeConsentId

type OfficeConsentId struct {
	SubscriptionId    string
	ResourceGroupName string
	WorkspaceName     string
	ConsentId         string
}

OfficeConsentId is a struct representing the Resource ID for a Office Consent

func NewOfficeConsentID

func NewOfficeConsentID(subscriptionId string, resourceGroupName string, workspaceName string, consentId string) OfficeConsentId

NewOfficeConsentID returns a new OfficeConsentId struct

func ParseOfficeConsentID

func ParseOfficeConsentID(input string) (*OfficeConsentId, error)

ParseOfficeConsentID parses 'input' into a OfficeConsentId

func ParseOfficeConsentIDInsensitively

func ParseOfficeConsentIDInsensitively(input string) (*OfficeConsentId, error)

ParseOfficeConsentIDInsensitively parses 'input' case-insensitively into a OfficeConsentId note: this method should only be used for API response data and not user input

func (*OfficeConsentId) FromParseResult added in v0.20231127.1171502

func (id *OfficeConsentId) FromParseResult(input resourceids.ParseResult) error

func (OfficeConsentId) ID

func (id OfficeConsentId) ID() string

ID returns the formatted Office Consent ID

func (OfficeConsentId) Segments

func (id OfficeConsentId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Office Consent ID

func (OfficeConsentId) String

func (id OfficeConsentId) String() string

String returns a human-readable description of this Office Consent ID

type OfficeConsentOperationPredicate

type OfficeConsentOperationPredicate struct {
	Id   *string
	Name *string
	Type *string
}

func (OfficeConsentOperationPredicate) Matches

type OfficeConsentProperties

type OfficeConsentProperties struct {
	ConsentId *string `json:"consentId,omitempty"`
	TenantId  *string `json:"tenantId,omitempty"`
}

type OfficeConsentsClient

type OfficeConsentsClient struct {
	Client autorest.Client
	// contains filtered or unexported fields
}

func NewOfficeConsentsClientWithBaseURI

func NewOfficeConsentsClientWithBaseURI(endpoint string) OfficeConsentsClient

func (OfficeConsentsClient) Delete added in v0.20230906.1160501

Delete ...

func (OfficeConsentsClient) Get added in v0.20230906.1160501

Get ...

func (OfficeConsentsClient) List added in v0.20230906.1160501

List ...

func (OfficeConsentsClient) ListComplete added in v0.20230906.1160501

ListComplete retrieves all of the results into a single object

func (OfficeConsentsClient) ListCompleteMatchingPredicate added in v0.20230906.1160501

func (c OfficeConsentsClient) ListCompleteMatchingPredicate(ctx context.Context, id WorkspaceId, predicate OfficeConsentOperationPredicate) (resp ListCompleteResult, err error)

ListCompleteMatchingPredicate retrieves all of the results and then applied the predicate

type WorkspaceId

type WorkspaceId struct {
	SubscriptionId    string
	ResourceGroupName string
	WorkspaceName     string
}

WorkspaceId is a struct representing the Resource ID for a Workspace

func NewWorkspaceID

func NewWorkspaceID(subscriptionId string, resourceGroupName string, workspaceName string) WorkspaceId

NewWorkspaceID returns a new WorkspaceId struct

func ParseWorkspaceID

func ParseWorkspaceID(input string) (*WorkspaceId, error)

ParseWorkspaceID parses 'input' into a WorkspaceId

func ParseWorkspaceIDInsensitively

func ParseWorkspaceIDInsensitively(input string) (*WorkspaceId, error)

ParseWorkspaceIDInsensitively parses 'input' case-insensitively into a WorkspaceId note: this method should only be used for API response data and not user input

func (*WorkspaceId) FromParseResult added in v0.20231127.1171502

func (id *WorkspaceId) FromParseResult(input resourceids.ParseResult) error

func (WorkspaceId) ID

func (id WorkspaceId) ID() string

ID returns the formatted Workspace ID

func (WorkspaceId) Segments

func (id WorkspaceId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Workspace ID

func (WorkspaceId) String

func (id WorkspaceId) String() string

String returns a human-readable description of this Workspace ID

Jump to

Keyboard shortcuts

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