Skip to content

Commit c808fe4

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 c67a7b5 commit c808fe4

File tree

4 files changed

+56
-26
lines changed

4 files changed

+56
-26
lines changed

Segment.PublicApi.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Segment.PublicApi", "src\Segment.PublicApi\Segment.PublicApi.csproj", "{F0999634-E2C0-4A3E-9C0E-B46BD6E8A862}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Segment.PublicApi", "src\Segment.PublicApi\Segment.PublicApi.csproj", "{F3190990-AAD0-4292-9DD4-4E53629422C0}"
66
EndProject
77
Global
88
GlobalSection(SolutionConfigurationPlatforms) = preSolution
99
Debug|Any CPU = Debug|Any CPU
1010
Release|Any CPU = Release|Any CPU
1111
EndGlobalSection
1212
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13-
{F0999634-E2C0-4A3E-9C0E-B46BD6E8A862}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{F0999634-E2C0-4A3E-9C0E-B46BD6E8A862}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{F0999634-E2C0-4A3E-9C0E-B46BD6E8A862}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{F0999634-E2C0-4A3E-9C0E-B46BD6E8A862}.Release|Any CPU.Build.0 = Release|Any CPU
13+
{F3190990-AAD0-4292-9DD4-4E53629422C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{F3190990-AAD0-4292-9DD4-4E53629422C0}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{F3190990-AAD0-4292-9DD4-4E53629422C0}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{F3190990-AAD0-4292-9DD4-4E53629422C0}.Release|Any CPU.Build.0 = Release|Any CPU
1717
EndGlobalSection
1818
GlobalSection(SolutionProperties) = preSolution
1919
HideSolutionNode = FALSE

src/Segment.PublicApi/Model/CreateSourceRegulationV1Input.cs

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,41 +39,47 @@ public partial class CreateSourceRegulationV1Input : IEquatable<CreateSourceRegu
3939
[JsonConverter(typeof(StringEnumConverter))]
4040
public enum RegulationTypeEnum
4141
{
42+
/// <summary>
43+
/// Enum DELETEARCHIVEONLY for value: DELETE_ARCHIVE_ONLY
44+
/// </summary>
45+
[EnumMember(Value = "DELETE_ARCHIVE_ONLY")]
46+
DELETEARCHIVEONLY = 1,
47+
4248
/// <summary>
4349
/// Enum DELETEINTERNAL for value: DELETE_INTERNAL
4450
/// </summary>
4551
[EnumMember(Value = "DELETE_INTERNAL")]
46-
DELETEINTERNAL = 1,
52+
DELETEINTERNAL = 2,
4753

4854
/// <summary>
4955
/// Enum DELETEONLY for value: DELETE_ONLY
5056
/// </summary>
5157
[EnumMember(Value = "DELETE_ONLY")]
52-
DELETEONLY = 2,
58+
DELETEONLY = 3,
5359

5460
/// <summary>
5561
/// Enum SUPPRESSONLY for value: SUPPRESS_ONLY
5662
/// </summary>
5763
[EnumMember(Value = "SUPPRESS_ONLY")]
58-
SUPPRESSONLY = 3,
64+
SUPPRESSONLY = 4,
5965

6066
/// <summary>
6167
/// Enum SUPPRESSWITHDELETE for value: SUPPRESS_WITH_DELETE
6268
/// </summary>
6369
[EnumMember(Value = "SUPPRESS_WITH_DELETE")]
64-
SUPPRESSWITHDELETE = 4,
70+
SUPPRESSWITHDELETE = 5,
6571

6672
/// <summary>
6773
/// Enum SUPPRESSWITHDELETEINTERNAL for value: SUPPRESS_WITH_DELETE_INTERNAL
6874
/// </summary>
6975
[EnumMember(Value = "SUPPRESS_WITH_DELETE_INTERNAL")]
70-
SUPPRESSWITHDELETEINTERNAL = 5,
76+
SUPPRESSWITHDELETEINTERNAL = 6,
7177

7278
/// <summary>
7379
/// Enum UNSUPPRESS for value: UNSUPPRESS
7480
/// </summary>
7581
[EnumMember(Value = "UNSUPPRESS")]
76-
UNSUPPRESS = 6
82+
UNSUPPRESS = 7
7783
}
7884

7985

@@ -90,11 +96,17 @@ public enum RegulationTypeEnum
9096
[JsonConverter(typeof(StringEnumConverter))]
9197
public enum SubjectTypeEnum
9298
{
99+
/// <summary>
100+
/// Enum ANONYMOUSID for value: ANONYMOUS_ID
101+
/// </summary>
102+
[EnumMember(Value = "ANONYMOUS_ID")]
103+
ANONYMOUSID = 1,
104+
93105
/// <summary>
94106
/// Enum USERID for value: USER_ID
95107
/// </summary>
96108
[EnumMember(Value = "USER_ID")]
97-
USERID = 1
109+
USERID = 2
98110
}
99111

100112

src/Segment.PublicApi/Model/CreateWorkspaceRegulationV1Input.cs

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,41 +39,47 @@ public partial class CreateWorkspaceRegulationV1Input : IEquatable<CreateWorkspa
3939
[JsonConverter(typeof(StringEnumConverter))]
4040
public enum RegulationTypeEnum
4141
{
42+
/// <summary>
43+
/// Enum DELETEARCHIVEONLY for value: DELETE_ARCHIVE_ONLY
44+
/// </summary>
45+
[EnumMember(Value = "DELETE_ARCHIVE_ONLY")]
46+
DELETEARCHIVEONLY = 1,
47+
4248
/// <summary>
4349
/// Enum DELETEINTERNAL for value: DELETE_INTERNAL
4450
/// </summary>
4551
[EnumMember(Value = "DELETE_INTERNAL")]
46-
DELETEINTERNAL = 1,
52+
DELETEINTERNAL = 2,
4753

4854
/// <summary>
4955
/// Enum DELETEONLY for value: DELETE_ONLY
5056
/// </summary>
5157
[EnumMember(Value = "DELETE_ONLY")]
52-
DELETEONLY = 2,
58+
DELETEONLY = 3,
5359

5460
/// <summary>
5561
/// Enum SUPPRESSONLY for value: SUPPRESS_ONLY
5662
/// </summary>
5763
[EnumMember(Value = "SUPPRESS_ONLY")]
58-
SUPPRESSONLY = 3,
64+
SUPPRESSONLY = 4,
5965

6066
/// <summary>
6167
/// Enum SUPPRESSWITHDELETE for value: SUPPRESS_WITH_DELETE
6268
/// </summary>
6369
[EnumMember(Value = "SUPPRESS_WITH_DELETE")]
64-
SUPPRESSWITHDELETE = 4,
70+
SUPPRESSWITHDELETE = 5,
6571

6672
/// <summary>
6773
/// Enum SUPPRESSWITHDELETEINTERNAL for value: SUPPRESS_WITH_DELETE_INTERNAL
6874
/// </summary>
6975
[EnumMember(Value = "SUPPRESS_WITH_DELETE_INTERNAL")]
70-
SUPPRESSWITHDELETEINTERNAL = 5,
76+
SUPPRESSWITHDELETEINTERNAL = 6,
7177

7278
/// <summary>
7379
/// Enum UNSUPPRESS for value: UNSUPPRESS
7480
/// </summary>
7581
[EnumMember(Value = "UNSUPPRESS")]
76-
UNSUPPRESS = 6
82+
UNSUPPRESS = 7
7783
}
7884

7985

@@ -90,17 +96,23 @@ public enum RegulationTypeEnum
9096
[JsonConverter(typeof(StringEnumConverter))]
9197
public enum SubjectTypeEnum
9298
{
99+
/// <summary>
100+
/// Enum ANONYMOUSID for value: ANONYMOUS_ID
101+
/// </summary>
102+
[EnumMember(Value = "ANONYMOUS_ID")]
103+
ANONYMOUSID = 1,
104+
93105
/// <summary>
94106
/// Enum OBJECTID for value: OBJECT_ID
95107
/// </summary>
96108
[EnumMember(Value = "OBJECT_ID")]
97-
OBJECTID = 1,
109+
OBJECTID = 2,
98110

99111
/// <summary>
100112
/// Enum USERID for value: USER_ID
101113
/// </summary>
102114
[EnumMember(Value = "USER_ID")]
103-
USERID = 2
115+
USERID = 3
104116
}
105117

106118

src/Segment.PublicApi/Model/RegulationListEntryV1.cs

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,41 +96,47 @@ public enum StatusEnum
9696
[JsonConverter(typeof(StringEnumConverter))]
9797
public enum RegulationTypeEnum
9898
{
99+
/// <summary>
100+
/// Enum DELETEARCHIVEONLY for value: DELETE_ARCHIVE_ONLY
101+
/// </summary>
102+
[EnumMember(Value = "DELETE_ARCHIVE_ONLY")]
103+
DELETEARCHIVEONLY = 1,
104+
99105
/// <summary>
100106
/// Enum DELETEINTERNAL for value: DELETE_INTERNAL
101107
/// </summary>
102108
[EnumMember(Value = "DELETE_INTERNAL")]
103-
DELETEINTERNAL = 1,
109+
DELETEINTERNAL = 2,
104110

105111
/// <summary>
106112
/// Enum DELETEONLY for value: DELETE_ONLY
107113
/// </summary>
108114
[EnumMember(Value = "DELETE_ONLY")]
109-
DELETEONLY = 2,
115+
DELETEONLY = 3,
110116

111117
/// <summary>
112118
/// Enum SUPPRESSONLY for value: SUPPRESS_ONLY
113119
/// </summary>
114120
[EnumMember(Value = "SUPPRESS_ONLY")]
115-
SUPPRESSONLY = 3,
121+
SUPPRESSONLY = 4,
116122

117123
/// <summary>
118124
/// Enum SUPPRESSWITHDELETE for value: SUPPRESS_WITH_DELETE
119125
/// </summary>
120126
[EnumMember(Value = "SUPPRESS_WITH_DELETE")]
121-
SUPPRESSWITHDELETE = 4,
127+
SUPPRESSWITHDELETE = 5,
122128

123129
/// <summary>
124130
/// Enum SUPPRESSWITHDELETEINTERNAL for value: SUPPRESS_WITH_DELETE_INTERNAL
125131
/// </summary>
126132
[EnumMember(Value = "SUPPRESS_WITH_DELETE_INTERNAL")]
127-
SUPPRESSWITHDELETEINTERNAL = 5,
133+
SUPPRESSWITHDELETEINTERNAL = 6,
128134

129135
/// <summary>
130136
/// Enum UNSUPPRESS for value: UNSUPPRESS
131137
/// </summary>
132138
[EnumMember(Value = "UNSUPPRESS")]
133-
UNSUPPRESS = 6
139+
UNSUPPRESS = 7
134140
}
135141

136142

0 commit comments

Comments
 (0)