ves-io-schema-authentication-API-Replace

Examples of replacing authentication

Usecase:

Replace apigw-config-1

Request using vesctl:

vesctl configuration replace authentication -i authentication.yaml

where file authentication.yaml has following contents (authentication.ReplaceRequest):

RequestJSON:

          {
    "metadata": {
        "name": "apigw-1",
        "namespace": "documentation"
    },
    "spec": {
        "oidc_auth": {
            "oidc_well_known_config_url": "https://www.google.com/well_known/config",
            "oidc_client_id": "oidc-google-clientid",
            "client_secret": {
                "clear_secret_info": {
                    "url": "string://\u003cbase64\u003e"
                }
            }
        },
        "cookie_params": {
            "cookie_refresh_interval": 5000,
            "cookie_expiry": 5600,
            "session_expiry": 6600
        }
    }
}
        

vesctl yaml response: None

Request using curl:

          curl -X 'PUT' -d '{"metadata":{"name":"apigw-1","namespace":"documentation"},"spec":{"oidc_auth":{"oidc_well_known_config_url":"https://www.google.com/well_known/config","oidc_client_id":"oidc-google-clientid","client_secret":{"clear_secret_info":{"url":"string://\u003cbase64\u003e"}}},"cookie_params":{"cookie_refresh_interval":5000,"cookie_expiry":5600,"session_expiry":6600}}}' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_2__8qnt6fwd5dvglr1xqq6l8b7w0000gp_T_go-build3109416560_b001_apidocs.test/host=C02FN35BMD6R/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/documentation/authentications/apigw-1'
        

curl response:

          HTTP/1.1 200 OK
Content-Length: 4
Content-Type: application/json
Date: Thu, 21 Mar 2024 14:04:38 GMT
Vary: Accept-Encoding

{

}