Skip to content

Commit

Permalink
Merge pull request #497 from Mara3l/master
Browse files Browse the repository at this point in the history
TRIVIAL: remove hugo-python shortcode

Reviewed-by: Jan Kadlec
             https://github.com/hkad98
  • Loading branch information
gdgate authored Dec 21, 2023
2 parents f890aaf + 02818de commit 61c515a
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,16 @@ superheading: "catalog_organization."
weight: 100
---

{{< python "sdk.CatalogOrganizationService.create_or_update_jwk" >}}
``create_or_update_jwk( jwk: CatalogJwk ) -> None``

Create a new jwk or overwrite an existing jwk with the same id.

## Parameters

| name | type | description |
| -- | -- | -- |
| jwk | CatalogJwk | Catalog Jwk object to be created or updated. |

## Returns

_None_
14 changes: 13 additions & 1 deletion docs/content/en/docs/administration/organization/delete_jwk.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,16 @@ superheading: "catalog_organization."
weight: 100
---

{{< python "sdk.CatalogOrganizationService.delete_jwk" >}}
``delete_jwk( jwk_id: str ) -> None``

Delete a jwk.

## Parameters

| name | type | description |
| -- | -- |-----------------------------------------|
| jwk_id | str | Jwk identification string e.g. "demo" |

## Returns

_None_
17 changes: 16 additions & 1 deletion docs/content/en/docs/administration/organization/get_jwk.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,19 @@ superheading: "catalog_organization."
weight: 100
---

{{< python "sdk.CatalogOrganizationService.get_jwk" >}}
``get_jwk( jwk_id: str ) -> CatalogJwk``

Get an individual jwk.

## Parameters

|name | type| description |
| --- | --- | --- |
| jwk_id | str | Jwk identification string e.g. "demo"|


## Returns

| type | description |
| --- |-----------------------------------------------------|
| CatalogJwk | Catalog jwk object containing structure of the jwk. |
14 changes: 13 additions & 1 deletion docs/content/en/docs/administration/organization/list_jwks.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,16 @@ superheading: "catalog_organization."
weight: 100
---

{{< python "sdk.CatalogOrganizationService.list_jwks" >}}
``list_jwks( ) -> List[CatalogJwk]``

Returns a list of all jwks in the current organization.

## Parameters

_None_

## Returns

| type | description |
| -- | -- |
| List[CatalogJwk] | List of jwks in the current organization. |

0 comments on commit 61c515a

Please sign in to comment.