Skip to content

Commit 783aa6d

Browse files
committed
ci: Generate code
1 parent c619fbe commit 783aa6d

42 files changed

Lines changed: 9699 additions & 9862 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

output/csharp/src/Seam/Model/AccessCode.cs

Lines changed: 398 additions & 431 deletions
Large diffs are not rendered by default.

output/csharp/src/Seam/Model/AccessGrant.cs

Lines changed: 186 additions & 191 deletions
Large diffs are not rendered by default.

output/csharp/src/Seam/Model/AccessMethod.cs

Lines changed: 126 additions & 126 deletions
Large diffs are not rendered by default.

output/csharp/src/Seam/Model/AcsAccessGroup.cs

Lines changed: 152 additions & 152 deletions
Large diffs are not rendered by default.

output/csharp/src/Seam/Model/AcsCredential.cs

Lines changed: 129 additions & 129 deletions
Large diffs are not rendered by default.

output/csharp/src/Seam/Model/AcsCredentialPool.cs

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ public class AcsCredentialPool
1515
protected AcsCredentialPool() { }
1616

1717
public AcsCredentialPool(
18-
string? acsCredentialPoolId = default,
19-
string? acsSystemId = default,
20-
string? createdAt = default,
21-
string? displayName = default,
22-
AcsCredentialPool.ExternalTypeEnum? externalType = default,
23-
string? externalTypeDisplayName = default,
24-
string? workspaceId = default
18+
string acsCredentialPoolId = default,
19+
string acsSystemId = default,
20+
string createdAt = default,
21+
string displayName = default,
22+
AcsCredentialPool.ExternalTypeEnum externalType = default,
23+
string externalTypeDisplayName = default,
24+
string workspaceId = default
2525
)
2626
{
2727
AcsCredentialPoolId = acsCredentialPoolId;
@@ -43,30 +43,30 @@ public enum ExternalTypeEnum
4343
HidPartNumber = 1,
4444
}
4545

46-
[DataMember(Name = "acs_credential_pool_id", IsRequired = false, EmitDefaultValue = false)]
47-
public string? AcsCredentialPoolId { get; set; }
46+
[DataMember(Name = "acs_credential_pool_id", IsRequired = true, EmitDefaultValue = false)]
47+
public string AcsCredentialPoolId { get; set; }
4848

49-
[DataMember(Name = "acs_system_id", IsRequired = false, EmitDefaultValue = false)]
50-
public string? AcsSystemId { get; set; }
49+
[DataMember(Name = "acs_system_id", IsRequired = true, EmitDefaultValue = false)]
50+
public string AcsSystemId { get; set; }
5151

52-
[DataMember(Name = "created_at", IsRequired = false, EmitDefaultValue = false)]
53-
public string? CreatedAt { get; set; }
52+
[DataMember(Name = "created_at", IsRequired = true, EmitDefaultValue = false)]
53+
public string CreatedAt { get; set; }
5454

55-
[DataMember(Name = "display_name", IsRequired = false, EmitDefaultValue = false)]
56-
public string? DisplayName { get; set; }
55+
[DataMember(Name = "display_name", IsRequired = true, EmitDefaultValue = false)]
56+
public string DisplayName { get; set; }
5757

58-
[DataMember(Name = "external_type", IsRequired = false, EmitDefaultValue = false)]
59-
public AcsCredentialPool.ExternalTypeEnum? ExternalType { get; set; }
58+
[DataMember(Name = "external_type", IsRequired = true, EmitDefaultValue = false)]
59+
public AcsCredentialPool.ExternalTypeEnum ExternalType { get; set; }
6060

6161
[DataMember(
6262
Name = "external_type_display_name",
63-
IsRequired = false,
63+
IsRequired = true,
6464
EmitDefaultValue = false
6565
)]
66-
public string? ExternalTypeDisplayName { get; set; }
66+
public string ExternalTypeDisplayName { get; set; }
6767

68-
[DataMember(Name = "workspace_id", IsRequired = false, EmitDefaultValue = false)]
69-
public string? WorkspaceId { get; set; }
68+
[DataMember(Name = "workspace_id", IsRequired = true, EmitDefaultValue = false)]
69+
public string WorkspaceId { get; set; }
7070

7171
public override string ToString()
7272
{

output/csharp/src/Seam/Model/AcsCredentialProvisioningAutomation.cs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ public class AcsCredentialProvisioningAutomation
1515
protected AcsCredentialProvisioningAutomation() { }
1616

1717
public AcsCredentialProvisioningAutomation(
18-
string? acsCredentialProvisioningAutomationId = default,
19-
string? createdAt = default,
20-
string? credentialManagerAcsSystemId = default,
21-
string? userIdentityId = default,
22-
string? workspaceId = default
18+
string acsCredentialProvisioningAutomationId = default,
19+
string createdAt = default,
20+
string credentialManagerAcsSystemId = default,
21+
string userIdentityId = default,
22+
string workspaceId = default
2323
)
2424
{
2525
AcsCredentialProvisioningAutomationId = acsCredentialProvisioningAutomationId;
@@ -31,26 +31,26 @@ public AcsCredentialProvisioningAutomation(
3131

3232
[DataMember(
3333
Name = "acs_credential_provisioning_automation_id",
34-
IsRequired = false,
34+
IsRequired = true,
3535
EmitDefaultValue = false
3636
)]
37-
public string? AcsCredentialProvisioningAutomationId { get; set; }
37+
public string AcsCredentialProvisioningAutomationId { get; set; }
3838

39-
[DataMember(Name = "created_at", IsRequired = false, EmitDefaultValue = false)]
40-
public string? CreatedAt { get; set; }
39+
[DataMember(Name = "created_at", IsRequired = true, EmitDefaultValue = false)]
40+
public string CreatedAt { get; set; }
4141

4242
[DataMember(
4343
Name = "credential_manager_acs_system_id",
44-
IsRequired = false,
44+
IsRequired = true,
4545
EmitDefaultValue = false
4646
)]
47-
public string? CredentialManagerAcsSystemId { get; set; }
47+
public string CredentialManagerAcsSystemId { get; set; }
4848

49-
[DataMember(Name = "user_identity_id", IsRequired = false, EmitDefaultValue = false)]
50-
public string? UserIdentityId { get; set; }
49+
[DataMember(Name = "user_identity_id", IsRequired = true, EmitDefaultValue = false)]
50+
public string UserIdentityId { get; set; }
5151

52-
[DataMember(Name = "workspace_id", IsRequired = false, EmitDefaultValue = false)]
53-
public string? WorkspaceId { get; set; }
52+
[DataMember(Name = "workspace_id", IsRequired = true, EmitDefaultValue = false)]
53+
public string WorkspaceId { get; set; }
5454

5555
public override string ToString()
5656
{

output/csharp/src/Seam/Model/AcsEncoder.cs

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ public class AcsEncoder
1515
protected AcsEncoder() { }
1616

1717
public AcsEncoder(
18-
string? acsEncoderId = default,
19-
string? acsSystemId = default,
20-
string? connectedAccountId = default,
21-
string? createdAt = default,
22-
string? displayName = default,
23-
List<AcsEncoderErrors>? errors = default,
24-
string? workspaceId = default
18+
string acsEncoderId = default,
19+
string acsSystemId = default,
20+
string connectedAccountId = default,
21+
string createdAt = default,
22+
string displayName = default,
23+
List<AcsEncoderErrors> errors = default,
24+
string workspaceId = default
2525
)
2626
{
2727
AcsEncoderId = acsEncoderId;
@@ -33,26 +33,26 @@ public AcsEncoder(
3333
WorkspaceId = workspaceId;
3434
}
3535

36-
[DataMember(Name = "acs_encoder_id", IsRequired = false, EmitDefaultValue = false)]
37-
public string? AcsEncoderId { get; set; }
36+
[DataMember(Name = "acs_encoder_id", IsRequired = true, EmitDefaultValue = false)]
37+
public string AcsEncoderId { get; set; }
3838

39-
[DataMember(Name = "acs_system_id", IsRequired = false, EmitDefaultValue = false)]
40-
public string? AcsSystemId { get; set; }
39+
[DataMember(Name = "acs_system_id", IsRequired = true, EmitDefaultValue = false)]
40+
public string AcsSystemId { get; set; }
4141

42-
[DataMember(Name = "connected_account_id", IsRequired = false, EmitDefaultValue = false)]
43-
public string? ConnectedAccountId { get; set; }
42+
[DataMember(Name = "connected_account_id", IsRequired = true, EmitDefaultValue = false)]
43+
public string ConnectedAccountId { get; set; }
4444

45-
[DataMember(Name = "created_at", IsRequired = false, EmitDefaultValue = false)]
46-
public string? CreatedAt { get; set; }
45+
[DataMember(Name = "created_at", IsRequired = true, EmitDefaultValue = false)]
46+
public string CreatedAt { get; set; }
4747

48-
[DataMember(Name = "display_name", IsRequired = false, EmitDefaultValue = false)]
49-
public string? DisplayName { get; set; }
48+
[DataMember(Name = "display_name", IsRequired = true, EmitDefaultValue = false)]
49+
public string DisplayName { get; set; }
5050

51-
[DataMember(Name = "errors", IsRequired = false, EmitDefaultValue = false)]
52-
public List<AcsEncoderErrors>? Errors { get; set; }
51+
[DataMember(Name = "errors", IsRequired = true, EmitDefaultValue = false)]
52+
public List<AcsEncoderErrors> Errors { get; set; }
5353

54-
[DataMember(Name = "workspace_id", IsRequired = false, EmitDefaultValue = false)]
55-
public string? WorkspaceId { get; set; }
54+
[DataMember(Name = "workspace_id", IsRequired = true, EmitDefaultValue = false)]
55+
public string WorkspaceId { get; set; }
5656

5757
public override string ToString()
5858
{
@@ -81,9 +81,9 @@ public class AcsEncoderErrors
8181
protected AcsEncoderErrors() { }
8282

8383
public AcsEncoderErrors(
84-
string? createdAt = default,
85-
AcsEncoderErrors.ErrorCodeEnum? errorCode = default,
86-
string? message = default
84+
string createdAt = default,
85+
AcsEncoderErrors.ErrorCodeEnum errorCode = default,
86+
string message = default
8787
)
8888
{
8989
CreatedAt = createdAt;
@@ -101,14 +101,14 @@ public enum ErrorCodeEnum
101101
AcsEncoderRemoved = 1,
102102
}
103103

104-
[DataMember(Name = "created_at", IsRequired = false, EmitDefaultValue = false)]
105-
public string? CreatedAt { get; set; }
104+
[DataMember(Name = "created_at", IsRequired = true, EmitDefaultValue = false)]
105+
public string CreatedAt { get; set; }
106106

107-
[DataMember(Name = "error_code", IsRequired = false, EmitDefaultValue = false)]
108-
public AcsEncoderErrors.ErrorCodeEnum? ErrorCode { get; set; }
107+
[DataMember(Name = "error_code", IsRequired = true, EmitDefaultValue = false)]
108+
public AcsEncoderErrors.ErrorCodeEnum ErrorCode { get; set; }
109109

110-
[DataMember(Name = "message", IsRequired = false, EmitDefaultValue = false)]
111-
public string? Message { get; set; }
110+
[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = false)]
111+
public string Message { get; set; }
112112

113113
public override string ToString()
114114
{

0 commit comments

Comments
 (0)