Skip to content

Commit 932bbef

Browse files
committed
Removed customization in ec2.customizations.json which excluded DryRun property from service request model and marked AmazonEC2Client.DryRun() extension method as obsolete.
1 parent 8fbb1c9 commit 932bbef

File tree

1,234 files changed

+15389
-11
lines changed

Some content is hidden

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

1,234 files changed

+15389
-11
lines changed

docgenerator/AWSSDKDocSamples/EC2/EC2.GeneratedSamples.cs

+1
Original file line numberDiff line numberDiff line change
@@ -2495,6 +2495,7 @@ public void EC2ModifyVolumeAttribute()
24952495
var response = client.ModifyVolumeAttribute(new ModifyVolumeAttributeRequest
24962496
{
24972497
AutoEnableIO = jsondata object,
2498+
DryRun = true,
24982499
VolumeId = "vol-1234567890abcdef0"
24992500
});
25002501

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"services": [
3+
{
4+
"serviceName": "EC2",
5+
"type": "patch",
6+
"changeLogMessages": [
7+
"[Breaking Change] Obsoleted DryRun method from service client. To perform a dry run use the DryRun property on the request object for individual EC2 operations."
8+
]
9+
}
10+
]
11+
}

generator/ServiceModels/ec2/ec2.customizations.json

-5
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,6 @@
126126
}
127127
},
128128
"shapeModifiers": {
129-
"*": {
130-
"exclude": [
131-
"DryRun"
132-
]
133-
},
134129
"AttachVolumeResponse": {
135130
"modify": [
136131
{

sdk/src/Services/EC2/Custom/AmazonEC2Client.Extensions.cs

+1
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ private static Dictionary<Type, DryRunInfo> MethodCache
149149
/// </summary>
150150
/// <param name="request">Request to do a dry run of.</param>
151151
/// <returns>Result of the dry run.</returns>
152+
[Obsolete("This method has been deprecated. Use DryRun property at request level instead.")]
152153
public DryRunResponse DryRun(AmazonEC2Request request)
153154
{
154155
DryRunResponse response = new DryRunResponse { IsSuccessful = false };

sdk/src/Services/EC2/Custom/IAmazonEC2.Extensions.cs

+7-6
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ namespace Amazon.EC2
2020
{
2121
public partial interface IAmazonEC2 : IAmazonService, IDisposable
2222
{
23-
/// <summary>
24-
/// Checks whether you have the required permissions for the action, without actually making the request.
25-
/// </summary>
26-
/// <param name="request">Request to do a dry run of.</param>
27-
/// <returns>Result of the dry run.</returns>
28-
DryRunResponse DryRun(AmazonEC2Request request);
23+
/// <summary>
24+
/// Checks whether you have the required permissions for the action, without actually making the request.
25+
/// </summary>
26+
/// <param name="request">Request to do a dry run of.</param>
27+
/// <returns>Result of the dry run.</returns>
28+
[Obsolete("This method has been deprecated. Use DryRun property at request level instead.")]
29+
DryRunResponse DryRun(AmazonEC2Request request);
2930
}
3031
}

sdk/src/Services/EC2/Generated/Model/AcceptAddressTransferRequest.cs

+21
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ namespace Amazon.EC2.Model
3737
public partial class AcceptAddressTransferRequest : AmazonEC2Request
3838
{
3939
private string _address;
40+
private bool? _dryRun;
4041
private List<TagSpecification> _tagSpecifications = AWSConfigs.InitializeCollections ? new List<TagSpecification>() : null;
4142

4243
/// <summary>
@@ -58,6 +59,26 @@ internal bool IsSetAddress()
5859
return this._address != null;
5960
}
6061

62+
/// <summary>
63+
/// Gets and sets the property DryRun.
64+
/// <para>
65+
/// Checks whether you have the required permissions for the action, without actually
66+
/// making the request, and provides an error response. If you have the required permissions,
67+
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
68+
/// </para>
69+
/// </summary>
70+
public bool? DryRun
71+
{
72+
get { return this._dryRun; }
73+
set { this._dryRun = value; }
74+
}
75+
76+
// Check to see if DryRun property is set
77+
internal bool IsSetDryRun()
78+
{
79+
return this._dryRun.HasValue;
80+
}
81+
6182
/// <summary>
6283
/// Gets and sets the property TagSpecifications.
6384
/// <para>

sdk/src/Services/EC2/Generated/Model/AcceptCapacityReservationBillingOwnershipRequest.cs

+21
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ namespace Amazon.EC2.Model
3838
public partial class AcceptCapacityReservationBillingOwnershipRequest : AmazonEC2Request
3939
{
4040
private string _capacityReservationId;
41+
private bool? _dryRun;
4142

4243
/// <summary>
4344
/// Gets and sets the property CapacityReservationId.
@@ -58,5 +59,25 @@ internal bool IsSetCapacityReservationId()
5859
return this._capacityReservationId != null;
5960
}
6061

62+
/// <summary>
63+
/// Gets and sets the property DryRun.
64+
/// <para>
65+
/// Checks whether you have the required permissions for the action, without actually
66+
/// making the request, and provides an error response. If you have the required permissions,
67+
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
68+
/// </para>
69+
/// </summary>
70+
public bool? DryRun
71+
{
72+
get { return this._dryRun; }
73+
set { this._dryRun = value; }
74+
}
75+
76+
// Check to see if DryRun property is set
77+
internal bool IsSetDryRun()
78+
{
79+
return this._dryRun.HasValue;
80+
}
81+
6182
}
6283
}

sdk/src/Services/EC2/Generated/Model/AcceptReservedInstancesExchangeQuoteRequest.cs

+21
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,30 @@ namespace Amazon.EC2.Model
3636
/// </summary>
3737
public partial class AcceptReservedInstancesExchangeQuoteRequest : AmazonEC2Request
3838
{
39+
private bool? _dryRun;
3940
private List<string> _reservedInstanceIds = AWSConfigs.InitializeCollections ? new List<string>() : null;
4041
private List<TargetConfigurationRequest> _targetConfigurations = AWSConfigs.InitializeCollections ? new List<TargetConfigurationRequest>() : null;
4142

43+
/// <summary>
44+
/// Gets and sets the property DryRun.
45+
/// <para>
46+
/// Checks whether you have the required permissions for the action, without actually
47+
/// making the request, and provides an error response. If you have the required permissions,
48+
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
49+
/// </para>
50+
/// </summary>
51+
public bool? DryRun
52+
{
53+
get { return this._dryRun; }
54+
set { this._dryRun = value; }
55+
}
56+
57+
// Check to see if DryRun property is set
58+
internal bool IsSetDryRun()
59+
{
60+
return this._dryRun.HasValue;
61+
}
62+
4263
/// <summary>
4364
/// Gets and sets the property ReservedInstanceIds.
4465
/// <para>

sdk/src/Services/EC2/Generated/Model/AcceptTransitGatewayMulticastDomainAssociationsRequest.cs

+21
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,31 @@ namespace Amazon.EC2.Model
3535
/// </summary>
3636
public partial class AcceptTransitGatewayMulticastDomainAssociationsRequest : AmazonEC2Request
3737
{
38+
private bool? _dryRun;
3839
private List<string> _subnetIds = AWSConfigs.InitializeCollections ? new List<string>() : null;
3940
private string _transitGatewayAttachmentId;
4041
private string _transitGatewayMulticastDomainId;
4142

43+
/// <summary>
44+
/// Gets and sets the property DryRun.
45+
/// <para>
46+
/// Checks whether you have the required permissions for the action, without actually
47+
/// making the request, and provides an error response. If you have the required permissions,
48+
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
49+
/// </para>
50+
/// </summary>
51+
public bool? DryRun
52+
{
53+
get { return this._dryRun; }
54+
set { this._dryRun = value; }
55+
}
56+
57+
// Check to see if DryRun property is set
58+
internal bool IsSetDryRun()
59+
{
60+
return this._dryRun.HasValue;
61+
}
62+
4263
/// <summary>
4364
/// Gets and sets the property SubnetIds.
4465
/// <para>

sdk/src/Services/EC2/Generated/Model/AcceptTransitGatewayPeeringAttachmentRequest.cs

+21
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,29 @@ namespace Amazon.EC2.Model
3636
/// </summary>
3737
public partial class AcceptTransitGatewayPeeringAttachmentRequest : AmazonEC2Request
3838
{
39+
private bool? _dryRun;
3940
private string _transitGatewayAttachmentId;
4041

42+
/// <summary>
43+
/// Gets and sets the property DryRun.
44+
/// <para>
45+
/// Checks whether you have the required permissions for the action, without actually
46+
/// making the request, and provides an error response. If you have the required permissions,
47+
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
48+
/// </para>
49+
/// </summary>
50+
public bool? DryRun
51+
{
52+
get { return this._dryRun; }
53+
set { this._dryRun = value; }
54+
}
55+
56+
// Check to see if DryRun property is set
57+
internal bool IsSetDryRun()
58+
{
59+
return this._dryRun.HasValue;
60+
}
61+
4162
/// <summary>
4263
/// Gets and sets the property TransitGatewayAttachmentId.
4364
/// <para>

sdk/src/Services/EC2/Generated/Model/AcceptTransitGatewayVpcAttachmentRequest.cs

+21
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,29 @@ namespace Amazon.EC2.Model
4242
/// </summary>
4343
public partial class AcceptTransitGatewayVpcAttachmentRequest : AmazonEC2Request
4444
{
45+
private bool? _dryRun;
4546
private string _transitGatewayAttachmentId;
4647

48+
/// <summary>
49+
/// Gets and sets the property DryRun.
50+
/// <para>
51+
/// Checks whether you have the required permissions for the action, without actually
52+
/// making the request, and provides an error response. If you have the required permissions,
53+
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
54+
/// </para>
55+
/// </summary>
56+
public bool? DryRun
57+
{
58+
get { return this._dryRun; }
59+
set { this._dryRun = value; }
60+
}
61+
62+
// Check to see if DryRun property is set
63+
internal bool IsSetDryRun()
64+
{
65+
return this._dryRun.HasValue;
66+
}
67+
4768
/// <summary>
4869
/// Gets and sets the property TransitGatewayAttachmentId.
4970
/// <para>

sdk/src/Services/EC2/Generated/Model/AcceptVpcEndpointConnectionsRequest.cs

+21
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,30 @@ namespace Amazon.EC2.Model
3535
/// </summary>
3636
public partial class AcceptVpcEndpointConnectionsRequest : AmazonEC2Request
3737
{
38+
private bool? _dryRun;
3839
private string _serviceId;
3940
private List<string> _vpcEndpointIds = AWSConfigs.InitializeCollections ? new List<string>() : null;
4041

42+
/// <summary>
43+
/// Gets and sets the property DryRun.
44+
/// <para>
45+
/// Checks whether you have the required permissions for the action, without actually
46+
/// making the request, and provides an error response. If you have the required permissions,
47+
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
48+
/// </para>
49+
/// </summary>
50+
public bool? DryRun
51+
{
52+
get { return this._dryRun; }
53+
set { this._dryRun = value; }
54+
}
55+
56+
// Check to see if DryRun property is set
57+
internal bool IsSetDryRun()
58+
{
59+
return this._dryRun.HasValue;
60+
}
61+
4162
/// <summary>
4263
/// Gets and sets the property ServiceId.
4364
/// <para>

sdk/src/Services/EC2/Generated/Model/AcceptVpcPeeringConnectionRequest.cs

+21
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,29 @@ namespace Amazon.EC2.Model
4444
/// </summary>
4545
public partial class AcceptVpcPeeringConnectionRequest : AmazonEC2Request
4646
{
47+
private bool? _dryRun;
4748
private string _vpcPeeringConnectionId;
4849

50+
/// <summary>
51+
/// Gets and sets the property DryRun.
52+
/// <para>
53+
/// Checks whether you have the required permissions for the action, without actually
54+
/// making the request, and provides an error response. If you have the required permissions,
55+
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
56+
/// </para>
57+
/// </summary>
58+
public bool? DryRun
59+
{
60+
get { return this._dryRun; }
61+
set { this._dryRun = value; }
62+
}
63+
64+
// Check to see if DryRun property is set
65+
internal bool IsSetDryRun()
66+
{
67+
return this._dryRun.HasValue;
68+
}
69+
4970
/// <summary>
5071
/// Gets and sets the property VpcPeeringConnectionId.
5172
/// <para>

sdk/src/Services/EC2/Generated/Model/AdvertiseByoipCidrRequest.cs

+21
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ public partial class AdvertiseByoipCidrRequest : AmazonEC2Request
6161
{
6262
private string _asn;
6363
private string _cidr;
64+
private bool? _dryRun;
6465
private string _networkBorderGroup;
6566

6667
/// <summary>
@@ -101,6 +102,26 @@ internal bool IsSetCidr()
101102
return this._cidr != null;
102103
}
103104

105+
/// <summary>
106+
/// Gets and sets the property DryRun.
107+
/// <para>
108+
/// Checks whether you have the required permissions for the action, without actually
109+
/// making the request, and provides an error response. If you have the required permissions,
110+
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
111+
/// </para>
112+
/// </summary>
113+
public bool? DryRun
114+
{
115+
get { return this._dryRun; }
116+
set { this._dryRun = value; }
117+
}
118+
119+
// Check to see if DryRun property is set
120+
internal bool IsSetDryRun()
121+
{
122+
return this._dryRun.HasValue;
123+
}
124+
104125
/// <summary>
105126
/// Gets and sets the property NetworkBorderGroup.
106127
/// <para>

sdk/src/Services/EC2/Generated/Model/AllocateAddressRequest.cs

+21
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public partial class AllocateAddressRequest : AmazonEC2Request
6868
private string _address;
6969
private string _customerOwnedIpv4Pool;
7070
private DomainType _domain;
71+
private bool? _dryRun;
7172
private string _ipamPoolId;
7273
private string _networkBorderGroup;
7374
private string _publicIpv4Pool;
@@ -129,6 +130,26 @@ internal bool IsSetDomain()
129130
return this._domain != null;
130131
}
131132

133+
/// <summary>
134+
/// Gets and sets the property DryRun.
135+
/// <para>
136+
/// Checks whether you have the required permissions for the action, without actually
137+
/// making the request, and provides an error response. If you have the required permissions,
138+
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
139+
/// </para>
140+
/// </summary>
141+
public bool? DryRun
142+
{
143+
get { return this._dryRun; }
144+
set { this._dryRun = value; }
145+
}
146+
147+
// Check to see if DryRun property is set
148+
internal bool IsSetDryRun()
149+
{
150+
return this._dryRun.HasValue;
151+
}
152+
132153
/// <summary>
133154
/// Gets and sets the property IpamPoolId.
134155
/// <para>

0 commit comments

Comments
 (0)