Skip to content

Update Site

networkmanager_update_site R Documentation

Updates the information for an existing site

Description

Updates the information for an existing site. To remove information for any of the parameters, specify an empty string.

Usage

networkmanager_update_site(GlobalNetworkId, SiteId, Description,
  Location)

Arguments

GlobalNetworkId

[required] The ID of the global network.

SiteId

[required] The ID of your site.

Description

A description of your site.

Constraints: Maximum length of 256 characters.

Location

The site location:

  • Address: The physical address of the site.

  • Latitude: The latitude of the site.

  • Longitude: The longitude of the site.

Value

A list with the following syntax:

list(
  Site = list(
    SiteId = "string",
    SiteArn = "string",
    GlobalNetworkId = "string",
    Description = "string",
    Location = list(
      Address = "string",
      Latitude = "string",
      Longitude = "string"
    ),
    CreatedAt = as.POSIXct(
      "2015-01-01"
    ),
    State = "PENDING"|"AVAILABLE"|"DELETING"|"UPDATING",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$update_site(
  GlobalNetworkId = "string",
  SiteId = "string",
  Description = "string",
  Location = list(
    Address = "string",
    Latitude = "string",
    Longitude = "string"
  )
)