From 96189f1dde837ed0a4e0863a630e34ce5ae25a78 Mon Sep 17 00:00:00 2001 From: Kiron Haltore Date: Thu, 9 Apr 2020 04:52:56 +0000 Subject: [PATCH] updating avi for avi_terraform.tgz release 18.2.8 --- avi/resource_avi_rest_dependants.go | 124 +++++++++++++++------------- 1 file changed, 67 insertions(+), 57 deletions(-) diff --git a/avi/resource_avi_rest_dependants.go b/avi/resource_avi_rest_dependants.go index 95bbeeea..7c6efd8a 100644 --- a/avi/resource_avi_rest_dependants.go +++ b/avi/resource_avi_rest_dependants.go @@ -8090,6 +8090,11 @@ func ResourceGslbPoolMemberRuntimeInfoSchema() *schema.Resource { Optional: true, Computed: true, }, + "ipv6_value_to_se": { + Type: schema.TypeList, + Optional: true, + Elem: &schema.Schema{Type: schema.TypeInt}, + }, "oper_ips": { Type: schema.TypeList, Optional: true, @@ -9483,6 +9488,58 @@ func ResourceResumeSeGroupParamsSchema() *schema.Resource { } } +func ResourceSeIpAddedEventDetailsSchema() *schema.Resource { + return &schema.Resource{ + Schema: map[string]*schema.Schema{ + "if_name": { + Type: schema.TypeString, + Optional: true, + Computed: true, + }, + "ip": { + Type: schema.TypeString, + Optional: true, + Computed: true, + }, + "linux_name": { + Type: schema.TypeString, + Optional: true, + Computed: true, + }, + "mac": { + Type: schema.TypeString, + Optional: true, + Computed: true, + }, + "mask": { + Type: schema.TypeInt, + Optional: true, + Computed: true, + }, + "mode": { + Type: schema.TypeString, + Optional: true, + Computed: true, + }, + "network_uuid": { + Type: schema.TypeString, + Optional: true, + Computed: true, + }, + "ns": { + Type: schema.TypeString, + Optional: true, + Computed: true, + }, + "se_ref": { + Type: schema.TypeString, + Optional: true, + Computed: true, + }, + }, + } +} + func ResourceTencentCredentialsSchema() *schema.Resource { return &schema.Resource{ Schema: map[string]*schema.Schema{ @@ -15417,33 +15474,6 @@ func ResourceMemoryUsagePerNodeSchema() *schema.Resource { } } -func ResourceUpgradeTaskSchema() *schema.Resource { - return &schema.Resource{ - Schema: map[string]*schema.Schema{ - "duration": { - Type: schema.TypeString, - Optional: true, - Computed: true, - }, - "end_time": { - Type: schema.TypeString, - Optional: true, - Computed: true, - }, - "start_time": { - Type: schema.TypeString, - Optional: true, - Computed: true, - }, - "task": { - Type: schema.TypeString, - Optional: true, - Computed: true, - }, - }, - } -} - func ResourceUpgradeSeGroupParamsSchema() *schema.Resource { return &schema.Resource{ Schema: map[string]*schema.Schema{ @@ -20420,6 +20450,11 @@ func ResourceGslbPoolMemberSchema() *schema.Resource { Optional: true, Default: 1, }, + "resolve_fqdn_to_v6": { + Type: schema.TypeBool, + Optional: true, + Default: false, + }, "vs_uuid": { Type: schema.TypeString, Optional: true, @@ -24666,50 +24701,25 @@ func ResourceObjectAccessPolicyRuleSchema() *schema.Resource { } } -func ResourceSeIpAddedEventDetailsSchema() *schema.Resource { +func ResourceUpgradeTaskSchema() *schema.Resource { return &schema.Resource{ Schema: map[string]*schema.Schema{ - "if_name": { - Type: schema.TypeString, - Optional: true, - Computed: true, - }, - "ip": { - Type: schema.TypeString, - Optional: true, - Computed: true, - }, - "linux_name": { - Type: schema.TypeString, - Optional: true, - Computed: true, - }, - "mac": { - Type: schema.TypeString, - Optional: true, - Computed: true, - }, - "mask": { - Type: schema.TypeInt, - Optional: true, - Computed: true, - }, - "mode": { + "duration": { Type: schema.TypeString, Optional: true, Computed: true, }, - "network_uuid": { + "end_time": { Type: schema.TypeString, Optional: true, Computed: true, }, - "ns": { + "start_time": { Type: schema.TypeString, Optional: true, Computed: true, }, - "se_ref": { + "task": { Type: schema.TypeString, Optional: true, Computed: true,