Skip to content

Commit d8886d1

Browse files
committed
update URLs
1 parent f23dfc9 commit d8886d1

Some content is hidden

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

56 files changed

+115
-117
lines changed

R/accelerate.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#'
1010
#' @return For \code{get_acceleration}: If acceleration has never been enabled or suspend, the value is \code{NULL}. Otherwise, the status is returned (either \dQuote{Enabled} or \dQuote{Suspended}). For \code{put_acceleration}: If acceleration has never been enabled or suspend, the value is \code{NULL}.
1111
#' @references
12-
#' \href{http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTaccelerate.html}{API Documentation: PUT Bucket accelerate}
13-
#' \href{http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETaccelerate.html}{API Documentation: GET Bucket accelerate}
12+
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAccelerateConfiguration.html}{API Documentation: PUT Bucket accelerate}
13+
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAccelerateConfiguration.html}{API Documentation: GET Bucket accelerate}
1414
#' @examples
1515
#' \dontrun{
1616
#' b <- bucketlist()

R/acl.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
#' @details \code{get_acl} retrieves an XML-formatted ACL for either an object (if specified) or a bucket (if specified).
1111
#' @return For \code{get_acl} a character string containing an XML-formatted ACL. For \code{put_acl}: if successful, \code{TRUE}.
1212
#' @references
13-
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectGETacl.html}{API Reference: GET Object ACL}
14-
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPUTacl.html}{API Reference: PUT Object ACL}
13+
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAcl.html}{API Reference: GET Object ACL}
14+
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectAcl.html}{API Reference: PUT Object ACL}
1515
#' @export
1616
get_acl <- function(object, bucket, ...) {
1717
if (!missing(object)) {

R/bucket_exists.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#' @template dots
55
#'
66
#' @return \code{TRUE} if bucket exists and is accessible, else \code{FALSE}.
7-
#' @references \href{http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketHEAD.html}{API Documentation}
7+
#' @references \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadBucket.html}{API Documentation}
88
#' @seealso \code{\link{bucketlist}}, \code{\link{get_bucket}}, \code{\link{object_exists}}
99
#' @export
1010
bucket_exists <- function(bucket, ...){

R/bucketlist.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' \code{bucket_list_df} and \code{bucketlist} are identical.
99
#' @return A data frame of buckets. Can be empty (0 rows, 0 columns) if there are no buckets, otherwise contains typically at least columns \code{Bucket} and \code{CreationDate}.
1010
#'
11-
#' @references \href{http://docs.aws.amazon.com/AmazonS3/latest/API/RESTServiceGET.html}{API Documentation}
11+
#' @references \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBuckets.html}{API Documentation}
1212
#'
1313
#' @keywords service
1414
#' @seealso \code{\link{get_bucket}}, \code{\link{get_object}}

R/copy_bucket.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#' @template dots
1212
#'
1313
#' @return Something...
14-
#' @references \href{http://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectCOPY.html}{API Documentation}
14+
#' @references \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html}{API Documentation}
1515
#' @export
1616
copy_object <- function(from_object, to_object = from_object, from_bucket, to_bucket, headers = list(), ...) {
1717
from_bucket <- get_bucketname(from_bucket)

R/cors.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
#'
88
#' @return For \code{get_cors}: A list with cors configuration and rules. For \code{delete_cors}: \code{TRUE} if successful, \code{FALSE} otherwise.
99
#' @references
10-
#' \href{http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTcors.html}{API Documentation: PUT cors}
11-
#' \href{http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETcors.html}{API Documentation: GET cords}
12-
#' \href{http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketDELETEcors.html}{API Documentation: DELETE cors}
10+
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketCors.html}{API Documentation: PUT cors}
11+
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketCors.html}{API Documentation: GET cords}
12+
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketCors.html}{API Documentation: DELETE cors}
1313
#' @export
1414
get_cors <- function(bucket, ...){
1515
r <- s3HTTP(verb = "GET",

R/delete_bucket.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#' @template dots
66
#'
77
#' @return \code{TRUE} if successful, \code{FALSE} otherwise.
8-
#' @references \href{http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketDELETE.html}{API Documentation}
8+
#' @references \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html}{API Documentation}
99
#' @export
1010
delete_bucket <- function(bucket, ...){
1111
r <- s3HTTP(verb = "DELETE",

R/delete_object.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' @details \code{object} can be a single object key, an object of class \dQuote{s3_object}, or a list of either.
99
#'
1010
#' @return \code{TRUE} if successful, otherwise an object of class aws_error details if not.
11-
#' @references \href{http://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectDELETE.html}{API Documentation}
11+
#' @references \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html}{API Documentation}
1212
#' @seealso \code{\link{put_object}}
1313
#' @importFrom digest digest
1414
#' @importFrom base64enc base64encode

R/encryption.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
#' }
2525
#'
2626
#' @references
27-
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTencryption.html}{API Documentation}
28-
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETencryption.html}{API Documentation}
29-
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketDELETEencryption.html}{API Documentation}
27+
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html}{API Documentation}
28+
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html}{API Documentation}
29+
#' \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketEncryption.html}{API Documentation}
3030
#' @export
3131
get_encryption <- function(bucket, ...){
3232
r <- s3HTTP(verb = "GET",

R/get_bucket.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#' #get_bucket("this.bucket.has.dots", url_style = "virtual")
2525
#' }
2626
#'
27-
#' @references \href{https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGET.html}{API Documentation}
27+
#' @references \href{https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjects.html}{API Documentation}
2828
#' @seealso \code{\link{bucketlist}}, \code{\link{get_object}}
2929
#' @export
3030
#' @importFrom utils tail

0 commit comments

Comments
 (0)