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-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// Captures some basic information about the context the deployment tool is being running in. /// Originally, this is to support <see ...
22
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// This interface outlines the framework for <see cref="OptionSettingItem"/> validators. /// Validators...
25
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// This interface outlines the framework for recipe validators. /// Validators such as <see cref="Farga...
18
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using Newtonsoft.Json; using Newtonsoft.Json.Converters; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// This class is used to store the OptionSettingItem validator type and its co...
20
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 namespace AWS.Deploy.Common.Recipes.Validation { public enum OptionSettingItemValidatorList { /// <summary> /// Must be paired with <see cref="RangeValidator"/> /// </summary> ...
78
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using Newtonsoft.Json; using Newtonsoft.Json.Converters; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// This class is used to store the Recipe validator type and its corresponding...
20
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 namespace AWS.Deploy.Common.Recipes.Validation { public enum RecipeValidatorList { /// <summary> /// Must be paired with <see cref="FargateTaskCpuMemorySizeValidator"/> /// </s...
19
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; namespace AWS.Deploy.Common.Recipes.Validation { public class ValidationResult { public bool IsValid { get; set; } public string? ValidationFailedMessage {...
41
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Linq; using Microsoft.Extensions.DependencyInjection; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Newtonsoft.Json.Serialization; namesp...
143
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; namespace AWS.Deploy.Common.Recipes.Validation { public enum ComparisonValidatorOperation { GreaterThan } /// <summary> /// The validator is typical...
57
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; using AWS.Deploy.Common.IO; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// Validator that validates if a given directory exists /// </summary> ...
40
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Threading.Tasks; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// Validator for Docker build-time variables, passed via --build-arg /// </summary> p...
46
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Threading.Tasks; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// Validator for additional arguments to 'dotnet publish' /// </summary> public class...
47
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Linq; using System.Threading.Tasks; using Amazon.CloudControlApi.Model; using AWS.Deploy.Common.Data; using Amazon.ElasticBeanstalk; namespace AWS.Deploy.Common.Recipes.Validation { public cla...
64
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; using AWS.Deploy.Common.IO; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// Validates that a recipe or deployment bundle option with a FilePath typehint...
57
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Threading.Tasks; using Amazon.EC2; using Amazon.EC2.Model; using AWS.Deploy.Common.Data; using AWS.Deploy.Constants; namespace AWS.Deploy.Common.Recipes.Validation { public class...
85
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// The validator is typically used with OptionSettingItems which have a numeric type. /// The minimum...
48
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using System.Text.RegularExpressions; using System.Threading.Tasks; using AWS.Deploy.Common.Extensions; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> ...
59
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using AWS.Deploy.Common.Extensions; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// The validator...
39
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Linq; using System.Collections.Generic; using System.Threading.Tasks; using AWS.Deploy.Common.Data; using AWS.Deploy.Common.Extensions; namespace AWS.Deploy.Common.Recipes.Validation...
129
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// Validates that an OptionSettingItem o...
38
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Linq; using System.Collections.Generic; using System.Threading.Tasks; using Amazon.EC2; using Amazon.EC2.Model; using AWS.Deploy.Common.Data; using AWS.Deploy.Common.Extensions; name...
62
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// Checks if a URI is structurally valid...
45
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Linq; using System.Threading.Tasks; using AWS.Deploy.Common.Data; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// Validates that a VPC exists in the account /// </su...
79
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using System.Threading.Tasks; using AWS.Deploy.Common.Data; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// Validates that the selected VPC must hav...
43
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.IO; using System.Threading.Tasks; using AWS.Deploy.Common.IO; using AWS.Deploy.Common.Utilities; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// This validates that the ...
59
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace AWS.Deploy.Common.Recipes.Validation { /// <summary> /// Enforces Fargate cpu and memory con...
112
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using AWS.Deploy.Common.Recipes; namespace AWS.Deploy.Common.TypeHintData { /// <summary> /// Holds additional data for <see cref="OptionSettingTypeHint.DynamoDBTableName"/> processing. /// </sum...
24
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 namespace AWS.Deploy.Common.TypeHintData { /// <summary> /// Additional typehint data for file options /// </summary> public class FilePathTypeHintData { /// <summary> /// Co...
43
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using AWS.Deploy.Common.Recipes; namespace AWS.Deploy.Common.TypeHintData { /// <summary> /// Holds additional data for <see cref="OptionSettingTypeHint.IAMRole"/> processing. /// </summary> ...
24
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using AWS.Deploy.Common.Recipes; namespace AWS.Deploy.Common.TypeHintData { /// <summary> /// Holds additional data for <see cref="OptionSettingTypeHint.S3BucketName"/> processing. /// </summary>...
24
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using AWS.Deploy.Common.Recipes; namespace AWS.Deploy.Common.TypeHintData { /// <summary> /// Holds additional data for <see cref="OptionSettingTypeHint.SNSTopicArn"/> processing. /// </summary> ...
24
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using AWS.Deploy.Common.Recipes; namespace AWS.Deploy.Common.TypeHintData { /// <summary> /// Holds additional data for <see cref="OptionSettingTypeHint.SQSQueueUrl"/> processing. /// </summary> ...
24
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; namespace AWS.Deploy.Common.TypeHintData { /// <summary> /// Represents a single AWS resource, generally used when selecting from /// a list of existing resources ...
38
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 namespace AWS.Deploy.Common.TypeHintData { /// <summary> /// Represents the column for a list/grid of <see cref="TypeHintResource"/> rows /// </summary> public class TypeHintResourceColumn {...
22
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; namespace AWS.Deploy.Common.TypeHintData { /// <summary> /// Represents a list or table of existing AWS resources to allow selecting from /// a list of existing re...
27
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.IO; using AWS.Deploy.Common.IO; using AWS.Deploy.Common.Recipes; namespace AWS.Deploy.Common.Utilities { /// <summary> /// Utility methods for working with a recommendation's Docker confi...
100
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.IO; using System.Linq; namespace AWS.Deploy.Common.Utilities { public class PathUtilities { public static bool IsPathValid(string path) { path = path.Trim(); ...
31
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.IO; namespace AWS.Deploy.Constants { internal static class CDK { /// <summary> /// Default version of CDK CLI /// </summary> public static rea...
22
aws-dotnet-deploy
aws
C#
using System; using System.Collections.Generic; using System.Text; namespace AWS.Deploy.Constants { internal static class CLI { // Represents the default STS AWS region that is used for the purposes of // retrieving the caller identity and determining if a user is in an opt-in region. p...
28
aws-dotnet-deploy
aws
C#
using System; using System.Collections.Generic; using System.Text; namespace AWS.Deploy.Constants { internal static class CloudFormationIdentifier { /// <summary> /// The CDK context parameter name used to pass in the location of the AWS .NET deployment tool's settings file. /// </summa...
46
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 namespace AWS.Deploy.Constants { internal class Docker { /// <summary> /// Name of the default Dockerfile that the deployment tool attempts to detect in the project directory ///...
39
aws-dotnet-deploy
aws
C#
using System; using System.Collections.Generic; using System.Text; namespace AWS.Deploy.Constants { internal static class EC2 { public const string FILTER_PLATFORM_WINDOWS = "windows"; public const string FILTER_PLATFORM_LINUX = "linux"; public const string FILTER_ARCHITECTURE_X86_64 =...
16
aws-dotnet-deploy
aws
C#
using System; using System.Collections.Generic; using System.Text; namespace AWS.Deploy.Constants { internal static class ElasticBeanstalk { public const string EnhancedHealthReportingOptionId = "EnhancedHealthReporting"; public const string EnhancedHealthReportingOptionNameSpace = "aws:elastic...
62
aws-dotnet-deploy
aws
C#
using System; using System.Collections.Generic; using System.Text; namespace AWS.Deploy.Constants { internal static class RecipeIdentifier { // Recipe IDs public const string EXISTING_BEANSTALK_ENVIRONMENT_RECIPE_ID = "AspNetAppExistingBeanstalkEnvironment"; public const string EXISTING...
43
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Linq; using System.Threading.Tasks; using AWS.Deploy.DocGenerator.Generators; using Microsoft.Extensions.DependencyInjection; namespace AWS.Deploy.DocGenerator { public class App...
35
aws-dotnet-deploy
aws
C#
using System; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using AWS.Deploy.CLI.Extensions; using AWS.Deploy.DocGenerator.Utilities; using AWS.Deploy.CLI; using System.Threading; using AWS.Deploy.ServerMode.Client; using AWS.Deploy.CLI.Commands; using AWS.Deploy.ServerMode.Client.Utilit...
54
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using AWS.Deploy.Common.IO; using AWS.Deploy.DocGenerator.Utilities; using AWS.Deploy.ServerMode.Client; na...
75
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; namespace AWS.Deploy.DocGenerator.Generators { /// <summary> /// Interface for documentation generators such as <see cref="DeploymentSettingsFileGenerator"/> /// </sum...
19
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using Microsoft.Extensions.DependencyInjection; using AWS.Deploy.DocGenerator.Generators; using System.IO; namespace AWS.Deploy.DocGenerator.Utilities { public static class DocGeneratorExtens...
50
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.IO; using System.Linq; using AWS.Deploy.Common; using AWS.Deploy.Common.IO; using AWS.Deploy.Common.Recipes; using AWS.Deploy.Common.Utilities; using...
202
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace AWS.Deploy.DockerEngine { /// <summary> /// Encapsulates a DockerFile object /// </summary> public ...
89
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using AWS.Deploy.Common; namespace AWS.Deploy.DockerEngine { public class DockerFileTemplateException : DockerEngineExceptionBase { public DockerFileTemplateException(DeployToolEr...
34
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; namespace AWS.Deploy.DockerEngine { public class ImageDefinition { public string SdkType { get; set; } public List<ImageMapping> ImageMapping { get; se...
44
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.IO; using System.Reflection; using AWS.Deploy.Common; using AWS.Deploy.Common.Extensions; namespace AWS.Deploy.DockerEngine { public class ProjectUtilities { private const string D...
47
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Runtime.InteropServices; using System.Runtime.CompilerServices; // In SDK-style projects such as this one, several assembly attributes that were historically // defined in this file are now automa...
23
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using System.IO; using AWS.Deploy.Common; using AWS.Deploy.Common.IO; using AWS.Deploy.Common.Recipes; using AWS.Deploy.Recipes.CDK.Common; using Newtonsoft.Json; namespace AW...
67
aws-dotnet-deploy
aws
C#
using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using Amazon.CloudFormation; using AWS.Deploy.Common; using AWS.Deploy.Common.Data; using AWS.Deploy.Common.Extensions; using AWS.Deploy.Common.IO; using AW...
312
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Amazon.ECR.Model; using AWS.Deploy.Common; using AWS.Deploy.Common.Data...
268
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Common.IO; using AWS.Deploy.Common....
172
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Threading.Tasks; using AWS.Deploy.Common.Extensions; using AWS.Deploy.Common.IO; using AWS.Deploy.Orchestration.U...
79
aws-dotnet-deploy
aws
C#
using System; using AWS.Deploy.Common; using AWS.Deploy.Orchestration.DeploymentCommands; namespace AWS.Deploy.Orchestration { /// <summary> /// Exception is thrown if Microsoft Templating Engine is unable to generate a template /// </summary> public class TemplateGenerationFailedException : DeployToo...
272
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 namespace AWS.Deploy.Orchestration { public interface IOrchestratorInteractiveService { void LogSectionStart(string sectionName, string? description); void LogErrorMessage(string? messa...
17
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Common.Extensions; using AWS.Deploy.Common.IO; using A...
496
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Common.Data; using AWS.Deploy.Common.Extensions; using...
368
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; using Amazon.Runtime; using AWS.Deploy.Common; using AWS.Deploy.Common.Recipes.Validation; namespace AWS.Deploy.Orchestration { /// <summary> /// The Orchestrator session ...
41
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Common.DeploymentManifest; using AWS.Deploy.Common.I...
336
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using AWS.Deploy.Common; namespace AWS.Deploy.Orchestration { /// <summary> /// This enum controls which settings are persisted when <see cref="DeploymentSettingsHandler.SaveSettings(SaveSettingsConfig...
37
aws-dotnet-deploy
aws
C#
using System; namespace AWS.Deploy.Orchestration { public class SystemCapabilities { public Version? NodeJsVersion { get; set; } public DockerInfo DockerInfo { get; set; } public SystemCapabilities( Version? nodeJsVersion, DockerInfo dockerInfo) { ...
54
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Runtime.InteropServices; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Common.Recipes; using AWS.Deploy.Orchestration.Utili...
132
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Reflection; using System.Threading.Tasks; using AWS.Deploy....
122
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Linq; using System.Text; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Common.IO; using AWS.Deploy.Orchestration.Utilities; namespace AWS.Deploy.Orchestrati...
104
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Diagnostics; using System.IO; using System.Threading; using System.Threading.Tasks; using AWS.Deploy.Common.Extensions; using AWS.Deploy.Orchestration.Utilities; namespace AWS.Deploy...
75
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Xml.Linq; namespace AWS.Deploy.Orchestration.CDK { /// <summary> /// Detects t...
95
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.IO; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Common.IO; using AWS.Deploy.Orchestration.Utilities; namespace AWS.Deploy.Orchestration.CDK { /// <sum...
104
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Reflection; namespace AWS.Deploy.Orchestration.CDK { /// <summary> /// Generates package.json file from the given template. /// </summar...
54
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 namespace AWS.Deploy.Orchestration.CDK { /// <summary> /// Wrapper to return result for methods that follows TryGet pattern. /// <para> /// Especially handy for async methods that don't support ...
36
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Amazon; using Amazon.AppRunner.Model; using Amazon.CloudControlApi; usi...
978
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Orchestration.DisplayedResources; namespace AWS.Deploy.Orchestration.D...
84
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Common.Recipes; using AWS.Deploy.Orchestration.Displ...
83
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Text; using AWS.Deploy.Common; using AWS.Deploy.Common.Recipes; namespace AWS.Deploy.Orchestration.DeploymentCommands { public static class Depl...
40
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Orchestration.DisplayedResources; namespace AWS.Deploy.Orchestration.D...
41
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Orchestration.DisplayedResources; namespace AWS.Deploy.Orchestration.D...
19
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using System.Threading.Tasks; using AWS.Deploy.Common.Data; using AWS.Deploy.Orchestration.Data; namespace AWS.Deploy.Orchestration.DisplayedResources { public class AppRu...
30
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using AWS.Deploy.Orchestration.Data; using Amazon.CloudFront.Model; using AWS.Deploy.Common.Data; namespace AWS...
36
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using System.Threading.Tasks; using AWS.Deploy.Common.Data; using AWS.Deploy.Orchestration.Data; namespace AWS.Deploy.Orchestration.DisplayedResources { public class Cloud...
31
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using System.Threading.Tasks; using AWS.Deploy.Common.Data; using AWS.Deploy.Orchestration.Data; namespace AWS.Deploy.Orchestration.DisplayedResources { /// <summary> ...
62
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; namespace AWS.Deploy.Orchestration.DisplayedResources { public class DisplayedResourceItem { /// <summary> /// The Physical ID that represents a CloudF...
39
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using AWS.Deploy.Common; using System.Threading.Tasks; using AWS.Deploy.Orchestration.Data; using System.Linq; using AWS.Deploy.Orchestration.DeploymentCommands; using AWS.Depl...
43
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using System.Threading.Tasks; using AWS.Deploy.Common.Data; using AWS.Deploy.Orchestration.Data; namespace AWS.Deploy.Orchestration.DisplayedResources { public class Elast...
29
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Amazon.ElasticLoadBalancingV2; using AWS.Deploy.Common.Data; using AWS.Deploy.Orchestration.Data; namespace AWS.Deploy.O...
38
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using AWS.Deploy.Common.Data; using AWS.Deploy.Orchestration.Data; namespace AWS.Deploy.Orchestration.DisplayedR...
52
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; namespace AWS.Deploy.Orchestration.LocalUserSettings { public class LastDeployedStack { public string AWSAccountId { get; set; } public string AWSRegi...
47
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Collections.Generic; namespace AWS.Deploy.Orchestration.LocalUserSettings { public class LocalUserSettings { public List<LastDeployedStack> LastDeployedStacks = new List<LastDeploy...
13
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using AWS.Deploy.Common; using AWS.Deploy.Common.IO; using Newtonsoft.Json; namespace AWS.Deplo...
224
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; namespace AWS.Deploy.Orchestration.RecommendationEngine { /// <summary> /// The base class for all recommendation tests used to run the logic for a model test to see if a ...
27
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.IO; using System.Threading.Tasks; namespace AWS.Deploy.Orchestration.RecommendationEngine { /// <summary> /// This test checks to see if a file exists within the project directory. ///...
29
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System; using System.Threading.Tasks; namespace AWS.Deploy.Orchestration.RecommendationEngine { /// <summary> /// This test checks the value of the Sdk attribute of the root Project node of a .NE...
32
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; namespace AWS.Deploy.Orchestration.RecommendationEngine { /// <summary> /// This test checks to see if a property in a PropertyGroup of the .NET project exists. /// </...
22
aws-dotnet-deploy
aws
C#
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; namespace AWS.Deploy.Orchestration.RecommendationEngine { /// <summary> /// This test checks to see if the value of a property in a PropertyGroup of the .NET project exist...
23