aws-sdk-ivschat 1.5.0 → 1.7.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-ivschat/client.rb +304 -10
- data/lib/aws-sdk-ivschat/client_api.rb +190 -0
- data/lib/aws-sdk-ivschat/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-ivschat/endpoint_provider.rb +75 -75
- data/lib/aws-sdk-ivschat/endpoints.rb +70 -0
- data/lib/aws-sdk-ivschat/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-ivschat/types.rb +481 -128
- data/lib/aws-sdk-ivschat.rb +1 -1
- metadata +2 -2
@@ -25,6 +25,20 @@ module Aws::Ivschat
|
|
25
25
|
end
|
26
26
|
end
|
27
27
|
|
28
|
+
class CreateLoggingConfiguration
|
29
|
+
def self.build(context)
|
30
|
+
unless context.config.regional_endpoint
|
31
|
+
endpoint = context.config.endpoint.to_s
|
32
|
+
end
|
33
|
+
Aws::Ivschat::EndpointParameters.new(
|
34
|
+
region: context.config.region,
|
35
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
36
|
+
use_fips: context.config.use_fips_endpoint,
|
37
|
+
endpoint: endpoint,
|
38
|
+
)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
28
42
|
class CreateRoom
|
29
43
|
def self.build(context)
|
30
44
|
unless context.config.regional_endpoint
|
@@ -39,6 +53,20 @@ module Aws::Ivschat
|
|
39
53
|
end
|
40
54
|
end
|
41
55
|
|
56
|
+
class DeleteLoggingConfiguration
|
57
|
+
def self.build(context)
|
58
|
+
unless context.config.regional_endpoint
|
59
|
+
endpoint = context.config.endpoint.to_s
|
60
|
+
end
|
61
|
+
Aws::Ivschat::EndpointParameters.new(
|
62
|
+
region: context.config.region,
|
63
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
64
|
+
use_fips: context.config.use_fips_endpoint,
|
65
|
+
endpoint: endpoint,
|
66
|
+
)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
42
70
|
class DeleteMessage
|
43
71
|
def self.build(context)
|
44
72
|
unless context.config.regional_endpoint
|
@@ -81,6 +109,20 @@ module Aws::Ivschat
|
|
81
109
|
end
|
82
110
|
end
|
83
111
|
|
112
|
+
class GetLoggingConfiguration
|
113
|
+
def self.build(context)
|
114
|
+
unless context.config.regional_endpoint
|
115
|
+
endpoint = context.config.endpoint.to_s
|
116
|
+
end
|
117
|
+
Aws::Ivschat::EndpointParameters.new(
|
118
|
+
region: context.config.region,
|
119
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
120
|
+
use_fips: context.config.use_fips_endpoint,
|
121
|
+
endpoint: endpoint,
|
122
|
+
)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
84
126
|
class GetRoom
|
85
127
|
def self.build(context)
|
86
128
|
unless context.config.regional_endpoint
|
@@ -95,6 +137,20 @@ module Aws::Ivschat
|
|
95
137
|
end
|
96
138
|
end
|
97
139
|
|
140
|
+
class ListLoggingConfigurations
|
141
|
+
def self.build(context)
|
142
|
+
unless context.config.regional_endpoint
|
143
|
+
endpoint = context.config.endpoint.to_s
|
144
|
+
end
|
145
|
+
Aws::Ivschat::EndpointParameters.new(
|
146
|
+
region: context.config.region,
|
147
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
148
|
+
use_fips: context.config.use_fips_endpoint,
|
149
|
+
endpoint: endpoint,
|
150
|
+
)
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
98
154
|
class ListRooms
|
99
155
|
def self.build(context)
|
100
156
|
unless context.config.regional_endpoint
|
@@ -165,6 +221,20 @@ module Aws::Ivschat
|
|
165
221
|
end
|
166
222
|
end
|
167
223
|
|
224
|
+
class UpdateLoggingConfiguration
|
225
|
+
def self.build(context)
|
226
|
+
unless context.config.regional_endpoint
|
227
|
+
endpoint = context.config.endpoint.to_s
|
228
|
+
end
|
229
|
+
Aws::Ivschat::EndpointParameters.new(
|
230
|
+
region: context.config.region,
|
231
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
232
|
+
use_fips: context.config.use_fips_endpoint,
|
233
|
+
endpoint: endpoint,
|
234
|
+
)
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
168
238
|
class UpdateRoom
|
169
239
|
def self.build(context)
|
170
240
|
unless context.config.regional_endpoint
|
@@ -58,16 +58,24 @@ module Aws::Ivschat
|
|
58
58
|
case context.operation_name
|
59
59
|
when :create_chat_token
|
60
60
|
Aws::Ivschat::Endpoints::CreateChatToken.build(context)
|
61
|
+
when :create_logging_configuration
|
62
|
+
Aws::Ivschat::Endpoints::CreateLoggingConfiguration.build(context)
|
61
63
|
when :create_room
|
62
64
|
Aws::Ivschat::Endpoints::CreateRoom.build(context)
|
65
|
+
when :delete_logging_configuration
|
66
|
+
Aws::Ivschat::Endpoints::DeleteLoggingConfiguration.build(context)
|
63
67
|
when :delete_message
|
64
68
|
Aws::Ivschat::Endpoints::DeleteMessage.build(context)
|
65
69
|
when :delete_room
|
66
70
|
Aws::Ivschat::Endpoints::DeleteRoom.build(context)
|
67
71
|
when :disconnect_user
|
68
72
|
Aws::Ivschat::Endpoints::DisconnectUser.build(context)
|
73
|
+
when :get_logging_configuration
|
74
|
+
Aws::Ivschat::Endpoints::GetLoggingConfiguration.build(context)
|
69
75
|
when :get_room
|
70
76
|
Aws::Ivschat::Endpoints::GetRoom.build(context)
|
77
|
+
when :list_logging_configurations
|
78
|
+
Aws::Ivschat::Endpoints::ListLoggingConfigurations.build(context)
|
71
79
|
when :list_rooms
|
72
80
|
Aws::Ivschat::Endpoints::ListRooms.build(context)
|
73
81
|
when :list_tags_for_resource
|
@@ -78,6 +86,8 @@ module Aws::Ivschat
|
|
78
86
|
Aws::Ivschat::Endpoints::TagResource.build(context)
|
79
87
|
when :untag_resource
|
80
88
|
Aws::Ivschat::Endpoints::UntagResource.build(context)
|
89
|
+
when :update_logging_configuration
|
90
|
+
Aws::Ivschat::Endpoints::UpdateLoggingConfiguration.build(context)
|
81
91
|
when :update_room
|
82
92
|
Aws::Ivschat::Endpoints::UpdateRoom.build(context)
|
83
93
|
end
|