{
  "typeName" : "AWS::NetworkManager::GlobalNetwork",
  "description" : "The AWS::NetworkManager::GlobalNetwork type specifies a global network of the user's account",
  "sourceUrl" : "https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-networkmanager.git",
  "definitions" : {
    "Tag" : {
      "description" : "A key-value pair to associate with a global network resource.",
      "type" : "object",
      "properties" : {
        "Key" : {
          "type" : "string"
        },
        "Value" : {
          "type" : "string"
        }
      },
      "additionalProperties" : false
    }
  },
  "properties" : {
    "Arn" : {
      "description" : "The Amazon Resource Name (ARN) of the global network.",
      "type" : "string"
    },
    "Id" : {
      "description" : "The ID of the global network.",
      "type" : "string"
    },
    "Description" : {
      "description" : "The description of the global network.",
      "type" : "string"
    },
    "Tags" : {
      "description" : "The tags for the global network.",
      "type" : "array",
      "items" : {
        "$ref" : "#/definitions/Tag"
      }
    }
  },
  "additionalProperties" : false,
  "readOnlyProperties" : [ "/properties/Id", "/properties/Arn" ],
  "primaryIdentifier" : [ "/properties/Id" ],
  "additionalIdentifiers" : [ [ "/properties/Arn" ] ],
  "handlers" : {
    "create" : {
      "permissions" : [ "networkmanager:CreateGlobalNetwork", "networkmanager:DescribeGlobalNetworks", "iam:CreateServiceLinkedRole" ]
    },
    "read" : {
      "permissions" : [ "networkmanager:DescribeGlobalNetworks" ]
    },
    "update" : {
      "permissions" : [ "networkmanager:UpdateGlobalNetwork", "networkmanager:DescribeGlobalNetworks", "networkmanager:TagResource", "networkmanager:UntagResource", "networkmanager:ListTagsForResource" ]
    },
    "delete" : {
      "permissions" : [ "networkmanager:DeleteGlobalNetwork", "networkmanager:DescribeGlobalNetworks" ]
    },
    "list" : {
      "permissions" : [ "networkmanager:DescribeGlobalNetworks" ]
    }
  }
}