aws-sdk-licensemanagerlinuxsubscriptions 1.17.0 → 1.18.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-licensemanagerlinuxsubscriptions/client.rb +278 -19
- data/lib/aws-sdk-licensemanagerlinuxsubscriptions/client_api.rb +189 -0
- data/lib/aws-sdk-licensemanagerlinuxsubscriptions/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-licensemanagerlinuxsubscriptions/endpoints.rb +98 -0
- data/lib/aws-sdk-licensemanagerlinuxsubscriptions/errors.rb +16 -0
- data/lib/aws-sdk-licensemanagerlinuxsubscriptions/plugins/endpoints.rb +14 -0
- data/lib/aws-sdk-licensemanagerlinuxsubscriptions/types.rb +365 -20
- data/lib/aws-sdk-licensemanagerlinuxsubscriptions.rb +2 -2
- data/sig/client.rbs +81 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +98 -0
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -8,6 +8,14 @@
|
|
8
8
|
module Aws::LicenseManagerLinuxSubscriptions
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class DeregisterSubscriptionProviderRequest
|
12
|
+
attr_accessor subscription_provider_arn: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class DeregisterSubscriptionProviderResponse < Aws::EmptyStructure
|
17
|
+
end
|
18
|
+
|
11
19
|
class Filter
|
12
20
|
attr_accessor name: ::String
|
13
21
|
attr_accessor operator: ("Equal" | "NotEqual" | "Contains")
|
@@ -15,6 +23,21 @@ module Aws::LicenseManagerLinuxSubscriptions
|
|
15
23
|
SENSITIVE: []
|
16
24
|
end
|
17
25
|
|
26
|
+
class GetRegisteredSubscriptionProviderRequest
|
27
|
+
attr_accessor subscription_provider_arn: ::String
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class GetRegisteredSubscriptionProviderResponse
|
32
|
+
attr_accessor last_successful_data_retrieval_time: ::String
|
33
|
+
attr_accessor secret_arn: ::String
|
34
|
+
attr_accessor subscription_provider_arn: ::String
|
35
|
+
attr_accessor subscription_provider_source: ("RedHat")
|
36
|
+
attr_accessor subscription_provider_status: ("ACTIVE" | "INVALID" | "PENDING")
|
37
|
+
attr_accessor subscription_provider_status_message: ::String
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
18
41
|
class GetServiceSettingsRequest < Aws::EmptyStructure
|
19
42
|
end
|
20
43
|
|
@@ -30,13 +53,18 @@ module Aws::LicenseManagerLinuxSubscriptions
|
|
30
53
|
class Instance
|
31
54
|
attr_accessor account_id: ::String
|
32
55
|
attr_accessor ami_id: ::String
|
56
|
+
attr_accessor dual_subscription: ::String
|
33
57
|
attr_accessor instance_id: ::String
|
34
58
|
attr_accessor instance_type: ::String
|
35
59
|
attr_accessor last_updated_time: ::String
|
60
|
+
attr_accessor os_version: ::String
|
36
61
|
attr_accessor product_code: ::Array[::String]
|
37
62
|
attr_accessor region: ::String
|
63
|
+
attr_accessor registered_with_subscription_provider: ::String
|
38
64
|
attr_accessor status: ::String
|
39
65
|
attr_accessor subscription_name: ::String
|
66
|
+
attr_accessor subscription_provider_create_time: ::String
|
67
|
+
attr_accessor subscription_provider_update_time: ::String
|
40
68
|
attr_accessor usage_operation: ::String
|
41
69
|
SENSITIVE: []
|
42
70
|
end
|
@@ -78,6 +106,58 @@ module Aws::LicenseManagerLinuxSubscriptions
|
|
78
106
|
SENSITIVE: []
|
79
107
|
end
|
80
108
|
|
109
|
+
class ListRegisteredSubscriptionProvidersRequest
|
110
|
+
attr_accessor max_results: ::Integer
|
111
|
+
attr_accessor next_token: ::String
|
112
|
+
attr_accessor subscription_provider_sources: ::Array[("RedHat")]
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class ListRegisteredSubscriptionProvidersResponse
|
117
|
+
attr_accessor next_token: ::String
|
118
|
+
attr_accessor registered_subscription_providers: ::Array[Types::RegisteredSubscriptionProvider]
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
122
|
+
class ListTagsForResourceRequest
|
123
|
+
attr_accessor resource_arn: ::String
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class ListTagsForResourceResponse
|
128
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
129
|
+
SENSITIVE: [:tags]
|
130
|
+
end
|
131
|
+
|
132
|
+
class RegisterSubscriptionProviderRequest
|
133
|
+
attr_accessor secret_arn: ::String
|
134
|
+
attr_accessor subscription_provider_source: ("RedHat")
|
135
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
136
|
+
SENSITIVE: [:tags]
|
137
|
+
end
|
138
|
+
|
139
|
+
class RegisterSubscriptionProviderResponse
|
140
|
+
attr_accessor subscription_provider_arn: ::String
|
141
|
+
attr_accessor subscription_provider_source: ("RedHat")
|
142
|
+
attr_accessor subscription_provider_status: ("ACTIVE" | "INVALID" | "PENDING")
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class RegisteredSubscriptionProvider
|
147
|
+
attr_accessor last_successful_data_retrieval_time: ::String
|
148
|
+
attr_accessor secret_arn: ::String
|
149
|
+
attr_accessor subscription_provider_arn: ::String
|
150
|
+
attr_accessor subscription_provider_source: ("RedHat")
|
151
|
+
attr_accessor subscription_provider_status: ("ACTIVE" | "INVALID" | "PENDING")
|
152
|
+
attr_accessor subscription_provider_status_message: ::String
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class ResourceNotFoundException
|
157
|
+
attr_accessor message: ::String
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
81
161
|
class Subscription
|
82
162
|
attr_accessor instance_count: ::Integer
|
83
163
|
attr_accessor name: ::String
|
@@ -85,11 +165,29 @@ module Aws::LicenseManagerLinuxSubscriptions
|
|
85
165
|
SENSITIVE: []
|
86
166
|
end
|
87
167
|
|
168
|
+
class TagResourceRequest
|
169
|
+
attr_accessor resource_arn: ::String
|
170
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
171
|
+
SENSITIVE: [:tags]
|
172
|
+
end
|
173
|
+
|
174
|
+
class TagResourceResponse < Aws::EmptyStructure
|
175
|
+
end
|
176
|
+
|
88
177
|
class ThrottlingException
|
89
178
|
attr_accessor message: ::String
|
90
179
|
SENSITIVE: []
|
91
180
|
end
|
92
181
|
|
182
|
+
class UntagResourceRequest
|
183
|
+
attr_accessor resource_arn: ::String
|
184
|
+
attr_accessor tag_keys: ::Array[::String]
|
185
|
+
SENSITIVE: [:tag_keys]
|
186
|
+
end
|
187
|
+
|
188
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
189
|
+
end
|
190
|
+
|
93
191
|
class UpdateServiceSettingsRequest
|
94
192
|
attr_accessor allow_update: bool
|
95
193
|
attr_accessor linux_subscriptions_discovery: ("Enabled" | "Disabled")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-licensemanagerlinuxsubscriptions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.18.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: 2024-07-
|
11
|
+
date: 2024-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for AWS License Manager Linux Subscriptions. This
|
48
48
|
gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|