aws-sdk-servicecatalog 1.79.0 → 1.80.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 54f5d17ad7319a313a0368674c9babcc18c52d0bceb42573b18e1aea70e71a31
4
- data.tar.gz: 6204e33542c232cbf5089148c0f9be26dcf19ceeb2c819fd15f806d7825be1ed
3
+ metadata.gz: 48ee0a58b46c9e2dd705f01119a78966aac2d7e4a583627573805504fc61cad7
4
+ data.tar.gz: 34d0e1f1f9a3a14bd61dfdf41203bb7fbc958a8bc6cfd78ccd68cf984641974e
5
5
  SHA512:
6
- metadata.gz: be125ed02086942c9cafd68a167b289a364509db6ef6c29c82ed28aa76d24ee158dc1506e97197259fc2be80606c24f40058ed5417dfef1b260e4ab0e680e585
7
- data.tar.gz: bf71f518bdbfa974f495e0929160bf80c7654c709dc550ac09bf5894518dc3d23ba62a10afd1703d7514e6ee0e6b21ee8078ecb500206a95d2284f63b984d724
6
+ metadata.gz: 5210dc34151aecd5fd48229fd8f8bd4ea9fb79ef99af8459e8c52c9f605ad6cb717fdbce05d15b5d0e9536e8cc8a15a5ff2df2468b4e648bcd6772dbf12b74e5
7
+ data.tar.gz: 9b64b496bd04a0a9ec0ae88b4067ebdd68b83dc86b05690c4f16fd83361bab7b961be917544106f5f2465d593fd1f495a37676188ef84fbdae71cdb3ab31a5a9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.80.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for ServiceCatalog.
8
+
4
9
  1.79.0 (2023-04-07)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.79.0
1
+ 1.80.0
@@ -275,6 +275,11 @@ module Aws::ServiceCatalog
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -486,17 +491,71 @@ module Aws::ServiceCatalog
486
491
  # The portfolio identifier.
487
492
  #
488
493
  # @option params [required, String] :principal_arn
489
- # The ARN of the principal (user, role, or group). This field allows an
490
- # ARN with no `accountID` if `PrincipalType` is `IAM_PATTERN`.
494
+ # The ARN of the principal (user, role, or group). The supported value
495
+ # is a fully defined [ `IAM` ARN][1] if the `PrincipalType` is `IAM`. If
496
+ # the `PrincipalType` is `IAM_PATTERN`, the supported value is an `IAM`
497
+ # ARN without an AccountID in the following format:
498
+ #
499
+ # *arn:partition:iam:::resource-type/resource-id*
500
+ #
501
+ # The resource-id can be either of the following:
502
+ #
503
+ # * Fully formed, for example *arn:aws:iam:::role/resource-name* or
504
+ # *arn:aws:iam:::role/resource-path/resource-name*
505
+ #
506
+ # * A wildcard ARN. The wildcard ARN accepts `IAM_PATTERN` values with a
507
+ # "*" or "?" in the resource-id segment of the ARN, for example
508
+ # *arn:partition:service:::resource-type/resource-path/resource-name*.
509
+ # The new symbols are exclusive to the **resource-path** and
510
+ # **resource-name** and cannot be used to replace the
511
+ # **resource-type** or other ARN values.
512
+ #
513
+ # Examples of an **acceptable** wildcard ARN:
514
+ #
515
+ # * arn:aws:iam:::role/ResourceName\_*
516
+ #
517
+ # * arn:aws:iam:::role/*/ResourceName\_?
518
+ #
519
+ # Examples of an **unacceptable** wildcard ARN:
520
+ #
521
+ # * arn:aws:iam:::*/ResourceName
522
+ #
523
+ # ^
524
+ #
525
+ # You can associate multiple `IAM_PATTERN`s even if the account has no
526
+ # principal with that name.
527
+ #
528
+ # <note markdown="1"> * The ARN path and principal name allow unlimited wildcard characters.
491
529
  #
492
- # You can associate multiple `IAM` patterns even if the account has no
493
- # principal with that name. This is useful in Principal Name Sharing if
494
- # you want to share a principal without creating it in the account that
495
- # owns the portfolio.
530
+ # * The "?" wildcard character matches zero or one of any character.
531
+ # This is similar to ".?" in regular regex context.
532
+ #
533
+ # * The "*" wildcard character matches any number of any characters.
534
+ # This is similar ".*" in regular regex context.
535
+ #
536
+ # * In the IAM Principal ARNs format
537
+ # (arn:partition:iam:::resource-type/resource-path/resource-name),
538
+ # valid **resource-type** values include user/, group/, or role/. The
539
+ # "?" and "*" are allowed only after the **resource-type**, in
540
+ # the resource-id segment. You can use special characters anywhere
541
+ # within the **resource-id**.
542
+ #
543
+ # * The "*" also matches the "/" character, allowing paths to be
544
+ # formed within the **resource-id**. For example,
545
+ # arn:aws:iam:::role/*/ResourceName\_? matches both
546
+ # arn:aws:iam:::role/pathA/pathB/ResourceName\_1 and
547
+ # arn:aws:iam:::role/pathA/ResourceName\_1.
548
+ #
549
+ # </note>
550
+ #
551
+ #
552
+ #
553
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-arns
496
554
  #
497
555
  # @option params [required, String] :principal_type
498
556
  # The principal type. The supported value is `IAM` if you use a fully
499
- # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`.
557
+ # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`,
558
+ # with or without wildcard characters.
500
559
  #
501
560
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
502
561
  #
@@ -2974,6 +3033,23 @@ module Aws::ServiceCatalog
2974
3033
  # will no longer be able to provision products in this portfolio using a
2975
3034
  # role matching the name of the associated principal.
2976
3035
  #
3036
+ # For more information, review [associate-principal-with-portfolio][1]
3037
+ # in the Amazon Web Services CLI Command Reference.
3038
+ #
3039
+ # <note markdown="1"> If you disassociate a principal from a portfolio, with PrincipalType
3040
+ # as `IAM`, the same principal will still have access to the portfolio
3041
+ # if it matches one of the associated principals of type `IAM_PATTERN`.
3042
+ # To fully remove access for a principal, verify all the associated
3043
+ # Principals of type `IAM_PATTERN`, and then ensure you disassociate any
3044
+ # `IAM_PATTERN` principals that match the principal whose access you are
3045
+ # removing.
3046
+ #
3047
+ # </note>
3048
+ #
3049
+ #
3050
+ #
3051
+ # [1]: https://docs.aws.amazon.com/cli/latest/reference/servicecatalog/associate-principal-with-portfolio.html#options
3052
+ #
2977
3053
  # @option params [String] :accept_language
2978
3054
  # The language code.
2979
3055
  #
@@ -2986,11 +3062,13 @@ module Aws::ServiceCatalog
2986
3062
  #
2987
3063
  # @option params [required, String] :principal_arn
2988
3064
  # The ARN of the principal (user, role, or group). This field allows an
2989
- # ARN with no `accountID` if `PrincipalType` is `IAM_PATTERN`.
3065
+ # ARN with no `accountID` with or without wildcard characters if
3066
+ # `PrincipalType` is `IAM_PATTERN`.
2990
3067
  #
2991
3068
  # @option params [String] :principal_type
2992
3069
  # The supported value is `IAM` if you use a fully defined ARN, or
2993
- # `IAM_PATTERN` if you use no `accountID`.
3070
+ # `IAM_PATTERN` if you specify an `IAM` ARN with no AccountId, with or
3071
+ # without wildcard characters.
2994
3072
  #
2995
3073
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2996
3074
  #
@@ -6138,7 +6216,7 @@ module Aws::ServiceCatalog
6138
6216
  params: params,
6139
6217
  config: config)
6140
6218
  context[:gem_name] = 'aws-sdk-servicecatalog'
6141
- context[:gem_version] = '1.79.0'
6219
+ context[:gem_version] = '1.80.0'
6142
6220
  Seahorse::Client::Request.new(handlers, context)
6143
6221
  end
6144
6222
 
@@ -114,18 +114,74 @@ module Aws::ServiceCatalog
114
114
  # @return [String]
115
115
  #
116
116
  # @!attribute [rw] principal_arn
117
- # The ARN of the principal (user, role, or group). This field allows
118
- # an ARN with no `accountID` if `PrincipalType` is `IAM_PATTERN`.
117
+ # The ARN of the principal (user, role, or group). The supported value
118
+ # is a fully defined [ `IAM` ARN][1] if the `PrincipalType` is `IAM`.
119
+ # If the `PrincipalType` is `IAM_PATTERN`, the supported value is an
120
+ # `IAM` ARN without an AccountID in the following format:
121
+ #
122
+ # *arn:partition:iam:::resource-type/resource-id*
123
+ #
124
+ # The resource-id can be either of the following:
125
+ #
126
+ # * Fully formed, for example *arn:aws:iam:::role/resource-name* or
127
+ # *arn:aws:iam:::role/resource-path/resource-name*
128
+ #
129
+ # * A wildcard ARN. The wildcard ARN accepts `IAM_PATTERN` values with
130
+ # a "*" or "?" in the resource-id segment of the ARN, for
131
+ # example
132
+ # *arn:partition:service:::resource-type/resource-path/resource-name*.
133
+ # The new symbols are exclusive to the **resource-path** and
134
+ # **resource-name** and cannot be used to replace the
135
+ # **resource-type** or other ARN values.
136
+ #
137
+ # Examples of an **acceptable** wildcard ARN:
138
+ #
139
+ # * arn:aws:iam:::role/ResourceName\_*
140
+ #
141
+ # * arn:aws:iam:::role/*/ResourceName\_?
142
+ #
143
+ # Examples of an **unacceptable** wildcard ARN:
144
+ #
145
+ # * arn:aws:iam:::*/ResourceName
146
+ #
147
+ # ^
148
+ #
149
+ # You can associate multiple `IAM_PATTERN`s even if the account has no
150
+ # principal with that name.
119
151
  #
120
- # You can associate multiple `IAM` patterns even if the account has no
121
- # principal with that name. This is useful in Principal Name Sharing
122
- # if you want to share a principal without creating it in the account
123
- # that owns the portfolio.
152
+ # <note markdown="1"> * The ARN path and principal name allow unlimited wildcard
153
+ # characters.
154
+ #
155
+ # * The "?" wildcard character matches zero or one of any character.
156
+ # This is similar to ".?" in regular regex context.
157
+ #
158
+ # * The "*" wildcard character matches any number of any
159
+ # characters. This is similar ".*" in regular regex context.
160
+ #
161
+ # * In the IAM Principal ARNs format
162
+ # (arn:partition:iam:::resource-type/resource-path/resource-name),
163
+ # valid **resource-type** values include user/, group/, or role/.
164
+ # The "?" and "*" are allowed only after the **resource-type**,
165
+ # in the resource-id segment. You can use special characters
166
+ # anywhere within the **resource-id**.
167
+ #
168
+ # * The "*" also matches the "/" character, allowing paths to be
169
+ # formed within the **resource-id**. For example,
170
+ # arn:aws:iam:::role/*/ResourceName\_? matches both
171
+ # arn:aws:iam:::role/pathA/pathB/ResourceName\_1 and
172
+ # arn:aws:iam:::role/pathA/ResourceName\_1.
173
+ #
174
+ # </note>
175
+ #
176
+ #
177
+ #
178
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-arns
124
179
  # @return [String]
125
180
  #
126
181
  # @!attribute [rw] principal_type
127
182
  # The principal type. The supported value is `IAM` if you use a fully
128
- # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`.
183
+ # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`,
184
+ # with or without wildcard characters.
129
185
  # @return [String]
130
186
  #
131
187
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociatePrincipalWithPortfolioInput AWS API Documentation
@@ -2320,12 +2376,14 @@ module Aws::ServiceCatalog
2320
2376
  #
2321
2377
  # @!attribute [rw] principal_arn
2322
2378
  # The ARN of the principal (user, role, or group). This field allows
2323
- # an ARN with no `accountID` if `PrincipalType` is `IAM_PATTERN`.
2379
+ # an ARN with no `accountID` with or without wildcard characters if
2380
+ # `PrincipalType` is `IAM_PATTERN`.
2324
2381
  # @return [String]
2325
2382
  #
2326
2383
  # @!attribute [rw] principal_type
2327
2384
  # The supported value is `IAM` if you use a fully defined ARN, or
2328
- # `IAM_PATTERN` if you use no `accountID`.
2385
+ # `IAM_PATTERN` if you specify an `IAM` ARN with no AccountId, with or
2386
+ # without wildcard characters.
2329
2387
  # @return [String]
2330
2388
  #
2331
2389
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociatePrincipalFromPortfolioInput AWS API Documentation
@@ -4187,13 +4245,21 @@ module Aws::ServiceCatalog
4187
4245
  #
4188
4246
  # @!attribute [rw] principal_arn
4189
4247
  # The ARN of the principal (user, role, or group). This field allows
4190
- # for an ARN with no `accountID` if the `PrincipalType` is an
4191
- # `IAM_PATTERN`.
4248
+ # for an ARN with no `accountID`, with or without wildcard characters
4249
+ # if the `PrincipalType` is an `IAM_PATTERN`.
4250
+ #
4251
+ # For more information, review [associate-principal-with-portfolio][1]
4252
+ # in the Amazon Web Services CLI Command Reference.
4253
+ #
4254
+ #
4255
+ #
4256
+ # [1]: https://docs.aws.amazon.com/cli/latest/reference/servicecatalog/associate-principal-with-portfolio.html#options
4192
4257
  # @return [String]
4193
4258
  #
4194
4259
  # @!attribute [rw] principal_type
4195
4260
  # The principal type. The supported value is `IAM` if you use a fully
4196
- # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`.
4261
+ # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`,
4262
+ # with or without wildcard characters.
4197
4263
  # @return [String]
4198
4264
  #
4199
4265
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/Principal AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
52
52
  # @!group service
53
53
  module Aws::ServiceCatalog
54
54
 
55
- GEM_VERSION = '1.79.0'
55
+ GEM_VERSION = '1.80.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-servicecatalog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.79.0
4
+ version: 1.80.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-07 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement