-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
210 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/** | ||
* Api | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* OpenAPI spec version: master | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { ManagementV1OIDCClient } from '../models/managementV1OIDCClient'; | ||
import { V1ListMeta } from '../models/V1ListMeta'; | ||
|
||
|
||
export class ManagementV1OIDCClientList { | ||
/** | ||
* APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | ||
*/ | ||
'apiVersion'?: string; | ||
'items': Array<ManagementV1OIDCClient>; | ||
/** | ||
* Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | ||
*/ | ||
'kind'?: string; | ||
'metadata'?: V1ListMeta; | ||
|
||
static readonly discriminator: string | undefined = undefined; | ||
|
||
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ | ||
{ | ||
"name": "apiVersion", | ||
"baseName": "apiVersion", | ||
"type": "string", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "items", | ||
"baseName": "items", | ||
"type": "Array<ManagementV1OIDCClient>", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "kind", | ||
"baseName": "kind", | ||
"type": "string", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "metadata", | ||
"baseName": "metadata", | ||
"type": "V1ListMeta", | ||
"format": "" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return ManagementV1OIDCClientList.attributeTypeMap; | ||
} | ||
|
||
public constructor() { | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/** | ||
* Api | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* OpenAPI spec version: master | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
|
||
/** | ||
* OIDCClientSpec holds the specification | ||
*/ | ||
export class ManagementV1OIDCClientSpec { | ||
/** | ||
* The client id of the client | ||
*/ | ||
'clientId'?: string; | ||
/** | ||
* The client secret of the client | ||
*/ | ||
'clientSecret'?: string; | ||
/** | ||
* The client name | ||
*/ | ||
'name'?: string; | ||
/** | ||
* A registered set of redirect URIs. When redirecting from dex to the client, the URI requested to redirect to MUST match one of these values, unless the client is \"public\". | ||
*/ | ||
'redirectURIs': Array<string>; | ||
|
||
static readonly discriminator: string | undefined = undefined; | ||
|
||
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ | ||
{ | ||
"name": "clientId", | ||
"baseName": "clientId", | ||
"type": "string", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "clientSecret", | ||
"baseName": "clientSecret", | ||
"type": "string", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "name", | ||
"baseName": "name", | ||
"type": "string", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "redirectURIs", | ||
"baseName": "redirectURIs", | ||
"type": "Array<string>", | ||
"format": "" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return ManagementV1OIDCClientSpec.attributeTypeMap; | ||
} | ||
|
||
public constructor() { | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.