Skip to content

Commit aa14b11

Browse files
committed
Injection of v1.4.0.0 source release of the AWSSDK for .NET
1 parent c2254e8 commit aa14b11

File tree

2,573 files changed

+24145
-3641
lines changed

Some content is hidden

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

2,573 files changed

+24145
-3641
lines changed

AWSClientFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2008-2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
* Copyright 2008-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
33
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use
44
* this file except in compliance with the License. A copy of the License is located at
55
*

AWSSDKSrc.csproj

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

Amazon.Auth/AccessControlPolicy/ActionIdentifier.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2010-2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
* Copyright 2010-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
* Copyright 2010-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License").
5+
* You may not use this file except in compliance with the License.
6+
* A copy of the License is located at
7+
*
8+
* http://aws.amazon.com/apache2.0
9+
*
10+
* or in the "license" file accompanying this file. This file is distributed
11+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
* express or implied. See the License for the specific language governing
13+
* permissions and limitations under the License.
14+
*/
15+
using System;
16+
using System.Collections.Generic;
17+
using System.Text;
18+
19+
namespace Amazon.Auth.AccessControlPolicy.ActionIdentifiers
20+
{
21+
/// <summary>
22+
/// The available AWS access control policy actions for Auto Scaling.
23+
/// </summary>
24+
/// <see cref="Amazon.Auth.AccessControlPolicy.Statement.Actions"/>
25+
public class AutoScalingActionIdentifiers
26+
{
27+
public static readonly ActionIdentifier AllAutoScalingActions = new ActionIdentifier("autoscaling:*");
28+
29+
public static readonly ActionIdentifier CreateAutoScalingGroup = new ActionIdentifier("autoscaling:CreateAutoScalingGroup");
30+
public static readonly ActionIdentifier CreateLaunchConfiguration = new ActionIdentifier("autoscaling:CreateLaunchConfiguration");
31+
public static readonly ActionIdentifier CreateOrUpdateScalingTrigger = new ActionIdentifier("autoscaling:CreateOrUpdateScalingTrigger");
32+
public static readonly ActionIdentifier DeleteAutoScalingGroup = new ActionIdentifier("autoscaling:DeleteAutoScalingGroup");
33+
public static readonly ActionIdentifier DeleteLaunchConfiguration = new ActionIdentifier("autoscaling:DeleteLaunchConfiguration");
34+
public static readonly ActionIdentifier DeleteTrigger = new ActionIdentifier("autoscaling:DeleteTrigger");
35+
public static readonly ActionIdentifier DescribeAutoScalingGroups = new ActionIdentifier("autoscaling:DescribeAutoScalingGroups");
36+
public static readonly ActionIdentifier DescribeLaunchConfigurations = new ActionIdentifier("autoscaling:DescribeLaunchConfigurations");
37+
public static readonly ActionIdentifier DescribeScalingActivities = new ActionIdentifier("autoscaling:DescribeScalingActivities");
38+
public static readonly ActionIdentifier DescribeTriggers = new ActionIdentifier("autoscaling:DescribeTriggers");
39+
public static readonly ActionIdentifier SetDesiredCapacity = new ActionIdentifier("autoscaling:SetDesiredCapacity");
40+
public static readonly ActionIdentifier TerminateInstanceInAutoScalingGroup = new ActionIdentifier("autoscaling:TerminateInstanceInAutoScalingGroup");
41+
public static readonly ActionIdentifier UpdateAutoScalingGroup = new ActionIdentifier("autoscaling:UpdateAutoScalingGroup");
42+
}
43+
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/*
2-
* Copyright 2010-2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
1+
/*
2+
* Copyright 2010-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License").
55
* You may not use this file except in compliance with the License.
@@ -22,54 +22,16 @@ namespace Amazon.Auth.AccessControlPolicy.ActionIdentifiers
2222
/// The available AWS access control policy actions for AWS CloudFormation.
2323
/// </summary>
2424
/// <see cref="Amazon.Auth.AccessControlPolicy.Statement.Actions"/>
25-
public class CloudFormationActionIdentifers
25+
public class CloudFormationActionIdentifiers
2626
{
27-
/// <summary>
28-
/// Represents any action being taken on AWS CloudFormation.
29-
/// </summary>
3027
public static readonly ActionIdentifier AllCloudFormationActions = new ActionIdentifier("cloudformation:*");
3128

32-
/// <summary>
33-
/// Action for creating a stack as specified in the template.
34-
/// </summary>
35-
/// <see cref="Amazon.CloudFormation.Model.CreateStackRequest"/>
3629
public static readonly ActionIdentifier CreateStack = new ActionIdentifier("cloudformation:CreateStack");
37-
38-
/// <summary>
39-
/// Action for deleting a stack.
40-
/// </summary>
41-
/// <see cref="Amazon.CloudFormation.Model.DeleteStackRequest"/>
4230
public static readonly ActionIdentifier DeleteStack = new ActionIdentifier("cloudformation:DeleteStack");
43-
44-
/// <summary>
45-
/// Action for describing stacks.
46-
/// </summary>
47-
/// <see cref="Amazon.CloudFormation.Model.DescribeStacksRequest"/>
48-
public static readonly ActionIdentifier DescribeStacks = new ActionIdentifier("cloudformation:DescribeStacks");
49-
50-
/// <summary>
51-
/// Action for describing stack events.
52-
/// </summary>
53-
/// <see cref="Amazon.CloudFormation.Model.DescribeStackEventsRequest"/>
5431
public static readonly ActionIdentifier DescribeStackEvents = new ActionIdentifier("cloudformation:DescribeStackEvents");
55-
56-
/// <summary>
57-
/// Action for describing stack resources.
58-
/// </summary>
59-
/// <see cref="Amazon.CloudFormation.Model.DescribeStackResourcesRequest"/>
6032
public static readonly ActionIdentifier DescribeStackResources = new ActionIdentifier("cloudformation:DescribeStackResources");
61-
62-
/// <summary>
63-
/// Action for getting the template body for a specified stack name.
64-
/// </summary>
65-
/// <see cref="Amazon.CloudFormation.Model.GetTemplateRequest"/>
33+
public static readonly ActionIdentifier DescribeStacks = new ActionIdentifier("cloudformation:DescribeStacks");
6634
public static readonly ActionIdentifier GetTemplate = new ActionIdentifier("cloudformation:GetTemplate");
67-
68-
/// <summary>
69-
/// Action for validating a specified template.
70-
/// </summary>
71-
/// <see cref="Amazon.CloudFormation.Model.ValidateTemplateRequest"/>
7235
public static readonly ActionIdentifier ValidateTemplate = new ActionIdentifier("cloudformation:ValidateTemplate");
73-
7436
}
7537
}

Amazon.Auth/AccessControlPolicy/ActionIdentifiers/CloudFrontActionIdentifers.cs

Lines changed: 0 additions & 160 deletions
This file was deleted.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
* Copyright 2010-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License").
5+
* You may not use this file except in compliance with the License.
6+
* A copy of the License is located at
7+
*
8+
* http://aws.amazon.com/apache2.0
9+
*
10+
* or in the "license" file accompanying this file. This file is distributed
11+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
* express or implied. See the License for the specific language governing
13+
* permissions and limitations under the License.
14+
*/
15+
using System;
16+
using System.Collections.Generic;
17+
using System.Text;
18+
19+
namespace Amazon.Auth.AccessControlPolicy.ActionIdentifiers
20+
{
21+
/// <summary>
22+
/// The available AWS access control policy actions for Amazon CloudFront.
23+
/// </summary>
24+
/// <see cref="Amazon.Auth.AccessControlPolicy.Statement.Actions"/>
25+
public class CloudFrontActionIdentifiers
26+
{
27+
public static readonly ActionIdentifier AllCloudFrontActions = new ActionIdentifier("cloudfront:*");
28+
29+
public static readonly ActionIdentifier CreateCloudFrontOriginAccessIdentity = new ActionIdentifier("cloudfront:CreateCloudFrontOriginAccessIdentity");
30+
public static readonly ActionIdentifier CreateDistribution = new ActionIdentifier("cloudfront:CreateDistribution");
31+
public static readonly ActionIdentifier CreateInvalidation = new ActionIdentifier("cloudfront:CreateInvalidation");
32+
public static readonly ActionIdentifier CreateStreamingDistribution = new ActionIdentifier("cloudfront:CreateStreamingDistribution");
33+
public static readonly ActionIdentifier DeleteCloudFrontOriginAccessIdentity = new ActionIdentifier("cloudfront:DeleteCloudFrontOriginAccessIdentity");
34+
public static readonly ActionIdentifier DeleteDistribution = new ActionIdentifier("cloudfront:DeleteDistribution");
35+
public static readonly ActionIdentifier DeleteStreamingDistribution = new ActionIdentifier("cloudfront:DeleteStreamingDistribution");
36+
public static readonly ActionIdentifier GetCloudFrontOriginAccessIdentity = new ActionIdentifier("cloudfront:GetCloudFrontOriginAccessIdentity");
37+
public static readonly ActionIdentifier GetCloudFrontOriginAccessIdentityConfig = new ActionIdentifier("cloudfront:GetCloudFrontOriginAccessIdentityConfig");
38+
public static readonly ActionIdentifier GetDistribution = new ActionIdentifier("cloudfront:GetDistribution");
39+
public static readonly ActionIdentifier GetDistributionConfig = new ActionIdentifier("cloudfront:GetDistributionConfig");
40+
public static readonly ActionIdentifier GetInvalidation = new ActionIdentifier("cloudfront:GetInvalidation");
41+
public static readonly ActionIdentifier GetStreamingDistribution = new ActionIdentifier("cloudfront:GetStreamingDistribution");
42+
public static readonly ActionIdentifier GetStreamingDistributionConfig = new ActionIdentifier("cloudfront:GetStreamingDistributionConfig");
43+
public static readonly ActionIdentifier ListCloudFrontOriginAccessIdentities = new ActionIdentifier("cloudfront:ListCloudFrontOriginAccessIdentities");
44+
public static readonly ActionIdentifier ListDistributions = new ActionIdentifier("cloudfront:ListDistributions");
45+
public static readonly ActionIdentifier ListInvalidations = new ActionIdentifier("cloudfront:ListInvalidations");
46+
public static readonly ActionIdentifier ListStreamingDistributions = new ActionIdentifier("cloudfront:ListStreamingDistributions");
47+
public static readonly ActionIdentifier UpdateCloudFrontOriginAccessIdentity = new ActionIdentifier("cloudfront:UpdateCloudFrontOriginAccessIdentity");
48+
public static readonly ActionIdentifier UpdateDistribution = new ActionIdentifier("cloudfront:UpdateDistribution");
49+
public static readonly ActionIdentifier UpdateStreamingDistribution = new ActionIdentifier("cloudfront:UpdateStreamingDistribution");
50+
}
51+
}

0 commit comments

Comments
 (0)