/// <summary>
        /// Initializes a new instance of the <see cref="CreateCloudBlockStorageSnapshotRequest"/>
        /// class with the specified details.
        /// </summary>
        /// <param name="details">The details of the request.</param>
        /// <exception cref="ArgumentNullException">If <paramref name="details"/> is <see langword="null"/>.</exception>
        public CreateCloudBlockStorageSnapshotRequest(CreateCloudBlockStorageSnapshotDetails details)
        {
            if (details == null)
                throw new ArgumentNullException("details");

            CreateCloudBlockStorageSnapshotDetails = details;
        }
        /// <summary>
        /// Initializes a new instance of the <see cref="CreateCloudBlockStorageSnapshotRequest"/>
        /// class with the specified details.
        /// </summary>
        /// <param name="details">The details of the request.</param>
        /// <exception cref="ArgumentNullException">If <paramref name="details"/> is <c>null</c>.</exception>
        public CreateCloudBlockStorageSnapshotRequest(CreateCloudBlockStorageSnapshotDetails details)
        {
            if (details == null)
            {
                throw new ArgumentNullException("details");
            }

            CreateCloudBlockStorageSnapshotDetails = details;
        }