Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed customization in ec2.customizations.json which excluded DryRun property from service request model and marked AmazonEC2Client.DryRun() extension method as obsolete. #3665

Merged
merged 1 commit into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions docgenerator/AWSSDKDocSamples/EC2/EC2.GeneratedSamples.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2495,6 +2495,7 @@ public void EC2ModifyVolumeAttribute()
var response = client.ModifyVolumeAttribute(new ModifyVolumeAttributeRequest
{
AutoEnableIO = jsondata object,
DryRun = true,
VolumeId = "vol-1234567890abcdef0"
});

Expand Down
11 changes: 11 additions & 0 deletions generator/.DevConfigs/f86aadd5-24d4-41e4-be6b-0b54bd495af6.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"services": [
{
"serviceName": "EC2",
"type": "patch",
"changeLogMessages": [
"[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."
]
}
]
}
5 changes: 0 additions & 5 deletions generator/ServiceModels/ec2/ec2.customizations.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,6 @@
}
},
"shapeModifiers": {
"*": {
"exclude": [
"DryRun"
]
},
"AttachVolumeResponse": {
"modify": [
{
Expand Down
1 change: 1 addition & 0 deletions sdk/src/Services/EC2/Custom/AmazonEC2Client.Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ private static Dictionary<Type, DryRunInfo> MethodCache
/// </summary>
/// <param name="request">Request to do a dry run of.</param>
/// <returns>Result of the dry run.</returns>
[Obsolete("This method has been deprecated. Use DryRun property at request level instead.")]
public DryRunResponse DryRun(AmazonEC2Request request)
{
DryRunResponse response = new DryRunResponse { IsSuccessful = false };
Expand Down
13 changes: 7 additions & 6 deletions sdk/src/Services/EC2/Custom/IAmazonEC2.Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ namespace Amazon.EC2
{
public partial interface IAmazonEC2 : IAmazonService, IDisposable
{
/// <summary>
/// Checks whether you have the required permissions for the action, without actually making the request.
/// </summary>
/// <param name="request">Request to do a dry run of.</param>
/// <returns>Result of the dry run.</returns>
DryRunResponse DryRun(AmazonEC2Request request);
/// <summary>
/// Checks whether you have the required permissions for the action, without actually making the request.
/// </summary>
/// <param name="request">Request to do a dry run of.</param>
/// <returns>Result of the dry run.</returns>
[Obsolete("This method has been deprecated. Use DryRun property at request level instead.")]
DryRunResponse DryRun(AmazonEC2Request request);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ namespace Amazon.EC2.Model
public partial class AcceptAddressTransferRequest : AmazonEC2Request
{
private string _address;
private bool? _dryRun;
private List<TagSpecification> _tagSpecifications = AWSConfigs.InitializeCollections ? new List<TagSpecification>() : null;

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

/// <summary>
/// Gets and sets the property DryRun.
/// <para>
/// Checks whether you have the required permissions for the action, without actually
/// making the request, and provides an error response. If you have the required permissions,
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
/// </para>
/// </summary>
public bool? DryRun
{
get { return this._dryRun; }
set { this._dryRun = value; }
}

// Check to see if DryRun property is set
internal bool IsSetDryRun()
{
return this._dryRun.HasValue;
}

/// <summary>
/// Gets and sets the property TagSpecifications.
/// <para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ namespace Amazon.EC2.Model
public partial class AcceptCapacityReservationBillingOwnershipRequest : AmazonEC2Request
{
private string _capacityReservationId;
private bool? _dryRun;

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

/// <summary>
/// Gets and sets the property DryRun.
/// <para>
/// Checks whether you have the required permissions for the action, without actually
/// making the request, and provides an error response. If you have the required permissions,
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
/// </para>
/// </summary>
public bool? DryRun
{
get { return this._dryRun; }
set { this._dryRun = value; }
}

// Check to see if DryRun property is set
internal bool IsSetDryRun()
{
return this._dryRun.HasValue;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,30 @@ namespace Amazon.EC2.Model
/// </summary>
public partial class AcceptReservedInstancesExchangeQuoteRequest : AmazonEC2Request
{
private bool? _dryRun;
private List<string> _reservedInstanceIds = AWSConfigs.InitializeCollections ? new List<string>() : null;
private List<TargetConfigurationRequest> _targetConfigurations = AWSConfigs.InitializeCollections ? new List<TargetConfigurationRequest>() : null;

/// <summary>
/// Gets and sets the property DryRun.
/// <para>
/// Checks whether you have the required permissions for the action, without actually
/// making the request, and provides an error response. If you have the required permissions,
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
/// </para>
/// </summary>
public bool? DryRun
{
get { return this._dryRun; }
set { this._dryRun = value; }
}

// Check to see if DryRun property is set
internal bool IsSetDryRun()
{
return this._dryRun.HasValue;
}

/// <summary>
/// Gets and sets the property ReservedInstanceIds.
/// <para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,31 @@ namespace Amazon.EC2.Model
/// </summary>
public partial class AcceptTransitGatewayMulticastDomainAssociationsRequest : AmazonEC2Request
{
private bool? _dryRun;
private List<string> _subnetIds = AWSConfigs.InitializeCollections ? new List<string>() : null;
private string _transitGatewayAttachmentId;
private string _transitGatewayMulticastDomainId;

/// <summary>
/// Gets and sets the property DryRun.
/// <para>
/// Checks whether you have the required permissions for the action, without actually
/// making the request, and provides an error response. If you have the required permissions,
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
/// </para>
/// </summary>
public bool? DryRun
{
get { return this._dryRun; }
set { this._dryRun = value; }
}

// Check to see if DryRun property is set
internal bool IsSetDryRun()
{
return this._dryRun.HasValue;
}

/// <summary>
/// Gets and sets the property SubnetIds.
/// <para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,29 @@ namespace Amazon.EC2.Model
/// </summary>
public partial class AcceptTransitGatewayPeeringAttachmentRequest : AmazonEC2Request
{
private bool? _dryRun;
private string _transitGatewayAttachmentId;

/// <summary>
/// Gets and sets the property DryRun.
/// <para>
/// Checks whether you have the required permissions for the action, without actually
/// making the request, and provides an error response. If you have the required permissions,
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
/// </para>
/// </summary>
public bool? DryRun
{
get { return this._dryRun; }
set { this._dryRun = value; }
}

// Check to see if DryRun property is set
internal bool IsSetDryRun()
{
return this._dryRun.HasValue;
}

/// <summary>
/// Gets and sets the property TransitGatewayAttachmentId.
/// <para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,29 @@ namespace Amazon.EC2.Model
/// </summary>
public partial class AcceptTransitGatewayVpcAttachmentRequest : AmazonEC2Request
{
private bool? _dryRun;
private string _transitGatewayAttachmentId;

/// <summary>
/// Gets and sets the property DryRun.
/// <para>
/// Checks whether you have the required permissions for the action, without actually
/// making the request, and provides an error response. If you have the required permissions,
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
/// </para>
/// </summary>
public bool? DryRun
{
get { return this._dryRun; }
set { this._dryRun = value; }
}

// Check to see if DryRun property is set
internal bool IsSetDryRun()
{
return this._dryRun.HasValue;
}

/// <summary>
/// Gets and sets the property TransitGatewayAttachmentId.
/// <para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,30 @@ namespace Amazon.EC2.Model
/// </summary>
public partial class AcceptVpcEndpointConnectionsRequest : AmazonEC2Request
{
private bool? _dryRun;
private string _serviceId;
private List<string> _vpcEndpointIds = AWSConfigs.InitializeCollections ? new List<string>() : null;

/// <summary>
/// Gets and sets the property DryRun.
/// <para>
/// Checks whether you have the required permissions for the action, without actually
/// making the request, and provides an error response. If you have the required permissions,
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
/// </para>
/// </summary>
public bool? DryRun
{
get { return this._dryRun; }
set { this._dryRun = value; }
}

// Check to see if DryRun property is set
internal bool IsSetDryRun()
{
return this._dryRun.HasValue;
}

/// <summary>
/// Gets and sets the property ServiceId.
/// <para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,29 @@ namespace Amazon.EC2.Model
/// </summary>
public partial class AcceptVpcPeeringConnectionRequest : AmazonEC2Request
{
private bool? _dryRun;
private string _vpcPeeringConnectionId;

/// <summary>
/// Gets and sets the property DryRun.
/// <para>
/// Checks whether you have the required permissions for the action, without actually
/// making the request, and provides an error response. If you have the required permissions,
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
/// </para>
/// </summary>
public bool? DryRun
{
get { return this._dryRun; }
set { this._dryRun = value; }
}

// Check to see if DryRun property is set
internal bool IsSetDryRun()
{
return this._dryRun.HasValue;
}

/// <summary>
/// Gets and sets the property VpcPeeringConnectionId.
/// <para>
Expand Down
21 changes: 21 additions & 0 deletions sdk/src/Services/EC2/Generated/Model/AdvertiseByoipCidrRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ public partial class AdvertiseByoipCidrRequest : AmazonEC2Request
{
private string _asn;
private string _cidr;
private bool? _dryRun;
private string _networkBorderGroup;

/// <summary>
Expand Down Expand Up @@ -101,6 +102,26 @@ internal bool IsSetCidr()
return this._cidr != null;
}

/// <summary>
/// Gets and sets the property DryRun.
/// <para>
/// Checks whether you have the required permissions for the action, without actually
/// making the request, and provides an error response. If you have the required permissions,
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
/// </para>
/// </summary>
public bool? DryRun
{
get { return this._dryRun; }
set { this._dryRun = value; }
}

// Check to see if DryRun property is set
internal bool IsSetDryRun()
{
return this._dryRun.HasValue;
}

/// <summary>
/// Gets and sets the property NetworkBorderGroup.
/// <para>
Expand Down
21 changes: 21 additions & 0 deletions sdk/src/Services/EC2/Generated/Model/AllocateAddressRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public partial class AllocateAddressRequest : AmazonEC2Request
private string _address;
private string _customerOwnedIpv4Pool;
private DomainType _domain;
private bool? _dryRun;
private string _ipamPoolId;
private string _networkBorderGroup;
private string _publicIpv4Pool;
Expand Down Expand Up @@ -129,6 +130,26 @@ internal bool IsSetDomain()
return this._domain != null;
}

/// <summary>
/// Gets and sets the property DryRun.
/// <para>
/// Checks whether you have the required permissions for the action, without actually
/// making the request, and provides an error response. If you have the required permissions,
/// the error response is <c>DryRunOperation</c>. Otherwise, it is <c>UnauthorizedOperation</c>.
/// </para>
/// </summary>
public bool? DryRun
{
get { return this._dryRun; }
set { this._dryRun = value; }
}

// Check to see if DryRun property is set
internal bool IsSetDryRun()
{
return this._dryRun.HasValue;
}

/// <summary>
/// Gets and sets the property IpamPoolId.
/// <para>
Expand Down
Loading