Skip to content

Commit e78d428

Browse files
author
APIs and Common Services team
committed
Automated SDK update
This updates the SDK from internal repo commit segmentio/public-api@c1f20b66.
1 parent bd56042 commit e78d428

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

docs/DeletionAndSuppressionApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ public class Example {
587587
| Name | Type | Description | Notes |
588588
|------------- | ------------- | ------------- | -------------|
589589
| **status** | **String**| The status on which to filter the returned regulations. This parameter exists in v1. | [optional] [enum: FAILED, FINISHED, INITIALIZED, INVALID, NOT_SUPPORTED, PARTIAL_SUCCESS, RUNNING] |
590-
| **regulationTypes** | [**List<String>**](String.md)| The regulation types on which to filter returned regulations. This parameter exists in v1. | [optional] [enum: DELETE_INTERNAL, DELETE_ONLY, SUPPRESS_ONLY, SUPPRESS_WITH_DELETE, SUPPRESS_WITH_DELETE_INTERNAL, UNSUPPRESS] |
590+
| **regulationTypes** | [**List<String>**](String.md)| The regulation types on which to filter returned regulations. This parameter exists in v1. | [optional] [enum: DELETE_ARCHIVE_ONLY, DELETE_INTERNAL, DELETE_ONLY, SUPPRESS_ONLY, SUPPRESS_WITH_DELETE, SUPPRESS_WITH_DELETE_INTERNAL, UNSUPPRESS] |
591591
| **pagination** | [**PaginationInput**](.md)| Pagination parameters. This parameter exists in v1. | [optional] |
592592

593593
### Return type

src/main/java/com/segment/publicapi/models/CreateSourceRegulationV1Input.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ public class CreateSourceRegulationV1Input {
3535
/** The regulation type to create. */
3636
@JsonAdapter(RegulationTypeEnum.Adapter.class)
3737
public enum RegulationTypeEnum {
38+
DELETE_ARCHIVE_ONLY("DELETE_ARCHIVE_ONLY"),
39+
3840
DELETE_INTERNAL("DELETE_INTERNAL"),
3941

4042
DELETE_ONLY("DELETE_ONLY"),
@@ -94,6 +96,8 @@ public RegulationTypeEnum read(final JsonReader jsonReader) throws IOException {
9496
/** The subject type. */
9597
@JsonAdapter(SubjectTypeEnum.Adapter.class)
9698
public enum SubjectTypeEnum {
99+
ANONYMOUS_ID("ANONYMOUS_ID"),
100+
97101
USER_ID("USER_ID");
98102

99103
private String value;

src/main/java/com/segment/publicapi/models/CreateWorkspaceRegulationV1Input.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ public class CreateWorkspaceRegulationV1Input {
3535
/** The regulation type to create. */
3636
@JsonAdapter(RegulationTypeEnum.Adapter.class)
3737
public enum RegulationTypeEnum {
38+
DELETE_ARCHIVE_ONLY("DELETE_ARCHIVE_ONLY"),
39+
3840
DELETE_INTERNAL("DELETE_INTERNAL"),
3941

4042
DELETE_ONLY("DELETE_ONLY"),
@@ -94,6 +96,8 @@ public RegulationTypeEnum read(final JsonReader jsonReader) throws IOException {
9496
/** The subject type. Use `objectId` for Cloud Source regulations. */
9597
@JsonAdapter(SubjectTypeEnum.Adapter.class)
9698
public enum SubjectTypeEnum {
99+
ANONYMOUS_ID("ANONYMOUS_ID"),
100+
97101
OBJECT_ID("OBJECT_ID"),
98102

99103
USER_ID("USER_ID");

src/main/java/com/segment/publicapi/models/RegulationListEntryV1.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ public StatusEnum read(final JsonReader jsonReader) throws IOException {
116116
/** The regulation type. */
117117
@JsonAdapter(RegulationTypeEnum.Adapter.class)
118118
public enum RegulationTypeEnum {
119+
DELETE_ARCHIVE_ONLY("DELETE_ARCHIVE_ONLY"),
120+
119121
DELETE_INTERNAL("DELETE_INTERNAL"),
120122

121123
DELETE_ONLY("DELETE_ONLY"),

0 commit comments

Comments
 (0)