This commit is contained in:
2024-11-12 13:41:38 +03:00
parent 040af43607
commit 36879efd58
517 changed files with 37877 additions and 1900 deletions

View File

@@ -124,6 +124,7 @@ func flattenUserGetAudits(audits *user.ListAudits) []map[string]interface{} {
"response_time": item.ResponseTime,
"status_code": item.StatusCode,
"time": item.Time,
"guid": item.GUID,
}
res = append(res, temp)
}

View File

@@ -198,6 +198,10 @@ func dataSourceUserGetAuditSchemaMake() map[string]*schema.Schema {
Type: schema.TypeFloat,
Computed: true,
},
"guid": {
Type: schema.TypeString,
Computed: true,
},
},
},
},