ves-io-schema-authentication-API-Create

Examples of creating authentication

Usecase:

Create apigw-config-1

Request using vesctl:

vesctl configuration create authentication -i authentication.yaml

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

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": 3000,
            "cookie_expiry": 3600,
            "session_expiry": 3600
        }
    }
}
        

vesctl yaml response:

ResponseJSON:

          {
    "metadata": {
        "name": "apigw-1",
        "namespace": "documentation",
        "labels": {},
        "annotations": {},
        "description": "",
        "disable": false
    },
    "system_metadata": {
        "uid": "5be329c2-5d16-4b5e-be28-ae36ff563572",
        "creation_timestamp": "2024-03-21T14:04:37.152066Z",
        "deletion_timestamp": null,
        "modification_timestamp": null,
        "initializers": null,
        "finalizers": [],
        "tenant": "acmecorp",
        "creator_class": "examplesvc",
        "creator_id": "examplesvc",
        "object_index": 0,
        "owner_view": null,
        "labels": {}
    },
    "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": {
                    "provider": "",
                    "url": "string://\u003cbase64\u003e"
                },
                "blindfold_secret_info_internal": null,
                "secret_encoding_type": "EncodingNone"
            }
        },
        "cookie_params": {
            "cookie_refresh_interval": 3000,
            "cookie_expiry": 3600,
            "session_expiry": 3600
        }
    }
}
        

Request using curl:

          curl -X 'POST' -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":3000,"cookie_expiry":3600,"session_expiry":3600}}}' -H 'Content-Type: application/json' -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'
        

curl response:

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

{
  "metadata": {
    "name": "apigw-1",
    "namespace": "documentation",
    "labels": {
    },
    "annotations": {
    },
    "description": "",
    "disable": false
  },
  "system_metadata": {
    "uid": "5be329c2-5d16-4b5e-be28-ae36ff563572",
    "creation_timestamp": "2024-03-21T14:04:37.152066Z",
    "deletion_timestamp": null,
    "modification_timestamp": null,
    "initializers": null,
    "finalizers": [
    ],
    "tenant": "acmecorp",
    "creator_class": "examplesvc",
    "creator_id": "examplesvc",
    "object_index": 0,
    "owner_view": null,
    "labels": {
    }
  },
  "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": {
          "provider": "",
          "url": "string://\u003cbase64\u003e"
        },
        "blindfold_secret_info_internal": null,
        "secret_encoding_type": "EncodingNone"
      }
    },
    "cookie_params": {
      "cookie_refresh_interval": 3000,
      "cookie_expiry": 3600,
      "session_expiry": 3600
    }
  }
}