Add global params for limit and offset (#3096)

This commit is contained in:
Javier Adriel
2023-10-19 14:38:31 -06:00
committed by GitHub
parent 4389548b64
commit 622c3a067a
14 changed files with 366 additions and 244 deletions

View File

@@ -1169,7 +1169,7 @@ jobs:
go tool cover -func=all.out | grep total > tmp2
result=`cat tmp2 | awk 'END {print $3}'`
result=${result%\%}
threshold=71.4
threshold=71.3
echo "Result:"
echo "$result%"
if (( $(echo "$result >= $threshold" |bc -l) )); then

View File

@@ -1707,10 +1707,9 @@ export class HttpClient<SecurityDataType = unknown> {
? { "Content-Type": type }
: {}),
},
signal:
(cancelToken
? this.createAbortSignal(cancelToken)
: requestParams.signal) || null,
signal: cancelToken
? this.createAbortSignal(cancelToken)
: requestParams.signal,
body:
typeof body === "undefined" || body === null
? null
@@ -2027,7 +2026,10 @@ export class Api<
recursive?: boolean;
with_versions?: boolean;
with_metadata?: boolean;
/** @format int32 */
/**
* @format int32
* @default 20
*/
limit?: number;
},
params: RequestParams = {},
@@ -2463,9 +2465,15 @@ export class Api<
listBucketEvents: (
bucketName: string,
query?: {
/** @format int32 */
/**
* @format int32
* @default 0
*/
offset?: number;
/** @format int32 */
/**
* @format int32
* @default 20
*/
limit?: number;
},
params: RequestParams = {},
@@ -2969,9 +2977,15 @@ export class Api<
*/
listUserServiceAccounts: (
query?: {
/** @format int32 */
/**
* @format int32
* @default 0
*/
offset?: number;
/** @format int32 */
/**
* @format int32
* @default 20
*/
limit?: number;
},
params: RequestParams = {},
@@ -3121,9 +3135,15 @@ export class Api<
*/
listUsers: (
query?: {
/** @format int32 */
/**
* @format int32
* @default 0
*/
offset?: number;
/** @format int32 */
/**
* @format int32
* @default 20
*/
limit?: number;
},
params: RequestParams = {},
@@ -3395,9 +3415,15 @@ export class Api<
*/
listGroups: (
query?: {
/** @format int32 */
/**
* @format int32
* @default 0
*/
offset?: number;
/** @format int32 */
/**
* @format int32
* @default 20
*/
limit?: number;
},
params: RequestParams = {},
@@ -3502,9 +3528,15 @@ export class Api<
*/
listPolicies: (
query?: {
/** @format int32 */
/**
* @format int32
* @default 0
*/
offset?: number;
/** @format int32 */
/**
* @format int32
* @default 20
*/
limit?: number;
},
params: RequestParams = {},
@@ -3587,9 +3619,15 @@ export class Api<
listPoliciesWithBucket: (
bucket: string,
query?: {
/** @format int32 */
/**
* @format int32
* @default 0
*/
offset?: number;
/** @format int32 */
/**
* @format int32
* @default 20
*/
limit?: number;
},
params: RequestParams = {},
@@ -3640,9 +3678,15 @@ export class Api<
listAccessRulesWithBucket: (
bucket: string,
query?: {
/** @format int32 */
/**
* @format int32
* @default 0
*/
offset?: number;
/** @format int32 */
/**
* @format int32
* @default 20
*/
limit?: number;
},
params: RequestParams = {},
@@ -3693,9 +3737,15 @@ export class Api<
listUsersWithAccessToBucket: (
bucket: string,
query?: {
/** @format int32 */
/**
* @format int32
* @default 0
*/
offset?: number;
/** @format int32 */
/**
* @format int32
* @default 20
*/
limit?: number;
},
params: RequestParams = {},
@@ -3757,9 +3807,15 @@ export class Api<
*/
listConfig: (
query?: {
/** @format int32 */
/**
* @format int32
* @default 0
*/
offset?: number;
/** @format int32 */
/**
* @format int32
* @default 20
*/
limit?: number;
},
params: RequestParams = {},

View File

@@ -651,16 +651,10 @@ func init() {
"required": true
},
{
"type": "integer",
"format": "int32",
"name": "offset",
"in": "query"
"$ref": "#/parameters/offset"
},
{
"type": "integer",
"format": "int32",
"name": "limit",
"in": "query"
"$ref": "#/parameters/limit"
}
],
"responses": {
@@ -694,16 +688,10 @@ func init() {
"required": true
},
{
"type": "integer",
"format": "int32",
"name": "offset",
"in": "query"
"$ref": "#/parameters/offset"
},
{
"type": "integer",
"format": "int32",
"name": "limit",
"in": "query"
"$ref": "#/parameters/limit"
}
],
"responses": {
@@ -740,16 +728,10 @@ func init() {
"required": true
},
{
"type": "integer",
"format": "int32",
"name": "offset",
"in": "query"
"$ref": "#/parameters/offset"
},
{
"type": "integer",
"format": "int32",
"name": "limit",
"in": "query"
"$ref": "#/parameters/limit"
}
],
"responses": {
@@ -1185,16 +1167,10 @@ func init() {
"required": true
},
{
"type": "integer",
"format": "int32",
"name": "offset",
"in": "query"
"$ref": "#/parameters/offset"
},
{
"type": "integer",
"format": "int32",
"name": "limit",
"in": "query"
"$ref": "#/parameters/limit"
}
],
"responses": {
@@ -1502,10 +1478,7 @@ func init() {
"in": "query"
},
{
"type": "integer",
"format": "int32",
"name": "limit",
"in": "query"
"$ref": "#/parameters/limit"
}
],
"responses": {
@@ -2570,16 +2543,10 @@ func init() {
"operationId": "ListConfig",
"parameters": [
{
"type": "integer",
"format": "int32",
"name": "offset",
"in": "query"
"$ref": "#/parameters/offset"
},
{
"type": "integer",
"format": "int32",
"name": "limit",
"in": "query"
"$ref": "#/parameters/limit"
}
],
"responses": {
@@ -2856,16 +2823,10 @@ func init() {
"operationId": "ListGroups",
"parameters": [
{
"type": "integer",
"format": "int32",
"name": "offset",
"in": "query"
"$ref": "#/parameters/offset"
},
{
"type": "integer",
"format": "int32",
"name": "limit",
"in": "query"
"$ref": "#/parameters/limit"
}
],
"responses": {
@@ -3936,16 +3897,10 @@ func init() {
"operationId": "ListPolicies",
"parameters": [
{
"type": "integer",
"format": "int32",
"name": "offset",
"in": "query"
"$ref": "#/parameters/offset"
},
{
"type": "integer",
"format": "int32",
"name": "limit",
"in": "query"
"$ref": "#/parameters/limit"
}
],
"responses": {
@@ -4387,16 +4342,10 @@ func init() {
"operationId": "ListUserServiceAccounts",
"parameters": [
{
"type": "integer",
"format": "int32",
"name": "offset",
"in": "query"
"$ref": "#/parameters/offset"
},
{
"type": "integer",
"format": "int32",
"name": "limit",
"in": "query"
"$ref": "#/parameters/limit"
}
],
"responses": {
@@ -5202,16 +5151,10 @@ func init() {
"operationId": "ListUsers",
"parameters": [
{
"type": "integer",
"format": "int32",
"name": "offset",
"in": "query"
"$ref": "#/parameters/offset"
},
{
"type": "integer",
"format": "int32",
"name": "limit",
"in": "query"
"$ref": "#/parameters/limit"
}
],
"responses": {
@@ -9062,6 +9005,22 @@ func init() {
}
}
},
"parameters": {
"limit": {
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
},
"offset": {
"type": "number",
"format": "int32",
"default": 0,
"name": "offset",
"in": "query"
}
},
"securityDefinitions": {
"anonymous": {
"type": "apiKey",
@@ -9698,14 +9657,16 @@ func init() {
"required": true
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 0,
"name": "offset",
"in": "query"
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
}
@@ -9741,14 +9702,16 @@ func init() {
"required": true
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 0,
"name": "offset",
"in": "query"
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
}
@@ -9787,14 +9750,16 @@ func init() {
"required": true
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 0,
"name": "offset",
"in": "query"
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
}
@@ -10232,14 +10197,16 @@ func init() {
"required": true
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 0,
"name": "offset",
"in": "query"
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
}
@@ -10549,8 +10516,9 @@ func init() {
"in": "query"
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
}
@@ -11617,14 +11585,16 @@ func init() {
"operationId": "ListConfig",
"parameters": [
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 0,
"name": "offset",
"in": "query"
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
}
@@ -11903,14 +11873,16 @@ func init() {
"operationId": "ListGroups",
"parameters": [
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 0,
"name": "offset",
"in": "query"
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
}
@@ -12983,14 +12955,16 @@ func init() {
"operationId": "ListPolicies",
"parameters": [
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 0,
"name": "offset",
"in": "query"
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
}
@@ -13434,14 +13408,16 @@ func init() {
"operationId": "ListUserServiceAccounts",
"parameters": [
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 0,
"name": "offset",
"in": "query"
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
}
@@ -14249,14 +14225,16 @@ func init() {
"operationId": "ListUsers",
"parameters": [
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 0,
"name": "offset",
"in": "query"
},
{
"type": "integer",
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
}
@@ -18241,6 +18219,22 @@ func init() {
}
}
},
"parameters": {
"limit": {
"type": "number",
"format": "int32",
"default": 20,
"name": "limit",
"in": "query"
},
"offset": {
"type": "number",
"format": "int32",
"default": 0,
"name": "offset",
"in": "query"
}
},
"securityDefinitions": {
"anonymous": {
"type": "apiKey",

View File

@@ -33,11 +33,21 @@ import (
)
// NewListAccessRulesWithBucketParams creates a new ListAccessRulesWithBucketParams object
//
// There are no default values defined in the spec.
// with the default values initialized.
func NewListAccessRulesWithBucketParams() ListAccessRulesWithBucketParams {
return ListAccessRulesWithBucketParams{}
var (
// initialize parameters with default values
limitDefault = int32(20)
offsetDefault = int32(0)
)
return ListAccessRulesWithBucketParams{
Limit: &limitDefault,
Offset: &offsetDefault,
}
}
// ListAccessRulesWithBucketParams contains all the bound params for the list access rules with bucket operation
@@ -56,10 +66,12 @@ type ListAccessRulesWithBucketParams struct {
Bucket string
/*
In: query
Default: 20
*/
Limit *int32
/*
In: query
Default: 0
*/
Offset *int32
}
@@ -120,6 +132,7 @@ func (o *ListAccessRulesWithBucketParams) bindLimit(rawData []string, hasKey boo
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListAccessRulesWithBucketParams()
return nil
}
@@ -143,6 +156,7 @@ func (o *ListAccessRulesWithBucketParams) bindOffset(rawData []string, hasKey bo
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListAccessRulesWithBucketParams()
return nil
}

View File

@@ -33,11 +33,21 @@ import (
)
// NewListBucketEventsParams creates a new ListBucketEventsParams object
//
// There are no default values defined in the spec.
// with the default values initialized.
func NewListBucketEventsParams() ListBucketEventsParams {
return ListBucketEventsParams{}
var (
// initialize parameters with default values
limitDefault = int32(20)
offsetDefault = int32(0)
)
return ListBucketEventsParams{
Limit: &limitDefault,
Offset: &offsetDefault,
}
}
// ListBucketEventsParams contains all the bound params for the list bucket events operation
@@ -56,10 +66,12 @@ type ListBucketEventsParams struct {
BucketName string
/*
In: query
Default: 20
*/
Limit *int32
/*
In: query
Default: 0
*/
Offset *int32
}
@@ -120,6 +132,7 @@ func (o *ListBucketEventsParams) bindLimit(rawData []string, hasKey bool, format
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListBucketEventsParams()
return nil
}
@@ -143,6 +156,7 @@ func (o *ListBucketEventsParams) bindOffset(rawData []string, hasKey bool, forma
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListBucketEventsParams()
return nil
}

View File

@@ -33,11 +33,21 @@ import (
)
// NewListPoliciesWithBucketParams creates a new ListPoliciesWithBucketParams object
//
// There are no default values defined in the spec.
// with the default values initialized.
func NewListPoliciesWithBucketParams() ListPoliciesWithBucketParams {
return ListPoliciesWithBucketParams{}
var (
// initialize parameters with default values
limitDefault = int32(20)
offsetDefault = int32(0)
)
return ListPoliciesWithBucketParams{
Limit: &limitDefault,
Offset: &offsetDefault,
}
}
// ListPoliciesWithBucketParams contains all the bound params for the list policies with bucket operation
@@ -56,10 +66,12 @@ type ListPoliciesWithBucketParams struct {
Bucket string
/*
In: query
Default: 20
*/
Limit *int32
/*
In: query
Default: 0
*/
Offset *int32
}
@@ -120,6 +132,7 @@ func (o *ListPoliciesWithBucketParams) bindLimit(rawData []string, hasKey bool,
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListPoliciesWithBucketParams()
return nil
}
@@ -143,6 +156,7 @@ func (o *ListPoliciesWithBucketParams) bindOffset(rawData []string, hasKey bool,
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListPoliciesWithBucketParams()
return nil
}

View File

@@ -33,11 +33,21 @@ import (
)
// NewListUsersWithAccessToBucketParams creates a new ListUsersWithAccessToBucketParams object
//
// There are no default values defined in the spec.
// with the default values initialized.
func NewListUsersWithAccessToBucketParams() ListUsersWithAccessToBucketParams {
return ListUsersWithAccessToBucketParams{}
var (
// initialize parameters with default values
limitDefault = int32(20)
offsetDefault = int32(0)
)
return ListUsersWithAccessToBucketParams{
Limit: &limitDefault,
Offset: &offsetDefault,
}
}
// ListUsersWithAccessToBucketParams contains all the bound params for the list users with access to bucket operation
@@ -56,10 +66,12 @@ type ListUsersWithAccessToBucketParams struct {
Bucket string
/*
In: query
Default: 20
*/
Limit *int32
/*
In: query
Default: 0
*/
Offset *int32
}
@@ -120,6 +132,7 @@ func (o *ListUsersWithAccessToBucketParams) bindLimit(rawData []string, hasKey b
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListUsersWithAccessToBucketParams()
return nil
}
@@ -143,6 +156,7 @@ func (o *ListUsersWithAccessToBucketParams) bindOffset(rawData []string, hasKey
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListUsersWithAccessToBucketParams()
return nil
}

View File

@@ -33,11 +33,21 @@ import (
)
// NewListConfigParams creates a new ListConfigParams object
//
// There are no default values defined in the spec.
// with the default values initialized.
func NewListConfigParams() ListConfigParams {
return ListConfigParams{}
var (
// initialize parameters with default values
limitDefault = int32(20)
offsetDefault = int32(0)
)
return ListConfigParams{
Limit: &limitDefault,
Offset: &offsetDefault,
}
}
// ListConfigParams contains all the bound params for the list config operation
@@ -51,10 +61,12 @@ type ListConfigParams struct {
/*
In: query
Default: 20
*/
Limit *int32
/*
In: query
Default: 0
*/
Offset *int32
}
@@ -96,6 +108,7 @@ func (o *ListConfigParams) bindLimit(rawData []string, hasKey bool, formats strf
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListConfigParams()
return nil
}
@@ -119,6 +132,7 @@ func (o *ListConfigParams) bindOffset(rawData []string, hasKey bool, formats str
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListConfigParams()
return nil
}

View File

@@ -33,11 +33,21 @@ import (
)
// NewListGroupsParams creates a new ListGroupsParams object
//
// There are no default values defined in the spec.
// with the default values initialized.
func NewListGroupsParams() ListGroupsParams {
return ListGroupsParams{}
var (
// initialize parameters with default values
limitDefault = int32(20)
offsetDefault = int32(0)
)
return ListGroupsParams{
Limit: &limitDefault,
Offset: &offsetDefault,
}
}
// ListGroupsParams contains all the bound params for the list groups operation
@@ -51,10 +61,12 @@ type ListGroupsParams struct {
/*
In: query
Default: 20
*/
Limit *int32
/*
In: query
Default: 0
*/
Offset *int32
}
@@ -96,6 +108,7 @@ func (o *ListGroupsParams) bindLimit(rawData []string, hasKey bool, formats strf
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListGroupsParams()
return nil
}
@@ -119,6 +132,7 @@ func (o *ListGroupsParams) bindOffset(rawData []string, hasKey bool, formats str
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListGroupsParams()
return nil
}

View File

@@ -33,11 +33,18 @@ import (
)
// NewListObjectsParams creates a new ListObjectsParams object
//
// There are no default values defined in the spec.
// with the default values initialized.
func NewListObjectsParams() ListObjectsParams {
return ListObjectsParams{}
var (
// initialize parameters with default values
limitDefault = int32(20)
)
return ListObjectsParams{
Limit: &limitDefault,
}
}
// ListObjectsParams contains all the bound params for the list objects operation
@@ -56,6 +63,7 @@ type ListObjectsParams struct {
BucketName string
/*
In: query
Default: 20
*/
Limit *int32
/*
@@ -147,6 +155,7 @@ func (o *ListObjectsParams) bindLimit(rawData []string, hasKey bool, formats str
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListObjectsParams()
return nil
}

View File

@@ -33,11 +33,21 @@ import (
)
// NewListPoliciesParams creates a new ListPoliciesParams object
//
// There are no default values defined in the spec.
// with the default values initialized.
func NewListPoliciesParams() ListPoliciesParams {
return ListPoliciesParams{}
var (
// initialize parameters with default values
limitDefault = int32(20)
offsetDefault = int32(0)
)
return ListPoliciesParams{
Limit: &limitDefault,
Offset: &offsetDefault,
}
}
// ListPoliciesParams contains all the bound params for the list policies operation
@@ -51,10 +61,12 @@ type ListPoliciesParams struct {
/*
In: query
Default: 20
*/
Limit *int32
/*
In: query
Default: 0
*/
Offset *int32
}
@@ -96,6 +108,7 @@ func (o *ListPoliciesParams) bindLimit(rawData []string, hasKey bool, formats st
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListPoliciesParams()
return nil
}
@@ -119,6 +132,7 @@ func (o *ListPoliciesParams) bindOffset(rawData []string, hasKey bool, formats s
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListPoliciesParams()
return nil
}

View File

@@ -33,11 +33,21 @@ import (
)
// NewListUserServiceAccountsParams creates a new ListUserServiceAccountsParams object
//
// There are no default values defined in the spec.
// with the default values initialized.
func NewListUserServiceAccountsParams() ListUserServiceAccountsParams {
return ListUserServiceAccountsParams{}
var (
// initialize parameters with default values
limitDefault = int32(20)
offsetDefault = int32(0)
)
return ListUserServiceAccountsParams{
Limit: &limitDefault,
Offset: &offsetDefault,
}
}
// ListUserServiceAccountsParams contains all the bound params for the list user service accounts operation
@@ -51,10 +61,12 @@ type ListUserServiceAccountsParams struct {
/*
In: query
Default: 20
*/
Limit *int32
/*
In: query
Default: 0
*/
Offset *int32
}
@@ -96,6 +108,7 @@ func (o *ListUserServiceAccountsParams) bindLimit(rawData []string, hasKey bool,
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListUserServiceAccountsParams()
return nil
}
@@ -119,6 +132,7 @@ func (o *ListUserServiceAccountsParams) bindOffset(rawData []string, hasKey bool
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListUserServiceAccountsParams()
return nil
}

View File

@@ -33,11 +33,21 @@ import (
)
// NewListUsersParams creates a new ListUsersParams object
//
// There are no default values defined in the spec.
// with the default values initialized.
func NewListUsersParams() ListUsersParams {
return ListUsersParams{}
var (
// initialize parameters with default values
limitDefault = int32(20)
offsetDefault = int32(0)
)
return ListUsersParams{
Limit: &limitDefault,
Offset: &offsetDefault,
}
}
// ListUsersParams contains all the bound params for the list users operation
@@ -51,10 +61,12 @@ type ListUsersParams struct {
/*
In: query
Default: 20
*/
Limit *int32
/*
In: query
Default: 0
*/
Offset *int32
}
@@ -96,6 +108,7 @@ func (o *ListUsersParams) bindLimit(rawData []string, hasKey bool, formats strfm
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListUsersParams()
return nil
}
@@ -119,6 +132,7 @@ func (o *ListUsersParams) bindOffset(rawData []string, hasKey bool, formats strf
// AllowEmptyValue: false
if raw == "" { // empty values pass all other validations
// Default values have been previously initialized by NewListUsersParams()
return nil
}

View File

@@ -26,6 +26,19 @@ securityDefinitions:
# Apply the key security definition to all APIs
security:
- key: []
parameters:
limit:
name: limit
in: query
type: number
format: int32
default: 20
offset:
name: offset
in: query
type: number
format: int32
default: 0
paths:
/login:
get:
@@ -306,11 +319,7 @@ paths:
in: query
required: false
type: boolean
- name: limit
in: query
required: false
type: integer
format: int32
- $ref: "#/parameters/limit"
responses:
200:
description: A successful response.
@@ -811,16 +820,8 @@ paths:
in: path
required: true
type: string
- name: offset
in: query
required: false
type: integer
format: int32
- name: limit
in: query
required: false
type: integer
format: int32
- $ref: "#/parameters/offset"
- $ref: "#/parameters/limit"
responses:
200:
description: A successful response.
@@ -1343,16 +1344,8 @@ paths:
summary: List User's Service Accounts
operationId: ListUserServiceAccounts
parameters:
- name: offset
in: query
required: false
type: integer
format: int32
- name: limit
in: query
required: false
type: integer
format: int32
- $ref: "#/parameters/offset"
- $ref: "#/parameters/limit"
responses:
200:
description: A successful response.
@@ -1496,16 +1489,8 @@ paths:
summary: List Users
operationId: ListUsers
parameters:
- name: offset
in: query
required: false
type: integer
format: int32
- name: limit
in: query
required: false
type: integer
format: int32
- $ref: "#/parameters/offset"
- $ref: "#/parameters/limit"
responses:
200:
description: A successful response.
@@ -1780,16 +1765,8 @@ paths:
summary: List Groups
operationId: ListGroups
parameters:
- name: offset
in: query
required: false
type: integer
format: int32
- name: limit
in: query
required: false
type: integer
format: int32
- $ref: "#/parameters/offset"
- $ref: "#/parameters/limit"
responses:
200:
description: A successful response.
@@ -1887,16 +1864,8 @@ paths:
summary: List Policies
operationId: ListPolicies
parameters:
- name: offset
in: query
required: false
type: integer
format: int32
- name: limit
in: query
required: false
type: integer
format: int32
- $ref: "#/parameters/offset"
- $ref: "#/parameters/limit"
responses:
200:
description: A successful response.
@@ -1984,16 +1953,8 @@ paths:
in: path
required: true
type: string
- name: offset
in: query
required: false
type: integer
format: int32
- name: limit
in: query
required: false
type: integer
format: int32
- $ref: "#/parameters/offset"
- $ref: "#/parameters/limit"
responses:
200:
description: A successful response.
@@ -2039,16 +2000,8 @@ paths:
in: path
required: true
type: string
- name: offset
in: query
required: false
type: integer
format: int32
- name: limit
in: query
required: false
type: integer
format: int32
- $ref: "#/parameters/offset"
- $ref: "#/parameters/limit"
responses:
200:
description: A successful response.
@@ -2094,16 +2047,8 @@ paths:
in: path
required: true
type: string
- name: offset
in: query
required: false
type: integer
format: int32
- name: limit
in: query
required: false
type: integer
format: int32
- $ref: "#/parameters/offset"
- $ref: "#/parameters/limit"
responses:
200:
description: A successful response.
@@ -2161,16 +2106,8 @@ paths:
summary: List Configurations
operationId: ListConfig
parameters:
- name: offset
in: query
required: false
type: integer
format: int32
- name: limit
in: query
required: false
type: integer
format: int32
- $ref: "#/parameters/offset"
- $ref: "#/parameters/limit"
responses:
200:
description: A successful response.