README ¶
github.com/hashicorp/go-azure-sdk/microsoft-graph/groups/stable/siteonenotenotebooksection
Documentation
The siteonenotenotebooksection
SDK allows for interaction with Microsoft Graph groups
(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/groups/stable/siteonenotenotebooksection"
Client Initialization
client := siteonenotenotebooksection.NewSiteOnenoteNotebookSectionClientWithBaseURI("https://graph.microsoft.com")
client.Client.Authorizer = authorizer
Example Usage: SiteOnenoteNotebookSectionClient.CopySiteOnenoteNotebookSectionToNotebook
ctx := context.TODO()
id := siteonenotenotebooksection.NewGroupIdSiteIdOnenoteNotebookIdSectionID("groupId", "siteId", "notebookId", "onenoteSectionId")
payload := siteonenotenotebooksection.CopySiteOnenoteNotebookSectionToNotebookRequest{
// ...
}
read, err := client.CopySiteOnenoteNotebookSectionToNotebook(ctx, id, payload, siteonenotenotebooksection.DefaultCopySiteOnenoteNotebookSectionToNotebookOperationOptions())
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: SiteOnenoteNotebookSectionClient.CopySiteOnenoteNotebookSectionToSectionGroup
ctx := context.TODO()
id := siteonenotenotebooksection.NewGroupIdSiteIdOnenoteNotebookIdSectionID("groupId", "siteId", "notebookId", "onenoteSectionId")
payload := siteonenotenotebooksection.CopySiteOnenoteNotebookSectionToSectionGroupRequest{
// ...
}
read, err := client.CopySiteOnenoteNotebookSectionToSectionGroup(ctx, id, payload, siteonenotenotebooksection.DefaultCopySiteOnenoteNotebookSectionToSectionGroupOperationOptions())
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: SiteOnenoteNotebookSectionClient.CreateSiteOnenoteNotebookSection
ctx := context.TODO()
id := siteonenotenotebooksection.NewGroupIdSiteIdOnenoteNotebookID("groupId", "siteId", "notebookId")
payload := siteonenotenotebooksection.OnenoteSection{
// ...
}
read, err := client.CreateSiteOnenoteNotebookSection(ctx, id, payload, siteonenotenotebooksection.DefaultCreateSiteOnenoteNotebookSectionOperationOptions())
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: SiteOnenoteNotebookSectionClient.DeleteSiteOnenoteNotebookSection
ctx := context.TODO()
id := siteonenotenotebooksection.NewGroupIdSiteIdOnenoteNotebookIdSectionID("groupId", "siteId", "notebookId", "onenoteSectionId")
read, err := client.DeleteSiteOnenoteNotebookSection(ctx, id, siteonenotenotebooksection.DefaultDeleteSiteOnenoteNotebookSectionOperationOptions())
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: SiteOnenoteNotebookSectionClient.GetSiteOnenoteNotebookSection
ctx := context.TODO()
id := siteonenotenotebooksection.NewGroupIdSiteIdOnenoteNotebookIdSectionID("groupId", "siteId", "notebookId", "onenoteSectionId")
read, err := client.GetSiteOnenoteNotebookSection(ctx, id, siteonenotenotebooksection.DefaultGetSiteOnenoteNotebookSectionOperationOptions())
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: SiteOnenoteNotebookSectionClient.GetSiteOnenoteNotebookSectionsCount
ctx := context.TODO()
id := siteonenotenotebooksection.NewGroupIdSiteIdOnenoteNotebookID("groupId", "siteId", "notebookId")
read, err := client.GetSiteOnenoteNotebookSectionsCount(ctx, id, siteonenotenotebooksection.DefaultGetSiteOnenoteNotebookSectionsCountOperationOptions())
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: SiteOnenoteNotebookSectionClient.ListSiteOnenoteNotebookSections
ctx := context.TODO()
id := siteonenotenotebooksection.NewGroupIdSiteIdOnenoteNotebookID("groupId", "siteId", "notebookId")
// alternatively `client.ListSiteOnenoteNotebookSections(ctx, id, siteonenotenotebooksection.DefaultListSiteOnenoteNotebookSectionsOperationOptions())` can be used to do batched pagination
items, err := client.ListSiteOnenoteNotebookSectionsComplete(ctx, id, siteonenotenotebooksection.DefaultListSiteOnenoteNotebookSectionsOperationOptions())
if err != nil {
// handle the error
}
for _, item := range items {
// do something
}
Example Usage: SiteOnenoteNotebookSectionClient.UpdateSiteOnenoteNotebookSection
ctx := context.TODO()
id := siteonenotenotebooksection.NewGroupIdSiteIdOnenoteNotebookIdSectionID("groupId", "siteId", "notebookId", "onenoteSectionId")
payload := siteonenotenotebooksection.OnenoteSection{
// ...
}
read, err := client.UpdateSiteOnenoteNotebookSection(ctx, id, payload, siteonenotenotebooksection.DefaultUpdateSiteOnenoteNotebookSectionOperationOptions())
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Documentation ¶
Index ¶
- type CopySiteOnenoteNotebookSectionToNotebookOperationOptions
- type CopySiteOnenoteNotebookSectionToNotebookOperationResponse
- type CopySiteOnenoteNotebookSectionToNotebookRequest
- type CopySiteOnenoteNotebookSectionToSectionGroupOperationOptions
- type CopySiteOnenoteNotebookSectionToSectionGroupOperationResponse
- type CopySiteOnenoteNotebookSectionToSectionGroupRequest
- type CreateSiteOnenoteNotebookSectionOperationOptions
- type CreateSiteOnenoteNotebookSectionOperationResponse
- type DeleteSiteOnenoteNotebookSectionOperationOptions
- type DeleteSiteOnenoteNotebookSectionOperationResponse
- type GetSiteOnenoteNotebookSectionOperationOptions
- type GetSiteOnenoteNotebookSectionOperationResponse
- type GetSiteOnenoteNotebookSectionsCountOperationOptions
- type GetSiteOnenoteNotebookSectionsCountOperationResponse
- type ListSiteOnenoteNotebookSectionsCompleteResult
- type ListSiteOnenoteNotebookSectionsCustomPager
- type ListSiteOnenoteNotebookSectionsOperationOptions
- type ListSiteOnenoteNotebookSectionsOperationResponse
- type OnenoteSectionOperationPredicate
- type SiteOnenoteNotebookSectionClient
- func (c SiteOnenoteNotebookSectionClient) CopySiteOnenoteNotebookSectionToNotebook(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookIdSectionId, ...) (result CopySiteOnenoteNotebookSectionToNotebookOperationResponse, err error)
- func (c SiteOnenoteNotebookSectionClient) CopySiteOnenoteNotebookSectionToSectionGroup(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookIdSectionId, ...) (result CopySiteOnenoteNotebookSectionToSectionGroupOperationResponse, ...)
- func (c SiteOnenoteNotebookSectionClient) CreateSiteOnenoteNotebookSection(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookId, ...) (result CreateSiteOnenoteNotebookSectionOperationResponse, err error)
- func (c SiteOnenoteNotebookSectionClient) DeleteSiteOnenoteNotebookSection(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookIdSectionId, ...) (result DeleteSiteOnenoteNotebookSectionOperationResponse, err error)
- func (c SiteOnenoteNotebookSectionClient) GetSiteOnenoteNotebookSection(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookIdSectionId, ...) (result GetSiteOnenoteNotebookSectionOperationResponse, err error)
- func (c SiteOnenoteNotebookSectionClient) GetSiteOnenoteNotebookSectionsCount(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookId, ...) (result GetSiteOnenoteNotebookSectionsCountOperationResponse, err error)
- func (c SiteOnenoteNotebookSectionClient) ListSiteOnenoteNotebookSections(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookId, ...) (result ListSiteOnenoteNotebookSectionsOperationResponse, err error)
- func (c SiteOnenoteNotebookSectionClient) ListSiteOnenoteNotebookSectionsComplete(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookId, ...) (ListSiteOnenoteNotebookSectionsCompleteResult, error)
- func (c SiteOnenoteNotebookSectionClient) ListSiteOnenoteNotebookSectionsCompleteMatchingPredicate(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookId, ...) (result ListSiteOnenoteNotebookSectionsCompleteResult, err error)
- func (c SiteOnenoteNotebookSectionClient) UpdateSiteOnenoteNotebookSection(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookIdSectionId, ...) (result UpdateSiteOnenoteNotebookSectionOperationResponse, err error)
- type UpdateSiteOnenoteNotebookSectionOperationOptions
- type UpdateSiteOnenoteNotebookSectionOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CopySiteOnenoteNotebookSectionToNotebookOperationOptions ¶
type CopySiteOnenoteNotebookSectionToNotebookOperationOptions struct { Metadata *odata.Metadata RetryFunc client.RequestRetryFunc }
func DefaultCopySiteOnenoteNotebookSectionToNotebookOperationOptions ¶
func DefaultCopySiteOnenoteNotebookSectionToNotebookOperationOptions() CopySiteOnenoteNotebookSectionToNotebookOperationOptions
func (CopySiteOnenoteNotebookSectionToNotebookOperationOptions) ToHeaders ¶
func (o CopySiteOnenoteNotebookSectionToNotebookOperationOptions) ToHeaders() *client.Headers
func (CopySiteOnenoteNotebookSectionToNotebookOperationOptions) ToOData ¶
func (o CopySiteOnenoteNotebookSectionToNotebookOperationOptions) ToOData() *odata.Query
func (CopySiteOnenoteNotebookSectionToNotebookOperationOptions) ToQuery ¶
func (o CopySiteOnenoteNotebookSectionToNotebookOperationOptions) ToQuery() *client.QueryParams
type CopySiteOnenoteNotebookSectionToNotebookRequest ¶
type CopySiteOnenoteNotebookSectionToNotebookRequest struct { GroupId nullable.Type[string] `json:"groupId,omitempty"` Id nullable.Type[string] `json:"id,omitempty"` RenameAs nullable.Type[string] `json:"renameAs,omitempty"` SiteCollectionId nullable.Type[string] `json:"siteCollectionId,omitempty"` SiteId nullable.Type[string] `json:"siteId,omitempty"` }
type CopySiteOnenoteNotebookSectionToSectionGroupOperationOptions ¶
type CopySiteOnenoteNotebookSectionToSectionGroupOperationOptions struct { Metadata *odata.Metadata RetryFunc client.RequestRetryFunc }
func DefaultCopySiteOnenoteNotebookSectionToSectionGroupOperationOptions ¶
func DefaultCopySiteOnenoteNotebookSectionToSectionGroupOperationOptions() CopySiteOnenoteNotebookSectionToSectionGroupOperationOptions
func (CopySiteOnenoteNotebookSectionToSectionGroupOperationOptions) ToHeaders ¶
func (o CopySiteOnenoteNotebookSectionToSectionGroupOperationOptions) ToHeaders() *client.Headers
func (CopySiteOnenoteNotebookSectionToSectionGroupOperationOptions) ToOData ¶
func (o CopySiteOnenoteNotebookSectionToSectionGroupOperationOptions) ToOData() *odata.Query
func (CopySiteOnenoteNotebookSectionToSectionGroupOperationOptions) ToQuery ¶
func (o CopySiteOnenoteNotebookSectionToSectionGroupOperationOptions) ToQuery() *client.QueryParams
type CopySiteOnenoteNotebookSectionToSectionGroupRequest ¶
type CopySiteOnenoteNotebookSectionToSectionGroupRequest struct { GroupId nullable.Type[string] `json:"groupId,omitempty"` Id nullable.Type[string] `json:"id,omitempty"` RenameAs nullable.Type[string] `json:"renameAs,omitempty"` SiteCollectionId nullable.Type[string] `json:"siteCollectionId,omitempty"` SiteId nullable.Type[string] `json:"siteId,omitempty"` }
type CreateSiteOnenoteNotebookSectionOperationOptions ¶
type CreateSiteOnenoteNotebookSectionOperationOptions struct { Metadata *odata.Metadata RetryFunc client.RequestRetryFunc }
func DefaultCreateSiteOnenoteNotebookSectionOperationOptions ¶
func DefaultCreateSiteOnenoteNotebookSectionOperationOptions() CreateSiteOnenoteNotebookSectionOperationOptions
func (CreateSiteOnenoteNotebookSectionOperationOptions) ToHeaders ¶
func (o CreateSiteOnenoteNotebookSectionOperationOptions) ToHeaders() *client.Headers
func (CreateSiteOnenoteNotebookSectionOperationOptions) ToOData ¶
func (o CreateSiteOnenoteNotebookSectionOperationOptions) ToOData() *odata.Query
func (CreateSiteOnenoteNotebookSectionOperationOptions) ToQuery ¶
func (o CreateSiteOnenoteNotebookSectionOperationOptions) ToQuery() *client.QueryParams
type DeleteSiteOnenoteNotebookSectionOperationOptions ¶
type DeleteSiteOnenoteNotebookSectionOperationOptions struct { IfMatch *string Metadata *odata.Metadata RetryFunc client.RequestRetryFunc }
func DefaultDeleteSiteOnenoteNotebookSectionOperationOptions ¶
func DefaultDeleteSiteOnenoteNotebookSectionOperationOptions() DeleteSiteOnenoteNotebookSectionOperationOptions
func (DeleteSiteOnenoteNotebookSectionOperationOptions) ToHeaders ¶
func (o DeleteSiteOnenoteNotebookSectionOperationOptions) ToHeaders() *client.Headers
func (DeleteSiteOnenoteNotebookSectionOperationOptions) ToOData ¶
func (o DeleteSiteOnenoteNotebookSectionOperationOptions) ToOData() *odata.Query
func (DeleteSiteOnenoteNotebookSectionOperationOptions) ToQuery ¶
func (o DeleteSiteOnenoteNotebookSectionOperationOptions) ToQuery() *client.QueryParams
type GetSiteOnenoteNotebookSectionOperationOptions ¶
type GetSiteOnenoteNotebookSectionOperationOptions struct { Expand *odata.Expand Metadata *odata.Metadata RetryFunc client.RequestRetryFunc Select *[]string }
func DefaultGetSiteOnenoteNotebookSectionOperationOptions ¶
func DefaultGetSiteOnenoteNotebookSectionOperationOptions() GetSiteOnenoteNotebookSectionOperationOptions
func (GetSiteOnenoteNotebookSectionOperationOptions) ToHeaders ¶
func (o GetSiteOnenoteNotebookSectionOperationOptions) ToHeaders() *client.Headers
func (GetSiteOnenoteNotebookSectionOperationOptions) ToOData ¶
func (o GetSiteOnenoteNotebookSectionOperationOptions) ToOData() *odata.Query
func (GetSiteOnenoteNotebookSectionOperationOptions) ToQuery ¶
func (o GetSiteOnenoteNotebookSectionOperationOptions) ToQuery() *client.QueryParams
type GetSiteOnenoteNotebookSectionsCountOperationOptions ¶
type GetSiteOnenoteNotebookSectionsCountOperationOptions struct { Filter *string Metadata *odata.Metadata RetryFunc client.RequestRetryFunc Search *string }
func DefaultGetSiteOnenoteNotebookSectionsCountOperationOptions ¶
func DefaultGetSiteOnenoteNotebookSectionsCountOperationOptions() GetSiteOnenoteNotebookSectionsCountOperationOptions
func (GetSiteOnenoteNotebookSectionsCountOperationOptions) ToHeaders ¶
func (o GetSiteOnenoteNotebookSectionsCountOperationOptions) ToHeaders() *client.Headers
func (GetSiteOnenoteNotebookSectionsCountOperationOptions) ToOData ¶
func (o GetSiteOnenoteNotebookSectionsCountOperationOptions) ToOData() *odata.Query
func (GetSiteOnenoteNotebookSectionsCountOperationOptions) ToQuery ¶
func (o GetSiteOnenoteNotebookSectionsCountOperationOptions) ToQuery() *client.QueryParams
type ListSiteOnenoteNotebookSectionsCompleteResult ¶
type ListSiteOnenoteNotebookSectionsCompleteResult struct { LatestHttpResponse *http.Response Items []stable.OnenoteSection }
type ListSiteOnenoteNotebookSectionsCustomPager ¶
type ListSiteOnenoteNotebookSectionsCustomPager struct {
NextLink *odata.Link `json:"@odata.nextLink"`
}
func (*ListSiteOnenoteNotebookSectionsCustomPager) NextPageLink ¶
func (p *ListSiteOnenoteNotebookSectionsCustomPager) NextPageLink() *odata.Link
type ListSiteOnenoteNotebookSectionsOperationOptions ¶
type ListSiteOnenoteNotebookSectionsOperationOptions 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 DefaultListSiteOnenoteNotebookSectionsOperationOptions ¶
func DefaultListSiteOnenoteNotebookSectionsOperationOptions() ListSiteOnenoteNotebookSectionsOperationOptions
func (ListSiteOnenoteNotebookSectionsOperationOptions) ToHeaders ¶
func (o ListSiteOnenoteNotebookSectionsOperationOptions) ToHeaders() *client.Headers
func (ListSiteOnenoteNotebookSectionsOperationOptions) ToOData ¶
func (o ListSiteOnenoteNotebookSectionsOperationOptions) ToOData() *odata.Query
func (ListSiteOnenoteNotebookSectionsOperationOptions) ToQuery ¶
func (o ListSiteOnenoteNotebookSectionsOperationOptions) ToQuery() *client.QueryParams
type OnenoteSectionOperationPredicate ¶
type OnenoteSectionOperationPredicate struct { }
func (OnenoteSectionOperationPredicate) Matches ¶
func (p OnenoteSectionOperationPredicate) Matches(input stable.OnenoteSection) bool
type SiteOnenoteNotebookSectionClient ¶
func NewSiteOnenoteNotebookSectionClientWithBaseURI ¶
func NewSiteOnenoteNotebookSectionClientWithBaseURI(sdkApi sdkEnv.Api) (*SiteOnenoteNotebookSectionClient, error)
func (SiteOnenoteNotebookSectionClient) CopySiteOnenoteNotebookSectionToNotebook ¶
func (c SiteOnenoteNotebookSectionClient) CopySiteOnenoteNotebookSectionToNotebook(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookIdSectionId, input CopySiteOnenoteNotebookSectionToNotebookRequest, options CopySiteOnenoteNotebookSectionToNotebookOperationOptions) (result CopySiteOnenoteNotebookSectionToNotebookOperationResponse, err error)
CopySiteOnenoteNotebookSectionToNotebook - Invoke action copyToNotebook. For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result.
func (SiteOnenoteNotebookSectionClient) CopySiteOnenoteNotebookSectionToSectionGroup ¶
func (c SiteOnenoteNotebookSectionClient) CopySiteOnenoteNotebookSectionToSectionGroup(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookIdSectionId, input CopySiteOnenoteNotebookSectionToSectionGroupRequest, options CopySiteOnenoteNotebookSectionToSectionGroupOperationOptions) (result CopySiteOnenoteNotebookSectionToSectionGroupOperationResponse, err error)
CopySiteOnenoteNotebookSectionToSectionGroup - Invoke action copyToSectionGroup. For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result.
func (SiteOnenoteNotebookSectionClient) CreateSiteOnenoteNotebookSection ¶
func (c SiteOnenoteNotebookSectionClient) CreateSiteOnenoteNotebookSection(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookId, input stable.OnenoteSection, options CreateSiteOnenoteNotebookSectionOperationOptions) (result CreateSiteOnenoteNotebookSectionOperationResponse, err error)
CreateSiteOnenoteNotebookSection - Create new navigation property to sections for groups
func (SiteOnenoteNotebookSectionClient) DeleteSiteOnenoteNotebookSection ¶
func (c SiteOnenoteNotebookSectionClient) DeleteSiteOnenoteNotebookSection(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookIdSectionId, options DeleteSiteOnenoteNotebookSectionOperationOptions) (result DeleteSiteOnenoteNotebookSectionOperationResponse, err error)
DeleteSiteOnenoteNotebookSection - Delete navigation property sections for groups
func (SiteOnenoteNotebookSectionClient) GetSiteOnenoteNotebookSection ¶
func (c SiteOnenoteNotebookSectionClient) GetSiteOnenoteNotebookSection(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookIdSectionId, options GetSiteOnenoteNotebookSectionOperationOptions) (result GetSiteOnenoteNotebookSectionOperationResponse, err error)
GetSiteOnenoteNotebookSection - Get sections from groups. The sections in the notebook. Read-only. Nullable.
func (SiteOnenoteNotebookSectionClient) GetSiteOnenoteNotebookSectionsCount ¶
func (c SiteOnenoteNotebookSectionClient) GetSiteOnenoteNotebookSectionsCount(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookId, options GetSiteOnenoteNotebookSectionsCountOperationOptions) (result GetSiteOnenoteNotebookSectionsCountOperationResponse, err error)
GetSiteOnenoteNotebookSectionsCount - Get the number of the resource
func (SiteOnenoteNotebookSectionClient) ListSiteOnenoteNotebookSections ¶
func (c SiteOnenoteNotebookSectionClient) ListSiteOnenoteNotebookSections(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookId, options ListSiteOnenoteNotebookSectionsOperationOptions) (result ListSiteOnenoteNotebookSectionsOperationResponse, err error)
ListSiteOnenoteNotebookSections - Get sections from groups. The sections in the notebook. Read-only. Nullable.
func (SiteOnenoteNotebookSectionClient) ListSiteOnenoteNotebookSectionsComplete ¶
func (c SiteOnenoteNotebookSectionClient) ListSiteOnenoteNotebookSectionsComplete(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookId, options ListSiteOnenoteNotebookSectionsOperationOptions) (ListSiteOnenoteNotebookSectionsCompleteResult, error)
ListSiteOnenoteNotebookSectionsComplete retrieves all the results into a single object
func (SiteOnenoteNotebookSectionClient) ListSiteOnenoteNotebookSectionsCompleteMatchingPredicate ¶
func (c SiteOnenoteNotebookSectionClient) ListSiteOnenoteNotebookSectionsCompleteMatchingPredicate(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookId, options ListSiteOnenoteNotebookSectionsOperationOptions, predicate OnenoteSectionOperationPredicate) (result ListSiteOnenoteNotebookSectionsCompleteResult, err error)
ListSiteOnenoteNotebookSectionsCompleteMatchingPredicate retrieves all the results and then applies the predicate
func (SiteOnenoteNotebookSectionClient) UpdateSiteOnenoteNotebookSection ¶
func (c SiteOnenoteNotebookSectionClient) UpdateSiteOnenoteNotebookSection(ctx context.Context, id stable.GroupIdSiteIdOnenoteNotebookIdSectionId, input stable.OnenoteSection, options UpdateSiteOnenoteNotebookSectionOperationOptions) (result UpdateSiteOnenoteNotebookSectionOperationResponse, err error)
UpdateSiteOnenoteNotebookSection - Update the navigation property sections in groups
type UpdateSiteOnenoteNotebookSectionOperationOptions ¶
type UpdateSiteOnenoteNotebookSectionOperationOptions struct { Metadata *odata.Metadata RetryFunc client.RequestRetryFunc }
func DefaultUpdateSiteOnenoteNotebookSectionOperationOptions ¶
func DefaultUpdateSiteOnenoteNotebookSectionOperationOptions() UpdateSiteOnenoteNotebookSectionOperationOptions
func (UpdateSiteOnenoteNotebookSectionOperationOptions) ToHeaders ¶
func (o UpdateSiteOnenoteNotebookSectionOperationOptions) ToHeaders() *client.Headers
func (UpdateSiteOnenoteNotebookSectionOperationOptions) ToOData ¶
func (o UpdateSiteOnenoteNotebookSectionOperationOptions) ToOData() *odata.Query
func (UpdateSiteOnenoteNotebookSectionOperationOptions) ToQuery ¶
func (o UpdateSiteOnenoteNotebookSectionOperationOptions) ToQuery() *client.QueryParams
Source Files ¶
- client.go
- method_copysiteonenotenotebooksectiontonotebook.go
- method_copysiteonenotenotebooksectiontosectiongroup.go
- method_createsiteonenotenotebooksection.go
- method_deletesiteonenotenotebooksection.go
- method_getsiteonenotenotebooksection.go
- method_getsiteonenotenotebooksectionscount.go
- method_listsiteonenotenotebooksections.go
- method_updatesiteonenotenotebooksection.go
- model_copysiteonenotenotebooksectiontonotebookrequest.go
- model_copysiteonenotenotebooksectiontosectiongrouprequest.go
- predicates.go
- version.go