Skip to content

Commit

Permalink
Merge pull request #115 from abooitt/fix_for_ResourceVipSchema
Browse files Browse the repository at this point in the history
Update to ResourceVipSchema
  • Loading branch information
Gaurav Rastogi authored Jul 2, 2019
2 parents 49cb829 + fcad4e9 commit 8fc1833
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions avi/resource_avi_rest_dependants.go
Original file line number Diff line number Diff line change
Expand Up @@ -8762,34 +8762,41 @@ func ResourceVipSchema() *schema.Resource {
"floating_ip": {
Type: schema.TypeSet,
Optional: true,
Computed: true,
Elem: ResourceIpAddrSchema(),
},
"floating_ip6": {
Type: schema.TypeSet,
Optional: true,
Computed: true,
Elem: ResourceIpAddrSchema(),
},
"floating_subnet6_uuid": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"floating_subnet_uuid": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"ip6_address": {
Type: schema.TypeSet,
Optional: true,
Computed: true,
Elem: ResourceIpAddrSchema(),
},
"ip_address": {
Type: schema.TypeSet,
Optional: true,
Computed: true,
Elem: ResourceIpAddrSchema(),
},
"ipam_network_subnet": {
Type: schema.TypeSet,
Optional: true,
Computed: true,
Elem: ResourceIPNetworkSubnetSchema(),
},
"network_ref": {
Expand All @@ -8805,28 +8812,34 @@ func ResourceVipSchema() *schema.Resource {
"port_uuid": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"subnet": {
Type: schema.TypeSet,
Optional: true,
Computed: true,
Elem: ResourceIpAddrPrefixSchema(),
},
"subnet6": {
Type: schema.TypeSet,
Optional: true,
Computed: true,
Elem: ResourceIpAddrPrefixSchema(),
},
"subnet6_uuid": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"subnet_uuid": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"vip_id": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
},
}
Expand Down

0 comments on commit 8fc1833

Please sign in to comment.