paws.networking (version 0.1.6)

appmesh_update_virtual_router: Updates an existing virtual router in a specified service mesh

Description

Updates an existing virtual router in a specified service mesh.

Usage

appmesh_update_virtual_router(clientToken, meshName, spec,
  virtualRouterName)

Arguments

clientToken

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

meshName

[required] The name of the service mesh that the virtual router resides in.

spec

[required] The new virtual router specification to apply. This overwrites the existing data.

virtualRouterName

[required] The name of the virtual router to update.

Request syntax

svc$update_virtual_router(
  clientToken = "string",
  meshName = "string",
  spec = list(
    listeners = list(
      list(
        portMapping = list(
          port = 123,
          protocol = "grpc"|"http"|"http2"|"tcp"
        )
      )
    )
  ),
  virtualRouterName = "string"
)