repo_name
stringlengths
1
52
repo_creator
stringclasses
6 values
programming_language
stringclasses
4 values
code
stringlengths
0
9.68M
num_lines
int64
1
234k
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license"...
118
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license"...
437
aws-sdk-net
aws
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfigur...
20
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.Extensions.Configuration; using Xunit; using Amazon; using Amazon.S3; using Amazon.Runtime; namespace NETCore.SetupTests { public class ConfigurationTests { public ConfigurationTests()...
252
aws-sdk-net
aws
C#
using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Xunit; using Amazon; using Amazon.S3; using Amazon.Extensions.NETCore.Setup; using Moq; using System; namespace DependencyInjectionTests { public class DependencyInjectionTests { [Fact] public v...
168
aws-sdk-net
aws
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfigur...
20
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; namespace ServiceClientGenerator { /// <summary> /// Parses the command line into argument settings controlling the /// sdk code generator. /// </summary> internal class CommandArgumen...
302
aws-sdk-net
aws
C#
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; namespace ServiceClientGenerator { public class Program { static int Main(string[] args) { var commandArguments = CommandArgument...
133
aws-sdk-net
aws
C#
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyDescription("")] [assembly: AssemblyTrademark(...
18
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Collections.Generic; namespace ServiceClientGenerator { /// <summary> /// Algorithms for validating request and response integrity for supported operations. /// These are the algorithms supported by the .NET SDK, and the superset of the modeled /// resp...
97
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Xml; using ServiceClientGenerator.Generators.CodeAnalysis; namespace ServiceClientGenerator { public class CodeAnalysisProjectCreator { public void Execute(string codeAnalysisRoot, Se...
204
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using ServiceClientGenerator.Generators.CodeAnalysis; namespace ServiceClientGenerator { public class CodeAnalysisSolutionCreator { public GeneratorOptions Options { ...
105
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { /// <summary> /// Wrapper around string builder to help emit properly indented code /// </summary> public class CodeBuilder { StringBuild...
124
aws-sdk-net
aws
C#
using ServiceClientGenerator.Generators.NuGet; using ServiceClientGenerator.Generators.SourceFiles; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { public class CoreAssemblyInfoUpdater { ...
66
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { /// <summary> /// Used to compile json customizations /// </summary> public static class CustomizationCompiler ...
92
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; namespace ServiceClientGenerator { #region Simplifications #region SimpleConstructorsModel /// <summary> /// A model that represents the simple constructors of a stru...
1,594
aws-sdk-net
aws
C#
namespace ServiceClientGenerator { public class EndpointConstant { public string Name { get; set; } public string RegionCode { get; set; } public string ConvertedRegionCode { get; set; } public string RegionName { get; set; } } }
11
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { /// <summary> /// Represents a code sample for an operation. /// </summary> public class Example : BaseModel { public...
375
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.Linq; using Json.LitJson; namespace ServiceClientGenerator { #region ExceptionShape /// <summary> /// The model that represents exceptions for the service /// </summary> public class ExceptionShape : Shape { /// <summary> ...
111
aws-sdk-net
aws
C#
using System.IO; namespace ServiceClientGenerator { public interface IFileReader { /// <inheritdoc cref="File.ReadAllText(string)"/> string ReadAllText(string path); } public class FileReader : IFileReader { /// <inheritdoc cref="File.ReadAllText(string)"/> publi...
19
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using Json.LitJson; using ServiceClientGenerator.DefaultConfiguration; using ServiceClientGenerator.Endpoints; using ServiceClientGenerator.Endpoints.Tests; namespace ServiceClientGenerator { /// <summary> /// Loads the gene...
592
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using ServiceClientGenerator.Generators; using ServiceClientGenerator.Generators.Examples; using ServiceClientGenerator.Generators.Marshallers; using ServiceClientGenerator.Generators.NuGet; using ServiceClientGenerator.Generators.So...
1,564
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { /// <summary> /// The set of data protocols used by AWS services /// </summary> public enum ServiceType { Json, Query, Rest_Xml, Rest_Json }; //...
45
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Json.LitJson; namespace ServiceClientGenerator { public static class GeneratorHelpers { public static string DetermineSigner(string signatureVersion, string serviceBasename) ...
468
aws-sdk-net
aws
C#
using System.Collections.Generic; using System.IO; namespace ServiceClientGenerator { /// <summary> /// Command line options for the AWS SDK code generator. /// </summary> public class GeneratorOptions { /// <summary> /// If set, causes the generator to emit additional diagnostic ...
115
aws-sdk-net
aws
C#
namespace ServiceClientGenerator { public enum H2SupportDegree { None, Optional, Required, EventStream } }
10
aws-sdk-net
aws
C#
using System.Reflection; using Json.LitJson; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Globalization; using ServiceClientGenerator.Endpoints; namespace ServiceClientGenerator { /// <summary> /// Members are properties are...
1,121
aws-sdk-net
aws
C#
using Json.LitJson; using ServiceClientGenerator.Endpoints; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { /// <summary> /// An object that represents the operations f...
969
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { public enum OperationAuthType { None, V4, V4UnsignedBody, Bearer } public static class OperationAuthTypeParser { private sta...
36
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { public class OperationPaginatorConfig { private readonly JsonData data; private readonly Operation operation; //...
366
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { public class OperationPaginatorConfigOption { /// <summary> /// String name of the option /// </summary> public string Name {...
126
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { /// <summary> /// Describes a Project file to be generated /// </summary> public class Project { /// <summary> ...
136
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Json.LitJson; namespace ServiceClientGenerator { /// <summary> /// Represents the metadata needed to generate a platform-specific project file /// for a service (eg...
164
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Xml; using System.Xml.XPath; using ServiceClientGenerator.Generators.ProjectFiles; namespace ServiceClientGenerator { /// <summary> /// Class used to emit the set of per-platform project files for a service. ...
505
aws-sdk-net
aws
C#
using ServiceClientGenerator.Endpoints; using ServiceClientGenerator.Endpoints.Tests; using System; using System.Collections.Generic; using System.IO; using System.Text; namespace ServiceClientGenerator { /// <summary> /// Represents the information for generating the code for a service /// </summary> ...
393
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Json.LitJson; using System.Globalization; using ServiceClientGenerator.Endpoints; namespace ServiceClientGenerator { /// <summary> /// The ser...
585
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { /// <summary> /// Shapes are used to model structures and member types. If they are a structure the shape /// defines what members i...
859
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { #region BaseModel /// <summary> /// Used to outline the basics of any model for the service /// They have a service model, json ...
245
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text.RegularExpressions; using ServiceClientGenerator.Generators.ProjectFiles; using System.Xml; namespace ServiceClientGenerator { public class SolutionFileCreator { public GeneratorOptions Options { ...
866
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator { class UnitTestProjectFileCreator { private readonly string TemplateName = "VS2017ProjectFile"; private GeneratorOptions _op...
258
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Xml; namespace ServiceClientGenerator { public static class Utils { public static string GetVersion(string fileVersionText) { var fileVersion = new Version(fileVers...
176
aws-sdk-net
aws
C#
using System; using System.IO; using System.Linq; namespace ServiceClientGenerator.DefaultConfiguration { /// <inheritdoc cref="LoadDefaultConfiguration"/> public interface IDefaultConfigurationController { /// <summary> /// Fully loads and populates <see cref="DefaultConfigurationModel"...
84
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.Diagnostics; namespace ServiceClientGenerator.DefaultConfiguration { /// <summary> /// Model representing the default configuration modes as built /// from the sdk-default-configurations.json file. /// </summary> public class DefaultC...
133
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using Json.LitJson; namespace ServiceClientGenerator.DefaultConfiguration { public interface IDefaultConfigurationParser { /// <summary> /// Parses the passed <paramref name="json"/> to populate a ///...
177
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using Json.LitJson; namespace ServiceClientGenerator.DefaultConfiguration { /// <summary> /// Represents the sdk-default-configuration.json file so that it be serialized with /// <see cref="JsonMapper.ToObject{T...
182
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Linq; namespace ServiceClientGenerator.Endpoints { /// <summary> /// Object model for Function argument /// </summary> public class Argument { /// <summary> /// Builds typed function argument from json data /// </summary> ...
65
aws-sdk-net
aws
C#
 namespace ServiceClientGenerator.Endpoints { /// <summary> /// Object model for ClientContextParameter /// ClientContextParameter is used to extend ClientConfig with new properties /// </summary> public class ClientContextParameter { public string name { get; set; } public st...
16
aws-sdk-net
aws
C#
using System; using System.Linq; using System.Text; namespace ServiceClientGenerator.Endpoints { using Json.LitJson; using ServiceClientGenerator; using ServiceClientGenerator.Endpoints.Partitions; using System.Collections.Generic; using System.Data; /// <summary> /// Translates Endpoin...
261
aws-sdk-net
aws
C#
using Json.LitJson; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceClientGenerator.Endpoints { /// <summary> /// Object model for Condition. /// </summary> public class Condition { /// <summary> ...
47
aws-sdk-net
aws
C#
namespace ServiceClientGenerator.Endpoints { /// <summary> /// Object model for ContextParameter /// ContextParameter is used to map operation parameter value to ruleset parameter /// </summary> public class ContextParameter { public string name { get; set; } } }
12
aws-sdk-net
aws
C#
namespace ServiceClientGenerator.Endpoints { /// <summary> /// Object model for Endpoints Parameter's deprecated attribute /// Used to mark parameter as [Obsolete] /// </summary> public class Deprecated { /// <summary> /// Deprecation message /// </summary> pub...
19
aws-sdk-net
aws
C#
using Json.LitJson; using System.Collections.Generic; namespace ServiceClientGenerator.Endpoints { /// <summary> /// Object model for Endpoint data /// </summary> public class EndpointData { /// <summary> /// Endpoint URL /// </summary> public JsonData url { get; ...
25
aws-sdk-net
aws
C#
using Json.LitJson; using System.Collections.Generic; namespace ServiceClientGenerator.Endpoints { /// <summary> /// Object model for Function /// </summary> public class Function { public Function(string name, JsonData arguments, string assign = null) { Name = name; ...
31
aws-sdk-net
aws
C#
using Json.LitJson; namespace ServiceClientGenerator.Endpoints { /// <summary> /// Object model for Endpoints Parameter /// </summary> public class Parameter { /// <summary> /// Parameter type /// </summary> public string type { get; set; } /// <summary> ...
50
aws-sdk-net
aws
C#
using System; namespace ServiceClientGenerator.Endpoints { /// <summary> /// Rule Types /// </summary> public enum RuleType { /// <summary> /// Rule resolves to error /// </summary> Error, /// <summary> /// Rule resolves to endpoint /// </s...
79
aws-sdk-net
aws
C#
using System.Collections.Generic; namespace ServiceClientGenerator.Endpoints { /// <summary> /// Object model for Endpoints RuleSet /// </summary> public class RuleSet { /// <summary> /// RuleSet version /// </summary> public string version { get; set; } /...
28
aws-sdk-net
aws
C#
using Json.LitJson; namespace ServiceClientGenerator.Endpoints { /// <summary> /// Object model for StaticContextParameter /// StaticContextParameter used to map static value from service operation to ruleset parameter /// </summary> public class StaticContextParameter { /// <summary...
27
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license"...
30
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license"...
29
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license"...
28
aws-sdk-net
aws
C#
namespace ServiceClientGenerator.Endpoints.Tests { /// <summary> /// Object model for AuthSchema. /// </summary> public class AuthSchema { public string signingName { get; set; } public bool disableDoubleEncoding { get; set; } public string name { get; set; } publi...
14
aws-sdk-net
aws
C#
using Json.LitJson; using System.Collections.Generic; namespace ServiceClientGenerator.Endpoints.Tests { /// <summary> /// Object model for Endpoint. /// </summary> public class Endpoint { public string url { get; set; } public EndpointProperties properties { get; set; } ...
16
aws-sdk-net
aws
C#
namespace ServiceClientGenerator.Endpoints.Tests { /// <summary> /// Object model for EndpointProperties. /// </summary> public class EndpointProperties { public AuthSchema[] authSchemes { get; set; } } }
10
aws-sdk-net
aws
C#
namespace ServiceClientGenerator.Endpoints.Tests { /// <summary> /// Object model for EndpointTests. /// </summary> public class EndpointTests { public string service { get; set; } public string version { get; set; } public Test[] testCases { get; set; } } }
13
aws-sdk-net
aws
C#
using Json.LitJson; namespace ServiceClientGenerator.Endpoints.Tests { /// <summary> /// Object model for Expectation. /// </summary> public class Expectation { public Endpoint endpoint { get; set; } public string error { get; set; } } }
13
aws-sdk-net
aws
C#
using Json.LitJson; using System.Collections.Generic; namespace ServiceClientGenerator.Endpoints.Tests { /// <summary> /// Object model for Test. /// </summary> public class Test { public string documentation { get; set; } public Dictionary<string, JsonData> @params { get; set; }...
18
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
2,269
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
97
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
114
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
184
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
69
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
379
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
404
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
217
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
155
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
207
aws-sdk-net
aws
C#
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace ServiceClientGenerator.Generators.Endpoints { public partial class EndpointProviderTests { // all non-alphanumeric and undescores private static readonly Regex regex = new Regex...
46
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
249
aws-sdk-net
aws
C#
using System.Text; using System.Linq; using ServiceClientGenerator.Endpoints; using System; using System.Collections.Generic; namespace ServiceClientGenerator.Generators.Endpoints { public partial class EndpointResolver { private HashSet<string> dontInjectHostPrefixForServices = new HashSet<string>(...
98
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
445
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
186
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
195
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
324
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
247
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
1,220
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // -----...
377
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // -----...
235
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // -----...
1,888
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
142
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 16.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // -----...
1,559
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // -----...
393
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 16.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
223
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
461
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 16.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // -----...
508
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // -----...
1,202
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // -----...
190
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // --...
220
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // -----...
1,291
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // -----...
511
aws-sdk-net
aws
C#
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version: 17.0.0.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // -----...
218