You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returns the type GetPolicyConfigurationsResponseValue:
// Return type for the GetPolicyConfigurations function
type GetPolicyConfigurationsResponseValue struct {
Value []PolicyConfiguration
ContinuationToken string
}
However, the args model GetPolicyConfigurationsArgs does not takes the token back:
typeGetPolicyConfigurationsArgsstruct {
// (required) Project ID or project nameProject*string// (optional) [Provided for legacy reasons] The scope on which a subset of policies is defined.Scope*string// (optional) Filter returned policies to only this typePolicyType*uuid.UUID
}
The api
returns the type GetPolicyConfigurationsResponseValue:
However, the args model GetPolicyConfigurationsArgs does not takes the token back:
I can manually replicate the api in my application and implement the continuationToken, for now, but, ideally, can you fix this API to be similar to the other APIs that uses continuation token? And even better, if you can add the pager like: https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/azcore/runtime/pager.go#L44
The text was updated successfully, but these errors were encountered: