mirror of
https://github.com/openshift/installer.git
synced 2026-02-06 09:47:02 +01:00
138 lines
9.7 KiB
Go
138 lines
9.7 KiB
Go
package subscriptions
|
|
|
|
import (
|
|
"context"
|
|
i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f "github.com/microsoft/kiota-abstractions-go"
|
|
iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242 "github.com/microsoftgraph/msgraph-sdk-go/models"
|
|
ia572726a95efa92ddd544552cd950653dc691023836923576b2f4bf716cf204a "github.com/microsoftgraph/msgraph-sdk-go/models/odataerrors"
|
|
)
|
|
|
|
// SubscriptionsRequestBuilder provides operations to manage the collection of subscription entities.
|
|
type SubscriptionsRequestBuilder struct {
|
|
// Path parameters for the request
|
|
pathParameters map[string]string
|
|
// The request adapter to use to execute the requests.
|
|
requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter
|
|
// Url template to use to build the URL for the current request builder
|
|
urlTemplate string
|
|
}
|
|
// SubscriptionsRequestBuilderGetQueryParameters retrieve the properties and relationships of webhook subscriptions, based on the app ID, the user, and the user's role with a tenant. The content of the response depends on the context in which the app is calling; for details, see the scenarios in the Permissions section.
|
|
type SubscriptionsRequestBuilderGetQueryParameters struct {
|
|
// Search items by search phrases
|
|
Search *string `uriparametername:"%24search"`
|
|
// Select properties to be returned
|
|
Select []string `uriparametername:"%24select"`
|
|
}
|
|
// SubscriptionsRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
|
|
type SubscriptionsRequestBuilderGetRequestConfiguration struct {
|
|
// Request headers
|
|
Headers *i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestHeaders
|
|
// Request options
|
|
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
|
|
// Request query parameters
|
|
QueryParameters *SubscriptionsRequestBuilderGetQueryParameters
|
|
}
|
|
// SubscriptionsRequestBuilderPostRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
|
|
type SubscriptionsRequestBuilderPostRequestConfiguration struct {
|
|
// Request headers
|
|
Headers *i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestHeaders
|
|
// Request options
|
|
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
|
|
}
|
|
// NewSubscriptionsRequestBuilderInternal instantiates a new SubscriptionsRequestBuilder and sets the default values.
|
|
func NewSubscriptionsRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter)(*SubscriptionsRequestBuilder) {
|
|
m := &SubscriptionsRequestBuilder{
|
|
}
|
|
m.urlTemplate = "{+baseurl}/subscriptions{?%24search,%24select}";
|
|
urlTplParams := make(map[string]string)
|
|
for idx, item := range pathParameters {
|
|
urlTplParams[idx] = item
|
|
}
|
|
m.pathParameters = urlTplParams
|
|
m.requestAdapter = requestAdapter
|
|
return m
|
|
}
|
|
// NewSubscriptionsRequestBuilder instantiates a new SubscriptionsRequestBuilder and sets the default values.
|
|
func NewSubscriptionsRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter)(*SubscriptionsRequestBuilder) {
|
|
urlParams := make(map[string]string)
|
|
urlParams["request-raw-url"] = rawUrl
|
|
return NewSubscriptionsRequestBuilderInternal(urlParams, requestAdapter)
|
|
}
|
|
// Get retrieve the properties and relationships of webhook subscriptions, based on the app ID, the user, and the user's role with a tenant. The content of the response depends on the context in which the app is calling; for details, see the scenarios in the Permissions section.
|
|
// [Find more info here]
|
|
//
|
|
// [Find more info here]: https://docs.microsoft.com/graph/api/subscription-list?view=graph-rest-1.0
|
|
func (m *SubscriptionsRequestBuilder) Get(ctx context.Context, requestConfiguration *SubscriptionsRequestBuilderGetRequestConfiguration)(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.SubscriptionCollectionResponseable, error) {
|
|
requestInfo, err := m.ToGetRequestInformation(ctx, requestConfiguration);
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
errorMapping := i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.ErrorMappings {
|
|
"4XX": ia572726a95efa92ddd544552cd950653dc691023836923576b2f4bf716cf204a.CreateODataErrorFromDiscriminatorValue,
|
|
"5XX": ia572726a95efa92ddd544552cd950653dc691023836923576b2f4bf716cf204a.CreateODataErrorFromDiscriminatorValue,
|
|
}
|
|
res, err := m.requestAdapter.Send(ctx, requestInfo, iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.CreateSubscriptionCollectionResponseFromDiscriminatorValue, errorMapping)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if res == nil {
|
|
return nil, nil
|
|
}
|
|
return res.(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.SubscriptionCollectionResponseable), nil
|
|
}
|
|
// Post subscribes a listener application to receive change notifications when the requested type of changes occur to the specified resource in Microsoft Graph. See the table in the Permissions section for the list of resources that support subscribing to change notifications. Some resources support the option to include encrypted resource data in change notifications. These resources include chatMessage, contact, event, message, and presence. For more information, see Set up change notifications that include resource data and Change notifications for Outlook resources in Microsoft Graph.
|
|
// [Find more info here]
|
|
//
|
|
// [Find more info here]: https://docs.microsoft.com/graph/api/subscription-post-subscriptions?view=graph-rest-1.0
|
|
func (m *SubscriptionsRequestBuilder) Post(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Subscriptionable, requestConfiguration *SubscriptionsRequestBuilderPostRequestConfiguration)(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Subscriptionable, error) {
|
|
requestInfo, err := m.ToPostRequestInformation(ctx, body, requestConfiguration);
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
errorMapping := i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.ErrorMappings {
|
|
"4XX": ia572726a95efa92ddd544552cd950653dc691023836923576b2f4bf716cf204a.CreateODataErrorFromDiscriminatorValue,
|
|
"5XX": ia572726a95efa92ddd544552cd950653dc691023836923576b2f4bf716cf204a.CreateODataErrorFromDiscriminatorValue,
|
|
}
|
|
res, err := m.requestAdapter.Send(ctx, requestInfo, iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.CreateSubscriptionFromDiscriminatorValue, errorMapping)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if res == nil {
|
|
return nil, nil
|
|
}
|
|
return res.(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Subscriptionable), nil
|
|
}
|
|
// ToGetRequestInformation retrieve the properties and relationships of webhook subscriptions, based on the app ID, the user, and the user's role with a tenant. The content of the response depends on the context in which the app is calling; for details, see the scenarios in the Permissions section.
|
|
func (m *SubscriptionsRequestBuilder) ToGetRequestInformation(ctx context.Context, requestConfiguration *SubscriptionsRequestBuilderGetRequestConfiguration)(*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error) {
|
|
requestInfo := i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.NewRequestInformation()
|
|
requestInfo.UrlTemplate = m.urlTemplate
|
|
requestInfo.PathParameters = m.pathParameters
|
|
requestInfo.Method = i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.GET
|
|
requestInfo.Headers.Add("Accept", "application/json")
|
|
if requestConfiguration != nil {
|
|
if requestConfiguration.QueryParameters != nil {
|
|
requestInfo.AddQueryParameters(*(requestConfiguration.QueryParameters))
|
|
}
|
|
requestInfo.Headers.AddAll(requestConfiguration.Headers)
|
|
requestInfo.AddRequestOptions(requestConfiguration.Options)
|
|
}
|
|
return requestInfo, nil
|
|
}
|
|
// ToPostRequestInformation subscribes a listener application to receive change notifications when the requested type of changes occur to the specified resource in Microsoft Graph. See the table in the Permissions section for the list of resources that support subscribing to change notifications. Some resources support the option to include encrypted resource data in change notifications. These resources include chatMessage, contact, event, message, and presence. For more information, see Set up change notifications that include resource data and Change notifications for Outlook resources in Microsoft Graph.
|
|
func (m *SubscriptionsRequestBuilder) ToPostRequestInformation(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Subscriptionable, requestConfiguration *SubscriptionsRequestBuilderPostRequestConfiguration)(*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error) {
|
|
requestInfo := i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.NewRequestInformation()
|
|
requestInfo.UrlTemplate = m.urlTemplate
|
|
requestInfo.PathParameters = m.pathParameters
|
|
requestInfo.Method = i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.POST
|
|
requestInfo.Headers.Add("Accept", "application/json")
|
|
err := requestInfo.SetContentFromParsable(ctx, m.requestAdapter, "application/json", body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if requestConfiguration != nil {
|
|
requestInfo.Headers.AddAll(requestConfiguration.Headers)
|
|
requestInfo.AddRequestOptions(requestConfiguration.Options)
|
|
}
|
|
return requestInfo, nil
|
|
}
|