Skip to content

Update generated SDKs #605

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 26, 2024
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
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