aws-sdk-opensearchservice 1.12.0 → 1.14.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 +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opensearchservice/client.rb +798 -279
- data/lib/aws-sdk-opensearchservice/client_api.rb +246 -0
- data/lib/aws-sdk-opensearchservice/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-opensearchservice/endpoints.rb +126 -0
- data/lib/aws-sdk-opensearchservice/plugins/endpoints.rb +18 -0
- data/lib/aws-sdk-opensearchservice/types.rb +1508 -1795
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- metadata +2 -2
@@ -53,6 +53,20 @@ module Aws::OpenSearchService
|
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
56
|
+
class AuthorizeVpcEndpointAccess
|
57
|
+
def self.build(context)
|
58
|
+
unless context.config.regional_endpoint
|
59
|
+
endpoint = context.config.endpoint.to_s
|
60
|
+
end
|
61
|
+
Aws::OpenSearchService::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
|
+
|
56
70
|
class CancelServiceSoftwareUpdate
|
57
71
|
def self.build(context)
|
58
72
|
unless context.config.regional_endpoint
|
@@ -109,6 +123,20 @@ module Aws::OpenSearchService
|
|
109
123
|
end
|
110
124
|
end
|
111
125
|
|
126
|
+
class CreateVpcEndpoint
|
127
|
+
def self.build(context)
|
128
|
+
unless context.config.regional_endpoint
|
129
|
+
endpoint = context.config.endpoint.to_s
|
130
|
+
end
|
131
|
+
Aws::OpenSearchService::EndpointParameters.new(
|
132
|
+
region: context.config.region,
|
133
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
134
|
+
use_fips: context.config.use_fips_endpoint,
|
135
|
+
endpoint: endpoint,
|
136
|
+
)
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
112
140
|
class DeleteDomain
|
113
141
|
def self.build(context)
|
114
142
|
unless context.config.regional_endpoint
|
@@ -165,6 +193,20 @@ module Aws::OpenSearchService
|
|
165
193
|
end
|
166
194
|
end
|
167
195
|
|
196
|
+
class DeleteVpcEndpoint
|
197
|
+
def self.build(context)
|
198
|
+
unless context.config.regional_endpoint
|
199
|
+
endpoint = context.config.endpoint.to_s
|
200
|
+
end
|
201
|
+
Aws::OpenSearchService::EndpointParameters.new(
|
202
|
+
region: context.config.region,
|
203
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
204
|
+
use_fips: context.config.use_fips_endpoint,
|
205
|
+
endpoint: endpoint,
|
206
|
+
)
|
207
|
+
end
|
208
|
+
end
|
209
|
+
|
168
210
|
class DescribeDomain
|
169
211
|
def self.build(context)
|
170
212
|
unless context.config.regional_endpoint
|
@@ -319,6 +361,20 @@ module Aws::OpenSearchService
|
|
319
361
|
end
|
320
362
|
end
|
321
363
|
|
364
|
+
class DescribeVpcEndpoints
|
365
|
+
def self.build(context)
|
366
|
+
unless context.config.regional_endpoint
|
367
|
+
endpoint = context.config.endpoint.to_s
|
368
|
+
end
|
369
|
+
Aws::OpenSearchService::EndpointParameters.new(
|
370
|
+
region: context.config.region,
|
371
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
372
|
+
use_fips: context.config.use_fips_endpoint,
|
373
|
+
endpoint: endpoint,
|
374
|
+
)
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
322
378
|
class DissociatePackage
|
323
379
|
def self.build(context)
|
324
380
|
unless context.config.regional_endpoint
|
@@ -473,6 +529,48 @@ module Aws::OpenSearchService
|
|
473
529
|
end
|
474
530
|
end
|
475
531
|
|
532
|
+
class ListVpcEndpointAccess
|
533
|
+
def self.build(context)
|
534
|
+
unless context.config.regional_endpoint
|
535
|
+
endpoint = context.config.endpoint.to_s
|
536
|
+
end
|
537
|
+
Aws::OpenSearchService::EndpointParameters.new(
|
538
|
+
region: context.config.region,
|
539
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
540
|
+
use_fips: context.config.use_fips_endpoint,
|
541
|
+
endpoint: endpoint,
|
542
|
+
)
|
543
|
+
end
|
544
|
+
end
|
545
|
+
|
546
|
+
class ListVpcEndpoints
|
547
|
+
def self.build(context)
|
548
|
+
unless context.config.regional_endpoint
|
549
|
+
endpoint = context.config.endpoint.to_s
|
550
|
+
end
|
551
|
+
Aws::OpenSearchService::EndpointParameters.new(
|
552
|
+
region: context.config.region,
|
553
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
554
|
+
use_fips: context.config.use_fips_endpoint,
|
555
|
+
endpoint: endpoint,
|
556
|
+
)
|
557
|
+
end
|
558
|
+
end
|
559
|
+
|
560
|
+
class ListVpcEndpointsForDomain
|
561
|
+
def self.build(context)
|
562
|
+
unless context.config.regional_endpoint
|
563
|
+
endpoint = context.config.endpoint.to_s
|
564
|
+
end
|
565
|
+
Aws::OpenSearchService::EndpointParameters.new(
|
566
|
+
region: context.config.region,
|
567
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
568
|
+
use_fips: context.config.use_fips_endpoint,
|
569
|
+
endpoint: endpoint,
|
570
|
+
)
|
571
|
+
end
|
572
|
+
end
|
573
|
+
|
476
574
|
class PurchaseReservedInstanceOffering
|
477
575
|
def self.build(context)
|
478
576
|
unless context.config.regional_endpoint
|
@@ -515,6 +613,20 @@ module Aws::OpenSearchService
|
|
515
613
|
end
|
516
614
|
end
|
517
615
|
|
616
|
+
class RevokeVpcEndpointAccess
|
617
|
+
def self.build(context)
|
618
|
+
unless context.config.regional_endpoint
|
619
|
+
endpoint = context.config.endpoint.to_s
|
620
|
+
end
|
621
|
+
Aws::OpenSearchService::EndpointParameters.new(
|
622
|
+
region: context.config.region,
|
623
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
624
|
+
use_fips: context.config.use_fips_endpoint,
|
625
|
+
endpoint: endpoint,
|
626
|
+
)
|
627
|
+
end
|
628
|
+
end
|
629
|
+
|
518
630
|
class StartServiceSoftwareUpdate
|
519
631
|
def self.build(context)
|
520
632
|
unless context.config.regional_endpoint
|
@@ -557,6 +669,20 @@ module Aws::OpenSearchService
|
|
557
669
|
end
|
558
670
|
end
|
559
671
|
|
672
|
+
class UpdateVpcEndpoint
|
673
|
+
def self.build(context)
|
674
|
+
unless context.config.regional_endpoint
|
675
|
+
endpoint = context.config.endpoint.to_s
|
676
|
+
end
|
677
|
+
Aws::OpenSearchService::EndpointParameters.new(
|
678
|
+
region: context.config.region,
|
679
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
680
|
+
use_fips: context.config.use_fips_endpoint,
|
681
|
+
endpoint: endpoint,
|
682
|
+
)
|
683
|
+
end
|
684
|
+
end
|
685
|
+
|
560
686
|
class UpgradeDomain
|
561
687
|
def self.build(context)
|
562
688
|
unless context.config.regional_endpoint
|
@@ -62,6 +62,8 @@ module Aws::OpenSearchService
|
|
62
62
|
Aws::OpenSearchService::Endpoints::AddTags.build(context)
|
63
63
|
when :associate_package
|
64
64
|
Aws::OpenSearchService::Endpoints::AssociatePackage.build(context)
|
65
|
+
when :authorize_vpc_endpoint_access
|
66
|
+
Aws::OpenSearchService::Endpoints::AuthorizeVpcEndpointAccess.build(context)
|
65
67
|
when :cancel_service_software_update
|
66
68
|
Aws::OpenSearchService::Endpoints::CancelServiceSoftwareUpdate.build(context)
|
67
69
|
when :create_domain
|
@@ -70,6 +72,8 @@ module Aws::OpenSearchService
|
|
70
72
|
Aws::OpenSearchService::Endpoints::CreateOutboundConnection.build(context)
|
71
73
|
when :create_package
|
72
74
|
Aws::OpenSearchService::Endpoints::CreatePackage.build(context)
|
75
|
+
when :create_vpc_endpoint
|
76
|
+
Aws::OpenSearchService::Endpoints::CreateVpcEndpoint.build(context)
|
73
77
|
when :delete_domain
|
74
78
|
Aws::OpenSearchService::Endpoints::DeleteDomain.build(context)
|
75
79
|
when :delete_inbound_connection
|
@@ -78,6 +82,8 @@ module Aws::OpenSearchService
|
|
78
82
|
Aws::OpenSearchService::Endpoints::DeleteOutboundConnection.build(context)
|
79
83
|
when :delete_package
|
80
84
|
Aws::OpenSearchService::Endpoints::DeletePackage.build(context)
|
85
|
+
when :delete_vpc_endpoint
|
86
|
+
Aws::OpenSearchService::Endpoints::DeleteVpcEndpoint.build(context)
|
81
87
|
when :describe_domain
|
82
88
|
Aws::OpenSearchService::Endpoints::DescribeDomain.build(context)
|
83
89
|
when :describe_domain_auto_tunes
|
@@ -100,6 +106,8 @@ module Aws::OpenSearchService
|
|
100
106
|
Aws::OpenSearchService::Endpoints::DescribeReservedInstanceOfferings.build(context)
|
101
107
|
when :describe_reserved_instances
|
102
108
|
Aws::OpenSearchService::Endpoints::DescribeReservedInstances.build(context)
|
109
|
+
when :describe_vpc_endpoints
|
110
|
+
Aws::OpenSearchService::Endpoints::DescribeVpcEndpoints.build(context)
|
103
111
|
when :dissociate_package
|
104
112
|
Aws::OpenSearchService::Endpoints::DissociatePackage.build(context)
|
105
113
|
when :get_compatible_versions
|
@@ -122,18 +130,28 @@ module Aws::OpenSearchService
|
|
122
130
|
Aws::OpenSearchService::Endpoints::ListTags.build(context)
|
123
131
|
when :list_versions
|
124
132
|
Aws::OpenSearchService::Endpoints::ListVersions.build(context)
|
133
|
+
when :list_vpc_endpoint_access
|
134
|
+
Aws::OpenSearchService::Endpoints::ListVpcEndpointAccess.build(context)
|
135
|
+
when :list_vpc_endpoints
|
136
|
+
Aws::OpenSearchService::Endpoints::ListVpcEndpoints.build(context)
|
137
|
+
when :list_vpc_endpoints_for_domain
|
138
|
+
Aws::OpenSearchService::Endpoints::ListVpcEndpointsForDomain.build(context)
|
125
139
|
when :purchase_reserved_instance_offering
|
126
140
|
Aws::OpenSearchService::Endpoints::PurchaseReservedInstanceOffering.build(context)
|
127
141
|
when :reject_inbound_connection
|
128
142
|
Aws::OpenSearchService::Endpoints::RejectInboundConnection.build(context)
|
129
143
|
when :remove_tags
|
130
144
|
Aws::OpenSearchService::Endpoints::RemoveTags.build(context)
|
145
|
+
when :revoke_vpc_endpoint_access
|
146
|
+
Aws::OpenSearchService::Endpoints::RevokeVpcEndpointAccess.build(context)
|
131
147
|
when :start_service_software_update
|
132
148
|
Aws::OpenSearchService::Endpoints::StartServiceSoftwareUpdate.build(context)
|
133
149
|
when :update_domain_config
|
134
150
|
Aws::OpenSearchService::Endpoints::UpdateDomainConfig.build(context)
|
135
151
|
when :update_package
|
136
152
|
Aws::OpenSearchService::Endpoints::UpdatePackage.build(context)
|
153
|
+
when :update_vpc_endpoint
|
154
|
+
Aws::OpenSearchService::Endpoints::UpdateVpcEndpoint.build(context)
|
137
155
|
when :upgrade_domain
|
138
156
|
Aws::OpenSearchService::Endpoints::UpgradeDomain.build(context)
|
139
157
|
end
|