ves-io-schema-views-aws_tgw_site-API-Replace

Examples of replacing aws_tgw_site

Usecase:

Replace tgw-site1 to modify nodes per availability zone to 3

Request using vesctl:

vesctl configuration replace aws_tgw_site -i aws_tgw_site.yaml

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

RequestJSON:

          {
    "metadata": {
        "name": "tgw-site1",
        "namespace": "system"
    },
    "spec": {
        "aws_parameters": {
            "aws_cred": {
                "namespace": "system",
                "name": "unit-creds-views-aws-test"
            },
            "nodes_per_az": 2
        },
        "vpc_attachments": {
            "vpc_list": []
        },
        "tgw_security": {
            "no_forward_proxy": {},
            "no_east_west_policy": {},
            "no_network_policy": {}
        },
        "logs_streaming_disabled": {}
    }
}
        

vesctl yaml response: None

Request using curl:

          curl -X 'PUT' -d '{"metadata":{"name":"tgw-site1","namespace":"system"},"spec":{"aws_parameters":{"aws_cred":{"namespace":"system","name":"unit-creds-views-aws-test"},"nodes_per_az":2},"vpc_attachments":{"vpc_list":[]},"tgw_security":{"no_forward_proxy":{},"no_east_west_policy":{},"no_network_policy":{}},"logs_streaming_disabled":{}}}' -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/system/aws_tgw_sites/tgw-site1'
        

curl response:

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

{

}