aws-sdk-deadline 1.7.0 → 1.9.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-deadline/client.rb +1489 -1369
- data/lib/aws-sdk-deadline/client_api.rb +528 -527
- data/lib/aws-sdk-deadline/errors.rb +42 -42
- data/lib/aws-sdk-deadline/types.rb +2673 -2491
- data/lib/aws-sdk-deadline.rb +1 -1
- data/sig/client.rbs +511 -510
- data/sig/errors.rbs +10 -10
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +539 -539
- data/sig/waiters.rbs +2 -2
- metadata +6 -6
data/sig/errors.rbs
CHANGED
@@ -12,47 +12,47 @@ module Aws
|
|
12
12
|
end
|
13
13
|
|
14
14
|
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
-
def context: () -> ::String
|
16
15
|
def message: () -> ::String
|
16
|
+
def context: () -> ::String
|
17
17
|
end
|
18
18
|
class ConflictException < ::Aws::Errors::ServiceError
|
19
|
-
def context: () -> ::String
|
20
19
|
def message: () -> ::String
|
21
20
|
def reason: () -> ::String
|
22
21
|
def resource_id: () -> ::String
|
23
22
|
def resource_type: () -> ::String
|
23
|
+
def context: () -> ::String
|
24
24
|
end
|
25
25
|
class InternalServerErrorException < ::Aws::Errors::ServiceError
|
26
26
|
def message: () -> ::String
|
27
27
|
def retry_after_seconds: () -> ::String
|
28
28
|
end
|
29
29
|
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
30
|
-
def context: () -> ::String
|
31
30
|
def message: () -> ::String
|
32
31
|
def resource_id: () -> ::String
|
33
32
|
def resource_type: () -> ::String
|
33
|
+
def context: () -> ::String
|
34
34
|
end
|
35
35
|
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
36
|
-
def context: () -> ::String
|
37
36
|
def message: () -> ::String
|
38
|
-
def quota_code: () -> ::String
|
39
37
|
def reason: () -> ::String
|
40
|
-
def resource_id: () -> ::String
|
41
38
|
def resource_type: () -> ::String
|
42
39
|
def service_code: () -> ::String
|
40
|
+
def quota_code: () -> ::String
|
41
|
+
def resource_id: () -> ::String
|
42
|
+
def context: () -> ::String
|
43
43
|
end
|
44
44
|
class ThrottlingException < ::Aws::Errors::ServiceError
|
45
|
-
def context: () -> ::String
|
46
45
|
def message: () -> ::String
|
46
|
+
def service_code: () -> ::String
|
47
47
|
def quota_code: () -> ::String
|
48
48
|
def retry_after_seconds: () -> ::String
|
49
|
-
def
|
49
|
+
def context: () -> ::String
|
50
50
|
end
|
51
51
|
class ValidationException < ::Aws::Errors::ServiceError
|
52
|
-
def context: () -> ::String
|
53
|
-
def field_list: () -> ::String
|
54
52
|
def message: () -> ::String
|
55
53
|
def reason: () -> ::String
|
54
|
+
def field_list: () -> ::String
|
55
|
+
def context: () -> ::String
|
56
56
|
end
|
57
57
|
end
|
58
58
|
end
|
data/sig/resource.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|