aws-sdk-observabilityadmin 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-observabilityadmin/client.rb +758 -0
- data/lib/aws-sdk-observabilityadmin/client_api.rb +236 -0
- data/lib/aws-sdk-observabilityadmin/customizations.rb +0 -0
- data/lib/aws-sdk-observabilityadmin/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-observabilityadmin/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-observabilityadmin/endpoints.rb +20 -0
- data/lib/aws-sdk-observabilityadmin/errors.rb +96 -0
- data/lib/aws-sdk-observabilityadmin/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-observabilityadmin/resource.rb +26 -0
- data/lib/aws-sdk-observabilityadmin/types.rb +300 -0
- data/lib/aws-sdk-observabilityadmin/waiters.rb +15 -0
- data/lib/aws-sdk-observabilityadmin.rb +62 -0
- data/sig/client.rbs +147 -0
- data/sig/errors.rbs +27 -0
- data/sig/resource.rbs +82 -0
- data/sig/types.rbs +83 -0
- data/sig/waiters.rbs +13 -0
- metadata +100 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::ObservabilityAdmin
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
attr_accessor amzn_error_type: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class GetTelemetryEvaluationStatusForOrganizationOutput
|
18
|
+
attr_accessor status: ("NOT_STARTED" | "STARTING" | "FAILED_START" | "RUNNING" | "STOPPING" | "FAILED_STOP" | "STOPPED")
|
19
|
+
attr_accessor failure_reason: ::String
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class GetTelemetryEvaluationStatusOutput
|
24
|
+
attr_accessor status: ("NOT_STARTED" | "STARTING" | "FAILED_START" | "RUNNING" | "STOPPING" | "FAILED_STOP" | "STOPPED")
|
25
|
+
attr_accessor failure_reason: ::String
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
29
|
+
class InternalServerException
|
30
|
+
attr_accessor message: ::String
|
31
|
+
attr_accessor amzn_error_type: ::String
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class ListResourceTelemetryForOrganizationInput
|
36
|
+
attr_accessor account_identifiers: ::Array[::String]
|
37
|
+
attr_accessor resource_identifier_prefix: ::String
|
38
|
+
attr_accessor resource_types: ::Array[("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function")]
|
39
|
+
attr_accessor telemetry_configuration_state: ::Hash[("Logs" | "Metrics" | "Traces"), ("Enabled" | "Disabled" | "NotApplicable")]
|
40
|
+
attr_accessor resource_tags: ::Hash[::String, ::String]
|
41
|
+
attr_accessor max_results: ::Integer
|
42
|
+
attr_accessor next_token: ::String
|
43
|
+
SENSITIVE: []
|
44
|
+
end
|
45
|
+
|
46
|
+
class ListResourceTelemetryForOrganizationOutput
|
47
|
+
attr_accessor telemetry_configurations: ::Array[Types::TelemetryConfiguration]
|
48
|
+
attr_accessor next_token: ::String
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class ListResourceTelemetryInput
|
53
|
+
attr_accessor resource_identifier_prefix: ::String
|
54
|
+
attr_accessor resource_types: ::Array[("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function")]
|
55
|
+
attr_accessor telemetry_configuration_state: ::Hash[("Logs" | "Metrics" | "Traces"), ("Enabled" | "Disabled" | "NotApplicable")]
|
56
|
+
attr_accessor resource_tags: ::Hash[::String, ::String]
|
57
|
+
attr_accessor max_results: ::Integer
|
58
|
+
attr_accessor next_token: ::String
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class ListResourceTelemetryOutput
|
63
|
+
attr_accessor telemetry_configurations: ::Array[Types::TelemetryConfiguration]
|
64
|
+
attr_accessor next_token: ::String
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class TelemetryConfiguration
|
69
|
+
attr_accessor account_identifier: ::String
|
70
|
+
attr_accessor telemetry_configuration_state: ::Hash[("Logs" | "Metrics" | "Traces"), ("Enabled" | "Disabled" | "NotApplicable")]
|
71
|
+
attr_accessor resource_type: ("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function")
|
72
|
+
attr_accessor resource_identifier: ::String
|
73
|
+
attr_accessor resource_tags: ::Hash[::String, ::String]
|
74
|
+
attr_accessor last_update_time_stamp: ::Integer
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class ValidationException
|
79
|
+
attr_accessor message: ::String
|
80
|
+
SENSITIVE: []
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ObservabilityAdmin
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-observabilityadmin
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amazon Web Services
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-11-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.210.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.210.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: aws-sigv4
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.5'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.5'
|
47
|
+
description: Official AWS Ruby gem for CloudWatch Observability Admin Service. This
|
48
|
+
gem is part of the AWS SDK for Ruby.
|
49
|
+
email:
|
50
|
+
- aws-dr-rubygems@amazon.com
|
51
|
+
executables: []
|
52
|
+
extensions: []
|
53
|
+
extra_rdoc_files: []
|
54
|
+
files:
|
55
|
+
- CHANGELOG.md
|
56
|
+
- LICENSE.txt
|
57
|
+
- VERSION
|
58
|
+
- lib/aws-sdk-observabilityadmin.rb
|
59
|
+
- lib/aws-sdk-observabilityadmin/client.rb
|
60
|
+
- lib/aws-sdk-observabilityadmin/client_api.rb
|
61
|
+
- lib/aws-sdk-observabilityadmin/customizations.rb
|
62
|
+
- lib/aws-sdk-observabilityadmin/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-observabilityadmin/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-observabilityadmin/endpoints.rb
|
65
|
+
- lib/aws-sdk-observabilityadmin/errors.rb
|
66
|
+
- lib/aws-sdk-observabilityadmin/plugins/endpoints.rb
|
67
|
+
- lib/aws-sdk-observabilityadmin/resource.rb
|
68
|
+
- lib/aws-sdk-observabilityadmin/types.rb
|
69
|
+
- lib/aws-sdk-observabilityadmin/waiters.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
75
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
76
|
+
licenses:
|
77
|
+
- Apache-2.0
|
78
|
+
metadata:
|
79
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-observabilityadmin
|
80
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-observabilityadmin/CHANGELOG.md
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '2.5'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
98
|
+
specification_version: 4
|
99
|
+
summary: AWS SDK for Ruby - CloudWatch Observability Admin Service
|
100
|
+
test_files: []
|