1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 14:56:05 +00:00

gcloud: Wed Sep 20 10:45:25 UTC 2023

This commit is contained in:
Automated 2023-09-20 10:45:25 +00:00
parent 952686eb78
commit 54eca12593
183 changed files with 2246 additions and 4040 deletions

View file

@ -12,7 +12,8 @@ SYNOPSIS
: --web-sso-additional-scopes=[WEB_SSO_ADDITIONAL_SCOPES,...])
[--async] [--attribute-condition=ATTRIBUTE_CONDITION]
[--client-secret-value=CLIENT_SECRET_VALUE] [--description=DESCRIPTION]
[--disabled] [--display-name=DISPLAY_NAME] [GCLOUD_WIDE_FLAG ...]
[--disabled] [--display-name=DISPLAY_NAME]
[--jwk-json-path=JWK_JSON_PATH] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Create a new OIDC workforce pool provider.
@ -33,7 +34,8 @@ EXAMPLES
--issuer-uri="https://test-idp.com" \
--web-sso-response-type="code" \
--web-sso-assertion-claims-behavior="merge-user-info-over-id-tok\
en-claims" --web-sso-additional-scopes="groups,photos"
en-claims" --web-sso-additional-scopes="groups,photos" \
--jwk-json-path="path/to/jwk.json"
POSITIONAL ARGUMENTS
Workforce pool provider resource - The workforce pool provider to create.
@ -244,6 +246,26 @@ OPTIONAL FLAGS
A display name for the workforce pool provider. Cannot exceed 32
characters in length.
--jwk-json-path=JWK_JSON_PATH
Optional file containing JSON Web Key (JWK) public keys. The file
format must follow JWK specifications
(https://www.rfc-editor.org/rfc/rfc7517#section-4). Example file
format: {
"keys": [
{
"kty": "RSA/EC",
"alg": "<algorithm>",
"use": "sig",
"kid": "<key-id>",
"n": "",
"e": "",
"x": "",
"y": "",
"crv": ""
}
]
}
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,

View file

@ -8,7 +8,7 @@ SYNOPSIS
[--async] [--attribute-condition=ATTRIBUTE_CONDITION]
[--attribute-mapping=[KEY=VALUE,...]] [--client-id=CLIENT_ID]
[--description=DESCRIPTION] [--disabled] [--display-name=DISPLAY_NAME]
[--issuer-uri=ISSUER_URI]
[--issuer-uri=ISSUER_URI] [--jwk-json-path=JWK_JSON_PATH]
[--web-sso-additional-scopes=[WEB_SSO_ADDITIONAL_SCOPES,...]]
[--web-sso-assertion-claims-behavior=WEB_SSO_ASSERTION_CLAIMS_BEHAVIOR]
[--web-sso-response-type=WEB_SSO_RESPONSE_TYPE]
@ -34,7 +34,8 @@ EXAMPLES
--issuer-uri="https://test-idp.com" \
--web-sso-response-type="code" \
--web-sso-assertion-claims-behavior="merge-user-info-over-id-tok\
en-claims" --web-sso-additional-scopes="groups,photos"
en-claims" --web-sso-additional-scopes="groups,photos" \
--jwk-json-path="path/to/jwk.json"
POSITIONAL ARGUMENTS
Workforce pool provider resource - The workforce pool provider to update.
@ -195,6 +196,26 @@ FLAGS
--issuer-uri=ISSUER_URI
The OIDC issuer URI. Must be a valid URI using the 'https' scheme.
--jwk-json-path=JWK_JSON_PATH
Optional file containing JSON Web Key (JWK) public keys. The file
format must follow JWK specifications
(https://www.rfc-editor.org/rfc/rfc7517#section-4). Example file
format: {
"keys": [
{
"kty": "RSA/EC",
"alg": "<algorithm>",
"use": "sig",
"kid": "<key-id>",
"n": "",
"e": "",
"x": "",
"y": "",
"crv": ""
}
]
}
--web-sso-additional-scopes=[WEB_SSO_ADDITIONAL_SCOPES,...]
Additional scopes to request for the OIDC authentication on top of
scopes requested by default. By default, the openid, profile and email