Skip to content

Commit

Permalink
Updated assets for terraform
Browse files Browse the repository at this point in the history
Signed-off-by: Sagar <ssalvi@vmware.com>
  • Loading branch information
sagarpsalvi committed Feb 7, 2024
1 parent 90f6f1c commit 207c79c
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions avi/resource_avi_rest_dependants.go
Original file line number Diff line number Diff line change
Expand Up @@ -11646,6 +11646,12 @@ func ResourceEventDetailsSchema() *schema.Resource {
Computed: true,
Elem: ResourceVinfraDiscSummaryDetailsSchema(),
},
"disk_cleanup_event_details": {
Type: schema.TypeSet,
Optional: true,
Computed: true,
Elem: ResourceLogMgrCleanupEventDetailsSchema(),
},
"dns_query_error": {
Type: schema.TypeSet,
Optional: true,
Expand Down Expand Up @@ -20483,6 +20489,41 @@ func ResourceLogManagerDebugFilterSchema() *schema.Resource {
}
}

func ResourceLogMgrCleanupEventDetailsSchema() *schema.Resource {
return &schema.Resource{
Schema: map[string]*schema.Schema{
"cleanup_count": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ValidateFunc: validateInteger,
},
"controller": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"curr_size": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ValidateFunc: validateInteger,
},
"from_time": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"size_limit": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ValidateFunc: validateInteger,
},
},
}
}

func ResourceManagementNetworkConfigSchema() *schema.Resource {
return &schema.Resource{
Schema: map[string]*schema.Schema{
Expand Down

0 comments on commit 207c79c

Please sign in to comment.