@@ -27,6 +27,11 @@ import {
27
27
DeleteNamespaceCommandInput ,
28
28
DeleteNamespaceCommandOutput ,
29
29
} from "./commands/DeleteNamespaceCommand" ;
30
+ import {
31
+ DeleteServiceAttributesCommand ,
32
+ DeleteServiceAttributesCommandInput ,
33
+ DeleteServiceAttributesCommandOutput ,
34
+ } from "./commands/DeleteServiceAttributesCommand" ;
30
35
import {
31
36
DeleteServiceCommand ,
32
37
DeleteServiceCommandInput ,
@@ -63,6 +68,11 @@ import {
63
68
GetOperationCommandInput ,
64
69
GetOperationCommandOutput ,
65
70
} from "./commands/GetOperationCommand" ;
71
+ import {
72
+ GetServiceAttributesCommand ,
73
+ GetServiceAttributesCommandInput ,
74
+ GetServiceAttributesCommandOutput ,
75
+ } from "./commands/GetServiceAttributesCommand" ;
66
76
import { GetServiceCommand , GetServiceCommandInput , GetServiceCommandOutput } from "./commands/GetServiceCommand" ;
67
77
import {
68
78
ListInstancesCommand ,
@@ -120,6 +130,11 @@ import {
120
130
UpdatePublicDnsNamespaceCommandInput ,
121
131
UpdatePublicDnsNamespaceCommandOutput ,
122
132
} from "./commands/UpdatePublicDnsNamespaceCommand" ;
133
+ import {
134
+ UpdateServiceAttributesCommand ,
135
+ UpdateServiceAttributesCommandInput ,
136
+ UpdateServiceAttributesCommandOutput ,
137
+ } from "./commands/UpdateServiceAttributesCommand" ;
123
138
import {
124
139
UpdateServiceCommand ,
125
140
UpdateServiceCommandInput ,
@@ -134,6 +149,7 @@ const commands = {
134
149
CreateServiceCommand,
135
150
DeleteNamespaceCommand,
136
151
DeleteServiceCommand,
152
+ DeleteServiceAttributesCommand,
137
153
DeregisterInstanceCommand,
138
154
DiscoverInstancesCommand,
139
155
DiscoverInstancesRevisionCommand,
@@ -142,6 +158,7 @@ const commands = {
142
158
GetNamespaceCommand,
143
159
GetOperationCommand,
144
160
GetServiceCommand,
161
+ GetServiceAttributesCommand,
145
162
ListInstancesCommand,
146
163
ListNamespacesCommand,
147
164
ListOperationsCommand,
@@ -155,6 +172,7 @@ const commands = {
155
172
UpdatePrivateDnsNamespaceCommand,
156
173
UpdatePublicDnsNamespaceCommand,
157
174
UpdateServiceCommand,
175
+ UpdateServiceAttributesCommand,
158
176
} ;
159
177
160
178
export interface ServiceDiscovery {
@@ -245,6 +263,23 @@ export interface ServiceDiscovery {
245
263
cb : ( err : any , data ?: DeleteServiceCommandOutput ) => void
246
264
) : void ;
247
265
266
+ /**
267
+ * @see {@link DeleteServiceAttributesCommand }
268
+ */
269
+ deleteServiceAttributes (
270
+ args : DeleteServiceAttributesCommandInput ,
271
+ options ?: __HttpHandlerOptions
272
+ ) : Promise < DeleteServiceAttributesCommandOutput > ;
273
+ deleteServiceAttributes (
274
+ args : DeleteServiceAttributesCommandInput ,
275
+ cb : ( err : any , data ?: DeleteServiceAttributesCommandOutput ) => void
276
+ ) : void ;
277
+ deleteServiceAttributes (
278
+ args : DeleteServiceAttributesCommandInput ,
279
+ options : __HttpHandlerOptions ,
280
+ cb : ( err : any , data ?: DeleteServiceAttributesCommandOutput ) => void
281
+ ) : void ;
282
+
248
283
/**
249
284
* @see {@link DeregisterInstanceCommand }
250
285
*/
@@ -357,6 +392,23 @@ export interface ServiceDiscovery {
357
392
cb : ( err : any , data ?: GetServiceCommandOutput ) => void
358
393
) : void ;
359
394
395
+ /**
396
+ * @see {@link GetServiceAttributesCommand }
397
+ */
398
+ getServiceAttributes (
399
+ args : GetServiceAttributesCommandInput ,
400
+ options ?: __HttpHandlerOptions
401
+ ) : Promise < GetServiceAttributesCommandOutput > ;
402
+ getServiceAttributes (
403
+ args : GetServiceAttributesCommandInput ,
404
+ cb : ( err : any , data ?: GetServiceAttributesCommandOutput ) => void
405
+ ) : void ;
406
+ getServiceAttributes (
407
+ args : GetServiceAttributesCommandInput ,
408
+ options : __HttpHandlerOptions ,
409
+ cb : ( err : any , data ?: GetServiceAttributesCommandOutput ) => void
410
+ ) : void ;
411
+
360
412
/**
361
413
* @see {@link ListInstancesCommand }
362
414
*/
@@ -544,6 +596,23 @@ export interface ServiceDiscovery {
544
596
options : __HttpHandlerOptions ,
545
597
cb : ( err : any , data ?: UpdateServiceCommandOutput ) => void
546
598
) : void ;
599
+
600
+ /**
601
+ * @see {@link UpdateServiceAttributesCommand }
602
+ */
603
+ updateServiceAttributes (
604
+ args : UpdateServiceAttributesCommandInput ,
605
+ options ?: __HttpHandlerOptions
606
+ ) : Promise < UpdateServiceAttributesCommandOutput > ;
607
+ updateServiceAttributes (
608
+ args : UpdateServiceAttributesCommandInput ,
609
+ cb : ( err : any , data ?: UpdateServiceAttributesCommandOutput ) => void
610
+ ) : void ;
611
+ updateServiceAttributes (
612
+ args : UpdateServiceAttributesCommandInput ,
613
+ options : __HttpHandlerOptions ,
614
+ cb : ( err : any , data ?: UpdateServiceAttributesCommandOutput ) => void
615
+ ) : void ;
547
616
}
548
617
549
618
/**
0 commit comments