diff --git a/client/client.gen.go b/client/client.gen.go index e013a33..669daea 100644 --- a/client/client.gen.go +++ b/client/client.gen.go @@ -2075,6 +2075,12 @@ type ResourceDefinitionResponse struct { // Type The Resource Type. Type string `json:"type"` + + // UpdatedAt The timestamp of when this record has been updated. + UpdatedAt *time.Time `json:"updated_at,omitempty"` + + // UpdatedBy The user who updated this record. + UpdatedBy *string `json:"updated_by,omitempty"` } // ResourceProvisionRequestRequest ResourceProvisionRequest is the payload passed to the resource provisioner, specifying the resources to be provisioned. diff --git a/docs/openapi.json b/docs/openapi.json index c896c61..01643d2 100644 --- a/docs/openapi.json +++ b/docs/openapi.json @@ -16812,6 +16812,17 @@ "description": "The user who created this record.", "type": "string" }, + "updated_at": { + "description": "The timestamp of when this record has been updated.", + "example": "2020-06-22T09:37:23.523Z", + "title": "Simplified extended ISO format date/time string.", + "type": "string", + "format": "date-time" + }, + "updated_by": { + "description": "The user who updated this record.", + "type": "string" + }, "criteria": { "description": "(Optional) The criteria to use when looking for a Resource Definition during the deployment.", "items": {