vmware / terraform-provider-vcd

Terraform VMware Cloud Director provider
https://www.terraform.io/docs/providers/vcd/
Mozilla Public License 2.0
148 stars 112 forks source link

BUG: Resource vcd_catalog throws Exception "[ENF] entity not found" on resource create #613

Closed AdrianBegg closed 2 years ago

AdrianBegg commented 3 years ago

Hi there,

There is a bug with the vcd_catalog which causes the resource to be created however terraform panics during creation, crashes and the workflow breaks (as the object is created without being added to the state). The provider throws "[ENF] entity not found".

Cloud Director Version

10.2

Terraform Version

0.14.4

Affected Resource(s):

Panic Output :

vcd_catalog.CDS_TF_NewPipe_1_CDS_TF_AutomationTest_1_catalogue: Creating... Error: error retrieving catalog : [ENF] entity not found

Terraform Configuration Files

resource "vcd_org_vdc" "example_provider" {
  name              = "Public-Catalog-Test"
  org               = vcd_org.ProviderOrg.name
  allocation_model  = "Flex"
  network_pool_name = "Network-Pool Test"
  provider_vdc_name = "PVDC1"

data "vcd_storage_profile" "example_provider_default" {
  org      = vcd_org.ProviderOrg.name
  vdc      = vcd_org_vdc.example_provider.name
  name     = "Default SP"
}

resource "vcd_catalog" "test_catalogue" {
  org                = vcd_org.ProviderOrg.name
  name               = "Public Catalog - Example"
  description        = "A Public Catalog of images available to customers."
  delete_recursive   = "true"
  delete_force       = "true"
  storage_profile_id = data.vcd_storage_profile.example_provider_default.id

Debug Output

Please provide a link to GitHub Gist(s) containing complete debug output. You can enable debug by using the commands below:

vcd_catalog.CDS_TF_NewPipe_1_CDS_TF_AutomationTest_1_catalogue: Creating...
2021-01-11T16:37:39.754Z [DEBUG] plugin.terraform-provider-vcd_v3.1.0: 2021/01/11 16:37:39 [TRACE] Catalog created: &govcd.AdminCatalog{AdminCatalog:(*types.AdminCatalog)(0xc0005a0ea0), client:(*govcd.Client)(0xc0001a3680)}
2021-01-11T16:37:39.754Z [DEBUG] plugin.terraform-provider-vcd_v3.1.0: 2021/01/11 16:37:39 [TRACE] Catalog read initiated
2021-01-11T16:37:40.010Z [DEBUG] plugin.terraform-provider-vcd_v3.1.0: 2021/01/11 16:37:40 [DEBUG] Unable to find catalog. Removing from tfstate
2021/01/11 16:37:40 [DEBUG] vcd_catalog.CDS_TF_NewPipe_1_CDS_TF_AutomationTest_1_catalogue: apply errored, but we're indicating that via the Error pointer rather than returning it: error retrieving catalog  : [ENF] entity not found
2021/01/11 16:37:40 [TRACE] EvalMaybeTainted: vcd_catalog.CDS_TF_NewPipe_1_CDS_TF_AutomationTest_1_catalogue encountered an error during creation, so it is now marked as tainted
2021/01/11 16:37:40 [TRACE] EvalWriteState: removing state object for vcd_catalog.CDS_TF_NewPipe_1_CDS_TF_AutomationTest_1_catalogue
2021/01/11 16:37:40 [TRACE] EvalApplyProvisioners: vcd_catalog.CDS_TF_NewPipe_1_CDS_TF_AutomationTest_1_catalogue has no state, so skipping provisioners
2021/01/11 16:37:40 [TRACE] EvalMaybeTainted: vcd_catalog.CDS_TF_NewPipe_1_CDS_TF_AutomationTest_1_catalogue encountered an error during creation, so it is now marked as tainted
2021/01/11 16:37:40 [TRACE] EvalWriteState: removing state object for vcd_catalog.CDS_TF_NewPipe_1_CDS_TF_AutomationTest_1_catalogue
2021/01/11 16:37:40 [TRACE] vertex "vcd_catalog.CDS_TF_NewPipe_1_CDS_TF_AutomationTest_1_catalogue": visit complete
2021/01/11 16:37:40 [TRACE] dag/walk: upstream of "meta.count-boundary (EachMode fixup)" errored, so skipping
2021/01/11 16:37:40 [TRACE] dag/walk: upstream of "provider[\"registry.terraform.io/vmware/vcd\"].CDS_TF_NewPipe_1 (close)" errored, so skipping

Expected Behavior

Catalog should be created without the provider panic

Actual Behavior

Resource is created, terraform panics and workflow is broken (errors on every apply

Steps to Reproduce

  1. terraform apply
dataclouder commented 3 years ago

If there is a panic, I need to see its output.

AdrianBegg commented 3 years ago

I am using a Cloud Director service instance as the test environment (I have also tested against on-prem with the same result) - the behavior is reproducible pretty much every time; you should be able to replicate this behavior by attempting to create a catalog resource

dataclouder commented 3 years ago

I am asking for the panic output because I can't reproduce the behavior. We create dozens of catalogs in our test suite runs, and we have never seen such problem.

dataclouder commented 3 years ago

As an example of what I tried, here is the script:

resource "vcd_org_vdc" "example_provider" {
  name                       = "Public-Catalog-Test"
  org                        = "datacloud"
  allocation_model           = "Flex"
  network_pool_name          = "vc1-TestbedCluster-VXLAN-NP"
  provider_vdc_name          = "vc1-TestbedCluster"
  delete_recursive           = "true"
  delete_force               = "true"
  elasticity                 = "true"
  include_vm_memory_overhead = "false"
  storage_profile {
    name    = "Development"
    enabled = true
    limit   = 0
    default = true
  }

  compute_capacity {
    cpu {
      limit = 0
    }

    memory {
      limit = 0
    }
  }
}

data "vcd_storage_profile" "example_provider_default" {
  org  = "datacloud"
  vdc  = vcd_org_vdc.example_provider.name
  name = "Development"
}

resource "vcd_catalog" "test_catalogue" {
  org                = "datacloud"
  name               = "Public Catalog - Example"
  description        = "A Public Catalog of images available to customers."
  delete_recursive   = "true"
  delete_force       = "true"
  storage_profile_id = data.vcd_storage_profile.example_provider_default.id
}

And the execution

$ terraform apply -auto-approve
vcd_org_vdc.example_provider: Creating...
vcd_org_vdc.example_provider: Still creating... [10s elapsed]
vcd_org_vdc.example_provider: Creation complete after 17s [id=urn:vcloud:vdc:04d2d9df-c582-4bec-9d81-2dc5bfbe940f]
data.vcd_storage_profile.example_provider_default: Reading...
data.vcd_storage_profile.example_provider_default: Read complete after 1s [id=urn:vcloud:vdcstorageProfile:038410c4-4c0c-4c00-8069-c57f9c0707e8]
vcd_catalog.test_catalogue: Creating...
vcd_catalog.test_catalogue: Creation complete after 2s [id=urn:vcloud:catalog:b69e05b3-fbb8-4c5f-b89b-67245325a9f3]
AdrianBegg commented 3 years ago

Hi @dataclouder,

Thanks for the quick response - after reviewing the example you provided I noticed that the test case provided was against an NSX-v backed PVDC so I did some further testing on NSX-T vs NSX-V and from some quick tests that this may only be occurring when the backing PVDC for Storage Policy/Org is backed by NSX-T.

1) When I execute against an Org with a OrgVDC backed by NSX-v based PVDC the issue does not occur 2) Same code against an Org with a OrgVDC backed by NSX-t based PVDC (in Cloud Director service) throws the error immediately after the object is created ("Error: error retrieving catalog : [ENF] entity not found")

Please see below the logs from the provider log extract for the POST.

2021/01/12 10:51:16 [TRACE] Create org - found the proper link for request, HREF: https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/catalogs, name: , type: application/vnd.vmware.admin.catalog+xml, id: , rel: add 
2021/01/12 10:51:16 --------------------------------------------------------------------------------
2021/01/12 10:51:16 Request caller: govcd.CreateCatalogWithStorageProfile-->govcd.executeRequestWithApiVersion-->govcd.executeRequestWithApiVersion-->govcd.executeRequestCustomErr-->govcd.(*Client).NewRequestWithApiVersion-->govcd.(*Client).newRequest
2021/01/12 10:51:16 POST https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/catalogs
2021/01/12 10:51:16 --------------------------------------------------------------------------------
2021/01/12 10:51:16 Request data: [653]
<?xml version="1.0" encoding="UTF-8"?>
  <AdminCatalog name="Public Catalog - Example" xmlns="http://www.vmware.com/vcloud/v1.5">
      <Description>A Public Catalog of images available to customers.</Description>
      <CatalogStorageProfiles>
          <VdcStorageProfile href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/vdcStorageProfile/7f8527c9-3d24-4727-8a24-3f4b4e6e7751" id="urn:vcloud:vdcstorageProfile:7f8527c9-3d24-4727-8a24-3f4b4e6e7751" type="application/vnd.vmware.vcloud.vdcStorageProfile+xml" name="High Performance - 99.9% SLA"></VdcStorageProfile>
      </CatalogStorageProfiles>
  </AdminCatalog>
2021/01/12 10:51:16 Req header:
2021/01/12 10:51:16     X-Vmware-Vcloud-Access-Token: [********]
2021/01/12 10:51:16     Accept: [application/*+xml;version=32.0]
2021/01/12 10:51:16     X-Vmware-Vcloud-Token-Type: [Bearer]
2021/01/12 10:51:16     Authorization: [********]
2021/01/12 10:51:16     User-Agent: [terraform-provider-vcd/v3.1.0 (linux/amd64; isProvider:true)]
2021/01/12 10:51:17 ################################################################################
2021/01/12 10:51:17 Response caller schema.(*Resource).Apply-->schema.(*Resource).create-->vcd.resourceVcdCatalogCreate-->govcd.(*AdminOrg).CreateCatalogWithStorageProfile-->govcd.CreateCatalogWithStorageProfile-->govcd.(*Client).executeRequest-->govcd.decodeBody
2021/01/12 10:51:17 Response status 201 Created
2021/01/12 10:51:17 ################################################################################
2021/01/12 10:51:17 Response header:
2021/01/12 10:51:17     X-Vmware-Vcloud-Token-Type: [Bearer]
2021/01/12 10:51:17     X-Vcloud-Authorization: [********]
2021/01/12 10:51:17     Location: [https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c]
2021/01/12 10:51:17     Vary: [Accept-Encoding, User-Agent]
2021/01/12 10:51:17     Date: [Tue, 12 Jan 2021 10:51:17 GMT]
2021/01/12 10:51:17     X-Vmware-Vcloud-Request-Id: [**********]
2021/01/12 10:51:17     X-Vmware-Vcloud-Access-Token: [********]
2021/01/12 10:51:17     X-Vmware-Vcloud-Ceip-Id: [*************************]
2021/01/12 10:51:17     X-Vmware-Vcloud-Request-Execution-Time: [78]
2021/01/12 10:51:17     Content-Type: [application/vnd.vmware.admin.catalog+xml;version=32.0]
2021/01/12 10:51:17     Cache-Control: [no-store, must-revalidate]
2021/01/12 10:51:17 Response text: [12225]
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AdminCatalog xmlns="http://www.vmware.com/vcloud/v1.5" xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1" xmlns:vssd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" xmlns:common="http://schemas.dmtf.org/wbem/wscim/1/common" xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData" xmlns:vmw="http://www.vmware.com/schema/ovf" xmlns:ovfenv="http://schemas.dmtf.org/ovf/environment/1" xmlns:vmext="http://www.vmware.com/vcloud/extension/v1.5" xmlns:ns9="http://www.vmware.com/vcloud/versions" name="Public Catalog - Example" id="urn:vcloud:catalog:d29b02ac-764d-491f-940a-6666196f1b0c" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c" type="application/vnd.vmware.admin.catalog+xml">
    <Link rel="up" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.admin.organization+xml"/>
    <Link rel="up" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.admin.organization+json"/>
    <Link rel="alternate" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c" type="application/vnd.vmware.vcloud.catalog+xml"/>
    <Link rel="alternate" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c" type="application/vnd.vmware.vcloud.catalog+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/owner" type="application/vnd.vmware.vcloud.owner+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/owner" type="application/vnd.vmware.vcloud.owner+json"/>
    <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/owner" type="application/vnd.vmware.vcloud.owner+xml"/>
    <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/owner" type="application/vnd.vmware.vcloud.owner+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/metadata" type="application/vnd.vmware.vcloud.metadata+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/metadata" type="application/vnd.vmware.vcloud.metadata+json"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/catalogItems" type="application/vnd.vmware.vcloud.catalogItem+xml"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/catalogItems" type="application/vnd.vmware.vcloud.catalogItem+json"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/upload" type="application/vnd.vmware.vcloud.media+xml"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/upload" type="application/vnd.vmware.vcloud.media+json"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/upload" type="application/vnd.vmware.vcloud.uploadVAppTemplateParams+xml"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/upload" type="application/vnd.vmware.vcloud.uploadVAppTemplateParams+json"/>
    <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c" type="application/vnd.vmware.admin.catalog+xml"/>
    <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c" type="application/vnd.vmware.admin.catalog+json"/>
    <Link rel="remove" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c"/>
    <Link rel="copy" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/copy" type="application/vnd.vmware.vcloud.copyOrMoveCatalogItemParams+xml"/>
    <Link rel="copy" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/copy" type="application/vnd.vmware.vcloud.copyOrMoveCatalogItemParams+json"/>
    <Link rel="move" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/move" type="application/vnd.vmware.vcloud.copyOrMoveCatalogItemParams+xml"/>
    <Link rel="move" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/move" type="application/vnd.vmware.vcloud.copyOrMoveCatalogItemParams+json"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/captureVApp" type="application/vnd.vmware.vcloud.captureVAppParams+xml"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/captureVApp" type="application/vnd.vmware.vcloud.captureVAppParams+json"/>
    <Link rel="publish" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/publish" type="application/vnd.vmware.admin.publishCatalogParams+xml"/>
    <Link rel="publish" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/publish" type="application/vnd.vmware.admin.publishCatalogParams+json"/>
    <Link rel="publishToExternalOrganizations" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/publishToExternalOrganizations" type="application/vnd.vmware.admin.publishExternalCatalogParams+xml"/>
    <Link rel="publishToExternalOrganizations" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/publishToExternalOrganizations" type="application/vnd.vmware.admin.publishExternalCatalogParams+json"/>
    <Link rel="subscribeToExternalCatalog" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/subscribeToExternalCatalog" type="application/vnd.vmware.admin.externalCatalogSubscriptionParams+xml"/>
    <Link rel="subscribeToExternalCatalog" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/subscribeToExternalCatalog" type="application/vnd.vmware.admin.externalCatalogSubscriptionParams+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/controlAccess/" type="application/vnd.vmware.vcloud.controlAccess+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/controlAccess/" type="application/vnd.vmware.vcloud.controlAccess+json"/>
    <Link rel="controlAccess" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/controlAccess" type="application/vnd.vmware.vcloud.controlAccess+xml"/>
    <Link rel="controlAccess" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/controlAccess" type="application/vnd.vmware.vcloud.controlAccess+json"/>
    <Link rel="alternate" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c" type="application/vnd.vmware.admin.catalog+xml"/>
    <Link rel="alternate" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c" type="application/vnd.vmware.admin.catalog+json"/>
    <Description>A Public Catalog of images available to customers.</Description>
    <Tasks>
        <Task cancelRequested="false" expiryTime="2021-04-12T10:51:17.027Z" operation="Creating Catalog Public Catalog - Example(d29b02ac-764d-491f-940a-6666196f1b0c)" operationName="catalogCreateCatalog" serviceNamespace="com.vmware.vcloud" startTime="2021-01-12T10:51:17.027Z" status="queued" name="task" id="urn:vcloud:task:e4ae2d68-49f9-4e9a-8133-d9253c6513d4" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/task/e4ae2d68-49f9-4e9a-8133-d9253c6513d4" type="application/vnd.vmware.vcloud.task+xml">
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/task/e4ae2d68-49f9-4e9a-8133-d9253c6513d4" name="task" type="application/vnd.vmware.vcloud.task+xml"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/task/e4ae2d68-49f9-4e9a-8133-d9253c6513d4" name="task" type="application/vnd.vmware.vcloud.task+json"/>
            <Owner href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c" id="urn:vcloud:catalog:d29b02ac-764d-491f-940a-6666196f1b0c" name="Public Catalog - Example" type="application/vnd.vmware.admin.catalog+xml"/>
            <User href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/user/4f325edb-ad8d-4081-b1dd-2e1eca31feaf" id="urn:vcloud:user:4f325edb-ad8d-4081-b1dd-2e1eca31feaf" name="system" type="application/vnd.vmware.admin.user+xml"/>
            <Organization href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" id="urn:vcloud:org:254077c6-fc1e-4b96-bfbe-6a6a335df3bf" name="ProviderOrg" type="application/vnd.vmware.vcloud.org+xml"/>
            <Details></Details>
        </Task>
    </Tasks>
    <Owner type="application/vnd.vmware.vcloud.owner+xml">
        <User href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/user/8a41e144-6024-4761-ba47-f17646a2e277" name="system" type="application/vnd.vmware.admin.user+xml"/>
    </Owner>
    <CatalogItems/>
    <IsPublished>false</IsPublished>
    <DateCreated>2021-01-12T10:51:17.025Z</DateCreated>
    <VersionNumber>1</VersionNumber>
    <CatalogStorageProfiles>
        <VdcStorageProfile href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/vdcStorageProfile/7f8527c9-3d24-4727-8a24-3f4b4e6e7751" id="urn:vcloud:vdcstorageProfile:7f8527c9-3d24-4727-8a24-3f4b4e6e7751" name="" type="com.vmware.vcloud.entity.vdcstorageProfile"/>
    </CatalogStorageProfiles>
</AdminCatalog>

2021/01/12 10:51:17 --------------------------------------------------------------------------------
2021/01/12 10:51:17 Request caller: govcd.getOrgHREF-->govcd.executeRequestWithApiVersion-->govcd.executeRequestWithApiVersion-->govcd.executeRequestCustomErr-->govcd.(*Client).NewRequestWithApiVersion-->govcd.(*Client).newRequest
2021/01/12 10:51:17 GET https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org
2021/01/12 10:51:17 --------------------------------------------------------------------------------
2021/01/12 10:51:17 Req header:
2021/01/12 10:51:17     User-Agent: [terraform-provider-vcd/v3.1.0 (linux/amd64; isProvider:true)]
2021/01/12 10:51:17     X-Vmware-Vcloud-Access-Token: [********]
2021/01/12 10:51:17     Accept: [application/*+xml;version=32.0]
2021/01/12 10:51:17     X-Vmware-Vcloud-Token-Type: [Bearer]
2021/01/12 10:51:17     Authorization: [********]
2021/01/12 10:51:17 ################################################################################
2021/01/12 10:51:17 Response caller vcd.resourceVcdCatalogRead-->vcd.(*VCDClient).GetAdminOrgFromResource-->vcd.(*VCDClient).GetAdminOrg-->govcd.(*VCDClient).GetAdminOrgByName-->govcd.getOrgHREF-->govcd.(*Client).executeRequest-->govcd.decodeBody
2021/01/12 10:51:17 Response status 200 OK
2021/01/12 10:51:17 ################################################################################
2021/01/12 10:51:17 Response header:
2021/01/12 10:51:17     Content-Length: [1173]
2021/01/12 10:51:17     X-Vcloud-Authorization: [********]
2021/01/12 10:51:17     Content-Type: [application/vnd.vmware.vcloud.orglist+xml;version=32.0]
2021/01/12 10:51:17     X-Vmware-Vcloud-Token-Type: [Bearer]
2021/01/12 10:51:17     Date: [Tue, 12 Jan 2021 10:51:17 GMT]
2021/01/12 10:51:17     X-Vmware-Vcloud-Ceip-Id: [***************]
2021/01/12 10:51:17     Cache-Control: [no-store, must-revalidate]
2021/01/12 10:51:17     Vary: [Accept-Encoding, User-Agent]
2021/01/12 10:51:17     X-Vmware-Vcloud-Request-Id: [******************]
2021/01/12 10:51:17     X-Vmware-Vcloud-Access-Token: [********]
2021/01/12 10:51:17     X-Vmware-Vcloud-Request-Execution-Time: [8]
2021/01/12 10:51:17 Response text: [1173]
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<OrgList xmlns="http://www.vmware.com/vcloud/v1.5" xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1" xmlns:vssd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" xmlns:common="http://schemas.dmtf.org/wbem/wscim/1/common" xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData" xmlns:vmw="http://www.vmware.com/schema/ovf" xmlns:ovfenv="http://schemas.dmtf.org/ovf/environment/1" xmlns:vmext="http://www.vmware.com/vcloud/extension/v1.5" xmlns:ns9="http://www.vmware.com/vcloud/versions" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/" type="application/vnd.vmware.vcloud.orgList+xml">
    <Org href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/a93c9db9-7471-3192-8d09-a8f7eeda85f9" name="System" type="application/vnd.vmware.vcloud.org+xml"/>
    <Org href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" name="ProviderOrg" type="application/vnd.vmware.vcloud.org+xml"/>
</OrgList>

2021/01/12 10:51:17 --------------------------------------------------------------------------------
2021/01/12 10:51:17 Request caller: govcd.(*VCDClient).GetAdminOrgByName-->govcd.executeRequestWithApiVersion-->govcd.executeRequestWithApiVersion-->govcd.executeRequestCustomErr-->govcd.(*Client).NewRequestWithApiVersion-->govcd.(*Client).newRequest
2021/01/12 10:51:17 GET https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf
2021/01/12 10:51:17 --------------------------------------------------------------------------------
2021/01/12 10:51:17 Req header:
2021/01/12 10:51:17     X-Vmware-Vcloud-Access-Token: [********]
2021/01/12 10:51:17     Accept: [application/*+xml;version=32.0]
2021/01/12 10:51:17     X-Vmware-Vcloud-Token-Type: [Bearer]
2021/01/12 10:51:17     Authorization: [********]
2021/01/12 10:51:17     User-Agent: [terraform-provider-vcd/v3.1.0 (linux/amd64; isProvider:true)]
2021/01/12 10:51:17 ################################################################################
2021/01/12 10:51:17 Response caller vcd.resourceVcdCatalogCreate-->vcd.resourceVcdCatalogRead-->vcd.(*VCDClient).GetAdminOrgFromResource-->vcd.(*VCDClient).GetAdminOrg-->govcd.(*VCDClient).GetAdminOrgByName-->govcd.(*Client).executeRequest-->govcd.decodeBody
2021/01/12 10:51:17 Response status 200 OK
2021/01/12 10:51:17 ################################################################################
2021/01/12 10:51:17 Response header:
2021/01/12 10:51:17     Cache-Control: [no-store, must-revalidate]
2021/01/12 10:51:17     Date: [Tue, 12 Jan 2021 10:51:17 GMT]
2021/01/12 10:51:17     X-Vmware-Vcloud-Ceip-Id: [*********************************]
2021/01/12 10:51:17     Vary: [Accept-Encoding, User-Agent]
2021/01/12 10:51:17     X-Vmware-Vcloud-Request-Execution-Time: [88]
2021/01/12 10:51:17     X-Vmware-Vcloud-Request-Id: [************************************]
2021/01/12 10:51:17     X-Vmware-Vcloud-Access-Token: [********]
2021/01/12 10:51:17     X-Vmware-Vcloud-Token-Type: [Bearer]
2021/01/12 10:51:17     X-Vcloud-Authorization: [********]
2021/01/12 10:51:17     Content-Type: [application/vnd.vmware.admin.organization+xml;version=32.0]
2021/01/12 10:51:17 Response text: [69142]
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AdminOrg xmlns="http://www.vmware.com/vcloud/v1.5" xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1" xmlns:vssd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" xmlns:common="http://schemas.dmtf.org/wbem/wscim/1/common" xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData" xmlns:vmw="http://www.vmware.com/schema/ovf" xmlns:ovfenv="http://schemas.dmtf.org/ovf/environment/1" xmlns:vmext="http://www.vmware.com/vcloud/extension/v1.5" xmlns:ns9="http://www.vmware.com/vcloud/versions" name="ProviderOrg" id="urn:vcloud:org:254077c6-fc1e-4b96-bfbe-6a6a335df3bf" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.admin.organization+xml">
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/vdc/33f66d91-0dba-4b39-96f7-5c24c17cda90" name="Public-Catalog-CDS_TF_AutomationTest_1" type="application/vnd.vmware.vcloud.vdc+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/vdc/33f66d91-0dba-4b39-96f7-5c24c17cda90" name="Public-Catalog-CDS_TF_AutomationTest_1" type="application/vnd.vmware.vcloud.vdc+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/vdc/2e330293-dbf7-45bf-8cf7-175ccbd18a9e" name="Test" type="application/vnd.vmware.vcloud.vdc+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/vdc/2e330293-dbf7-45bf-8cf7-175ccbd18a9e" name="Test" type="application/vnd.vmware.vcloud.vdc+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/tasksList/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.vcloud.tasksList+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/tasksList/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.vcloud.tasksList+json"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/catalogs" type="application/vnd.vmware.admin.catalog+xml"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/catalogs" type="application/vnd.vmware.admin.catalog+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/c04fde61-09db-464a-a250-21d185192741" name="T-Systems Public Catalog - CDS_TF_AutomationTest_1" type="application/vnd.vmware.vcloud.catalog+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/c04fde61-09db-464a-a250-21d185192741" name="T-Systems Public Catalog - CDS_TF_AutomationTest_1" type="application/vnd.vmware.vcloud.catalog+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/c04fde61-09db-464a-a250-21d185192741/controlAccess/" type="application/vnd.vmware.vcloud.controlAccess+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/c04fde61-09db-464a-a250-21d185192741/controlAccess/" type="application/vnd.vmware.vcloud.controlAccess+json"/>
    <Link rel="controlAccess" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/c04fde61-09db-464a-a250-21d185192741/action/controlAccess" type="application/vnd.vmware.vcloud.controlAccess+xml"/>
    <Link rel="controlAccess" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/c04fde61-09db-464a-a250-21d185192741/action/controlAccess" type="application/vnd.vmware.vcloud.controlAccess+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c" name="Public Catalog - Example" type="application/vnd.vmware.vcloud.catalog+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c" name="Public Catalog - Example" type="application/vnd.vmware.vcloud.catalog+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/controlAccess/" type="application/vnd.vmware.vcloud.controlAccess+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/controlAccess/" type="application/vnd.vmware.vcloud.controlAccess+json"/>
    <Link rel="controlAccess" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/controlAccess" type="application/vnd.vmware.vcloud.controlAccess+xml"/>
    <Link rel="controlAccess" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/catalog/d29b02ac-764d-491f-940a-6666196f1b0c/action/controlAccess" type="application/vnd.vmware.vcloud.controlAccess+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/supportedSystemsInfo/" type="application/vnd.vmware.vcloud.supportedSystemsInfo+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/supportedSystemsInfo/" type="application/vnd.vmware.vcloud.supportedSystemsInfo+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/hybrid" type="application/vnd.vmware.vcloud.hybridOrg+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/hybrid" type="application/vnd.vmware.vcloud.hybridOrg+json"/>
    <Link rel="instantiate" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/action/instantiate" type="application/vnd.vmware.vcloud.instantiateVdcTemplateParams+xml"/>
    <Link rel="instantiate" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/action/instantiate" type="application/vnd.vmware.vcloud.instantiateVdcTemplateParams+json"/>
    <Link rel="networkZones" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/cloudapi/1.0.0/vdcGroups" type="application/json"/>
    <Link rel="rollup" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/vdcRollup" type="application/vnd.vmware.vcloud.orgVdcRollup+xml"/>
    <Link rel="rollup" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/vdcRollup" type="application/vnd.vmware.vcloud.orgVdcRollup+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/metadata" type="application/vnd.vmware.vcloud.metadata+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/metadata" type="application/vnd.vmware.vcloud.metadata+json"/>
    <Link rel="alternate" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.vcloud.org+xml"/>
    <Link rel="alternate" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.vcloud.org+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/vdcTemplates" type="application/vnd.vmware.admin.vdcTemplates+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/vdcTemplates" type="application/vnd.vmware.admin.vdcTemplates+json"/>
    <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.admin.organization+xml"/>
    <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.admin.organization+json"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/vdcs" type="application/vnd.vmware.admin.vdc+xml"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/vdcs" type="application/vnd.vmware.admin.vdc+json"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/vdcsparams" type="application/vnd.vmware.admin.createVdcParams+xml"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/vdcsparams" type="application/vnd.vmware.admin.createVdcParams+json"/>
    <Link rel="disable" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/action/disable"/>
    <Link rel="task:create" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/tasksList/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.vcloud.task"/>
    <Link rel="task:create" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/tasksList/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.vcloud.task+xml"/>
    <Link rel="task:create" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/tasksList/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.vcloud.task+json"/>
    <Link rel="event:create" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/events" type="application/vnd.vmware.admin.event+xml"/>
    <Link rel="event:create" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/events" type="application/vnd.vmware.admin.event+json"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/associations" type="application/vnd.vmware.admin.organizationAssociations+xml"/>
    <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/associations" type="application/vnd.vmware.admin.organizationAssociations+json"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/users" type="application/vnd.vmware.admin.user+xml"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/users" type="application/vnd.vmware.admin.user+json"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/roles" type="application/vnd.vmware.admin.role+xml"/>
    <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/roles" type="application/vnd.vmware.admin.role+json"/>
    <Description>An Organization housing Provider configuration and content (e.g. Public Catalogs for customers, AppLaunchPad objects, etc.)</Description>
    <FullName>T-Systems Provider Org</FullName>
    <IsEnabled>true</IsEnabled>
    <Settings href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings" type="application/vnd.vmware.admin.orgSettings+xml">
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/vAppTemplateLeaseSettings" type="application/vnd.vmware.admin.vAppTemplateLeaseSettings+xml"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/vAppTemplateLeaseSettings" type="application/vnd.vmware.admin.vAppTemplateLeaseSettings+json"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/email" type="application/vnd.vmware.admin.organizationEmailSettings+xml"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/email" type="application/vnd.vmware.admin.organizationEmailSettings+json"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/vAppLeaseSettings" type="application/vnd.vmware.admin.vAppLeaseSettings+xml"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/vAppLeaseSettings" type="application/vnd.vmware.admin.vAppLeaseSettings+json"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/passwordPolicy" type="application/vnd.vmware.admin.organizationPasswordPolicySettings+xml"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/passwordPolicy" type="application/vnd.vmware.admin.organizationPasswordPolicySettings+json"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/general" type="application/vnd.vmware.admin.organizationGeneralSettings+xml"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/general" type="application/vnd.vmware.admin.organizationGeneralSettings+json"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/ldap" type="application/vnd.vmware.admin.organizationLdapSettings+xml"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/ldap" type="application/vnd.vmware.admin.organizationLdapSettings+json"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/guestPersonalizationSettings" type="application/vnd.vmware.admin.guestPersonalizationSettings+xml"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/guestPersonalizationSettings" type="application/vnd.vmware.admin.guestPersonalizationSettings+json"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/operationLimitsSettings" type="application/vnd.vmware.admin.orgOperationLimitsSettings+xml"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/operationLimitsSettings" type="application/vnd.vmware.admin.orgOperationLimitsSettings+json"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/federation" type="application/vnd.vmware.admin.organizationFederationSettings+xml"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/federation" type="application/vnd.vmware.admin.organizationFederationSettings+json"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/oauth" type="application/vnd.vmware.admin.organizationOAuthSettings+xml"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/oauth" type="application/vnd.vmware.admin.organizationOAuthSettings+json"/>
        <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings" type="application/vnd.vmware.admin.orgSettings+xml"/>
        <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings" type="application/vnd.vmware.admin.orgSettings+json"/>
        <OrgGeneralSettings href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/general" type="application/vnd.vmware.admin.organizationGeneralSettings+xml">
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/general" type="application/vnd.vmware.admin.organizationGeneralSettings+xml"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/general" type="application/vnd.vmware.admin.organizationGeneralSettings+json"/>
            <CanPublishCatalogs>true</CanPublishCatalogs>
            <CanPublishExternally>false</CanPublishExternally>
            <CanSubscribe>false</CanSubscribe>
            <DeployedVMQuota>0</DeployedVMQuota>
            <StoredVmQuota>0</StoredVmQuota>
            <UseServerBootSequence>true</UseServerBootSequence>
            <DelayAfterPowerOnSeconds>0</DelayAfterPowerOnSeconds>
        </OrgGeneralSettings>
        <VAppLeaseSettings href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/vAppLeaseSettings" type="application/vnd.vmware.admin.vAppLeaseSettings+xml">
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/vAppLeaseSettings" type="application/vnd.vmware.admin.vAppLeaseSettings+xml"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/vAppLeaseSettings" type="application/vnd.vmware.admin.vAppLeaseSettings+json"/>
            <DeleteOnStorageLeaseExpiration>false</DeleteOnStorageLeaseExpiration>
            <DeploymentLeaseSeconds>0</DeploymentLeaseSeconds>
            <StorageLeaseSeconds>0</StorageLeaseSeconds>
            <PowerOffOnRuntimeLeaseExpiration>false</PowerOffOnRuntimeLeaseExpiration>
        </VAppLeaseSettings>
        <VAppTemplateLeaseSettings href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/vAppTemplateLeaseSettings" type="application/vnd.vmware.admin.vAppTemplateLeaseSettings+xml">
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/vAppTemplateLeaseSettings" type="application/vnd.vmware.admin.vAppTemplateLeaseSettings+xml"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/vAppTemplateLeaseSettings" type="application/vnd.vmware.admin.vAppTemplateLeaseSettings+json"/>
            <DeleteOnStorageLeaseExpiration>false</DeleteOnStorageLeaseExpiration>
            <StorageLeaseSeconds>0</StorageLeaseSeconds>
        </VAppTemplateLeaseSettings>
        <OrgLdapSettings href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/ldap" type="application/vnd.vmware.admin.organizationLdapSettings+xml">
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/ldap" type="application/vnd.vmware.admin.organizationLdapSettings+xml"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/ldap" type="application/vnd.vmware.admin.organizationLdapSettings+json"/>
            <OrgLdapMode>NONE</OrgLdapMode>
        </OrgLdapSettings>
        <OrgEmailSettings href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/email" type="application/vnd.vmware.admin.organizationEmailSettings+xml">
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/email" type="application/vnd.vmware.admin.organizationEmailSettings+xml"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/email" type="application/vnd.vmware.admin.organizationEmailSettings+json"/>
            <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/cloudapi/1.0.0/smtp/test" type="application/json"/>
            <IsDefaultSmtpServer>true</IsDefaultSmtpServer>
            <IsDefaultOrgEmail>true</IsDefaultOrgEmail>
            <FromEmailAddress></FromEmailAddress>
            <DefaultSubjectPrefix></DefaultSubjectPrefix>
            <IsAlertEmailToAllAdmins>true</IsAlertEmailToAllAdmins>
            <SmtpServerSettings>
                <IsUseAuthentication>false</IsUseAuthentication>
                <Host></Host>
                <Port>25</Port>
                <Username></Username>
                <SmtpSecureMode>none</SmtpSecureMode>
            </SmtpServerSettings>
        </OrgEmailSettings>
        <OrgPasswordPolicySettings href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/passwordPolicy" type="application/vnd.vmware.admin.organizationPasswordPolicySettings+xml">
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/passwordPolicy" type="application/vnd.vmware.admin.organizationPasswordPolicySettings+xml"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/passwordPolicy" type="application/vnd.vmware.admin.organizationPasswordPolicySettings+json"/>
            <AccountLockoutEnabled>false</AccountLockoutEnabled>
            <InvalidLoginsBeforeLockout>5</InvalidLoginsBeforeLockout>
            <AccountLockoutIntervalMinutes>10</AccountLockoutIntervalMinutes>
        </OrgPasswordPolicySettings>
        <OrgOperationLimitsSettings href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/operationLimitsSettings" type="application/vnd.vmware.admin.orgOperationLimitsSettings+xml">
            <Link rel="up" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings" name="ProviderOrg" type="application/vnd.vmware.admin.orgSettings+xml"/>
            <Link rel="up" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings" name="ProviderOrg" type="application/vnd.vmware.admin.orgSettings+json"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/operationLimitsSettings" type="application/vnd.vmware.admin.orgOperationLimitsSettings+xml"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/operationLimitsSettings" type="application/vnd.vmware.admin.orgOperationLimitsSettings+json"/>
            <ConsolesPerVmLimit>0</ConsolesPerVmLimit>
            <OperationsPerUser>0</OperationsPerUser>
            <OperationsPerOrg>0</OperationsPerOrg>
            <QueuedOperationsPerUser>0</QueuedOperationsPerUser>
            <QueuedOperationsPerOrg>0</QueuedOperationsPerOrg>
        </OrgOperationLimitsSettings>
        <OrgFederationSettings href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/federation" type="application/vnd.vmware.admin.organizationFederationSettings+xml">
            <Link rel="up" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings" type="application/vnd.vmware.admin.organization+xml"/>
            <Link rel="up" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings" type="application/vnd.vmware.admin.organization+json"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/federation" type="application/vnd.vmware.admin.organizationFederationSettings+xml"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/federation" type="application/vnd.vmware.admin.organizationFederationSettings+json"/>
            <Link rel="federation:regenerateFederationCertificate" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/federation/action/regenerateFederationCertificate"/>
            <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/login/org/ProviderOrg/saml/metadata/alias/vcd" type="application/samlmetadata+xml"/>
            <Enabled>false</Enabled>
            <CertificateExpiration>2022-01-11T13:00:43.000Z</CertificateExpiration>
        </OrgFederationSettings>
        <OrgOAuthSettings href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/oauth" type="application/vnd.vmware.admin.organizationOAuthSettings+xml">
            <Link rel="up" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings" type="application/vnd.vmware.admin.orgSettings+xml"/>
            <Link rel="up" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings" type="application/vnd.vmware.admin.orgSettings+json"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/oauth" type="application/vnd.vmware.admin.organizationOAuthSettings+xml"/>
            <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/settings/oauth" type="application/vnd.vmware.admin.organizationOAuthSettings+json"/>
        </OrgOAuthSettings>
    </Settings>
    <Users>
        <UserReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/user/b4e16dc0-6b70-4025-8c75-2f57f11dc404" id="urn:vcloud:user:b4e16dc0-6b70-4025-8c75-2f57f11dc404" name="testuser" type="application/vnd.vmware.admin.user+xml"/>
    </Users>
    <Groups/>
    <Catalogs>
        <CatalogReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/c04fde61-09db-464a-a250-21d185192741" name="T-Systems Public Catalog - CDS_TF_AutomationTest_1" type="application/vnd.vmware.admin.catalog+xml"/>
        <CatalogReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/catalog/d29b02ac-764d-491f-940a-6666196f1b0c" name="Public Catalog - Example" type="application/vnd.vmware.admin.catalog+xml"/>
    </Catalogs>
    <Vdcs>
        <Vdc href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/vdc/33f66d91-0dba-4b39-96f7-5c24c17cda90" id="urn:vcloud:vdc:33f66d91-0dba-4b39-96f7-5c24c17cda90" name="Public-Catalog-CDS_TF_AutomationTest_1" type="application/vnd.vmware.admin.vdc+xml"/>
        <Vdc href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/vdc/2e330293-dbf7-45bf-8cf7-175ccbd18a9e" id="urn:vcloud:vdc:2e330293-dbf7-45bf-8cf7-175ccbd18a9e" name="Test" type="application/vnd.vmware.admin.vdc+xml"/>
    </Vdcs>
    <Networks/>
    <OrgAssociations href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/associations" type="application/vnd.vmware.admin.organizationAssociations+xml">
        <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/associations" type="application/vnd.vmware.admin.organizationAssociations+xml"/>
        <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/associations" type="application/vnd.vmware.admin.organizationAssociations+json"/>
        <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/associations" type="application/vnd.vmware.admin.organizationAssociation+xml"/>
        <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/associations" type="application/vnd.vmware.admin.organizationAssociation+json"/>
        <Link rel="up" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.admin.organization+xml"/>
        <Link rel="up" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf" type="application/vnd.vmware.admin.organization+json"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/associations/localAssociationData" type="application/vnd.vmware.admin.organizationAssociation+xml"/>
        <Link rel="down" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/associations/localAssociationData" type="application/vnd.vmware.admin.organizationAssociation+json"/>
    </OrgAssociations>
    <RightReferences href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/rights" type="application/vnd.vmware.admin.org.rights+xml">
        <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/rights" type="application/vnd.vmware.admin.org.rights+xml"/>
        <Link rel="edit" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/rights" type="application/vnd.vmware.admin.org.rights+json"/>
        <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/rights" type="application/vnd.vmware.admin.org.rights+xml"/>
        <Link rel="add" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/rights" type="application/vnd.vmware.admin.org.rights+json"/>
        <Link rel="remove" href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/rights"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/e2b61554-7dbf-3f9d-919f-bc59f7564153" name="Catalog: Publish" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/79b736fb-1cb8-3e25-8ce4-b2c33b66909c" name="Catalog: Sharing" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/39ec03d4-440d-32cf-8507-f01acd822540" name="Catalog: Change Owner" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/e2b61554-7dbf-3f9d-919f-bc59f7564100" name="Catalog: CLSP Publish Subscribe" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/4886663f-ae31-37fc-9a70-3dbe2f24a8c5" name="Catalog: Add vApp from My Cloud" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/fa4ce8f8-c640-3b65-8fa5-a863b56c3d51" name="Catalog: View Private and Shared Catalogs" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/9c449c77-f7d0-3944-bf13-e58abe1ca68c" name="Catalog: Edit Properties" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/f01671e6-dfad-379d-b8e2-0d18e37ce993" name="Catalog: View Published Catalogs" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/893b4d54-5677-3c89-a335-e10f96516e0c" name="Catalog: Create / Delete a Catalog" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/444def42-24a8-33b5-a780-13af93b52fac" name="vApp Template / Media: Copy" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/3eedbfb4-c4a3-373d-b4b5-d76ca363ab50" name="vApp Template / Media: Edit" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/ab08b301-7f06-33a6-8f0c-eb8bdaa782d6" name="vApp Template: Checkout" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/1aa46727-6192-365d-b571-5ce51beb3b48" name="vApp Template / Media: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/86006d64-9326-3b60-9cbb-d4e511233cc8" name="vApp Template / Media: Create / Upload" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/82f79ccf-3039-3436-aa99-06f1911f04eb" name="vApp Template: Download" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/c5908877-f06c-3ad7-a75d-8260dbdc3bf1" name="Custom entity: View all custom entity instances in org" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/21177939-0c38-37c4-95f6-3870352568cf" name="Custom entity: View custom entity instance" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/4e61b5b8-0964-36b6-b021-da39aea724fc" name="Organization vDC Distributed Firewall: View Rules" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/2cd03d47-38e1-337a-907c-8d5b6a5258f2" name="Organization vDC Distributed Firewall: Configure Rules" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/9dc33fcb-346d-30e1-8ffa-cf25e05ba801" name="Organization vDC Gateway: Convert to Advanced Networking" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/d1c77fc0-a4b9-3d99-bd4b-d7fab35e4fae" name="Organization vDC Gateway: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/84ddb40f-a49a-35e1-918e-3f11507825d7" name="Organization vDC Gateway: Configure Syslog" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/b755b050-772e-3c9c-9197-111c286f563d" name="Organization vDC Gateway: Configure Firewall" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/7fee6646-ec0c-34c9-9585-aff6f4d92473" name="Organization vDC Gateway: View Firewall" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/c9e19573-3d54-3d4a-98f2-f56e446a8ef9" name="Organization vDC Gateway: Configure NAT" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/fb860afe-2e15-3ca9-96d8-4435d1447732" name="Organization vDC Gateway: View NAT" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/27be9828-4ce4-353e-8f68-5cd69260d94c" name="Organization vDC Gateway: Configure Load Balancer" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/2a097e48-f4c4-3714-8b24-552b2d573754" name="Organization vDC Gateway: View Load Balancer" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/209cde55-55db-33f1-8357-b27bba6898ed" name="Organization vDC Gateway: Configure IPSec VPN" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/82beb471-ab7f-3e2b-a615-136ba6645525" name="Organization vDC Gateway: View IPSec VPN" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/be1abe9a-7ddc-38f6-bdf3-94affb01e46b" name="Organization vDC Gateway: Configure DHCP" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/8e16d30d-1ae3-3fff-8d4b-64c342b186a9" name="Organization vDC Gateway: View DHCP" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/f72af304-97b0-379e-9d6d-68eb89bdc6cf" name="Organization vDC Gateway: Configure Static Routing" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/9740be24-4dd7-373c-9237-91896338c11e" name="Organization vDC Gateway: View Static Routing" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/d85b0e92-b9e8-31af-9b19-23cd00cae7e7" name="Organization vDC Gateway: Configure DNS" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/c6563392-f6b3-3dd6-9720-b304e6319672" name="Organization vDC Gateway: View DNS" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/614dd2a7-bd72-36c8-b042-68ad25da5e65" name="Quota Policy Capabilities: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/6f3d92b6-13c6-3a5f-a5de-e4d1ed3d032d" name="Truststore: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/68e7ea03-e095-323c-aafd-6f29be6d3997" name="General: Send Notification" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/846b662c-aef8-37d0-9d2e-12c4bf29e5d3" name="Certificate Library: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/2cd2d9d7-262c-34f8-8bee-fd92f422cc2c" name="General: Administrator Control" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/0b8c8cd2-5af9-32ad-a0bd-dc356503a552" name="General: Administrator View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/aa419f42-e1ea-3609-ab05-3c7ef5279b64" name="Truststore: Manage" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/825c22fa-5e0f-3ad2-aebf-1ba4da44bad4" name="SSL: Test Connection" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/e1772a14-9246-3af1-9396-8ab5af41d1a9" name="Hybrid Cloud Operations: View to-the-cloud tunnel" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/36e20503-17a8-3d25-b0da-9c34beadad0d" name="Hybrid Cloud Operations: Acquire control ticket" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/b35346e7-aee3-38e2-a37b-663964dde46e" name="Hybrid Cloud Operations: Delete from-the-cloud tunnel" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/b0afa930-bafd-358e-a59c-c06057d5f588" name="Hybrid Cloud Operations: Acquire from-the-cloud tunnel ticket" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/6eae6dec-51b5-3764-a544-a268c842dea0" name="Hybrid Cloud Operations: Acquire to-the-cloud tunnel ticket" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/268c6111-f8c6-3753-acd1-1e5468f09af6" name="Hybrid Cloud Operations: Create to-the-cloud tunnel" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/f79b15c9-388a-3e1e-8e35-457039998396" name="Hybrid Cloud Operations: Create from-the-cloud tunnel" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/c9dafe91-824b-3d41-903a-da5b52114fa3" name="Hybrid Cloud Operations: Delete to-the-cloud tunnel" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/629c90fd-78a4-3929-98bd-57e4747d067b" name="Hybrid Cloud Operations: View from-the-cloud tunnel" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/62fa6340-394a-3724-afdc-08b67ce7739d" name="Hybrid Cloud Operations: Update from-the-cloud tunnel endpoint tag" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/b0cfe989-521b-3d7f-9bc2-f23c74a99633" name="Organization vDC Network: Edit Properties" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/2c8d98ef-4acc-3be4-9214-fcb9682b7a19" name="Organization vDC Network: View Properties" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/30a64c60-c5cc-3b4f-a321-5e6f2bca02c2" name="Organization: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/6f3d4643-da13-3b5d-8f20-6cac72330d8b" name="Organization: Edit OAuth Settings" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/b065a1c4-4ba4-36b3-8a2b-2e5f2b05abd6" name="Organization: Edit Quotas Policy" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/39946bab-445e-3dfd-8fbe-e9afd2e52971" name="Organization: Edit Leases Policy" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/a9bb4826-fd63-3df8-b604-119748cc4878" name="Organization: Edit Properties" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/87a1fa5c-86fb-3a1e-9a6a-412f6f6ce419" name="Access All Organization VDCs" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/e348c652-5b83-32e3-a029-a42df17af02d" name="Organization vDC: View ACL" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/194c71a1-3d68-3156-b789-6a6384028b78" name="Organization Network: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/6cb3596a-15eb-3c2f-a657-5f14f2039719" name="Organization Network: Edit Properties" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/60d60d89-6839-3fa7-a24e-cf5bb67cd3ff" name="Organization: Edit Federation Settings" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/2637b30e-0394-3b5e-813f-0377700e78d4" name="Organization: Import User/Group from IdP while Editing VDC ACL" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/bc677a69-c2fe-36f9-a257-a74b21ffe296" name="Organization: Edit Association Settings" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/f0c442a1-920a-3259-9577-d9cb414af747" name="Organization vDC: Edit ACL" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/4c3f3357-b64d-300c-88d7-780533d6f5a2" name="Catalog: View ACL" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/c666dbd5-559f-3567-8a3a-ba5938a24c12" name="Organization: Edit Password Policy" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/6bdadad3-1e25-3a4a-9d39-4927676e09dc" name="vApp: View ACL" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/ffa60ee8-2dd0-37dc-bc3e-17fbc5bdd1ce" name="Organization: Edit SMTP Settings" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/f66d8e79-b584-3d79-a501-d71aaa2ebbf9" name="Organization vDC: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/c0ba1905-6390-35a5-a7e6-8dca6ffb0811" name="Organization vDC: VM-VM Affinity Edit" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/3379f74c-9961-3007-8547-981fcd080d52" name="Organization vDC Storage Profile: Set Default" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/8cce262a-3ae5-376d-9e06-edc36634b8c8" name="Organization vDC: Edit" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/fd036ae5-b78b-3c9f-8f28-a7f6b33d0d92" name="Organization vDC Named Disk: View Properties" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/5ddb661d-caf0-3680-9a74-59d4b06137f3" name="Organization vDC Named Disk: Change Owner" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/438e45e9-9389-3e29-9073-638b36921a2a" name="Organization vDC Named Disk: Create" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/f199d4aa-9067-39e0-a504-f625c8404e40" name="Organization vDC: Manage Firewall" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/7bbee458-b3c5-3252-ba5a-b1781b1c7b92" name="Organization vDC Named Disk: Edit Properties" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/f3633840-37d7-3214-968d-297834656d98" name="Organization vDC Compute Policy: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/1e5ad20d-1023-34d1-b073-1ea30bce3854" name="Organization vDC Named Disk: Delete" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/e2201b23-8c93-39d9-8523-715a12895749" name="Role: Create, Edit, Delete, or Copy" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/c80a2465-430b-3dbf-af3b-768a5284c07b" name="Service Library: View service libraries" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/5e579955-fe9d-3f0b-bc6b-a3da4db328f1" name="Group / User: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/5d37111c-a264-3b06-857a-e53c76751386" name="UI Plugins: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/94b041c2-04cd-3a9b-a3ff-0ba57814cff4" name="VDC Template: View" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/974452d6-f3a4-3c22-bf8f-e33057d029c7" name="VDC Template: Instantiate" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/0762a8f7-348d-3a11-b815-4fc6fb13b3c5" name="Organization: view metrics" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/99bd8096-73d1-3abe-970f-82f08dfbd762" name="Organization VDC: view metrics" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/ad2ca91e-9541-3869-a960-433e3f502a15" name="vApp: Upload" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/c2a29357-1b2a-3f9d-9cd6-de3d525d49f3" name="vApp: Edit Properties" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/b2bb3262-8724-3775-ab39-f8713782c856" name="vApp: Manage VM Password Settings" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/a6984ef7-de84-3d15-8bfd-0c3de0b6bd9d" name="VAPP_VM_METADATA_TO_VCENTER" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/69bc6569-6b5b-3fdf-abaf-e0d16ae0e2d7" name="vApp: VM Boot Options" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/2dc8abec-2e0d-3789-a5f9-ce0453160b53" name="vApp: Create / Reconfigure" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/cd02b5f8-c54a-334a-b782-5d31a1d77d85" name="vApp: Edit VM Hard Disk" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/8832800f-575f-3501-ad84-eb8bdaa782d7" name="vApp Template: Change Owner" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/580860cd-55bc-322d-ac39-4f9d8e3e1cd2" name="vApp: Power Operations" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/5ce247aa-6155-3478-97e0-2480ff8747d1" name="vApp: Download" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/4965b0e7-9ed8-371d-8b08-fc716d20bf4b" name="vApp: Copy" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/729a3828-8b63-31b2-88db-f56612a06722" name="vApp: Edit VM CPU" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/8832800f-575f-3501-ad84-8e15f3898f11" name="vApp: Change Owner" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/c6c827dc-fc42-33a8-844f-8ab5a91f8a6c" name="vApp: Edit VM Memory" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/f24fffde-f953-3976-9f2b-8b355b25881d" name="vApp: Edit VM Network" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/0efcfea8-d79f-3556-8275-0ba6e18ce05b" name="vApp: Use Console" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/df05c07f-c537-3777-8d9b-a9cfe8d49014" name="vApp: Delete" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/5250ab79-8f50-33f9-8af5-015cb39c380b" name="vApp: Edit VM Properties" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/1222edb5-adb4-32c4-be70-0e88aef1f03b" name="vApp: Sharing" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/af90833f-5014-3fa5-b7f7-f2e653ec200b" name="vApp: Snapshot Operations" type="application/vnd.vmware.admin.right+xml"/>
        <RightReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/right/aaea131b-fac0-335a-8734-99c7547d0d13" name="vApp: View VM metrics" type="application/vnd.vmware.admin.right+xml"/>
    </RightReferences>
    <RoleReferences>
        <RoleReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/role/bc653b55-2a9a-33ca-9528-56b068afb547" name="Organization Administrator" type="application/vnd.vmware.admin.role+xml"/>
        <RoleReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/role/69084dab-5bf7-3703-87e9-fbd401e50b45" name="Catalog Author" type="application/vnd.vmware.admin.role+xml"/>
        <RoleReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/role/cde8fd32-585a-33ec-aa08-c005af17bc34" name="vApp Author" type="application/vnd.vmware.admin.role+xml"/>
        <RoleReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/role/2da0e3de-2833-319c-9fbb-fcdb73c28536" name="vApp User" type="application/vnd.vmware.admin.role+xml"/>
        <RoleReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/role/392f8cb6-eef3-3388-b1ab-95b44150f3f5" name="Console Access Only" type="application/vnd.vmware.admin.role+xml"/>
        <RoleReference href="https://vcd-1f81012e-f308-469c-938e-5fb346ae4059.eu-central-1.vdp.vmware.com/api/admin/org/254077c6-fc1e-4b96-bfbe-6a6a335df3bf/role/5542d5bb-c7b7-349e-a621-6f1fe588d378" name="Defer to Identity Provider" type="application/vnd.vmware.admin.role+xml"/>
    </RoleReferences>
</AdminOrg>
EOF
Didainius commented 3 years ago

@AdrianBegg , I have tried to replicate your example on CDS 10.2.0 and on self-hosted VCD 10.2.0 (nsx-t PVDC). I could not do it - it always worked (apply and destroy multiple times).

I started by copying your initial HCL definition and noticed it was missing some details so I added the missing pieces and abstracted all private details into local variables. The result is:

resource "vcd_org_vdc" "example_provider" {
  name              = "Public-Catalog-Test"
  org               = local.org
  allocation_model  = "Flex"
  network_pool_name = local.network_pool_name
  provider_vdc_name = local.provider_vdc_name

  delete_recursive = true
  delete_force = true

  compute_capacity {
    cpu {
      allocated = 2048
    }

    memory {
      allocated = 2048
    }
  }
  elasticity = false
  include_vm_memory_overhead = false

  storage_profile {
    name     = local.pvdc_storage_profile_name
    limit    = 10240
    default  = true    
  }

}

data "vcd_storage_profile" "example_provider_default" {
  org      = local.org
  vdc      = vcd_org_vdc.example_provider.name
  name     = tolist(vcd_org_vdc.example_provider.storage_profile)[0].name

  depends_on = [ vcd_org_vdc.example_provider ]

}

resource "vcd_catalog" "test_catalogue" {
  org                = local.org
  name               = "Public Catalog - Example"
  description        = "A Public Catalog of images available to customers."
  delete_recursive   = "true"
  delete_force       = "true"
  storage_profile_id = data.vcd_storage_profile.example_provider_default.id
}

These are local variables to fill in

locals {
  network_pool_name = ""
  provider_vdc_name = ""
  pvdc_storage_profile_name = ""
  org = ""
}

Would you be able to just retry this exact example by filling in the details into locals block above?

vbauzys commented 2 years ago

Please reopen this issue with more information, if the error is still reproducible.