@pulumi/ec 0.5.2-alpha.1691409334 → 0.6.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 (45) hide show
  1. package/deployment.d.ts +75 -293
  2. package/deployment.js +10 -167
  3. package/deployment.js.map +1 -1
  4. package/deploymentElasticsearchKeystore.d.ts +27 -24
  5. package/deploymentElasticsearchKeystore.js +17 -14
  6. package/deploymentElasticsearchKeystore.js.map +1 -1
  7. package/deploymentExtension.d.ts +31 -88
  8. package/deploymentExtension.js +5 -62
  9. package/deploymentExtension.js.map +1 -1
  10. package/deploymentTrafficFilter.d.ts +41 -30
  11. package/deploymentTrafficFilter.js +20 -12
  12. package/deploymentTrafficFilter.js.map +1 -1
  13. package/deploymentTrafficFilterAssociation.d.ts +7 -7
  14. package/deploymentTrafficFilterAssociation.js +1 -1
  15. package/getAwsPrivatelinkEndpoint.d.ts +7 -8
  16. package/getAwsPrivatelinkEndpoint.js +4 -8
  17. package/getAwsPrivatelinkEndpoint.js.map +1 -1
  18. package/getAzurePrivatelinkEndpoint.d.ts +3 -4
  19. package/getAzurePrivatelinkEndpoint.js +0 -4
  20. package/getAzurePrivatelinkEndpoint.js.map +1 -1
  21. package/getDeployment.d.ts +5 -83
  22. package/getDeployment.js.map +1 -1
  23. package/getDeployments.d.ts +75 -85
  24. package/getDeployments.js +21 -21
  25. package/getDeployments.js.map +1 -1
  26. package/getGcpPrivateServiceConnectEndpoint.d.ts +5 -6
  27. package/getGcpPrivateServiceConnectEndpoint.js +0 -4
  28. package/getGcpPrivateServiceConnectEndpoint.js.map +1 -1
  29. package/getStack.d.ts +23 -32
  30. package/getStack.js +4 -0
  31. package/getStack.js.map +1 -1
  32. package/getTrafficFilter.d.ts +99 -0
  33. package/getTrafficFilter.js +62 -0
  34. package/getTrafficFilter.js.map +1 -0
  35. package/index.d.ts +6 -0
  36. package/index.js +9 -1
  37. package/index.js.map +1 -1
  38. package/package.json +2 -2
  39. package/provider.js +1 -1
  40. package/provider.js.map +1 -1
  41. package/snapshotRepository.d.ts +87 -0
  42. package/snapshotRepository.js +66 -0
  43. package/snapshotRepository.js.map +1 -0
  44. package/types/input.d.ts +317 -353
  45. package/types/output.d.ts +586 -384
@@ -2,16 +2,14 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * Use this data source to retrieve information about the AWS Private Link configuration for a given region. Further documentation on how to establish a PrivateLink connection can be found in the ESS [documentation](https://www.elastic.co/guide/en/cloud/current/ec-traffic-filtering-vpc.html).
4
4
  *
5
- * > **NOTE:** This data source provides data relevant to the Elasticsearch Service (ESS) only, and should not be used for ECE.
6
- *
7
5
  * ## Example Usage
8
6
  *
9
7
  * ```typescript
10
8
  * import * as pulumi from "@pulumi/pulumi";
11
9
  * import * as ec from "@pulumi/ec";
12
10
  *
13
- * const us-east-1 = ec.getAwsPrivatelinkEndpoint({
14
- * region: "us-east-1",
11
+ * const eastus = ec.getAzurePrivatelinkEndpoint({
12
+ * region: "eastus",
15
13
  * });
16
14
  * ```
17
15
  */
@@ -37,6 +35,9 @@ export interface GetAwsPrivatelinkEndpointResult {
37
35
  * The provider-assigned unique ID for this managed resource.
38
36
  */
39
37
  readonly id: string;
38
+ /**
39
+ * Region to retrieve the Private Link configuration for.
40
+ */
40
41
  readonly region: string;
41
42
  /**
42
43
  * The VPC service name used to connect to the region.
@@ -50,16 +51,14 @@ export interface GetAwsPrivatelinkEndpointResult {
50
51
  /**
51
52
  * Use this data source to retrieve information about the AWS Private Link configuration for a given region. Further documentation on how to establish a PrivateLink connection can be found in the ESS [documentation](https://www.elastic.co/guide/en/cloud/current/ec-traffic-filtering-vpc.html).
52
53
  *
53
- * > **NOTE:** This data source provides data relevant to the Elasticsearch Service (ESS) only, and should not be used for ECE.
54
- *
55
54
  * ## Example Usage
56
55
  *
57
56
  * ```typescript
58
57
  * import * as pulumi from "@pulumi/pulumi";
59
58
  * import * as ec from "@pulumi/ec";
60
59
  *
61
- * const us-east-1 = ec.getAwsPrivatelinkEndpoint({
62
- * region: "us-east-1",
60
+ * const eastus = ec.getAzurePrivatelinkEndpoint({
61
+ * region: "eastus",
63
62
  * });
64
63
  * ```
65
64
  */
@@ -8,16 +8,14 @@ const utilities = require("./utilities");
8
8
  /**
9
9
  * Use this data source to retrieve information about the AWS Private Link configuration for a given region. Further documentation on how to establish a PrivateLink connection can be found in the ESS [documentation](https://www.elastic.co/guide/en/cloud/current/ec-traffic-filtering-vpc.html).
10
10
  *
11
- * > **NOTE:** This data source provides data relevant to the Elasticsearch Service (ESS) only, and should not be used for ECE.
12
- *
13
11
  * ## Example Usage
14
12
  *
15
13
  * ```typescript
16
14
  * import * as pulumi from "@pulumi/pulumi";
17
15
  * import * as ec from "@pulumi/ec";
18
16
  *
19
- * const us-east-1 = ec.getAwsPrivatelinkEndpoint({
20
- * region: "us-east-1",
17
+ * const eastus = ec.getAzurePrivatelinkEndpoint({
18
+ * region: "eastus",
21
19
  * });
22
20
  * ```
23
21
  */
@@ -31,16 +29,14 @@ exports.getAwsPrivatelinkEndpoint = getAwsPrivatelinkEndpoint;
31
29
  /**
32
30
  * Use this data source to retrieve information about the AWS Private Link configuration for a given region. Further documentation on how to establish a PrivateLink connection can be found in the ESS [documentation](https://www.elastic.co/guide/en/cloud/current/ec-traffic-filtering-vpc.html).
33
31
  *
34
- * > **NOTE:** This data source provides data relevant to the Elasticsearch Service (ESS) only, and should not be used for ECE.
35
- *
36
32
  * ## Example Usage
37
33
  *
38
34
  * ```typescript
39
35
  * import * as pulumi from "@pulumi/pulumi";
40
36
  * import * as ec from "@pulumi/ec";
41
37
  *
42
- * const us-east-1 = ec.getAwsPrivatelinkEndpoint({
43
- * region: "us-east-1",
38
+ * const eastus = ec.getAzurePrivatelinkEndpoint({
39
+ * region: "eastus",
44
40
  * });
45
41
  * ```
46
42
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getAwsPrivatelinkEndpoint.js","sourceRoot":"","sources":["../getAwsPrivatelinkEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IAEtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8DAMC;AAkCD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAA2B;IAClH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,yBAAyB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpF,CAAC;AAFD,0EAEC"}
1
+ {"version":3,"file":"getAwsPrivatelinkEndpoint.js","sourceRoot":"","sources":["../getAwsPrivatelinkEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IAEtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8DAMC;AAqCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAA2B;IAClH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,yBAAyB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpF,CAAC;AAFD,0EAEC"}
@@ -2,8 +2,6 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * Use this data source to retrieve information about the Azure Private Link configuration for a given region. Further documentation on how to establish a PrivateLink connection can be found in the ESS [documentation](https://www.elastic.co/guide/en/cloud/current/ec-traffic-filtering-vnet.html).
4
4
  *
5
- * > **NOTE:** This data source provides data relevant to the Elasticsearch Service (ESS) only, and should not be used for ECE.
6
- *
7
5
  * ## Example Usage
8
6
  *
9
7
  * ```typescript
@@ -37,6 +35,9 @@ export interface GetAzurePrivatelinkEndpointResult {
37
35
  * The provider-assigned unique ID for this managed resource.
38
36
  */
39
37
  readonly id: string;
38
+ /**
39
+ * Region to retrieve the Private Link configuration for.
40
+ */
40
41
  readonly region: string;
41
42
  /**
42
43
  * The service alias to establish a connection to.
@@ -46,8 +47,6 @@ export interface GetAzurePrivatelinkEndpointResult {
46
47
  /**
47
48
  * Use this data source to retrieve information about the Azure Private Link configuration for a given region. Further documentation on how to establish a PrivateLink connection can be found in the ESS [documentation](https://www.elastic.co/guide/en/cloud/current/ec-traffic-filtering-vnet.html).
48
49
  *
49
- * > **NOTE:** This data source provides data relevant to the Elasticsearch Service (ESS) only, and should not be used for ECE.
50
- *
51
50
  * ## Example Usage
52
51
  *
53
52
  * ```typescript
@@ -8,8 +8,6 @@ const utilities = require("./utilities");
8
8
  /**
9
9
  * Use this data source to retrieve information about the Azure Private Link configuration for a given region. Further documentation on how to establish a PrivateLink connection can be found in the ESS [documentation](https://www.elastic.co/guide/en/cloud/current/ec-traffic-filtering-vnet.html).
10
10
  *
11
- * > **NOTE:** This data source provides data relevant to the Elasticsearch Service (ESS) only, and should not be used for ECE.
12
- *
13
11
  * ## Example Usage
14
12
  *
15
13
  * ```typescript
@@ -31,8 +29,6 @@ exports.getAzurePrivatelinkEndpoint = getAzurePrivatelinkEndpoint;
31
29
  /**
32
30
  * Use this data source to retrieve information about the Azure Private Link configuration for a given region. Further documentation on how to establish a PrivateLink connection can be found in the ESS [documentation](https://www.elastic.co/guide/en/cloud/current/ec-traffic-filtering-vnet.html).
33
31
  *
34
- * > **NOTE:** This data source provides data relevant to the Elasticsearch Service (ESS) only, and should not be used for ECE.
35
- *
36
32
  * ## Example Usage
37
33
  *
38
34
  * ```typescript
@@ -1 +1 @@
1
- {"version":3,"file":"getAzurePrivatelinkEndpoint.js","sourceRoot":"","sources":["../getAzurePrivatelinkEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAE1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kEAAkE,EAAE;QAC7F,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kEAMC;AA8BD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,iCAAiC,CAAC,IAA2C,EAAE,IAA2B;IACtH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,2BAA2B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtF,CAAC;AAFD,8EAEC"}
1
+ {"version":3,"file":"getAzurePrivatelinkEndpoint.js","sourceRoot":"","sources":["../getAzurePrivatelinkEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAE1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kEAAkE,EAAE;QAC7F,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kEAMC;AAiCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,iCAAiC,CAAC,IAA2C,EAAE,IAA2B;IACtH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,2BAA2B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtF,CAAC;AAFD,8EAEC"}
@@ -20,7 +20,7 @@ export declare function getDeployment(args: GetDeploymentArgs, opts?: pulumi.Inv
20
20
  */
21
21
  export interface GetDeploymentArgs {
22
22
  /**
23
- * The ID of an existing Elastic Cloud deployment.
23
+ * The unique ID of the deployment.
24
24
  */
25
25
  id: string;
26
26
  }
@@ -34,68 +34,18 @@ export interface GetDeploymentResult {
34
34
  readonly alias: string;
35
35
  /**
36
36
  * Instance configuration of the APM type.
37
- * * `apm.#.elasticsearch_cluster_ref_id` - The user-specified ID of the Elasticsearch cluster to which this resource kind will link.
38
- * * `apm.#.healthy` - Resource kind health status.
39
- * * `apm.#.http_endpoint` - HTTP endpoint for the resource kind.
40
- * * `apm.#.https_endpoint` - HTTPS endpoint for the resource kind.
41
- * * `apm.#.ref_id` - User specified refId for the resource kind.
42
- * * `apm.#.resource_id` - The resource unique identifier.
43
- * * `apm.#.status` - Resource kind status (for example, "started", "stopped", etc).
44
- * * `apm.#.version` - Elastic stack version.
45
- * * `apm.#.topology` - Node topology element definition.
46
- * * `apm.#.topology.#.instance_configuration_id` - Controls the allocation of this topology element as well as allowed sizes and node_types. It needs to match the ID of an existing instance configuration.
47
- * * `apm.#.topology.#.size` - Amount of memory (RAM) per topology element in the "<size in GB>g" notation.
48
- * * `apm.#.topology.#.zone_count` - Number of zones in which nodes will be placed.
49
37
  */
50
38
  readonly apms: outputs.GetDeploymentApm[];
51
39
  /**
52
- * ID of the deployment template used to create the deployment.
40
+ * ID of the deployment template this deployment is based off.
53
41
  */
54
42
  readonly deploymentTemplateId: string;
55
43
  /**
56
- * Instance configuration of the Elasticsearch resource kind.
57
- * * `elasticsearch.#.autoscale` - Whether or not Elasticsearch autoscaling is enabled.
58
- * * `elasticsearch.#.healthy` - Resource kind health status.
59
- * * `elasticsearch.#.cloud_id` - The encoded Elasticsearch credentials to use in Beats or Logstash. See [Configure Beats and Logstash with Cloud ID](https://www.elastic.co/guide/en/cloud/current/ec-cloud-id.html) for more information.
60
- * * `elasticsearch.#.http_endpoint` - HTTP endpoint for the resource kind.
61
- * * `elasticsearch.#.https_endpoint` - HTTPS endpoint for the resource kind.
62
- * * `elasticsearch.#.ref_id` - User specified refId for the resource kind.
63
- * * `elasticsearch.#.resource_id` - The resource unique identifier.
64
- * * `elasticsearch.#.status` - Resource kind status (for example, "started", "stopped", etc).
65
- * * `elasticsearch.#.version` - Elastic stack version.
66
- * * `elasticsearch.#.topology` - Topology element definition.
67
- * * `elasticsearch.#.topology.#.instance_configuration_id` - Controls the allocation of this topology element as well as allowed sizes and node_types. It needs to match the ID of an existing instance configuration.
68
- * * `elasticsearch.#.topology.#.size` - Amount of memory (RAM) per topology element in the "<size in GB>g" notation.
69
- * * `elasticsearch.#.topology.#.zone_count` - Number of zones in which nodes will be placed.
70
- * * `elasticsearch.#.topology.#.node_roles` - Defines the list of Elasticsearch node roles assigned to the topology element (>=7.10.0).
71
- * * `elasticsearch.#.topology.#.node_type_data` - Defines whether this node can hold data (<7.10.0).
72
- * * `elasticsearch.#.topology.#.node_type_master` - Defines whether this node can be elected master (<7.10.0).
73
- * * `elasticsearch.#.topology.#.node_type_ingest` - Defines whether this node can run an ingest pipeline (<7.10.0).
74
- * * `elasticsearch.#.topology.#.node_type_ml` - Defines whether this node can run ML jobs (<7.10.0).
75
- * * `elasticsearch.#.topology.#.autoscaling.#.max_size` - The maximum size for the scale up policy.
76
- * * `elasticsearch.#.topology.#.autoscaling.#.max_size_resource` - The maximum size resource for the scale up policy.
77
- * * `elasticsearch.#.topology.#.autoscaling.#.min_size` - The minimum size for the scale down policy.
78
- * * `elasticsearch.#.topology.#.autoscaling.#.min_size_resource` - The minimum size for the scale down policy.
79
- * * `elasticsearch.#.topology.#.autoscaling.#.policy_override_json` - The advanced policy overrides for the autoscaling policy.
44
+ * Instance configuration of the Elasticsearch Elasticsearch resource.
80
45
  */
81
46
  readonly elasticsearches: outputs.GetDeploymentElasticsearch[];
82
47
  /**
83
48
  * Instance configuration of the Enterprise Search type.
84
- * * `enterprise_search.#.elasticsearch_cluster_ref_id` - The user-specified ID of the Elasticsearch cluster to which this resource kind will link.
85
- * * `enterprise_search.#.healthy` - Resource kind health status.
86
- * * `enterprise_search.#.http_endpoint` - HTTP endpoint for the resource kind.
87
- * * `enterprise_search.#.https_endpoint` - HTTPS endpoint for the resource kind.
88
- * * `enterprise_search.#.ref_id` - User specified refId for the resource kind.
89
- * * `enterprise_search.#.resource_id` - The resource unique identifier.
90
- * * `enterprise_search.#.status` - Resource kind status (for example, "started", "stopped", etc).
91
- * * `enterprise_search.#.version` - Elastic stack version.
92
- * * `enterprise_search.#.topology` - Node topology element definition.
93
- * * `enterprise_search.#.topology.#.instance_configuration_id` - Controls the allocation of this topology element as well as allowed sizes and node_types. It needs to match the ID of an existing instance configuration.
94
- * * `enterprise_search.#.topology.#.size` - Amount of memory (RAM) per topology element in the "<size in GB>g" notation.
95
- * * `enterprise_search.#.topology.#.zone_count` - Number of zones in which nodes will be placed.
96
- * * `enterprise_search.#.topology.#.node_type_appserver` - Defines whether this instance should run as application/API server.
97
- * * `enterprise_search.#.topology.#.node_type_connector` - Defines whether this instance should run as connector.
98
- * * `enterprise_search.#.topology.#.node_type_worker` - Defines whether this instance should run as background worker.
99
49
  */
100
50
  readonly enterpriseSearches: outputs.GetDeploymentEnterpriseSearch[];
101
51
  /**
@@ -108,34 +58,10 @@ export interface GetDeploymentResult {
108
58
  readonly id: string;
109
59
  /**
110
60
  * Instance configuration of the Integrations Server type.
111
- * * `integrations_server.#.elasticsearch_cluster_ref_id` - The user-specified ID of the Elasticsearch cluster to which this resource kind will link.
112
- * * `integrations_server.#.healthy` - Resource kind health status.
113
- * * `integrations_server.#.http_endpoint` - HTTP endpoint for the resource kind.
114
- * * `integrations_server.#.https_endpoint` - HTTPS endpoint for the resource kind.
115
- * * `integrations_server.#.ref_id` - User specified refId for the resource kind.
116
- * * `integrations_server.#.resource_id` - The resource unique identifier.
117
- * * `integrations_server.#.status` - Resource kind status (for example, "started", "stopped", etc).
118
- * * `integrations_server.#.version` - Elastic stack version.
119
- * * `integrations_server.#.topology` - Node topology element definition.
120
- * * `integrations_server.#.topology.#.instance_configuration_id` - Controls the allocation of this topology element as well as allowed sizes and node_types. It needs to match the ID of an existing instance configuration.
121
- * * `integrations_server.#.topology.#.size` - Amount of memory (RAM) per topology element in the "<size in GB>g" notation.
122
- * * `integrations_server.#.topology.#.zone_count` - Number of zones in which nodes will be placed.
123
61
  */
124
62
  readonly integrationsServers: outputs.GetDeploymentIntegrationsServer[];
125
63
  /**
126
64
  * Instance configuration of the Kibana type.
127
- * * `kibana.#.elasticsearch_cluster_ref_id` - The user-specified ID of the Elasticsearch cluster to which this resource kind will link.
128
- * * `kibana.#.healthy` - Resource kind health status.
129
- * * `kibana.#.http_endpoint` - HTTP endpoint for the resource kind.
130
- * * `kibana.#.https_endpoint` - HTTPS endpoint for the resource kind.
131
- * * `kibana.#.ref_id` - User specified refId for the resource kind.
132
- * * `kibana.#.resource_id` - The resource unique identifier.
133
- * * `kibana.#.status` - Resource kind status (for example, "started", "stopped", etc).
134
- * * `kibana.#.version` - Elastic stack version.
135
- * * `kibana.#.topology` - Node topology element definition.
136
- * * `kibana.#.topology.#.instance_configuration_id` - Controls the allocation of this topology element as well as allowed sizes and node_types. It needs to match the ID of an existing instance configuration.
137
- * * `kibana.#.topology.#.size` - Amount of memory (RAM) per topology element in the "<size in GB>g" notation.
138
- * * `kibana.#.topology.#.zone_count` - Number of zones in which nodes will be placed.
139
65
  */
140
66
  readonly kibanas: outputs.GetDeploymentKibana[];
141
67
  /**
@@ -144,14 +70,10 @@ export interface GetDeploymentResult {
144
70
  readonly name: string;
145
71
  /**
146
72
  * Observability settings. Information about logs and metrics shipped to a dedicated deployment.
147
- * * `observability.#.deployment_id` - Destination deployment ID for the shipped logs and monitoring metrics.
148
- * * `observability.#.ref_id` - Elasticsearch resource kind refId of the destination deployment.
149
- * * `observability.#.logs` - Defines whether logs are enabled or disabled.
150
- * * `observability.#.metrics` - Defines whether metrics are enabled or disabled.
151
73
  */
152
74
  readonly observabilities: outputs.GetDeploymentObservability[];
153
75
  /**
154
- * Region where the deployment can be found.
76
+ * Region where the deployment is hosted.
155
77
  */
156
78
  readonly region: string;
157
79
  /**
@@ -185,7 +107,7 @@ export declare function getDeploymentOutput(args: GetDeploymentOutputArgs, opts?
185
107
  */
186
108
  export interface GetDeploymentOutputArgs {
187
109
  /**
188
- * The ID of an existing Elastic Cloud deployment.
110
+ * The unique ID of the deployment.
189
111
  */
190
112
  id: pulumi.Input<string>;
191
113
  }
@@ -1 +1 @@
1
- {"version":3,"file":"getDeployment.js","sourceRoot":"","sources":["../getDeployment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAE9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;AAuJD;;;;;;;;;;;;;GAaG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
1
+ {"version":3,"file":"getDeployment.js","sourceRoot":"","sources":["../getDeployment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAE9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;AAyED;;;;;;;;;;;;;GAaG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
@@ -12,18 +12,18 @@ import * as outputs from "./types/output";
12
12
  *
13
13
  * const example = ec.getDeployments({
14
14
  * deploymentTemplateId: "azure-compute-optimized",
15
- * elasticsearch: {
15
+ * elasticsearches: [{
16
16
  * healthy: "true",
17
- * },
18
- * enterpriseSearch: {
17
+ * }],
18
+ * enterpriseSearches: [{
19
19
  * healthy: "true",
20
- * },
21
- * integrationsServer: {
20
+ * }],
21
+ * integrationsServers: [{
22
22
  * version: "8.0.0",
23
- * },
24
- * kibana: {
23
+ * }],
24
+ * kibanas: [{
25
25
  * status: "started",
26
- * },
26
+ * }],
27
27
  * namePrefix: "test",
28
28
  * size: 200,
29
29
  * tags: {
@@ -38,50 +38,35 @@ export declare function getDeployments(args?: GetDeploymentsArgs, opts?: pulumi.
38
38
  */
39
39
  export interface GetDeploymentsArgs {
40
40
  /**
41
- * **DEPRECATED** Filter by APM resource kind status or configuration.
42
- * * `apm.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
43
- * * `apm.#.version` - Elastic stack version.
44
- * * `apm.#.healthy` - Overall health status of the APM instances.
41
+ * Filter by APM resource kind status or configuration.
45
42
  */
46
- apm?: inputs.GetDeploymentsApm;
43
+ apms?: inputs.GetDeploymentsApm[];
47
44
  /**
48
- * ID of the deployment template used to create the deployment.
45
+ * Filter the result set by the ID of the deployment template the deployment is based off.
49
46
  */
50
47
  deploymentTemplateId?: string;
51
48
  /**
52
49
  * Filter by Elasticsearch resource kind status or configuration.
53
- * * `elasticsearch.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
54
- * * `elasticsearch.#.version` - Elastic stack version.
55
- * * `elasticsearch.#.healthy` - Overall health status of the Elasticsearch instances.
56
50
  */
57
- elasticsearch?: inputs.GetDeploymentsElasticsearch;
51
+ elasticsearches?: inputs.GetDeploymentsElasticsearch[];
58
52
  /**
59
53
  * Filter by Enterprise Search resource kind status or configuration.
60
- * * `enterprise_search.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
61
- * * `enterprise_search.#.version` - Elastic stack version.
62
- * * `enterprise_search.#.healthy` - Overall health status of the Enterprise Search instances.
63
54
  */
64
- enterpriseSearch?: inputs.GetDeploymentsEnterpriseSearch;
55
+ enterpriseSearches?: inputs.GetDeploymentsEnterpriseSearch[];
65
56
  /**
66
- * Overall health status of the deployment.
57
+ * Filter the result set by their health status.
67
58
  */
68
59
  healthy?: string;
69
60
  /**
70
61
  * Filter by Integrations Server resource kind status or configuration.
71
- * * `integrations_server.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
72
- * * `integrations_server.#.version` - Elastic stack version.
73
- * * `integrations_server.#.healthy` - Overall health status of the Integrations Server instances.
74
62
  */
75
- integrationsServer?: inputs.GetDeploymentsIntegrationsServer;
63
+ integrationsServers?: inputs.GetDeploymentsIntegrationsServer[];
76
64
  /**
77
65
  * Filter by Kibana resource kind status or configuration.
78
- * * `kibana.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
79
- * * `kibana.#.version` - Elastic stack version.
80
- * * `kibana.#.healthy` - Overall health status of the Kibana instances.
81
66
  */
82
- kibana?: inputs.GetDeploymentsKibana;
67
+ kibanas?: inputs.GetDeploymentsKibana[];
83
68
  /**
84
- * Prefix that one or several deployment names have in common.
69
+ * Prefix to filter the returned deployment list by.
85
70
  */
86
71
  namePrefix?: string;
87
72
  /**
@@ -89,7 +74,7 @@ export interface GetDeploymentsArgs {
89
74
  */
90
75
  size?: number;
91
76
  /**
92
- * Key value map of arbitrary string tags for the deployment.
77
+ * Filter the result set by their assigned tags.
93
78
  */
94
79
  tags?: {
95
80
  [key: string]: string;
@@ -99,37 +84,57 @@ export interface GetDeploymentsArgs {
99
84
  * A collection of values returned by getDeployments.
100
85
  */
101
86
  export interface GetDeploymentsResult {
102
- readonly apm?: outputs.GetDeploymentsApm;
87
+ /**
88
+ * Filter by APM resource kind status or configuration.
89
+ */
90
+ readonly apms?: outputs.GetDeploymentsApm[];
91
+ /**
92
+ * Filter the result set by the ID of the deployment template the deployment is based off.
93
+ */
103
94
  readonly deploymentTemplateId?: string;
104
95
  /**
105
96
  * List of deployments which match the specified query.
106
- * * `deployments.#.deployment_id` - The deployment unique ID.
107
- * * `deployments.#.alias` - Deployment alias.
108
- * * `deployments.#.name` - The name of the deployment.
109
- * * `deployments.#.elasticsearch_resource_id` - The Elasticsearch resource unique ID.
110
- * * `deployments.#.elasticsearch_ref_id` - The Elasticsearch resource reference.
111
- * * `deployments.#.kibana_resource_id` - The Kibana resource unique ID.
112
- * * `deployments.#.kibana_ref_id` - The Kibana resource reference.
113
- * * `deployments.#.integrations_server_resource_id` - The Integrations Server resource unique ID.
114
- * * `deployments.#.integrations_server_ref_id` - The Integrations Server resource reference.
115
- * * `deployments.#.apm_resource_id` - The APM resource unique ID.
116
- * * `deployments.#.apm_ref_id` - The APM resource reference.
117
- * * `deployments.#.enterprise_search_resource_id` - The Enterprise Search resource unique ID.
118
- * * `deployments.#.enterprise_search_ref_id` - The Enterprise Search resource reference.
119
97
  */
120
98
  readonly deployments: outputs.GetDeploymentsDeployment[];
121
- readonly elasticsearch?: outputs.GetDeploymentsElasticsearch;
122
- readonly enterpriseSearch?: outputs.GetDeploymentsEnterpriseSearch;
99
+ /**
100
+ * Filter by Elasticsearch resource kind status or configuration.
101
+ */
102
+ readonly elasticsearches?: outputs.GetDeploymentsElasticsearch[];
103
+ /**
104
+ * Filter by Enterprise Search resource kind status or configuration.
105
+ */
106
+ readonly enterpriseSearches?: outputs.GetDeploymentsEnterpriseSearch[];
107
+ /**
108
+ * Filter the result set by their health status.
109
+ */
123
110
  readonly healthy?: string;
124
111
  /**
125
- * The provider-assigned unique ID for this managed resource.
112
+ * Unique identifier of this data source.
126
113
  */
127
114
  readonly id: string;
128
- readonly integrationsServer?: outputs.GetDeploymentsIntegrationsServer;
129
- readonly kibana?: outputs.GetDeploymentsKibana;
115
+ /**
116
+ * Filter by Integrations Server resource kind status or configuration.
117
+ */
118
+ readonly integrationsServers?: outputs.GetDeploymentsIntegrationsServer[];
119
+ /**
120
+ * Filter by Kibana resource kind status or configuration.
121
+ */
122
+ readonly kibanas?: outputs.GetDeploymentsKibana[];
123
+ /**
124
+ * Prefix to filter the returned deployment list by.
125
+ */
130
126
  readonly namePrefix?: string;
127
+ /**
128
+ * The number of deployments actually returned.
129
+ */
131
130
  readonly returnCount: number;
131
+ /**
132
+ * The maximum number of deployments to return. Defaults to `100`.
133
+ */
132
134
  readonly size?: number;
135
+ /**
136
+ * Filter the result set by their assigned tags.
137
+ */
133
138
  readonly tags?: {
134
139
  [key: string]: string;
135
140
  };
@@ -145,18 +150,18 @@ export interface GetDeploymentsResult {
145
150
  *
146
151
  * const example = ec.getDeployments({
147
152
  * deploymentTemplateId: "azure-compute-optimized",
148
- * elasticsearch: {
153
+ * elasticsearches: [{
149
154
  * healthy: "true",
150
- * },
151
- * enterpriseSearch: {
155
+ * }],
156
+ * enterpriseSearches: [{
152
157
  * healthy: "true",
153
- * },
154
- * integrationsServer: {
158
+ * }],
159
+ * integrationsServers: [{
155
160
  * version: "8.0.0",
156
- * },
157
- * kibana: {
161
+ * }],
162
+ * kibanas: [{
158
163
  * status: "started",
159
- * },
164
+ * }],
160
165
  * namePrefix: "test",
161
166
  * size: 200,
162
167
  * tags: {
@@ -171,50 +176,35 @@ export declare function getDeploymentsOutput(args?: GetDeploymentsOutputArgs, op
171
176
  */
172
177
  export interface GetDeploymentsOutputArgs {
173
178
  /**
174
- * **DEPRECATED** Filter by APM resource kind status or configuration.
175
- * * `apm.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
176
- * * `apm.#.version` - Elastic stack version.
177
- * * `apm.#.healthy` - Overall health status of the APM instances.
179
+ * Filter by APM resource kind status or configuration.
178
180
  */
179
- apm?: pulumi.Input<inputs.GetDeploymentsApmArgs>;
181
+ apms?: pulumi.Input<pulumi.Input<inputs.GetDeploymentsApmArgs>[]>;
180
182
  /**
181
- * ID of the deployment template used to create the deployment.
183
+ * Filter the result set by the ID of the deployment template the deployment is based off.
182
184
  */
183
185
  deploymentTemplateId?: pulumi.Input<string>;
184
186
  /**
185
187
  * Filter by Elasticsearch resource kind status or configuration.
186
- * * `elasticsearch.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
187
- * * `elasticsearch.#.version` - Elastic stack version.
188
- * * `elasticsearch.#.healthy` - Overall health status of the Elasticsearch instances.
189
188
  */
190
- elasticsearch?: pulumi.Input<inputs.GetDeploymentsElasticsearchArgs>;
189
+ elasticsearches?: pulumi.Input<pulumi.Input<inputs.GetDeploymentsElasticsearchArgs>[]>;
191
190
  /**
192
191
  * Filter by Enterprise Search resource kind status or configuration.
193
- * * `enterprise_search.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
194
- * * `enterprise_search.#.version` - Elastic stack version.
195
- * * `enterprise_search.#.healthy` - Overall health status of the Enterprise Search instances.
196
192
  */
197
- enterpriseSearch?: pulumi.Input<inputs.GetDeploymentsEnterpriseSearchArgs>;
193
+ enterpriseSearches?: pulumi.Input<pulumi.Input<inputs.GetDeploymentsEnterpriseSearchArgs>[]>;
198
194
  /**
199
- * Overall health status of the deployment.
195
+ * Filter the result set by their health status.
200
196
  */
201
197
  healthy?: pulumi.Input<string>;
202
198
  /**
203
199
  * Filter by Integrations Server resource kind status or configuration.
204
- * * `integrations_server.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
205
- * * `integrations_server.#.version` - Elastic stack version.
206
- * * `integrations_server.#.healthy` - Overall health status of the Integrations Server instances.
207
200
  */
208
- integrationsServer?: pulumi.Input<inputs.GetDeploymentsIntegrationsServerArgs>;
201
+ integrationsServers?: pulumi.Input<pulumi.Input<inputs.GetDeploymentsIntegrationsServerArgs>[]>;
209
202
  /**
210
203
  * Filter by Kibana resource kind status or configuration.
211
- * * `kibana.#.status` - Resource kind status (Available statuses are: initializing, stopping, stopped, rebooting, restarting, reconfiguring, and started).
212
- * * `kibana.#.version` - Elastic stack version.
213
- * * `kibana.#.healthy` - Overall health status of the Kibana instances.
214
204
  */
215
- kibana?: pulumi.Input<inputs.GetDeploymentsKibanaArgs>;
205
+ kibanas?: pulumi.Input<pulumi.Input<inputs.GetDeploymentsKibanaArgs>[]>;
216
206
  /**
217
- * Prefix that one or several deployment names have in common.
207
+ * Prefix to filter the returned deployment list by.
218
208
  */
219
209
  namePrefix?: pulumi.Input<string>;
220
210
  /**
@@ -222,7 +212,7 @@ export interface GetDeploymentsOutputArgs {
222
212
  */
223
213
  size?: pulumi.Input<number>;
224
214
  /**
225
- * Key value map of arbitrary string tags for the deployment.
215
+ * Filter the result set by their assigned tags.
226
216
  */
227
217
  tags?: pulumi.Input<{
228
218
  [key: string]: pulumi.Input<string>;
package/getDeployments.js CHANGED
@@ -16,18 +16,18 @@ const utilities = require("./utilities");
16
16
  *
17
17
  * const example = ec.getDeployments({
18
18
  * deploymentTemplateId: "azure-compute-optimized",
19
- * elasticsearch: {
19
+ * elasticsearches: [{
20
20
  * healthy: "true",
21
- * },
22
- * enterpriseSearch: {
21
+ * }],
22
+ * enterpriseSearches: [{
23
23
  * healthy: "true",
24
- * },
25
- * integrationsServer: {
24
+ * }],
25
+ * integrationsServers: [{
26
26
  * version: "8.0.0",
27
- * },
28
- * kibana: {
27
+ * }],
28
+ * kibanas: [{
29
29
  * status: "started",
30
- * },
30
+ * }],
31
31
  * namePrefix: "test",
32
32
  * size: 200,
33
33
  * tags: {
@@ -40,13 +40,13 @@ function getDeployments(args, opts) {
40
40
  args = args || {};
41
41
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
42
42
  return pulumi.runtime.invoke("ec:index/getDeployments:getDeployments", {
43
- "apm": args.apm,
43
+ "apms": args.apms,
44
44
  "deploymentTemplateId": args.deploymentTemplateId,
45
- "elasticsearch": args.elasticsearch,
46
- "enterpriseSearch": args.enterpriseSearch,
45
+ "elasticsearches": args.elasticsearches,
46
+ "enterpriseSearches": args.enterpriseSearches,
47
47
  "healthy": args.healthy,
48
- "integrationsServer": args.integrationsServer,
49
- "kibana": args.kibana,
48
+ "integrationsServers": args.integrationsServers,
49
+ "kibanas": args.kibanas,
50
50
  "namePrefix": args.namePrefix,
51
51
  "size": args.size,
52
52
  "tags": args.tags,
@@ -64,18 +64,18 @@ exports.getDeployments = getDeployments;
64
64
  *
65
65
  * const example = ec.getDeployments({
66
66
  * deploymentTemplateId: "azure-compute-optimized",
67
- * elasticsearch: {
67
+ * elasticsearches: [{
68
68
  * healthy: "true",
69
- * },
70
- * enterpriseSearch: {
69
+ * }],
70
+ * enterpriseSearches: [{
71
71
  * healthy: "true",
72
- * },
73
- * integrationsServer: {
72
+ * }],
73
+ * integrationsServers: [{
74
74
  * version: "8.0.0",
75
- * },
76
- * kibana: {
75
+ * }],
76
+ * kibanas: [{
77
77
  * status: "started",
78
- * },
78
+ * }],
79
79
  * namePrefix: "test",
80
80
  * size: 200,
81
81
  * tags: {
@@ -1 +1 @@
1
- {"version":3,"file":"getDeployments.js","sourceRoot":"","sources":["../getDeployments.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,wCAgBC;AAoGD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
1
+ {"version":3,"file":"getDeployments.js","sourceRoot":"","sources":["../getDeployments.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,wCAgBC;AAyGD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}