aws-sdk-licensemanagerusersubscriptions 1.2.0 → 1.3.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: ff4a01d8dda6c197a53dee1e25ad1061103e3a70063755950c88fd34a3d25045
4
- data.tar.gz: 44dcf6f06e4fb4e92b6dbbcd716c91ac0485bbf1c1fd30bb2caac2e92cf0d7e3
3
+ metadata.gz: bd02a4bb4580bd4ffb889393967ed05745709fecb942a128c64c3cb4962646a7
4
+ data.tar.gz: e640e51c368334e337791c799eaf89a7954061a1527a30cea2542a33600831ab
5
5
  SHA512:
6
- metadata.gz: 8de60c13e08e48a42d79ae05571c77d037e259f2187ebd9616fdfd0fe7eb1080916642e1a528b2d8b744da0d224d67af310db9c7022789cc393e29425fb916a6
7
- data.tar.gz: 221010228e9e9a7671fe389b7b1d25c3f6cb56f4e5007939df199cfe90d48b63c55b5d0c0f9772484d2ef99f57c18c6d602d506ac782a237a3342124378aaf76
6
+ metadata.gz: 0567d0298d2135199723af4472b9410de802c6d6e21326d24c0e5ed0395fdd6f9197ce4612f9b7c1af64232fa5e4341a4c409d46fedd955d7bbdc6a7f19a6c7e
7
+ data.tar.gz: 55eaaa52a0a7ad0316c6bd80fe23e47f08875674f3a5c32769c9dbf381502bf1dc940fdb1a72f68bbc37cd407e2203e20129d8368e08c7f81035194c8e114978
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.2.0 (2022-11-29)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.3.0
@@ -996,7 +996,7 @@ module Aws::LicenseManagerUserSubscriptions
996
996
  params: params,
997
997
  config: config)
998
998
  context[:gem_name] = 'aws-sdk-licensemanagerusersubscriptions'
999
- context[:gem_version] = '1.2.0'
999
+ context[:gem_version] = '1.3.0'
1000
1000
  Seahorse::Client::Request.new(handlers, context)
1001
1001
  end
1002
1002
 
@@ -9,105 +9,43 @@
9
9
 
10
10
  module Aws::LicenseManagerUserSubscriptions
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://license-manager-user-subscriptions-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://license-manager-user-subscriptions-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://license-manager-user-subscriptions.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://license-manager-user-subscriptions.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2xpY2Vuc2UtbWFuYWdlci11c2VyLXN1YnNj
77
- cmlwdGlvbnMtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxT
78
- dGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319
79
- LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9y
80
- IjoiRklQUyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBw
81
- YXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUi
82
- OiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVh
83
- bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6
84
- InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFu
85
- RXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2Ijpb
86
- eyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1d
87
- LCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5k
88
- cG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9saWNlbnNlLW1hbmFnZXItdXNlci1z
89
- dWJzY3JpcHRpb25zLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNk
90
- bnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
91
- ZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJ
92
- UFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
93
- cG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7
94
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
95
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
96
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
97
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
98
- In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1
99
- bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0
100
- cHM6Ly9saWNlbnNlLW1hbmFnZXItdXNlci1zdWJzY3JpcHRpb25zLntSZWdp
101
- b259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInBy
102
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
103
- XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5h
104
- YmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFs
105
- U3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVu
106
- ZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbGljZW5zZS1tYW5hZ2VyLXVzZXIt
107
- c3Vic2NyaXB0aW9ucy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
108
- ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
109
- ZW5kcG9pbnQifV19XX0=
110
-
111
- JSON
112
50
  end
113
51
  end
@@ -25,13 +25,6 @@ module Aws::LicenseManagerUserSubscriptions
25
25
 
26
26
  # Details about an Active Directory identity provider.
27
27
  #
28
- # @note When making an API call, you may pass ActiveDirectoryIdentityProvider
29
- # data as a hash:
30
- #
31
- # {
32
- # directory_id: "String",
33
- # }
34
- #
35
28
  # @!attribute [rw] directory_id
36
29
  # The directory ID for an Active Directory identity provider.
37
30
  # @return [String]
@@ -44,20 +37,6 @@ module Aws::LicenseManagerUserSubscriptions
44
37
  include Aws::Structure
45
38
  end
46
39
 
47
- # @note When making an API call, you may pass AssociateUserRequest
48
- # data as a hash:
49
- #
50
- # {
51
- # domain: "String",
52
- # identity_provider: { # required
53
- # active_directory_identity_provider: {
54
- # directory_id: "String",
55
- # },
56
- # },
57
- # instance_id: "String", # required
58
- # username: "String", # required
59
- # }
60
- #
61
40
  # @!attribute [rw] domain
62
41
  # The domain name of the user.
63
42
  # @return [String]
@@ -111,18 +90,6 @@ module Aws::LicenseManagerUserSubscriptions
111
90
  include Aws::Structure
112
91
  end
113
92
 
114
- # @note When making an API call, you may pass DeregisterIdentityProviderRequest
115
- # data as a hash:
116
- #
117
- # {
118
- # identity_provider: { # required
119
- # active_directory_identity_provider: {
120
- # directory_id: "String",
121
- # },
122
- # },
123
- # product: "String", # required
124
- # }
125
- #
126
93
  # @!attribute [rw] identity_provider
127
94
  # An object that specifies details for the identity provider.
128
95
  # @return [Types::IdentityProvider]
@@ -153,20 +120,6 @@ module Aws::LicenseManagerUserSubscriptions
153
120
  include Aws::Structure
154
121
  end
155
122
 
156
- # @note When making an API call, you may pass DisassociateUserRequest
157
- # data as a hash:
158
- #
159
- # {
160
- # domain: "String",
161
- # identity_provider: { # required
162
- # active_directory_identity_provider: {
163
- # directory_id: "String",
164
- # },
165
- # },
166
- # instance_id: "String", # required
167
- # username: "String", # required
168
- # }
169
- #
170
123
  # @!attribute [rw] domain
171
124
  # The domain name of the user.
172
125
  # @return [String]
@@ -210,15 +163,6 @@ module Aws::LicenseManagerUserSubscriptions
210
163
  # results from a describe operation. Filters can be used to match a set
211
164
  # of resources by specific criteria, such as tags, attributes, or IDs.
212
165
  #
213
- # @note When making an API call, you may pass Filter
214
- # data as a hash:
215
- #
216
- # {
217
- # attribute: "String",
218
- # operation: "String",
219
- # value: "String",
220
- # }
221
- #
222
166
  # @!attribute [rw] attribute
223
167
  # The name of an attribute to use as a filter.
224
168
  # @return [String]
@@ -396,14 +340,6 @@ module Aws::LicenseManagerUserSubscriptions
396
340
  include Aws::Structure
397
341
  end
398
342
 
399
- # @note When making an API call, you may pass ListIdentityProvidersRequest
400
- # data as a hash:
401
- #
402
- # {
403
- # max_results: 1,
404
- # next_token: "String",
405
- # }
406
- #
407
343
  # @!attribute [rw] max_results
408
344
  # Maximum number of results to return in a single call.
409
345
  # @return [Integer]
@@ -438,21 +374,6 @@ module Aws::LicenseManagerUserSubscriptions
438
374
  include Aws::Structure
439
375
  end
440
376
 
441
- # @note When making an API call, you may pass ListInstancesRequest
442
- # data as a hash:
443
- #
444
- # {
445
- # filters: [
446
- # {
447
- # attribute: "String",
448
- # operation: "String",
449
- # value: "String",
450
- # },
451
- # ],
452
- # max_results: 1,
453
- # next_token: "String",
454
- # }
455
- #
456
377
  # @!attribute [rw] filters
457
378
  # An array of structures that you can use to filter the results to
458
379
  # those that match one or more sets of key-value pairs that you
@@ -494,27 +415,6 @@ module Aws::LicenseManagerUserSubscriptions
494
415
  include Aws::Structure
495
416
  end
496
417
 
497
- # @note When making an API call, you may pass ListProductSubscriptionsRequest
498
- # data as a hash:
499
- #
500
- # {
501
- # filters: [
502
- # {
503
- # attribute: "String",
504
- # operation: "String",
505
- # value: "String",
506
- # },
507
- # ],
508
- # identity_provider: { # required
509
- # active_directory_identity_provider: {
510
- # directory_id: "String",
511
- # },
512
- # },
513
- # max_results: 1,
514
- # next_token: "String",
515
- # product: "String", # required
516
- # }
517
- #
518
418
  # @!attribute [rw] filters
519
419
  # An array of structures that you can use to filter the results to
520
420
  # those that match one or more sets of key-value pairs that you
@@ -566,27 +466,6 @@ module Aws::LicenseManagerUserSubscriptions
566
466
  include Aws::Structure
567
467
  end
568
468
 
569
- # @note When making an API call, you may pass ListUserAssociationsRequest
570
- # data as a hash:
571
- #
572
- # {
573
- # filters: [
574
- # {
575
- # attribute: "String",
576
- # operation: "String",
577
- # value: "String",
578
- # },
579
- # ],
580
- # identity_provider: { # required
581
- # active_directory_identity_provider: {
582
- # directory_id: "String",
583
- # },
584
- # },
585
- # instance_id: "String", # required
586
- # max_results: 1,
587
- # next_token: "String",
588
- # }
589
- #
590
469
  # @!attribute [rw] filters
591
470
  # An array of structures that you can use to filter the results to
592
471
  # those that match one or more sets of key-value pairs that you
@@ -687,22 +566,6 @@ module Aws::LicenseManagerUserSubscriptions
687
566
  include Aws::Structure
688
567
  end
689
568
 
690
- # @note When making an API call, you may pass RegisterIdentityProviderRequest
691
- # data as a hash:
692
- #
693
- # {
694
- # identity_provider: { # required
695
- # active_directory_identity_provider: {
696
- # directory_id: "String",
697
- # },
698
- # },
699
- # product: "String", # required
700
- # settings: {
701
- # security_group_id: "SecurityGroup", # required
702
- # subnets: ["Subnet"], # required
703
- # },
704
- # }
705
- #
706
569
  # @!attribute [rw] identity_provider
707
570
  # An object that specifies details for the identity provider.
708
571
  # @return [Types::IdentityProvider]
@@ -771,14 +634,6 @@ module Aws::LicenseManagerUserSubscriptions
771
634
  # security group should permit inbound TCP port 1688 communication from
772
635
  # resources in the VPC.
773
636
  #
774
- # @note When making an API call, you may pass Settings
775
- # data as a hash:
776
- #
777
- # {
778
- # security_group_id: "SecurityGroup", # required
779
- # subnets: ["Subnet"], # required
780
- # }
781
- #
782
637
  # @!attribute [rw] security_group_id
783
638
  # A security group ID that allows inbound TCP port 1688 communication
784
639
  # between resources in your VPC and the VPC endpoint for activation
@@ -798,20 +653,6 @@ module Aws::LicenseManagerUserSubscriptions
798
653
  include Aws::Structure
799
654
  end
800
655
 
801
- # @note When making an API call, you may pass StartProductSubscriptionRequest
802
- # data as a hash:
803
- #
804
- # {
805
- # domain: "String",
806
- # identity_provider: { # required
807
- # active_directory_identity_provider: {
808
- # directory_id: "String",
809
- # },
810
- # },
811
- # product: "String", # required
812
- # username: "String", # required
813
- # }
814
- #
815
656
  # @!attribute [rw] domain
816
657
  # The domain name of the user.
817
658
  # @return [String]
@@ -851,20 +692,6 @@ module Aws::LicenseManagerUserSubscriptions
851
692
  include Aws::Structure
852
693
  end
853
694
 
854
- # @note When making an API call, you may pass StopProductSubscriptionRequest
855
- # data as a hash:
856
- #
857
- # {
858
- # domain: "String",
859
- # identity_provider: { # required
860
- # active_directory_identity_provider: {
861
- # directory_id: "String",
862
- # },
863
- # },
864
- # product: "String", # required
865
- # username: "String", # required
866
- # }
867
- #
868
695
  # @!attribute [rw] domain
869
696
  # The domain name of the user.
870
697
  # @return [String]
@@ -918,23 +745,6 @@ module Aws::LicenseManagerUserSubscriptions
918
745
  include Aws::Structure
919
746
  end
920
747
 
921
- # @note When making an API call, you may pass UpdateIdentityProviderSettingsRequest
922
- # data as a hash:
923
- #
924
- # {
925
- # identity_provider: { # required
926
- # active_directory_identity_provider: {
927
- # directory_id: "String",
928
- # },
929
- # },
930
- # product: "String", # required
931
- # update_settings: { # required
932
- # add_subnets: ["Subnet"], # required
933
- # remove_subnets: ["Subnet"], # required
934
- # security_group_id: "SecurityGroup",
935
- # },
936
- # }
937
- #
938
748
  # @!attribute [rw] identity_provider
939
749
  # Details about an identity provider.
940
750
  # @return [Types::IdentityProvider]
@@ -980,15 +790,6 @@ module Aws::LicenseManagerUserSubscriptions
980
790
  # Updates the registered identity provider’s product related
981
791
  # configuration settings such as the subnets to provision VPC endpoints.
982
792
  #
983
- # @note When making an API call, you may pass UpdateSettings
984
- # data as a hash:
985
- #
986
- # {
987
- # add_subnets: ["Subnet"], # required
988
- # remove_subnets: ["Subnet"], # required
989
- # security_group_id: "SecurityGroup",
990
- # }
991
- #
992
793
  # @!attribute [rw] add_subnets
993
794
  # The ID of one or more subnets in which License Manager will create a
994
795
  # VPC endpoint for products that require connectivity to activation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-licensemanagerusersubscriptions/customizations'
52
52
  # @!group service
53
53
  module Aws::LicenseManagerUserSubscriptions
54
54
 
55
- GEM_VERSION = '1.2.0'
55
+ GEM_VERSION = '1.3.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-licensemanagerusersubscriptions
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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: 2022-11-29 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core