Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use consistent method name for setting body json #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions identitycloud/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ paths:
summary: Create certificate
tags:
- Certificates
x-codegen-request-body-name: body
/environment/certificates/{id}:
delete:
description: Deletes a certificate installed on the tenant. This certificate
Expand Down Expand Up @@ -670,6 +671,7 @@ paths:
summary: Update certificate by ID
tags:
- Certificates
x-codegen-request-body-name: body
/environment/content-security-policy/enforced:
get:
description: Returns current enforced content security policy
Expand Down Expand Up @@ -870,6 +872,7 @@ paths:
summary: Set enforced content security policy
tags:
- Content Security Policy
x-codegen-request-body-name: body
/environment/content-security-policy/report-only:
get:
description: Returns current report-only content security policy
Expand Down Expand Up @@ -1070,6 +1073,7 @@ paths:
summary: Set report-only content security policy
tags:
- Content Security Policy
x-codegen-request-body-name: body
/environment/cookie-domains:
get:
description: Returns current cookie domains
Expand Down Expand Up @@ -1298,6 +1302,7 @@ paths:
summary: Set cookie domains
tags:
- Cookie Domains
x-codegen-request-body-name: body
/environment/count:
get:
description: Get count of ESV secrets and variables in the environment.
Expand Down Expand Up @@ -1572,6 +1577,7 @@ paths:
summary: Create CSR
tags:
- CSRs
x-codegen-request-body-name: body
/environment/csrs/{id}:
delete:
description: Deletes a CSR created in the tenant.
Expand Down Expand Up @@ -1936,6 +1942,7 @@ paths:
summary: Update CSR by ID
tags:
- CSRs
x-codegen-request-body-name: body
/environment/custom-domains:
post:
description: Verify a CNAME
Expand Down Expand Up @@ -2061,6 +2068,7 @@ paths:
summary: Verify a CNAME
tags:
- Custom Domains
x-codegen-request-body-name: body
/environment/custom-domains/{realm}:
get:
description: Returns current custom domains
Expand Down Expand Up @@ -2294,6 +2302,7 @@ paths:
summary: Set custom domains
tags:
- Custom Domains
x-codegen-request-body-name: body
/environment/federation/enforcement:
get:
description: Returns current federation enforcement settings
Expand Down Expand Up @@ -2467,6 +2476,7 @@ paths:
summary: Set enforcement of federation
tags:
- Federation Enforcement
x-codegen-request-body-name: body
/environment/promotion/lock:
post:
description: Starts the lock process on the lower and upper environments
Expand Down Expand Up @@ -2926,6 +2936,7 @@ paths:
summary: Run a promotion
tags:
- Promotion
x-codegen-request-body-name: body
/environment/promotion/report:
get:
description: This will return the contents of the last run config promotion
Expand Down Expand Up @@ -3425,6 +3436,7 @@ paths:
summary: Rollback a promotion
tags:
- Promotion
x-codegen-request-body-name: body
/environment/release:
get:
description: Get release information
Expand Down Expand Up @@ -3800,6 +3812,7 @@ paths:
summary: Set a secret description
tags:
- Secrets
x-codegen-request-body-name: body
put:
description: Create a secret and its first secret version.
operationId: createSecret
Expand Down Expand Up @@ -3867,6 +3880,7 @@ paths:
summary: Create a secret
tags:
- Secrets
x-codegen-request-body-name: body
/environment/secrets/{secretId}/versions:
get:
description: |
Expand Down Expand Up @@ -4007,6 +4021,7 @@ paths:
summary: Create a new version of a secret
tags:
- Secrets
x-codegen-request-body-name: body
/environment/secrets/{secretId}/versions/{versionId}:
delete:
operationId: deleteSecretVersion
Expand Down Expand Up @@ -4234,6 +4249,7 @@ paths:
summary: Update the status of a version of a secret
tags:
- Secrets
x-codegen-request-body-name: body
/environment/sso-cookie:
get:
description: Returns current SSO cookie configuration
Expand Down Expand Up @@ -4541,6 +4557,7 @@ paths:
summary: Set SSO cookie configuration
tags:
- SSO Cookie
x-codegen-request-body-name: body
/environment/startup:
get:
description: Get restart status indicating whether any upgrade or rollout restart
Expand Down Expand Up @@ -4942,6 +4959,7 @@ paths:
summary: Set a variable description
tags:
- Variables
x-codegen-request-body-name: body
put:
description: |
Create or update a variable using a predefined name. Once created, a variable name cannot be changed.
Expand Down Expand Up @@ -5010,6 +5028,7 @@ paths:
summary: Create or update a variable
tags:
- Variables
x-codegen-request-body-name: body
components:
parameters:
PageCookie:
Expand Down
34 changes: 17 additions & 17 deletions identitycloud/api_certificates.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions identitycloud/api_content_security_policy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions identitycloud/api_cookie_domains.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading