lib/aws-sdk-iam/group.rb in aws-sdk-iam-1.17.0 vs lib/aws-sdk-iam/group.rb in aws-sdk-iam-1.18.0
- old
+ new
@@ -34,11 +34,11 @@
# The path to the group. For more information about paths, see [IAM
# Identifiers][1] in the *Using IAM* guide.
#
#
#
- # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
# @return [String]
def path
data[:path]
end
@@ -46,11 +46,11 @@
# information about IDs, see [IAM Identifiers][1] in the *Using IAM*
# guide.
#
#
#
- # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
# @return [String]
def group_id
data[:group_id]
end
@@ -58,11 +58,11 @@
# information about ARNs and how to use them in policies, see [IAM
# Identifiers][1] in the *Using IAM* guide.
#
#
#
- # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
# @return [String]
def arn
data[:arn]
end
@@ -245,11 +245,11 @@
# For more information about ARNs, see [Amazon Resource Names (ARNs) and
# AWS Service Namespaces][1] in the *AWS General Reference*.
#
#
#
- # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
# @return [EmptyStructure]
def attach_policy(options = {})
options = options.merge(group_name: @name)
resp = @client.attach_group_policy(options)
resp.data
@@ -275,11 +275,11 @@
# character (\\u007F), including most punctuation characters, digits,
# and upper and lowercased letters.
#
#
#
- # [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
# [2]: http://wikipedia.org/wiki/regex
# @return [Group]
def create(options = {})
options = options.merge(group_name: @name)
resp = @client.create_group(options)
@@ -360,10 +360,10 @@
# For more information about ARNs, see [Amazon Resource Names (ARNs) and
# AWS Service Namespaces][1] in the *AWS General Reference*.
#
#
#
- # [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
# @return [EmptyStructure]
def detach_policy(options = {})
options = options.merge(group_name: @name)
resp = @client.detach_group_policy(options)
resp.data