diff --git a/packages/csharp/ArmoniK.Api.Client/Options/GrpcClient.cs b/packages/csharp/ArmoniK.Api.Client/Options/GrpcClient.cs index 0baeea9e6..d7cd7f1e3 100644 --- a/packages/csharp/ArmoniK.Api.Client/Options/GrpcClient.cs +++ b/packages/csharp/ArmoniK.Api.Client/Options/GrpcClient.cs @@ -1,58 +1,58 @@ -// This file is part of the ArmoniK project -// -// Copyright (C) ANEO, 2021-2022. All rights reserved. -// W. Kirschenmann -// J. Gurhem -// D. Dubuc -// L. Ziane Khodja -// F. Lemaitre -// S. Djebbar -// J. Fonseca -// -// Licensed under the Apache License, Version 2.0 (the "License") -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -using ArmoniK.Api.Client.Submitter; - -using JetBrains.Annotations; - -namespace ArmoniK.Api.Client.Options -{ - /// - /// Options for creating a gRPC Client with - /// - [PublicAPI] - public class GrpcClient - { - public const string SettingSection = nameof(GrpcClient); - - /// - /// Endpoint for sending requests - /// - public string? Endpoint { get; set; } - - /// - /// Allow unsafe connections to the endpoint (without SSL), defaults to false - /// - public bool AllowUnsafeConnection { get; set; } - - /// - /// Path to the certificate file in pem format - /// - public string CertPem { get; set; } = ""; - - /// - /// Path to the key file in pem format - /// - public string KeyPem { get; set; } = ""; - } -} +// This file is part of the ArmoniK project +// +// Copyright (C) ANEO, 2021-2022. All rights reserved. +// W. Kirschenmann +// J. Gurhem +// D. Dubuc +// L. Ziane Khodja +// F. Lemaitre +// S. Djebbar +// J. Fonseca +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using ArmoniK.Api.Client.Submitter; + +using JetBrains.Annotations; + +namespace ArmoniK.Api.Client.Options +{ + /// + /// Options for creating a gRPC Client with + /// + [PublicAPI] + public class GrpcClient + { + public const string SettingSection = nameof(GrpcClient); + + /// + /// Endpoint for sending requests + /// + public string? Endpoint { get; set; } + + /// + /// Allow unsafe connections to the endpoint (without SSL), defaults to false + /// + public bool AllowUnsafeConnection { get; set; } + + /// + /// Path to the certificate file in pem format + /// + public string CertPem { get; set; } = ""; + + /// + /// Path to the key file in pem format + /// + public string KeyPem { get; set; } = ""; + } +}