Skip to content

Commit 83c36c8

Browse files
author
awstools
committed
feat(client-groundstation): Support tagging Agents and adjust input field validations
1 parent b6a0927 commit 83c36c8

18 files changed

+562
-417
lines changed

Diff for: clients/client-groundstation/src/commands/CreateConfigCommand.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@ export interface CreateConfigCommandOutput extends ConfigIdResponse, __MetadataB
4343
* spectrumConfig: { // SpectrumConfig
4444
* centerFrequency: { // Frequency
4545
* value: Number("double"), // required
46-
* units: "STRING_VALUE", // required
46+
* units: "GHz" || "MHz" || "kHz", // required
4747
* },
4848
* bandwidth: { // FrequencyBandwidth
4949
* value: Number("double"), // required
50-
* units: "STRING_VALUE", // required
50+
* units: "GHz" || "MHz" || "kHz", // required
5151
* },
52-
* polarization: "STRING_VALUE",
52+
* polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
5353
* },
5454
* },
5555
* trackingConfig: { // TrackingConfig
56-
* autotrack: "STRING_VALUE", // required
56+
* autotrack: "REQUIRED" || "PREFERRED" || "REMOVED", // required
5757
* },
5858
* dataflowEndpointConfig: { // DataflowEndpointConfig
5959
* dataflowEndpointName: "STRING_VALUE", // required
@@ -63,13 +63,13 @@ export interface CreateConfigCommandOutput extends ConfigIdResponse, __MetadataB
6363
* spectrumConfig: {
6464
* centerFrequency: {
6565
* value: Number("double"), // required
66-
* units: "STRING_VALUE", // required
66+
* units: "GHz" || "MHz" || "kHz", // required
6767
* },
6868
* bandwidth: {
6969
* value: Number("double"), // required
70-
* units: "STRING_VALUE", // required
70+
* units: "GHz" || "MHz" || "kHz", // required
7171
* },
72-
* polarization: "STRING_VALUE",
72+
* polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
7373
* },
7474
* demodulationConfig: { // DemodulationConfig
7575
* unvalidatedJSON: "STRING_VALUE", // required
@@ -83,13 +83,13 @@ export interface CreateConfigCommandOutput extends ConfigIdResponse, __MetadataB
8383
* spectrumConfig: { // UplinkSpectrumConfig
8484
* centerFrequency: {
8585
* value: Number("double"), // required
86-
* units: "STRING_VALUE", // required
86+
* units: "GHz" || "MHz" || "kHz", // required
8787
* },
88-
* polarization: "STRING_VALUE",
88+
* polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
8989
* },
9090
* targetEirp: { // Eirp
9191
* value: Number("double"), // required
92-
* units: "STRING_VALUE", // required
92+
* units: "dBW", // required
9393
* },
9494
* },
9595
* uplinkEchoConfig: { // UplinkEchoConfig
@@ -110,7 +110,7 @@ export interface CreateConfigCommandOutput extends ConfigIdResponse, __MetadataB
110110
* const response = await client.send(command);
111111
* // { // ConfigIdResponse
112112
* // configId: "STRING_VALUE",
113-
* // configType: "STRING_VALUE",
113+
* // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
114114
* // configArn: "STRING_VALUE",
115115
* // };
116116
*

Diff for: clients/client-groundstation/src/commands/CreateDataflowEndpointGroupCommand.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export interface CreateDataflowEndpointGroupCommandOutput extends DataflowEndpoi
6060
* name: "STRING_VALUE", // required
6161
* port: Number("int"), // required
6262
* },
63-
* status: "STRING_VALUE",
63+
* status: "created" || "creating" || "deleted" || "deleting" || "failed",
6464
* mtu: Number("int"),
6565
* },
6666
* awsGroundStationAgentEndpoint: { // AwsGroundStationAgentEndpoint
@@ -82,12 +82,12 @@ export interface CreateDataflowEndpointGroupCommandOutput extends DataflowEndpoi
8282
* },
8383
* mtu: Number("int"),
8484
* },
85-
* agentStatus: "STRING_VALUE",
86-
* auditResults: "STRING_VALUE",
85+
* agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
86+
* auditResults: "HEALTHY" || "UNHEALTHY",
8787
* },
88-
* healthStatus: "STRING_VALUE",
88+
* healthStatus: "HEALTHY" || "UNHEALTHY",
8989
* healthReasons: [ // CapabilityHealthReasonList
90-
* "STRING_VALUE",
90+
* "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
9191
* ],
9292
* },
9393
* ],

Diff for: clients/client-groundstation/src/commands/DeleteConfigCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ export interface DeleteConfigCommandOutput extends ConfigIdResponse, __MetadataB
3737
* const client = new GroundStationClient(config);
3838
* const input = { // DeleteConfigRequest
3939
* configId: "STRING_VALUE", // required
40-
* configType: "STRING_VALUE", // required
40+
* configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording", // required
4141
* };
4242
* const command = new DeleteConfigCommand(input);
4343
* const response = await client.send(command);
4444
* // { // ConfigIdResponse
4545
* // configId: "STRING_VALUE",
46-
* // configType: "STRING_VALUE",
46+
* // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
4747
* // configArn: "STRING_VALUE",
4848
* // };
4949
*

Diff for: clients/client-groundstation/src/commands/DescribeContactCommand.ts

+14-14
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
4949
* // prePassStartTime: new Date("TIMESTAMP"),
5050
* // postPassEndTime: new Date("TIMESTAMP"),
5151
* // groundStation: "STRING_VALUE",
52-
* // contactStatus: "STRING_VALUE",
52+
* // contactStatus: "SCHEDULING" || "FAILED_TO_SCHEDULE" || "SCHEDULED" || "CANCELLED" || "AWS_CANCELLED" || "PREPASS" || "PASS" || "POSTPASS" || "COMPLETED" || "FAILED" || "AVAILABLE" || "CANCELLING" || "AWS_FAILED",
5353
* // errorMessage: "STRING_VALUE",
5454
* // maximumElevation: { // Elevation
5555
* // value: Number("double"), // required
56-
* // unit: "STRING_VALUE", // required
56+
* // unit: "DEGREE_ANGLE" || "RADIAN", // required
5757
* // },
5858
* // tags: { // TagsMap
5959
* // "<keys>": "STRING_VALUE",
@@ -62,7 +62,7 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
6262
* // dataflowList: [ // DataflowList
6363
* // { // DataflowDetail
6464
* // source: { // Source
65-
* // configType: "STRING_VALUE",
65+
* // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
6666
* // configId: "STRING_VALUE",
6767
* // configDetails: { // ConfigDetails Union: only one key present
6868
* // endpointDetails: { // EndpointDetails
@@ -81,7 +81,7 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
8181
* // name: "STRING_VALUE", // required
8282
* // port: Number("int"), // required
8383
* // },
84-
* // status: "STRING_VALUE",
84+
* // status: "created" || "creating" || "deleted" || "deleting" || "failed",
8585
* // mtu: Number("int"),
8686
* // },
8787
* // awsGroundStationAgentEndpoint: { // AwsGroundStationAgentEndpoint
@@ -103,12 +103,12 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
103103
* // },
104104
* // mtu: Number("int"),
105105
* // },
106-
* // agentStatus: "STRING_VALUE",
107-
* // auditResults: "STRING_VALUE",
106+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
107+
* // auditResults: "HEALTHY" || "UNHEALTHY",
108108
* // },
109-
* // healthStatus: "STRING_VALUE",
109+
* // healthStatus: "HEALTHY" || "UNHEALTHY",
110110
* // healthReasons: [ // CapabilityHealthReasonList
111-
* // "STRING_VALUE",
111+
* // "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
112112
* // ],
113113
* // },
114114
* // antennaDemodDecodeDetails: { // AntennaDemodDecodeDetails
@@ -122,7 +122,7 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
122122
* // dataflowSourceRegion: "STRING_VALUE",
123123
* // },
124124
* // destination: { // Destination
125-
* // configType: "STRING_VALUE",
125+
* // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
126126
* // configId: "STRING_VALUE",
127127
* // configDetails: {// Union: only one key present
128128
* // endpointDetails: {
@@ -141,7 +141,7 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
141141
* // name: "STRING_VALUE", // required
142142
* // port: Number("int"), // required
143143
* // },
144-
* // status: "STRING_VALUE",
144+
* // status: "created" || "creating" || "deleted" || "deleting" || "failed",
145145
* // mtu: Number("int"),
146146
* // },
147147
* // awsGroundStationAgentEndpoint: {
@@ -163,12 +163,12 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
163163
* // },
164164
* // mtu: Number("int"),
165165
* // },
166-
* // agentStatus: "STRING_VALUE",
167-
* // auditResults: "STRING_VALUE",
166+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
167+
* // auditResults: "HEALTHY" || "UNHEALTHY",
168168
* // },
169-
* // healthStatus: "STRING_VALUE",
169+
* // healthStatus: "HEALTHY" || "UNHEALTHY",
170170
* // healthReasons: [
171-
* // "STRING_VALUE",
171+
* // "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
172172
* // ],
173173
* // },
174174
* // antennaDemodDecodeDetails: {

Diff for: clients/client-groundstation/src/commands/DescribeEphemerisCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export interface DescribeEphemerisCommandOutput extends DescribeEphemerisRespons
4343
* // { // DescribeEphemerisResponse
4444
* // ephemerisId: "STRING_VALUE",
4545
* // satelliteId: "STRING_VALUE",
46-
* // status: "STRING_VALUE",
46+
* // status: "VALIDATING" || "INVALID" || "ERROR" || "ENABLED" || "DISABLED" || "EXPIRED",
4747
* // priority: Number("int"),
4848
* // creationTime: new Date("TIMESTAMP"),
4949
* // enabled: true || false,
@@ -69,7 +69,7 @@ export interface DescribeEphemerisCommandOutput extends DescribeEphemerisRespons
6969
* // ephemerisData: "STRING_VALUE",
7070
* // },
7171
* // },
72-
* // invalidReason: "STRING_VALUE",
72+
* // invalidReason: "METADATA_INVALID" || "TIME_RANGE_INVALID" || "TRAJECTORY_INVALID" || "KMS_KEY_INVALID" || "VALIDATION_ERROR",
7373
* // };
7474
*
7575
* ```

Diff for: clients/client-groundstation/src/commands/GetConfigCommand.ts

+12-12
Original file line numberDiff line numberDiff line change
@@ -38,31 +38,31 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea
3838
* const client = new GroundStationClient(config);
3939
* const input = { // GetConfigRequest
4040
* configId: "STRING_VALUE", // required
41-
* configType: "STRING_VALUE", // required
41+
* configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording", // required
4242
* };
4343
* const command = new GetConfigCommand(input);
4444
* const response = await client.send(command);
4545
* // { // GetConfigResponse
4646
* // configId: "STRING_VALUE", // required
4747
* // configArn: "STRING_VALUE", // required
4848
* // name: "STRING_VALUE", // required
49-
* // configType: "STRING_VALUE",
49+
* // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
5050
* // configData: { // ConfigTypeData Union: only one key present
5151
* // antennaDownlinkConfig: { // AntennaDownlinkConfig
5252
* // spectrumConfig: { // SpectrumConfig
5353
* // centerFrequency: { // Frequency
5454
* // value: Number("double"), // required
55-
* // units: "STRING_VALUE", // required
55+
* // units: "GHz" || "MHz" || "kHz", // required
5656
* // },
5757
* // bandwidth: { // FrequencyBandwidth
5858
* // value: Number("double"), // required
59-
* // units: "STRING_VALUE", // required
59+
* // units: "GHz" || "MHz" || "kHz", // required
6060
* // },
61-
* // polarization: "STRING_VALUE",
61+
* // polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
6262
* // },
6363
* // },
6464
* // trackingConfig: { // TrackingConfig
65-
* // autotrack: "STRING_VALUE", // required
65+
* // autotrack: "REQUIRED" || "PREFERRED" || "REMOVED", // required
6666
* // },
6767
* // dataflowEndpointConfig: { // DataflowEndpointConfig
6868
* // dataflowEndpointName: "STRING_VALUE", // required
@@ -72,13 +72,13 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea
7272
* // spectrumConfig: {
7373
* // centerFrequency: {
7474
* // value: Number("double"), // required
75-
* // units: "STRING_VALUE", // required
75+
* // units: "GHz" || "MHz" || "kHz", // required
7676
* // },
7777
* // bandwidth: {
7878
* // value: Number("double"), // required
79-
* // units: "STRING_VALUE", // required
79+
* // units: "GHz" || "MHz" || "kHz", // required
8080
* // },
81-
* // polarization: "STRING_VALUE",
81+
* // polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
8282
* // },
8383
* // demodulationConfig: { // DemodulationConfig
8484
* // unvalidatedJSON: "STRING_VALUE", // required
@@ -92,13 +92,13 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea
9292
* // spectrumConfig: { // UplinkSpectrumConfig
9393
* // centerFrequency: {
9494
* // value: Number("double"), // required
95-
* // units: "STRING_VALUE", // required
95+
* // units: "GHz" || "MHz" || "kHz", // required
9696
* // },
97-
* // polarization: "STRING_VALUE",
97+
* // polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
9898
* // },
9999
* // targetEirp: { // Eirp
100100
* // value: Number("double"), // required
101-
* // units: "STRING_VALUE", // required
101+
* // units: "dBW", // required
102102
* // },
103103
* // },
104104
* // uplinkEchoConfig: { // UplinkEchoConfig

Diff for: clients/client-groundstation/src/commands/GetDataflowEndpointGroupCommand.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpoi
6060
* // name: "STRING_VALUE", // required
6161
* // port: Number("int"), // required
6262
* // },
63-
* // status: "STRING_VALUE",
63+
* // status: "created" || "creating" || "deleted" || "deleting" || "failed",
6464
* // mtu: Number("int"),
6565
* // },
6666
* // awsGroundStationAgentEndpoint: { // AwsGroundStationAgentEndpoint
@@ -82,12 +82,12 @@ export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpoi
8282
* // },
8383
* // mtu: Number("int"),
8484
* // },
85-
* // agentStatus: "STRING_VALUE",
86-
* // auditResults: "STRING_VALUE",
85+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
86+
* // auditResults: "HEALTHY" || "UNHEALTHY",
8787
* // },
88-
* // healthStatus: "STRING_VALUE",
88+
* // healthStatus: "HEALTHY" || "UNHEALTHY",
8989
* // healthReasons: [ // CapabilityHealthReasonList
90-
* // "STRING_VALUE",
90+
* // "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
9191
* // ],
9292
* // },
9393
* // ],

Diff for: clients/client-groundstation/src/commands/GetSatelliteCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export interface GetSatelliteCommandOutput extends GetSatelliteResponse, __Metad
4848
* // "STRING_VALUE",
4949
* // ],
5050
* // currentEphemeris: { // EphemerisMetaData
51-
* // source: "STRING_VALUE", // required
51+
* // source: "CUSTOMER_PROVIDED" || "SPACE_TRACK", // required
5252
* // ephemerisId: "STRING_VALUE",
5353
* // epoch: new Date("TIMESTAMP"),
5454
* // name: "STRING_VALUE",

Diff for: clients/client-groundstation/src/commands/ListConfigsCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export interface ListConfigsCommandOutput extends ListConfigsResponse, __Metadat
4646
* // configList: [ // ConfigList
4747
* // { // ConfigListItem
4848
* // configId: "STRING_VALUE",
49-
* // configType: "STRING_VALUE",
49+
* // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
5050
* // configArn: "STRING_VALUE",
5151
* // name: "STRING_VALUE",
5252
* // },

Diff for: clients/client-groundstation/src/commands/ListContactsCommand.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export interface ListContactsCommandOutput extends ListContactsResponse, __Metad
4242
* maxResults: Number("int"),
4343
* nextToken: "STRING_VALUE",
4444
* statusList: [ // StatusList // required
45-
* "STRING_VALUE",
45+
* "SCHEDULING" || "FAILED_TO_SCHEDULE" || "SCHEDULED" || "CANCELLED" || "AWS_CANCELLED" || "PREPASS" || "PASS" || "POSTPASS" || "COMPLETED" || "FAILED" || "AVAILABLE" || "CANCELLING" || "AWS_FAILED",
4646
* ],
4747
* startTime: new Date("TIMESTAMP"), // required
4848
* endTime: new Date("TIMESTAMP"), // required
@@ -64,11 +64,11 @@ export interface ListContactsCommandOutput extends ListContactsResponse, __Metad
6464
* // prePassStartTime: new Date("TIMESTAMP"),
6565
* // postPassEndTime: new Date("TIMESTAMP"),
6666
* // groundStation: "STRING_VALUE",
67-
* // contactStatus: "STRING_VALUE",
67+
* // contactStatus: "SCHEDULING" || "FAILED_TO_SCHEDULE" || "SCHEDULED" || "CANCELLED" || "AWS_CANCELLED" || "PREPASS" || "PASS" || "POSTPASS" || "COMPLETED" || "FAILED" || "AVAILABLE" || "CANCELLING" || "AWS_FAILED",
6868
* // errorMessage: "STRING_VALUE",
6969
* // maximumElevation: { // Elevation
7070
* // value: Number("double"), // required
71-
* // unit: "STRING_VALUE", // required
71+
* // unit: "DEGREE_ANGLE" || "RADIAN", // required
7272
* // },
7373
* // region: "STRING_VALUE",
7474
* // tags: { // TagsMap

Diff for: clients/client-groundstation/src/commands/ListEphemeridesCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export interface ListEphemeridesCommandOutput extends ListEphemeridesResponse, _
4040
* startTime: new Date("TIMESTAMP"), // required
4141
* endTime: new Date("TIMESTAMP"), // required
4242
* statusList: [ // EphemerisStatusList
43-
* "STRING_VALUE",
43+
* "VALIDATING" || "INVALID" || "ERROR" || "ENABLED" || "DISABLED" || "EXPIRED",
4444
* ],
4545
* maxResults: Number("int"),
4646
* nextToken: "STRING_VALUE",
@@ -52,7 +52,7 @@ export interface ListEphemeridesCommandOutput extends ListEphemeridesResponse, _
5252
* // ephemerides: [ // EphemeridesList
5353
* // { // EphemerisItem
5454
* // ephemerisId: "STRING_VALUE",
55-
* // status: "STRING_VALUE",
55+
* // status: "VALIDATING" || "INVALID" || "ERROR" || "ENABLED" || "DISABLED" || "EXPIRED",
5656
* // priority: Number("int"),
5757
* // enabled: true || false,
5858
* // creationTime: new Date("TIMESTAMP"),

Diff for: clients/client-groundstation/src/commands/ListSatellitesCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export interface ListSatellitesCommandOutput extends ListSatellitesResponse, __M
5252
* // "STRING_VALUE",
5353
* // ],
5454
* // currentEphemeris: { // EphemerisMetaData
55-
* // source: "STRING_VALUE", // required
55+
* // source: "CUSTOMER_PROVIDED" || "SPACE_TRACK", // required
5656
* // ephemerisId: "STRING_VALUE",
5757
* // epoch: new Date("TIMESTAMP"),
5858
* // name: "STRING_VALUE",

Diff for: clients/client-groundstation/src/commands/RegisterAgentCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ export interface RegisterAgentCommandOutput extends RegisterAgentResponse, __Met
6969
* },
7070
* ],
7171
* },
72+
* tags: { // TagsMap
73+
* "<keys>": "STRING_VALUE",
74+
* },
7275
* };
7376
* const command = new RegisterAgentCommand(input);
7477
* const response = await client.send(command);

0 commit comments

Comments
 (0)