Skip to content

Commit

Permalink
Merge pull request #26 from avinetworks/rc-18.2.8
Browse files Browse the repository at this point in the history
updating with 18.2.8 assets
  • Loading branch information
Gaurav Rastogi authored Apr 9, 2020
2 parents 6f0309c + 96189f1 commit 4560e97
Showing 1 changed file with 67 additions and 57 deletions.
124 changes: 67 additions & 57 deletions avi/resource_avi_rest_dependants.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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{
Expand Down Expand Up @@ -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{
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 4560e97

Please sign in to comment.