aws-sdk-pcaconnectorscep 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.
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ require 'aws-sdk-core/waiters'
11
+
12
+ module Aws::PcaConnectorScep
13
+ module Waiters
14
+ end
15
+ end
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+
11
+ require 'aws-sdk-core'
12
+ require 'aws-sigv4'
13
+
14
+ require_relative 'aws-sdk-pcaconnectorscep/types'
15
+ require_relative 'aws-sdk-pcaconnectorscep/client_api'
16
+ require_relative 'aws-sdk-pcaconnectorscep/plugins/endpoints.rb'
17
+ require_relative 'aws-sdk-pcaconnectorscep/client'
18
+ require_relative 'aws-sdk-pcaconnectorscep/errors'
19
+ require_relative 'aws-sdk-pcaconnectorscep/waiters'
20
+ require_relative 'aws-sdk-pcaconnectorscep/resource'
21
+ require_relative 'aws-sdk-pcaconnectorscep/endpoint_parameters'
22
+ require_relative 'aws-sdk-pcaconnectorscep/endpoint_provider'
23
+ require_relative 'aws-sdk-pcaconnectorscep/endpoints'
24
+ require_relative 'aws-sdk-pcaconnectorscep/customizations'
25
+
26
+ # This module provides support for Private CA Connector for SCEP. This module is available in the
27
+ # `aws-sdk-pcaconnectorscep` gem.
28
+ #
29
+ # # Client
30
+ #
31
+ # The {Client} class provides one method for each API operation. Operation
32
+ # methods each accept a hash of request parameters and return a response
33
+ # structure.
34
+ #
35
+ # pca_connector_scep = Aws::PcaConnectorScep::Client.new
36
+ # resp = pca_connector_scep.create_challenge(params)
37
+ #
38
+ # See {Client} for more information.
39
+ #
40
+ # # Errors
41
+ #
42
+ # Errors returned from Private CA Connector for SCEP are defined in the
43
+ # {Errors} module and all extend {Errors::ServiceError}.
44
+ #
45
+ # begin
46
+ # # do stuff
47
+ # rescue Aws::PcaConnectorScep::Errors::ServiceError
48
+ # # rescues all Private CA Connector for SCEP API errors
49
+ # end
50
+ #
51
+ # See {Errors} for more information.
52
+ #
53
+ # @!group service
54
+ module Aws::PcaConnectorScep
55
+
56
+ GEM_VERSION = '1.0.0'
57
+
58
+ end
data/sig/client.rbs ADDED
@@ -0,0 +1,198 @@
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 PcaConnectorScep
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CreateChallengeResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateChallengeResponse]
77
+ def challenge: () -> Types::Challenge
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#create_challenge-instance_method
80
+ def create_challenge: (
81
+ connector_arn: ::String,
82
+ ?client_token: ::String,
83
+ ?tags: Hash[::String, ::String]
84
+ ) -> _CreateChallengeResponseSuccess
85
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChallengeResponseSuccess
86
+
87
+ interface _CreateConnectorResponseSuccess
88
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectorResponse]
89
+ def connector_arn: () -> ::String
90
+ end
91
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#create_connector-instance_method
92
+ def create_connector: (
93
+ certificate_authority_arn: ::String,
94
+ ?mobile_device_management: {
95
+ intune: {
96
+ azure_application_id: ::String,
97
+ domain: ::String
98
+ }?
99
+ },
100
+ ?client_token: ::String,
101
+ ?tags: Hash[::String, ::String]
102
+ ) -> _CreateConnectorResponseSuccess
103
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectorResponseSuccess
104
+
105
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#delete_challenge-instance_method
106
+ def delete_challenge: (
107
+ challenge_arn: ::String
108
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
109
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
110
+
111
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#delete_connector-instance_method
112
+ def delete_connector: (
113
+ connector_arn: ::String
114
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
115
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
116
+
117
+ interface _GetChallengeMetadataResponseSuccess
118
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetChallengeMetadataResponse]
119
+ def challenge_metadata: () -> Types::ChallengeMetadata
120
+ end
121
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#get_challenge_metadata-instance_method
122
+ def get_challenge_metadata: (
123
+ challenge_arn: ::String
124
+ ) -> _GetChallengeMetadataResponseSuccess
125
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetChallengeMetadataResponseSuccess
126
+
127
+ interface _GetChallengePasswordResponseSuccess
128
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetChallengePasswordResponse]
129
+ def password: () -> ::String
130
+ end
131
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#get_challenge_password-instance_method
132
+ def get_challenge_password: (
133
+ challenge_arn: ::String
134
+ ) -> _GetChallengePasswordResponseSuccess
135
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetChallengePasswordResponseSuccess
136
+
137
+ interface _GetConnectorResponseSuccess
138
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectorResponse]
139
+ def connector: () -> Types::Connector
140
+ end
141
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#get_connector-instance_method
142
+ def get_connector: (
143
+ connector_arn: ::String
144
+ ) -> _GetConnectorResponseSuccess
145
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectorResponseSuccess
146
+
147
+ interface _ListChallengeMetadataResponseSuccess
148
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListChallengeMetadataResponse]
149
+ def challenges: () -> ::Array[Types::ChallengeMetadataSummary]
150
+ def next_token: () -> ::String
151
+ end
152
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#list_challenge_metadata-instance_method
153
+ def list_challenge_metadata: (
154
+ ?max_results: ::Integer,
155
+ ?next_token: ::String,
156
+ connector_arn: ::String
157
+ ) -> _ListChallengeMetadataResponseSuccess
158
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChallengeMetadataResponseSuccess
159
+
160
+ interface _ListConnectorsResponseSuccess
161
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectorsResponse]
162
+ def connectors: () -> ::Array[Types::ConnectorSummary]
163
+ def next_token: () -> ::String
164
+ end
165
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#list_connectors-instance_method
166
+ def list_connectors: (
167
+ ?max_results: ::Integer,
168
+ ?next_token: ::String
169
+ ) -> _ListConnectorsResponseSuccess
170
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectorsResponseSuccess
171
+
172
+ interface _ListTagsForResourceResponseSuccess
173
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
174
+ def tags: () -> ::Hash[::String, ::String]
175
+ end
176
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#list_tags_for_resource-instance_method
177
+ def list_tags_for_resource: (
178
+ resource_arn: ::String
179
+ ) -> _ListTagsForResourceResponseSuccess
180
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
181
+
182
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#tag_resource-instance_method
183
+ def tag_resource: (
184
+ resource_arn: ::String,
185
+ tags: Hash[::String, ::String]
186
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
187
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
188
+
189
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Client.html#untag_resource-instance_method
190
+ def untag_resource: (
191
+ resource_arn: ::String,
192
+ tag_keys: Array[::String]
193
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
194
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
195
+ end
196
+ end
197
+ end
198
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,48 @@
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 PcaConnectorScep
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class BadRequestException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class ConflictException < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ def resource_id: () -> ::String
23
+ def resource_type: () -> ::String
24
+ end
25
+ class InternalServerException < ::Aws::Errors::ServiceError
26
+ def message: () -> ::String
27
+ end
28
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
29
+ def message: () -> ::String
30
+ def resource_id: () -> ::String
31
+ def resource_type: () -> ::String
32
+ end
33
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
34
+ def message: () -> ::String
35
+ def resource_type: () -> ::String
36
+ def service_code: () -> ::String
37
+ def quota_code: () -> ::String
38
+ end
39
+ class ThrottlingException < ::Aws::Errors::ServiceError
40
+ def message: () -> ::String
41
+ end
42
+ class ValidationException < ::Aws::Errors::ServiceError
43
+ def message: () -> ::String
44
+ def reason: () -> ::String
45
+ end
46
+ end
47
+ end
48
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,79 @@
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 PcaConnectorScep
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PcaConnectorScep/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> void
72
+ | (?Hash[Symbol, untyped]) -> void
73
+
74
+ def client: () -> Client
75
+
76
+
77
+ end
78
+ end
79
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,248 @@
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::PcaConnectorScep
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class BadRequestException
17
+ attr_accessor message: ::String
18
+ SENSITIVE: []
19
+ end
20
+
21
+ class Challenge
22
+ attr_accessor arn: ::String
23
+ attr_accessor connector_arn: ::String
24
+ attr_accessor created_at: ::Time
25
+ attr_accessor updated_at: ::Time
26
+ attr_accessor password: ::String
27
+ SENSITIVE: [:password]
28
+ end
29
+
30
+ class ChallengeMetadata
31
+ attr_accessor arn: ::String
32
+ attr_accessor connector_arn: ::String
33
+ attr_accessor created_at: ::Time
34
+ attr_accessor updated_at: ::Time
35
+ SENSITIVE: []
36
+ end
37
+
38
+ class ChallengeMetadataSummary
39
+ attr_accessor arn: ::String
40
+ attr_accessor connector_arn: ::String
41
+ attr_accessor created_at: ::Time
42
+ attr_accessor updated_at: ::Time
43
+ SENSITIVE: []
44
+ end
45
+
46
+ class ConflictException
47
+ attr_accessor message: ::String
48
+ attr_accessor resource_id: ::String
49
+ attr_accessor resource_type: ::String
50
+ SENSITIVE: []
51
+ end
52
+
53
+ class Connector
54
+ attr_accessor arn: ::String
55
+ attr_accessor certificate_authority_arn: ::String
56
+ attr_accessor type: ("GENERAL_PURPOSE" | "INTUNE")
57
+ attr_accessor mobile_device_management: Types::MobileDeviceManagement
58
+ attr_accessor open_id_configuration: Types::OpenIdConfiguration
59
+ attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
60
+ attr_accessor status_reason: ("INTERNAL_FAILURE" | "PRIVATECA_ACCESS_DENIED" | "PRIVATECA_INVALID_STATE" | "PRIVATECA_RESOURCE_NOT_FOUND")
61
+ attr_accessor endpoint: ::String
62
+ attr_accessor created_at: ::Time
63
+ attr_accessor updated_at: ::Time
64
+ SENSITIVE: []
65
+ end
66
+
67
+ class ConnectorSummary
68
+ attr_accessor arn: ::String
69
+ attr_accessor certificate_authority_arn: ::String
70
+ attr_accessor type: ("GENERAL_PURPOSE" | "INTUNE")
71
+ attr_accessor mobile_device_management: Types::MobileDeviceManagement
72
+ attr_accessor open_id_configuration: Types::OpenIdConfiguration
73
+ attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
74
+ attr_accessor status_reason: ("INTERNAL_FAILURE" | "PRIVATECA_ACCESS_DENIED" | "PRIVATECA_INVALID_STATE" | "PRIVATECA_RESOURCE_NOT_FOUND")
75
+ attr_accessor endpoint: ::String
76
+ attr_accessor created_at: ::Time
77
+ attr_accessor updated_at: ::Time
78
+ SENSITIVE: []
79
+ end
80
+
81
+ class CreateChallengeRequest
82
+ attr_accessor connector_arn: ::String
83
+ attr_accessor client_token: ::String
84
+ attr_accessor tags: ::Hash[::String, ::String]
85
+ SENSITIVE: []
86
+ end
87
+
88
+ class CreateChallengeResponse
89
+ attr_accessor challenge: Types::Challenge
90
+ SENSITIVE: []
91
+ end
92
+
93
+ class CreateConnectorRequest
94
+ attr_accessor certificate_authority_arn: ::String
95
+ attr_accessor mobile_device_management: Types::MobileDeviceManagement
96
+ attr_accessor client_token: ::String
97
+ attr_accessor tags: ::Hash[::String, ::String]
98
+ SENSITIVE: []
99
+ end
100
+
101
+ class CreateConnectorResponse
102
+ attr_accessor connector_arn: ::String
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class DeleteChallengeRequest
107
+ attr_accessor challenge_arn: ::String
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class DeleteConnectorRequest
112
+ attr_accessor connector_arn: ::String
113
+ SENSITIVE: []
114
+ end
115
+
116
+ class GetChallengeMetadataRequest
117
+ attr_accessor challenge_arn: ::String
118
+ SENSITIVE: []
119
+ end
120
+
121
+ class GetChallengeMetadataResponse
122
+ attr_accessor challenge_metadata: Types::ChallengeMetadata
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class GetChallengePasswordRequest
127
+ attr_accessor challenge_arn: ::String
128
+ SENSITIVE: []
129
+ end
130
+
131
+ class GetChallengePasswordResponse
132
+ attr_accessor password: ::String
133
+ SENSITIVE: [:password]
134
+ end
135
+
136
+ class GetConnectorRequest
137
+ attr_accessor connector_arn: ::String
138
+ SENSITIVE: []
139
+ end
140
+
141
+ class GetConnectorResponse
142
+ attr_accessor connector: Types::Connector
143
+ SENSITIVE: []
144
+ end
145
+
146
+ class InternalServerException
147
+ attr_accessor message: ::String
148
+ SENSITIVE: []
149
+ end
150
+
151
+ class IntuneConfiguration
152
+ attr_accessor azure_application_id: ::String
153
+ attr_accessor domain: ::String
154
+ SENSITIVE: []
155
+ end
156
+
157
+ class ListChallengeMetadataRequest
158
+ attr_accessor max_results: ::Integer
159
+ attr_accessor next_token: ::String
160
+ attr_accessor connector_arn: ::String
161
+ SENSITIVE: []
162
+ end
163
+
164
+ class ListChallengeMetadataResponse
165
+ attr_accessor challenges: ::Array[Types::ChallengeMetadataSummary]
166
+ attr_accessor next_token: ::String
167
+ SENSITIVE: []
168
+ end
169
+
170
+ class ListConnectorsRequest
171
+ attr_accessor max_results: ::Integer
172
+ attr_accessor next_token: ::String
173
+ SENSITIVE: []
174
+ end
175
+
176
+ class ListConnectorsResponse
177
+ attr_accessor connectors: ::Array[Types::ConnectorSummary]
178
+ attr_accessor next_token: ::String
179
+ SENSITIVE: []
180
+ end
181
+
182
+ class ListTagsForResourceRequest
183
+ attr_accessor resource_arn: ::String
184
+ SENSITIVE: []
185
+ end
186
+
187
+ class ListTagsForResourceResponse
188
+ attr_accessor tags: ::Hash[::String, ::String]
189
+ SENSITIVE: []
190
+ end
191
+
192
+ class MobileDeviceManagement
193
+ attr_accessor intune: Types::IntuneConfiguration
194
+ attr_accessor unknown: untyped
195
+ SENSITIVE: []
196
+
197
+ class Intune < MobileDeviceManagement
198
+ end
199
+ class Unknown < MobileDeviceManagement
200
+ end
201
+ end
202
+
203
+ class OpenIdConfiguration
204
+ attr_accessor issuer: ::String
205
+ attr_accessor subject: ::String
206
+ attr_accessor audience: ::String
207
+ SENSITIVE: []
208
+ end
209
+
210
+ class ResourceNotFoundException
211
+ attr_accessor message: ::String
212
+ attr_accessor resource_id: ::String
213
+ attr_accessor resource_type: ::String
214
+ SENSITIVE: []
215
+ end
216
+
217
+ class ServiceQuotaExceededException
218
+ attr_accessor message: ::String
219
+ attr_accessor resource_type: ::String
220
+ attr_accessor service_code: ::String
221
+ attr_accessor quota_code: ::String
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class TagResourceRequest
226
+ attr_accessor resource_arn: ::String
227
+ attr_accessor tags: ::Hash[::String, ::String]
228
+ SENSITIVE: []
229
+ end
230
+
231
+ class ThrottlingException
232
+ attr_accessor message: ::String
233
+ SENSITIVE: []
234
+ end
235
+
236
+ class UntagResourceRequest
237
+ attr_accessor resource_arn: ::String
238
+ attr_accessor tag_keys: ::Array[::String]
239
+ SENSITIVE: []
240
+ end
241
+
242
+ class ValidationException
243
+ attr_accessor message: ::String
244
+ attr_accessor reason: ("CA_CERT_VALIDITY_TOO_SHORT" | "INVALID_CA_USAGE_MODE" | "INVALID_CONNECTOR_TYPE" | "INVALID_STATE" | "NO_CLIENT_TOKEN" | "UNKNOWN_OPERATION" | "OTHER")
245
+ SENSITIVE: []
246
+ end
247
+ end
248
+ 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 PcaConnectorScep
10
+ module Waiters
11
+ end
12
+ end
13
+ end