@aws-sdk/client-servicediscovery 3.300.0 → 3.301.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.
Files changed (27) hide show
  1. package/dist-types/commands/CreateHttpNamespaceCommand.d.ts +3 -3
  2. package/dist-types/commands/CreatePrivateDnsNamespaceCommand.d.ts +6 -6
  3. package/dist-types/commands/CreatePublicDnsNamespaceCommand.d.ts +6 -6
  4. package/dist-types/commands/CreateServiceCommand.d.ts +8 -8
  5. package/dist-types/commands/DeleteNamespaceCommand.d.ts +1 -1
  6. package/dist-types/commands/DeleteServiceCommand.d.ts +1 -1
  7. package/dist-types/commands/DeregisterInstanceCommand.d.ts +1 -1
  8. package/dist-types/commands/DiscoverInstancesCommand.d.ts +2 -2
  9. package/dist-types/commands/GetInstanceCommand.d.ts +1 -1
  10. package/dist-types/commands/GetInstancesHealthStatusCommand.d.ts +2 -2
  11. package/dist-types/commands/GetNamespaceCommand.d.ts +1 -1
  12. package/dist-types/commands/GetOperationCommand.d.ts +1 -1
  13. package/dist-types/commands/GetServiceCommand.d.ts +1 -1
  14. package/dist-types/commands/ListInstancesCommand.d.ts +1 -1
  15. package/dist-types/commands/ListNamespacesCommand.d.ts +4 -4
  16. package/dist-types/commands/ListOperationsCommand.d.ts +4 -4
  17. package/dist-types/commands/ListServicesCommand.d.ts +4 -4
  18. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  19. package/dist-types/commands/RegisterInstanceCommand.d.ts +2 -2
  20. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  21. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  22. package/dist-types/commands/UpdateHttpNamespaceCommand.d.ts +2 -2
  23. package/dist-types/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +1 -1
  24. package/dist-types/commands/UpdatePrivateDnsNamespaceCommand.d.ts +5 -5
  25. package/dist-types/commands/UpdatePublicDnsNamespaceCommand.d.ts +5 -5
  26. package/dist-types/commands/UpdateServiceCommand.d.ts +6 -6
  27. package/package.json +3 -3
@@ -30,12 +30,12 @@ export interface CreateHttpNamespaceCommandOutput extends CreateHttpNamespaceRes
30
30
  * import { ServiceDiscoveryClient, CreateHttpNamespaceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
31
31
  * // const { ServiceDiscoveryClient, CreateHttpNamespaceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
32
32
  * const client = new ServiceDiscoveryClient(config);
33
- * const input = {
33
+ * const input = { // CreateHttpNamespaceRequest
34
34
  * Name: "STRING_VALUE", // required
35
35
  * CreatorRequestId: "STRING_VALUE",
36
36
  * Description: "STRING_VALUE",
37
- * Tags: [
38
- * {
37
+ * Tags: [ // TagList
38
+ * { // Tag
39
39
  * Key: "STRING_VALUE", // required
40
40
  * Value: "STRING_VALUE", // required
41
41
  * },
@@ -33,20 +33,20 @@ export interface CreatePrivateDnsNamespaceCommandOutput extends CreatePrivateDns
33
33
  * import { ServiceDiscoveryClient, CreatePrivateDnsNamespaceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
34
34
  * // const { ServiceDiscoveryClient, CreatePrivateDnsNamespaceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
35
35
  * const client = new ServiceDiscoveryClient(config);
36
- * const input = {
36
+ * const input = { // CreatePrivateDnsNamespaceRequest
37
37
  * Name: "STRING_VALUE", // required
38
38
  * CreatorRequestId: "STRING_VALUE",
39
39
  * Description: "STRING_VALUE",
40
40
  * Vpc: "STRING_VALUE", // required
41
- * Tags: [
42
- * {
41
+ * Tags: [ // TagList
42
+ * { // Tag
43
43
  * Key: "STRING_VALUE", // required
44
44
  * Value: "STRING_VALUE", // required
45
45
  * },
46
46
  * ],
47
- * Properties: {
48
- * DnsProperties: {
49
- * SOA: {
47
+ * Properties: { // PrivateDnsNamespaceProperties
48
+ * DnsProperties: { // PrivateDnsPropertiesMutable
49
+ * SOA: { // SOA
50
50
  * TTL: Number("long"), // required
51
51
  * },
52
52
  * },
@@ -35,19 +35,19 @@ export interface CreatePublicDnsNamespaceCommandOutput extends CreatePublicDnsNa
35
35
  * import { ServiceDiscoveryClient, CreatePublicDnsNamespaceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
36
36
  * // const { ServiceDiscoveryClient, CreatePublicDnsNamespaceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
37
37
  * const client = new ServiceDiscoveryClient(config);
38
- * const input = {
38
+ * const input = { // CreatePublicDnsNamespaceRequest
39
39
  * Name: "STRING_VALUE", // required
40
40
  * CreatorRequestId: "STRING_VALUE",
41
41
  * Description: "STRING_VALUE",
42
- * Tags: [
43
- * {
42
+ * Tags: [ // TagList
43
+ * { // Tag
44
44
  * Key: "STRING_VALUE", // required
45
45
  * Value: "STRING_VALUE", // required
46
46
  * },
47
47
  * ],
48
- * Properties: {
49
- * DnsProperties: {
50
- * SOA: {
48
+ * Properties: { // PublicDnsNamespaceProperties
49
+ * DnsProperties: { // PublicDnsPropertiesMutable
50
+ * SOA: { // SOA
51
51
  * TTL: Number("long"), // required
52
52
  * },
53
53
  * },
@@ -67,31 +67,31 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
67
67
  * import { ServiceDiscoveryClient, CreateServiceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
68
68
  * // const { ServiceDiscoveryClient, CreateServiceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
69
69
  * const client = new ServiceDiscoveryClient(config);
70
- * const input = {
70
+ * const input = { // CreateServiceRequest
71
71
  * Name: "STRING_VALUE", // required
72
72
  * NamespaceId: "STRING_VALUE",
73
73
  * CreatorRequestId: "STRING_VALUE",
74
74
  * Description: "STRING_VALUE",
75
- * DnsConfig: {
75
+ * DnsConfig: { // DnsConfig
76
76
  * NamespaceId: "STRING_VALUE",
77
77
  * RoutingPolicy: "MULTIVALUE" || "WEIGHTED",
78
- * DnsRecords: [ // required
79
- * {
78
+ * DnsRecords: [ // DnsRecordList // required
79
+ * { // DnsRecord
80
80
  * Type: "SRV" || "A" || "AAAA" || "CNAME", // required
81
81
  * TTL: Number("long"), // required
82
82
  * },
83
83
  * ],
84
84
  * },
85
- * HealthCheckConfig: {
85
+ * HealthCheckConfig: { // HealthCheckConfig
86
86
  * Type: "HTTP" || "HTTPS" || "TCP", // required
87
87
  * ResourcePath: "STRING_VALUE",
88
88
  * FailureThreshold: Number("int"),
89
89
  * },
90
- * HealthCheckCustomConfig: {
90
+ * HealthCheckCustomConfig: { // HealthCheckCustomConfig
91
91
  * FailureThreshold: Number("int"),
92
92
  * },
93
- * Tags: [
94
- * {
93
+ * Tags: [ // TagList
94
+ * { // Tag
95
95
  * Key: "STRING_VALUE", // required
96
96
  * Value: "STRING_VALUE", // required
97
97
  * },
@@ -27,7 +27,7 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
27
27
  * import { ServiceDiscoveryClient, DeleteNamespaceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
28
28
  * // const { ServiceDiscoveryClient, DeleteNamespaceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
29
29
  * const client = new ServiceDiscoveryClient(config);
30
- * const input = {
30
+ * const input = { // DeleteNamespaceRequest
31
31
  * Id: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteNamespaceCommand(input);
@@ -27,7 +27,7 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
27
27
  * import { ServiceDiscoveryClient, DeleteServiceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
28
28
  * // const { ServiceDiscoveryClient, DeleteServiceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
29
29
  * const client = new ServiceDiscoveryClient(config);
30
- * const input = {
30
+ * const input = { // DeleteServiceRequest
31
31
  * Id: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteServiceCommand(input);
@@ -27,7 +27,7 @@ export interface DeregisterInstanceCommandOutput extends DeregisterInstanceRespo
27
27
  * import { ServiceDiscoveryClient, DeregisterInstanceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
28
28
  * // const { ServiceDiscoveryClient, DeregisterInstanceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
29
29
  * const client = new ServiceDiscoveryClient(config);
30
- * const input = {
30
+ * const input = { // DeregisterInstanceRequest
31
31
  * ServiceId: "STRING_VALUE", // required
32
32
  * InstanceId: "STRING_VALUE", // required
33
33
  * };
@@ -28,11 +28,11 @@ export interface DiscoverInstancesCommandOutput extends DiscoverInstancesRespons
28
28
  * import { ServiceDiscoveryClient, DiscoverInstancesCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
29
29
  * // const { ServiceDiscoveryClient, DiscoverInstancesCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
30
30
  * const client = new ServiceDiscoveryClient(config);
31
- * const input = {
31
+ * const input = { // DiscoverInstancesRequest
32
32
  * NamespaceName: "STRING_VALUE", // required
33
33
  * ServiceName: "STRING_VALUE", // required
34
34
  * MaxResults: Number("int"),
35
- * QueryParameters: {
35
+ * QueryParameters: { // Attributes
36
36
  * "<keys>": "STRING_VALUE",
37
37
  * },
38
38
  * OptionalParameters: {
@@ -26,7 +26,7 @@ export interface GetInstanceCommandOutput extends GetInstanceResponse, __Metadat
26
26
  * import { ServiceDiscoveryClient, GetInstanceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
27
27
  * // const { ServiceDiscoveryClient, GetInstanceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
28
28
  * const client = new ServiceDiscoveryClient(config);
29
- * const input = {
29
+ * const input = { // GetInstanceRequest
30
30
  * ServiceId: "STRING_VALUE", // required
31
31
  * InstanceId: "STRING_VALUE", // required
32
32
  * };
@@ -32,9 +32,9 @@ export interface GetInstancesHealthStatusCommandOutput extends GetInstancesHealt
32
32
  * import { ServiceDiscoveryClient, GetInstancesHealthStatusCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
33
33
  * // const { ServiceDiscoveryClient, GetInstancesHealthStatusCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
34
34
  * const client = new ServiceDiscoveryClient(config);
35
- * const input = {
35
+ * const input = { // GetInstancesHealthStatusRequest
36
36
  * ServiceId: "STRING_VALUE", // required
37
- * Instances: [
37
+ * Instances: [ // InstanceIdList
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * MaxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __Metad
26
26
  * import { ServiceDiscoveryClient, GetNamespaceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
27
27
  * // const { ServiceDiscoveryClient, GetNamespaceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
28
28
  * const client = new ServiceDiscoveryClient(config);
29
- * const input = {
29
+ * const input = { // GetNamespaceRequest
30
30
  * Id: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetNamespaceCommand(input);
@@ -30,7 +30,7 @@ export interface GetOperationCommandOutput extends GetOperationResponse, __Metad
30
30
  * import { ServiceDiscoveryClient, GetOperationCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
31
31
  * // const { ServiceDiscoveryClient, GetOperationCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
32
32
  * const client = new ServiceDiscoveryClient(config);
33
- * const input = {
33
+ * const input = { // GetOperationRequest
34
34
  * OperationId: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new GetOperationCommand(input);
@@ -26,7 +26,7 @@ export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataB
26
26
  * import { ServiceDiscoveryClient, GetServiceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
27
27
  * // const { ServiceDiscoveryClient, GetServiceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
28
28
  * const client = new ServiceDiscoveryClient(config);
29
- * const input = {
29
+ * const input = { // GetServiceRequest
30
30
  * Id: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetServiceCommand(input);
@@ -27,7 +27,7 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
27
27
  * import { ServiceDiscoveryClient, ListInstancesCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
28
28
  * // const { ServiceDiscoveryClient, ListInstancesCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
29
29
  * const client = new ServiceDiscoveryClient(config);
30
- * const input = {
30
+ * const input = { // ListInstancesRequest
31
31
  * ServiceId: "STRING_VALUE", // required
32
32
  * NextToken: "STRING_VALUE",
33
33
  * MaxResults: Number("int"),
@@ -26,13 +26,13 @@ export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __M
26
26
  * import { ServiceDiscoveryClient, ListNamespacesCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
27
27
  * // const { ServiceDiscoveryClient, ListNamespacesCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
28
28
  * const client = new ServiceDiscoveryClient(config);
29
- * const input = {
29
+ * const input = { // ListNamespacesRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * MaxResults: Number("int"),
32
- * Filters: [
33
- * {
32
+ * Filters: [ // NamespaceFilters
33
+ * { // NamespaceFilter
34
34
  * Name: "TYPE" || "NAME" || "HTTP_NAME", // required
35
- * Values: [ // required
35
+ * Values: [ // FilterValues // required
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * Condition: "EQ" || "IN" || "BETWEEN" || "BEGINS_WITH",
@@ -26,13 +26,13 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M
26
26
  * import { ServiceDiscoveryClient, ListOperationsCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
27
27
  * // const { ServiceDiscoveryClient, ListOperationsCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
28
28
  * const client = new ServiceDiscoveryClient(config);
29
- * const input = {
29
+ * const input = { // ListOperationsRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * MaxResults: Number("int"),
32
- * Filters: [
33
- * {
32
+ * Filters: [ // OperationFilters
33
+ * { // OperationFilter
34
34
  * Name: "NAMESPACE_ID" || "SERVICE_ID" || "STATUS" || "TYPE" || "UPDATE_DATE", // required
35
- * Values: [ // required
35
+ * Values: [ // FilterValues // required
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * Condition: "EQ" || "IN" || "BETWEEN" || "BEGINS_WITH",
@@ -27,13 +27,13 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
27
27
  * import { ServiceDiscoveryClient, ListServicesCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
28
28
  * // const { ServiceDiscoveryClient, ListServicesCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
29
29
  * const client = new ServiceDiscoveryClient(config);
30
- * const input = {
30
+ * const input = { // ListServicesRequest
31
31
  * NextToken: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
33
- * Filters: [
34
- * {
33
+ * Filters: [ // ServiceFilters
34
+ * { // ServiceFilter
35
35
  * Name: "NAMESPACE_ID", // required
36
- * Values: [ // required
36
+ * Values: [ // FilterValues // required
37
37
  * "STRING_VALUE",
38
38
  * ],
39
39
  * Condition: "EQ" || "IN" || "BETWEEN" || "BEGINS_WITH",
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { ServiceDiscoveryClient, ListTagsForResourceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
27
27
  * // const { ServiceDiscoveryClient, ListTagsForResourceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
28
28
  * const client = new ServiceDiscoveryClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -69,11 +69,11 @@ export interface RegisterInstanceCommandOutput extends RegisterInstanceResponse,
69
69
  * import { ServiceDiscoveryClient, RegisterInstanceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
70
70
  * // const { ServiceDiscoveryClient, RegisterInstanceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
71
71
  * const client = new ServiceDiscoveryClient(config);
72
- * const input = {
72
+ * const input = { // RegisterInstanceRequest
73
73
  * ServiceId: "STRING_VALUE", // required
74
74
  * InstanceId: "STRING_VALUE", // required
75
75
  * CreatorRequestId: "STRING_VALUE",
76
- * Attributes: { // required
76
+ * Attributes: { // Attributes // required
77
77
  * "<keys>": "STRING_VALUE",
78
78
  * },
79
79
  * };
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { ServiceDiscoveryClient, TagResourceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
27
27
  * // const { ServiceDiscoveryClient, TagResourceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
28
28
  * const client = new ServiceDiscoveryClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
- * Tags: [ // required
32
- * {
31
+ * Tags: [ // TagList // required
32
+ * { // Tag
33
33
  * Key: "STRING_VALUE", // required
34
34
  * Value: "STRING_VALUE", // required
35
35
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { ServiceDiscoveryClient, UntagResourceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
27
27
  * // const { ServiceDiscoveryClient, UntagResourceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
28
28
  * const client = new ServiceDiscoveryClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
- * TagKeys: [ // required
31
+ * TagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -27,10 +27,10 @@ export interface UpdateHttpNamespaceCommandOutput extends UpdateHttpNamespaceRes
27
27
  * import { ServiceDiscoveryClient, UpdateHttpNamespaceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
28
28
  * // const { ServiceDiscoveryClient, UpdateHttpNamespaceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
29
29
  * const client = new ServiceDiscoveryClient(config);
30
- * const input = {
30
+ * const input = { // UpdateHttpNamespaceRequest
31
31
  * Id: "STRING_VALUE", // required
32
32
  * UpdaterRequestId: "STRING_VALUE",
33
- * Namespace: {
33
+ * Namespace: { // HttpNamespaceChange
34
34
  * Description: "STRING_VALUE", // required
35
35
  * },
36
36
  * };
@@ -32,7 +32,7 @@ export interface UpdateInstanceCustomHealthStatusCommandOutput extends __Metadat
32
32
  * import { ServiceDiscoveryClient, UpdateInstanceCustomHealthStatusCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
33
33
  * // const { ServiceDiscoveryClient, UpdateInstanceCustomHealthStatusCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
34
34
  * const client = new ServiceDiscoveryClient(config);
35
- * const input = {
35
+ * const input = { // UpdateInstanceCustomHealthStatusRequest
36
36
  * ServiceId: "STRING_VALUE", // required
37
37
  * InstanceId: "STRING_VALUE", // required
38
38
  * Status: "HEALTHY" || "UNHEALTHY", // required
@@ -27,14 +27,14 @@ export interface UpdatePrivateDnsNamespaceCommandOutput extends UpdatePrivateDns
27
27
  * import { ServiceDiscoveryClient, UpdatePrivateDnsNamespaceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
28
28
  * // const { ServiceDiscoveryClient, UpdatePrivateDnsNamespaceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
29
29
  * const client = new ServiceDiscoveryClient(config);
30
- * const input = {
30
+ * const input = { // UpdatePrivateDnsNamespaceRequest
31
31
  * Id: "STRING_VALUE", // required
32
32
  * UpdaterRequestId: "STRING_VALUE",
33
- * Namespace: {
33
+ * Namespace: { // PrivateDnsNamespaceChange
34
34
  * Description: "STRING_VALUE",
35
- * Properties: {
36
- * DnsProperties: {
37
- * SOA: {
35
+ * Properties: { // PrivateDnsNamespacePropertiesChange
36
+ * DnsProperties: { // PrivateDnsPropertiesMutableChange
37
+ * SOA: { // SOAChange
38
38
  * TTL: Number("long"), // required
39
39
  * },
40
40
  * },
@@ -27,14 +27,14 @@ export interface UpdatePublicDnsNamespaceCommandOutput extends UpdatePublicDnsNa
27
27
  * import { ServiceDiscoveryClient, UpdatePublicDnsNamespaceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
28
28
  * // const { ServiceDiscoveryClient, UpdatePublicDnsNamespaceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
29
29
  * const client = new ServiceDiscoveryClient(config);
30
- * const input = {
30
+ * const input = { // UpdatePublicDnsNamespaceRequest
31
31
  * Id: "STRING_VALUE", // required
32
32
  * UpdaterRequestId: "STRING_VALUE",
33
- * Namespace: {
33
+ * Namespace: { // PublicDnsNamespaceChange
34
34
  * Description: "STRING_VALUE",
35
- * Properties: {
36
- * DnsProperties: {
37
- * SOA: {
35
+ * Properties: { // PublicDnsNamespacePropertiesChange
36
+ * DnsProperties: { // PublicDnsPropertiesMutableChange
37
+ * SOA: { // SOAChange
38
38
  * TTL: Number("long"), // required
39
39
  * },
40
40
  * },
@@ -52,19 +52,19 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met
52
52
  * import { ServiceDiscoveryClient, UpdateServiceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
53
53
  * // const { ServiceDiscoveryClient, UpdateServiceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
54
54
  * const client = new ServiceDiscoveryClient(config);
55
- * const input = {
55
+ * const input = { // UpdateServiceRequest
56
56
  * Id: "STRING_VALUE", // required
57
- * Service: {
57
+ * Service: { // ServiceChange
58
58
  * Description: "STRING_VALUE",
59
- * DnsConfig: {
60
- * DnsRecords: [ // required
61
- * {
59
+ * DnsConfig: { // DnsConfigChange
60
+ * DnsRecords: [ // DnsRecordList // required
61
+ * { // DnsRecord
62
62
  * Type: "SRV" || "A" || "AAAA" || "CNAME", // required
63
63
  * TTL: Number("long"), // required
64
64
  * },
65
65
  * ],
66
66
  * },
67
- * HealthCheckConfig: {
67
+ * HealthCheckConfig: { // HealthCheckConfig
68
68
  * Type: "HTTP" || "HTTPS" || "TCP", // required
69
69
  * ResourcePath: "STRING_VALUE",
70
70
  * FailureThreshold: Number("int"),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-servicediscovery",
3
3
  "description": "AWS SDK for JavaScript Servicediscovery Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",