Skip to content

Commit

Permalink
build(codegen): updating SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
ct-sdks[bot] committed Mar 26, 2024
1 parent fdb3d0c commit ae2517f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<summary>Added Enum(s)</summary>

- added enum `product-tailoring` to type `ReferenceTypeId`
- added enum `ManuallySuspended` to type `SubscriptionHealthStatus`
</details>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13685,6 +13685,7 @@ enum SubscriptionHealthStatus {
ConfigurationErrorDeliveryStopped
Healthy
TemporaryError
ManuallySuspended
}

input SubscriptionUpdateAction {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import io.vrap.rmf.base.client.utils.Generated;

/**
* <p>The health status of the Subscription that indicates whether messages are being delivered to the Destination.</p>
* <p>The health status of the Subscription that indicates whether messages are being delivered.</p>
*/
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
public interface SubscriptionHealthStatus extends JsonEnum {
Expand All @@ -28,6 +28,9 @@ public interface SubscriptionHealthStatus extends JsonEnum {
/**
<p>Does not deliver messages temporarily due to reasons other than a configuration error. For example, the Destination has a temporary outage.</p> */
SubscriptionHealthStatus TEMPORARY_ERROR = SubscriptionHealthStatusEnum.TEMPORARY_ERROR;
/**
<p>Does not deliver messages with the current configuration and the delivery of the messages is no longer attempted. Undelivered messages are not retained and will not be delivered. The <code>status</code> will not automatically change to Healthy. To return your subscriptions to a Healthy status, please contact our support team.</p> */
SubscriptionHealthStatus MANUALLY_SUSPENDED = SubscriptionHealthStatusEnum.MANUALLY_SUSPENDED;

/**
* possible values of SubscriptionHealthStatus
Expand All @@ -51,7 +54,12 @@ enum SubscriptionHealthStatusEnum implements SubscriptionHealthStatus {
/**
* TemporaryError
*/
TEMPORARY_ERROR("TemporaryError");
TEMPORARY_ERROR("TemporaryError"),

/**
* ManuallySuspended
*/
MANUALLY_SUSPENDED("ManuallySuspended");
private final String jsonName;

private SubscriptionHealthStatusEnum(final String jsonName) {
Expand Down
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -211,3 +211,4 @@ aeaa4f5f426544504aa4f04360ef75e79738a01a
774adcfcaf63b6994bc3154966bfaa922e0d2c8a
d6c4e8ca039647373df3aeb8369342bd50b02d61
34d7405c2c16d56134d23ecf7219d10caaa3bfa3
c19a4123795d7a2d583abb9f278ce1264b030a91

0 comments on commit ae2517f

Please sign in to comment.