Skip to content

Commit c547efb

Browse files
rlhagermLaren-AWS
authored andcommitted
Readme updates.
1 parent 8dbc65d commit c547efb

File tree

4 files changed

+29
-36
lines changed

4 files changed

+29
-36
lines changed

dotnetv3/AutoScaling/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ Code examples that show you how to perform the essential operations within a ser
4545

4646
Code excerpts that show you how to call individual service functions.
4747

48-
- [AttachLoadBalancerTargetGroups](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L770)
48+
- [AttachLoadBalancerTargetGroups](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L890)
4949
- [CreateAutoScalingGroup](Actions/AutoScalingWrapper.cs#L28)
50-
- [DeleteAutoScalingGroup](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L573)
50+
- [DeleteAutoScalingGroup](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L693)
5151
- [DescribeAutoScalingGroups](Actions/AutoScalingWrapper.cs#L109)
5252
- [DescribeAutoScalingInstances](Actions/AutoScalingWrapper.cs#L109)
5353
- [DescribeScalingActivities](Actions/AutoScalingWrapper.cs#L86)

dotnetv3/DotNetV3Examples.sln

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "EC2", "EC2", "{77D9BB30-99D
183183
EndProject
184184
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VirtualPrivateCloudExamples", "VirtualPrivateCloudExamples", "{FD37C59A-C4EA-4AAD-85F7-66767E98C52A}"
185185
EndProject
186-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreateVPCTests", "EC2\VirtualPrivateCloudExamples\CreateVPCTests\CreateVPCTests.csproj", "{775E67C5-BE91-4E4D-840A-380EF533AF27}"
187-
EndProject
188186
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EC2Tests", "EC2\Tests\EC2Tests.csproj", "{6660A7CD-3AFB-4A99-995A-70DE9DADB81E}"
189187
EndProject
190188
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Scenarios", "Scenarios", "{327CF162-0F15-4E54-AFF2-3477410D7B34}"
@@ -957,10 +955,6 @@ Global
957955
{8CE79AEB-9CA0-4746-97F3-A1E73B14B0BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
958956
{8CE79AEB-9CA0-4746-97F3-A1E73B14B0BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
959957
{8CE79AEB-9CA0-4746-97F3-A1E73B14B0BF}.Release|Any CPU.Build.0 = Release|Any CPU
960-
{775E67C5-BE91-4E4D-840A-380EF533AF27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
961-
{775E67C5-BE91-4E4D-840A-380EF533AF27}.Debug|Any CPU.Build.0 = Debug|Any CPU
962-
{775E67C5-BE91-4E4D-840A-380EF533AF27}.Release|Any CPU.ActiveCfg = Release|Any CPU
963-
{775E67C5-BE91-4E4D-840A-380EF533AF27}.Release|Any CPU.Build.0 = Release|Any CPU
964958
{6660A7CD-3AFB-4A99-995A-70DE9DADB81E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
965959
{6660A7CD-3AFB-4A99-995A-70DE9DADB81E}.Debug|Any CPU.Build.0 = Debug|Any CPU
966960
{6660A7CD-3AFB-4A99-995A-70DE9DADB81E}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -1790,7 +1784,6 @@ Global
17901784
{81E5E7FC-5F25-48F5-A0F9-17C862B5A6AA} = {86F4D22B-B15A-46F4-8F30-8501D244841A}
17911785
{8CE79AEB-9CA0-4746-97F3-A1E73B14B0BF} = {81E5E7FC-5F25-48F5-A0F9-17C862B5A6AA}
17921786
{FD37C59A-C4EA-4AAD-85F7-66767E98C52A} = {77D9BB30-99D7-47A3-B060-2D7CB3753162}
1793-
{775E67C5-BE91-4E4D-840A-380EF533AF27} = {FD37C59A-C4EA-4AAD-85F7-66767E98C52A}
17941787
{6660A7CD-3AFB-4A99-995A-70DE9DADB81E} = {77D9BB30-99D7-47A3-B060-2D7CB3753162}
17951788
{327CF162-0F15-4E54-AFF2-3477410D7B34} = {77D9BB30-99D7-47A3-B060-2D7CB3753162}
17961789
{C9A508B1-CEF1-45F5-BF1F-1DEB905E9F35} = {77D9BB30-99D7-47A3-B060-2D7CB3753162}

dotnetv3/EC2/README.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -45,31 +45,31 @@ Code examples that show you how to perform the essential operations within a ser
4545

4646
Code excerpts that show you how to call individual service functions.
4747

48-
- [AllocateAddress](Actions/EC2Wrapper.cs#L19)
49-
- [AssociateAddress](Actions/EC2Wrapper.cs#L33)
50-
- [AuthorizeSecurityGroupIngress](Actions/EC2Wrapper.cs#L55)
51-
- [CreateKeyPair](Actions/EC2Wrapper.cs#L98)
52-
- [CreateLaunchTemplate](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L260)
53-
- [CreateSecurityGroup](Actions/EC2Wrapper.cs#L145)
54-
- [DeleteKeyPair](Actions/EC2Wrapper.cs#L190)
55-
- [DeleteLaunchTemplate](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L402)
56-
- [DeleteSecurityGroup](Actions/EC2Wrapper.cs#L223)
57-
- [DescribeAvailabilityZones](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L304)
58-
- [DescribeIamInstanceProfileAssociations](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L495)
59-
- [DescribeInstanceTypes](Actions/EC2Wrapper.cs#L395)
60-
- [DescribeInstances](Actions/EC2Wrapper.cs#L316)
61-
- [DescribeKeyPairs](Actions/EC2Wrapper.cs#L432)
62-
- [DescribeSecurityGroups](Actions/EC2Wrapper.cs#L454)
63-
- [DescribeSubnets](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L371)
64-
- [DescribeVpcs](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L352)
65-
- [DisassociateAddress](Actions/EC2Wrapper.cs#L516)
66-
- [RebootInstances](Actions/EC2Wrapper.cs#L544)
67-
- [ReleaseAddress](Actions/EC2Wrapper.cs#L569)
68-
- [ReplaceIamInstanceProfileAssociation](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L515)
69-
- [RunInstances](Actions/EC2Wrapper.cs#L587)
70-
- [StartInstances](Actions/EC2Wrapper.cs#L616)
71-
- [StopInstances](Actions/EC2Wrapper.cs#L643)
72-
- [TerminateInstances](Actions/EC2Wrapper.cs#L680)
48+
- [AllocateAddress](Actions/EC2Wrapper.cs#L28)
49+
- [AssociateAddress](Actions/EC2Wrapper.cs#L64)
50+
- [AuthorizeSecurityGroupIngress](Actions/EC2Wrapper.cs#L107)
51+
- [CreateKeyPair](Actions/EC2Wrapper.cs#L170)
52+
- [CreateLaunchTemplate](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L263)
53+
- [CreateSecurityGroup](Actions/EC2Wrapper.cs#L242)
54+
- [DeleteKeyPair](Actions/EC2Wrapper.cs#L319)
55+
- [DeleteLaunchTemplate](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L470)
56+
- [DeleteSecurityGroup](Actions/EC2Wrapper.cs#L361)
57+
- [DescribeAvailabilityZones](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L325)
58+
- [DescribeIamInstanceProfileAssociations](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L574)
59+
- [DescribeInstanceTypes](Actions/EC2Wrapper.cs#L531)
60+
- [DescribeInstances](Actions/EC2Wrapper.cs#L474)
61+
- [DescribeKeyPairs](Actions/EC2Wrapper.cs#L578)
62+
- [DescribeSecurityGroups](Actions/EC2Wrapper.cs#L620)
63+
- [DescribeSubnets](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L422)
64+
- [DescribeVpcs](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L386)
65+
- [DisassociateAddress](Actions/EC2Wrapper.cs#L714)
66+
- [RebootInstances](Actions/EC2Wrapper.cs#L761)
67+
- [ReleaseAddress](Actions/EC2Wrapper.cs#L802)
68+
- [ReplaceIamInstanceProfileAssociation](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L611)
69+
- [RunInstances](Actions/EC2Wrapper.cs#L837)
70+
- [StartInstances](Actions/EC2Wrapper.cs#L890)
71+
- [StopInstances](Actions/EC2Wrapper.cs#L930)
72+
- [TerminateInstances](Actions/EC2Wrapper.cs#L971)
7373

7474
### Scenarios
7575

dotnetv3/IAM/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ Code excerpts that show you how to call individual service functions.
4949
- [AttachRolePolicy](Actions/IAMWrapper.cs#L42)
5050
- [CreateAccessKey](Actions/IAMWrapper.cs#L62)
5151
- [CreateGroup](Actions/IAMWrapper.cs#L82)
52-
- [CreateInstanceProfile](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L83)
52+
- [CreateInstanceProfile](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L86)
5353
- [CreatePolicy](Actions/IAMWrapper.cs#L96)
5454
- [CreateRole](Actions/IAMWrapper.cs#L116)
5555
- [CreateServiceLinkedRole](Actions/IAMWrapper.cs#L138)
5656
- [CreateUser](Actions/IAMWrapper.cs#L159)
5757
- [DeleteAccessKey](Actions/IAMWrapper.cs#L173)
5858
- [DeleteGroup](Actions/IAMWrapper.cs#L194)
5959
- [DeleteGroupPolicy](Actions/IAMWrapper.cs#L208)
60-
- [DeleteInstanceProfile](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L425)
60+
- [DeleteInstanceProfile](../cross-service/ResilientService/AutoScalerActions/AutoScalerWrapper.cs#L504)
6161
- [DeletePolicy](Actions/IAMWrapper.cs#L230)
6262
- [DeleteRole](Actions/IAMWrapper.cs#L245)
6363
- [DeleteRolePolicy](Actions/IAMWrapper.cs#L259)

0 commit comments

Comments
 (0)