Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26566,6 +26566,9 @@ components:
description:
description: Description of the degradation.
type: string
is_backfilled:
description: Whether the degradation was backfilled.
type: boolean
modified_at:
description: Timestamp of when the degradation was last modified.
format: date-time
Expand Down Expand Up @@ -50298,6 +50301,9 @@ components:
in_progress_description:
description: The description shown while the maintenance is in progress.
type: string
is_backfilled:
description: Whether the maintenance was backfilled.
type: boolean
modified_at:
description: Timestamp of when the maintenance was last modified.
format: date-time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
DegradationDataAttributes.JSON_PROPERTY_COMPONENTS_AFFECTED,
DegradationDataAttributes.JSON_PROPERTY_CREATED_AT,
DegradationDataAttributes.JSON_PROPERTY_DESCRIPTION,
DegradationDataAttributes.JSON_PROPERTY_IS_BACKFILLED,
DegradationDataAttributes.JSON_PROPERTY_MODIFIED_AT,
DegradationDataAttributes.JSON_PROPERTY_SOURCE,
DegradationDataAttributes.JSON_PROPERTY_STATUS,
Expand All @@ -43,6 +44,9 @@ public class DegradationDataAttributes {
public static final String JSON_PROPERTY_DESCRIPTION = "description";
private String description;

public static final String JSON_PROPERTY_IS_BACKFILLED = "is_backfilled";
private Boolean isBackfilled;

public static final String JSON_PROPERTY_MODIFIED_AT = "modified_at";
private OffsetDateTime modifiedAt;

Expand Down Expand Up @@ -136,6 +140,27 @@ public void setDescription(String description) {
this.description = description;
}

public DegradationDataAttributes isBackfilled(Boolean isBackfilled) {
this.isBackfilled = isBackfilled;
return this;
}

/**
* Whether the degradation was backfilled.
*
* @return isBackfilled
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_BACKFILLED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getIsBackfilled() {
return isBackfilled;
}

public void setIsBackfilled(Boolean isBackfilled) {
this.isBackfilled = isBackfilled;
}

public DegradationDataAttributes modifiedAt(OffsetDateTime modifiedAt) {
this.modifiedAt = modifiedAt;
return this;
Expand Down Expand Up @@ -318,6 +343,7 @@ public boolean equals(Object o) {
return Objects.equals(this.componentsAffected, degradationDataAttributes.componentsAffected)
&& Objects.equals(this.createdAt, degradationDataAttributes.createdAt)
&& Objects.equals(this.description, degradationDataAttributes.description)
&& Objects.equals(this.isBackfilled, degradationDataAttributes.isBackfilled)
&& Objects.equals(this.modifiedAt, degradationDataAttributes.modifiedAt)
&& Objects.equals(this.source, degradationDataAttributes.source)
&& Objects.equals(this.status, degradationDataAttributes.status)
Expand All @@ -333,6 +359,7 @@ public int hashCode() {
componentsAffected,
createdAt,
description,
isBackfilled,
modifiedAt,
source,
status,
Expand All @@ -348,6 +375,7 @@ public String toString() {
sb.append(" componentsAffected: ").append(toIndentedString(componentsAffected)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" isBackfilled: ").append(toIndentedString(isBackfilled)).append("\n");
sb.append(" modifiedAt: ").append(toIndentedString(modifiedAt)).append("\n");
sb.append(" source: ").append(toIndentedString(source)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
MaintenanceDataAttributes.JSON_PROPERTY_COMPLETED_DESCRIPTION,
MaintenanceDataAttributes.JSON_PROPERTY_COMPONENTS_AFFECTED,
MaintenanceDataAttributes.JSON_PROPERTY_IN_PROGRESS_DESCRIPTION,
MaintenanceDataAttributes.JSON_PROPERTY_IS_BACKFILLED,
MaintenanceDataAttributes.JSON_PROPERTY_MODIFIED_AT,
MaintenanceDataAttributes.JSON_PROPERTY_PUBLISHED_DATE,
MaintenanceDataAttributes.JSON_PROPERTY_SCHEDULED_DESCRIPTION,
Expand All @@ -49,6 +50,9 @@ public class MaintenanceDataAttributes {
public static final String JSON_PROPERTY_IN_PROGRESS_DESCRIPTION = "in_progress_description";
private String inProgressDescription;

public static final String JSON_PROPERTY_IS_BACKFILLED = "is_backfilled";
private Boolean isBackfilled;

public static final String JSON_PROPERTY_MODIFIED_AT = "modified_at";
private OffsetDateTime modifiedAt;

Expand Down Expand Up @@ -169,6 +173,27 @@ public void setInProgressDescription(String inProgressDescription) {
this.inProgressDescription = inProgressDescription;
}

public MaintenanceDataAttributes isBackfilled(Boolean isBackfilled) {
this.isBackfilled = isBackfilled;
return this;
}

/**
* Whether the maintenance was backfilled.
*
* @return isBackfilled
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_BACKFILLED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getIsBackfilled() {
return isBackfilled;
}

public void setIsBackfilled(Boolean isBackfilled) {
this.isBackfilled = isBackfilled;
}

public MaintenanceDataAttributes modifiedAt(OffsetDateTime modifiedAt) {
this.modifiedAt = modifiedAt;
return this;
Expand Down Expand Up @@ -394,6 +419,7 @@ public boolean equals(Object o) {
&& Objects.equals(this.componentsAffected, maintenanceDataAttributes.componentsAffected)
&& Objects.equals(
this.inProgressDescription, maintenanceDataAttributes.inProgressDescription)
&& Objects.equals(this.isBackfilled, maintenanceDataAttributes.isBackfilled)
&& Objects.equals(this.modifiedAt, maintenanceDataAttributes.modifiedAt)
&& Objects.equals(this.publishedDate, maintenanceDataAttributes.publishedDate)
&& Objects.equals(this.scheduledDescription, maintenanceDataAttributes.scheduledDescription)
Expand All @@ -412,6 +438,7 @@ public int hashCode() {
completedDescription,
componentsAffected,
inProgressDescription,
isBackfilled,
modifiedAt,
publishedDate,
scheduledDescription,
Expand All @@ -434,6 +461,7 @@ public String toString() {
sb.append(" inProgressDescription: ")
.append(toIndentedString(inProgressDescription))
.append("\n");
sb.append(" isBackfilled: ").append(toIndentedString(isBackfilled)).append("\n");
sb.append(" modifiedAt: ").append(toIndentedString(modifiedAt)).append("\n");
sb.append(" publishedDate: ").append(toIndentedString(publishedDate)).append("\n");
sb.append(" scheduledDescription: ")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@
"timeToLive": {
"unlimited": true
},
"id": "af617072-2860-ba27-e045-b00c8baf0188"
"id": "af617072-2860-ba27-e045-b00c8baf0187"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@
"timeToLive": {
"unlimited": true
},
"id": "af617072-2860-ba27-e045-b00c8baf0187"
"id": "af617072-2860-ba27-e045-b00c8baf0188"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "73fd406e-d686-10bd-50ee-83f2c499e8a8"
"id": "73fd406e-d686-10bd-50ee-83f2c499e8a9"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9ee9"
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eeb"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eed"
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9ee9"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eeb"
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eee"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "9b33b83c-c8bb-714f-cf71-33ab2f3af9d3"
"id": "9b33b83c-c8bb-714f-cf71-33ab2f3af9d4"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "101a55f5-5a26-d616-5fb4-8d0451d83d10"
"id": "101a55f5-5a26-d616-5fb4-8d0451d83d11"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "d0ec7736-ef6c-d071-3390-4a5c3a301d0e"
"id": "d0ec7736-ef6c-d071-3390-4a5c3a301d11"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "03c3c0d9-a62f-5ac6-398b-e22a05d14d7a"
"id": "03c3c0d9-a62f-5ac6-398b-e22a05d14d79"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eee"
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eed"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e7014600"
"id": "79babc38-7a70-5347-c8a6-73b0e70145f5"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e70145ff"
"id": "79babc38-7a70-5347-c8a6-73b0e70145fa"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e70145ec"
"id": "79babc38-7a70-5347-c8a6-73b0e7014600"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d30"
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d33"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d2f"
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d2d"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d32"
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d30"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d2e"
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d32"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "6bb82102-e994-f0d1-ee96-e1e3f1d80ffe"
"id": "6bb82102-e994-f0d1-ee96-e1e3f1d80fff"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "516e2b97-25f6-b08c-4d4a-1da22948b32f"
"id": "516e2b97-25f6-b08c-4d4a-1da22948b32e"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e70145f6"
"id": "79babc38-7a70-5347-c8a6-73b0e70145f2"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"timeToLive": {
"unlimited": true
},
"id": "58d1c8d5-bb10-59b9-aa85-8871f847921f"
"id": "58d1c8d5-bb10-59b9-aa85-8871f8479221"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "58d1c8d5-bb10-59b9-aa85-8871f8479220"
"id": "58d1c8d5-bb10-59b9-aa85-8871f847921f"
},
{
"httpRequest": {
Expand Down Expand Up @@ -57,6 +57,6 @@
"timeToLive": {
"unlimited": true
},
"id": "58d1c8d5-bb10-59b9-aa85-8871f8479221"
"id": "58d1c8d5-bb10-59b9-aa85-8871f8479220"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
"id": "ddc95453-e78c-c1f7-f3a9-441d29765f2e"
"id": "ddc95453-e78c-c1f7-f3a9-441d29765f2f"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "c782b1f3-1b03-d50f-8fcd-12e51226c514"
"id": "c782b1f3-1b03-d50f-8fcd-12e51226c50c"
},
{
"httpRequest": {
Expand Down
Loading
Loading