diff --git a/sdk/dotNet/SecretsManager/RecordData.cs b/sdk/dotNet/SecretsManager/RecordData.cs index 8d347843..f2a86975 100644 --- a/sdk/dotNet/SecretsManager/RecordData.cs +++ b/sdk/dotNet/SecretsManager/RecordData.cs @@ -510,13 +510,12 @@ public class AppFillers : KeeperField public class PamRbiConnection { public string protocol { get; set; } - public bool? enabled { get; set; } - public List user_records { get; set; } - [JsonPropertyName("allow-url-manipulation")] public bool? allowUrlManipulation { get; set; } - [JsonPropertyName("allowed-url-patterns")] public string allowedUrlPatterns { get; set; } - [JsonPropertyName("allowed-resource-url-patterns")] public string allowedResourceUrlPatterns { get; set; } - [JsonPropertyName("http-credentials-uid")] public string httpCredentialsUid { get; set; } - [JsonPropertyName("autofill-configuration")] public string autofillConfiguration { get; set; } + public List userRecords { get; set; } + public bool? allowUrlManipulation { get; set; } + public string allowedUrlPatterns { get; set; } + public string allowedResourceUrlPatterns { get; set; } + public string httpCredentialsUid { get; set; } + public string autofillConfiguration { get; set; } } public class PamRemoteBrowserSetting @@ -534,25 +533,21 @@ public class PamRemoteBrowserSettings : KeeperField public class PamSettingsConnection { public string protocol { get; set; } - public bool? enabled { get; set; } - public List user_records { get; set; } + public List userRecords { get; set; } public string security { get; set; } - [JsonPropertyName("ignore-cert")] public bool? ignoreCert { get; set; } - [JsonPropertyName("resize-method")] public string resizeMethod { get; set; } - [JsonPropertyName("color-scheme")] public string colorScheme { get; set; } + public bool? ignoreCert { get; set; } + public string resizeMethod { get; set; } + public string colorScheme { get; set; } } public class PamSettingsPortForward { - public bool? enabled { get; set; } public bool? reusePort { get; set; } public string port { get; set; } } public class PamSetting { - public string configUid { get; set; } - public string adminCredentialUid { get; set; } public List portForward { get; set; } public List connection { get; set; } }