ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud
ibm.getEnMetrics
Explore with Pulumi AI
Provides a read-only data source to retrieve information about en_metrics. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const enMetrics = ibm.getEnMetrics({
destinationType: "smtp_custom",
gte: "gte",
instanceId: "instance_id",
lte: "lte",
});
import pulumi
import pulumi_ibm as ibm
en_metrics = ibm.get_en_metrics(destination_type="smtp_custom",
gte="gte",
instance_id="instance_id",
lte="lte")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.GetEnMetrics(ctx, &ibm.GetEnMetricsArgs{
DestinationType: "smtp_custom",
Gte: "gte",
InstanceId: "instance_id",
Lte: "lte",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var enMetrics = Ibm.GetEnMetrics.Invoke(new()
{
DestinationType = "smtp_custom",
Gte = "gte",
InstanceId = "instance_id",
Lte = "lte",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetEnMetricsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var enMetrics = IbmFunctions.getEnMetrics(GetEnMetricsArgs.builder()
.destinationType("smtp_custom")
.gte("gte")
.instanceId("instance_id")
.lte("lte")
.build());
}
}
variables:
enMetrics:
fn::invoke:
function: ibm:getEnMetrics
arguments:
destinationType: smtp_custom
gte: gte
instanceId: instance_id
lte: lte
Using getEnMetrics
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getEnMetrics(args: GetEnMetricsArgs, opts?: InvokeOptions): Promise<GetEnMetricsResult>
function getEnMetricsOutput(args: GetEnMetricsOutputArgs, opts?: InvokeOptions): Output<GetEnMetricsResult>
def get_en_metrics(destination_id: Optional[str] = None,
destination_type: Optional[str] = None,
email_to: Optional[str] = None,
gte: Optional[str] = None,
id: Optional[str] = None,
instance_id: Optional[str] = None,
lte: Optional[str] = None,
notification_id: Optional[str] = None,
source_id: Optional[str] = None,
subject: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetEnMetricsResult
def get_en_metrics_output(destination_id: Optional[pulumi.Input[str]] = None,
destination_type: Optional[pulumi.Input[str]] = None,
email_to: Optional[pulumi.Input[str]] = None,
gte: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
lte: Optional[pulumi.Input[str]] = None,
notification_id: Optional[pulumi.Input[str]] = None,
source_id: Optional[pulumi.Input[str]] = None,
subject: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetEnMetricsResult]
func GetEnMetrics(ctx *Context, args *GetEnMetricsArgs, opts ...InvokeOption) (*GetEnMetricsResult, error)
func GetEnMetricsOutput(ctx *Context, args *GetEnMetricsOutputArgs, opts ...InvokeOption) GetEnMetricsResultOutput
> Note: This function is named GetEnMetrics
in the Go SDK.
public static class GetEnMetrics
{
public static Task<GetEnMetricsResult> InvokeAsync(GetEnMetricsArgs args, InvokeOptions? opts = null)
public static Output<GetEnMetricsResult> Invoke(GetEnMetricsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetEnMetricsResult> getEnMetrics(GetEnMetricsArgs args, InvokeOptions options)
public static Output<GetEnMetricsResult> getEnMetrics(GetEnMetricsArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getEnMetrics:getEnMetrics
arguments:
# arguments dictionary
The following arguments are supported:
- Destination
Type string - Destination type. Allowed values are [smtp_custom].
- Constraints: Allowable values are:
smtp_custom
.
- Constraints: Allowable values are:
- Gte string
- GTE (greater than equal), start timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- Instance
Id string - Unique identifier for IBM Cloud Event Notifications instance.
- Constraints: The maximum length is
256
characters. The minimum length is10
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- Lte string
- LTE (less than equal), end timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- Destination
Id string - Unique identifier for Destination.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- Email
To string - Receiver email id.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z0-9\\._%+\\-]+@[A-Za-z0-9\\.\\-]+\\.[A-Za-z]{2,}/
.
- Constraints: The maximum length is
- Id string
- The unique identifier of the en_metrics.
- Notification
Id string - Notification Id.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}/
.
- Constraints: The maximum length is
- Source
Id string - Unique identifier for Source.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression/[a-zA-Z0-9-:_]*/
.
- Constraints: The maximum length is
- Subject string
- Email subject.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[a-zA-Z0-9]/
.
- Constraints: The maximum length is
- Destination
Type string - Destination type. Allowed values are [smtp_custom].
- Constraints: Allowable values are:
smtp_custom
.
- Constraints: Allowable values are:
- Gte string
- GTE (greater than equal), start timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- Instance
Id string - Unique identifier for IBM Cloud Event Notifications instance.
- Constraints: The maximum length is
256
characters. The minimum length is10
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- Lte string
- LTE (less than equal), end timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- Destination
Id string - Unique identifier for Destination.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- Email
To string - Receiver email id.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z0-9\\._%+\\-]+@[A-Za-z0-9\\.\\-]+\\.[A-Za-z]{2,}/
.
- Constraints: The maximum length is
- Id string
- The unique identifier of the en_metrics.
- Notification
Id string - Notification Id.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}/
.
- Constraints: The maximum length is
- Source
Id string - Unique identifier for Source.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression/[a-zA-Z0-9-:_]*/
.
- Constraints: The maximum length is
- Subject string
- Email subject.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[a-zA-Z0-9]/
.
- Constraints: The maximum length is
- destination
Type String - Destination type. Allowed values are [smtp_custom].
- Constraints: Allowable values are:
smtp_custom
.
- Constraints: Allowable values are:
- gte String
- GTE (greater than equal), start timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- instance
Id String - Unique identifier for IBM Cloud Event Notifications instance.
- Constraints: The maximum length is
256
characters. The minimum length is10
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- lte String
- LTE (less than equal), end timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- destination
Id String - Unique identifier for Destination.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- email
To String - Receiver email id.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z0-9\\._%+\\-]+@[A-Za-z0-9\\.\\-]+\\.[A-Za-z]{2,}/
.
- Constraints: The maximum length is
- id String
- The unique identifier of the en_metrics.
- notification
Id String - Notification Id.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}/
.
- Constraints: The maximum length is
- source
Id String - Unique identifier for Source.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression/[a-zA-Z0-9-:_]*/
.
- Constraints: The maximum length is
- subject String
- Email subject.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[a-zA-Z0-9]/
.
- Constraints: The maximum length is
- destination
Type string - Destination type. Allowed values are [smtp_custom].
- Constraints: Allowable values are:
smtp_custom
.
- Constraints: Allowable values are:
- gte string
- GTE (greater than equal), start timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- instance
Id string - Unique identifier for IBM Cloud Event Notifications instance.
- Constraints: The maximum length is
256
characters. The minimum length is10
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- lte string
- LTE (less than equal), end timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- destination
Id string - Unique identifier for Destination.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- email
To string - Receiver email id.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z0-9\\._%+\\-]+@[A-Za-z0-9\\.\\-]+\\.[A-Za-z]{2,}/
.
- Constraints: The maximum length is
- id string
- The unique identifier of the en_metrics.
- notification
Id string - Notification Id.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}/
.
- Constraints: The maximum length is
- source
Id string - Unique identifier for Source.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression/[a-zA-Z0-9-:_]*/
.
- Constraints: The maximum length is
- subject string
- Email subject.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[a-zA-Z0-9]/
.
- Constraints: The maximum length is
- destination_
type str - Destination type. Allowed values are [smtp_custom].
- Constraints: Allowable values are:
smtp_custom
.
- Constraints: Allowable values are:
- gte str
- GTE (greater than equal), start timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- instance_
id str - Unique identifier for IBM Cloud Event Notifications instance.
- Constraints: The maximum length is
256
characters. The minimum length is10
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- lte str
- LTE (less than equal), end timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- destination_
id str - Unique identifier for Destination.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- email_
to str - Receiver email id.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z0-9\\._%+\\-]+@[A-Za-z0-9\\.\\-]+\\.[A-Za-z]{2,}/
.
- Constraints: The maximum length is
- id str
- The unique identifier of the en_metrics.
- notification_
id str - Notification Id.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}/
.
- Constraints: The maximum length is
- source_
id str - Unique identifier for Source.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression/[a-zA-Z0-9-:_]*/
.
- Constraints: The maximum length is
- subject str
- Email subject.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[a-zA-Z0-9]/
.
- Constraints: The maximum length is
- destination
Type String - Destination type. Allowed values are [smtp_custom].
- Constraints: Allowable values are:
smtp_custom
.
- Constraints: Allowable values are:
- gte String
- GTE (greater than equal), start timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- instance
Id String - Unique identifier for IBM Cloud Event Notifications instance.
- Constraints: The maximum length is
256
characters. The minimum length is10
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- lte String
- LTE (less than equal), end timestamp in UTC.
- Constraints: The maximum length is
28
characters. The minimum length is1
character. The value must match regular expression/[0-9]{1,4}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}Z/
.
- Constraints: The maximum length is
- destination
Id String - Unique identifier for Destination.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]/
.
- Constraints: The maximum length is
- email
To String - Receiver email id.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[A-Za-z0-9\\._%+\\-]+@[A-Za-z0-9\\.\\-]+\\.[A-Za-z]{2,}/
.
- Constraints: The maximum length is
- id String
- The unique identifier of the en_metrics.
- notification
Id String - Notification Id.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}/
.
- Constraints: The maximum length is
- source
Id String - Unique identifier for Source.
- Constraints: The maximum length is
100
characters. The minimum length is1
character. The value must match regular expression/[a-zA-Z0-9-:_]*/
.
- Constraints: The maximum length is
- subject String
- Email subject.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/[a-zA-Z0-9]/
.
- Constraints: The maximum length is
getEnMetrics Result
The following output properties are available:
- Destination
Type string - Gte string
- Id string
- The unique identifier of the en_metrics.
- Instance
Id string - Lte string
- Metrics
List<Get
En Metrics Metric> - (List) array of metrics.
- Constraints: The maximum length is
5
items. The minimum length is5
items. Nested schema for metrics:
- Constraints: The maximum length is
- Destination
Id string - Email
To string - Notification
Id string - Source
Id string - Subject string
- Destination
Type string - Gte string
- Id string
- The unique identifier of the en_metrics.
- Instance
Id string - Lte string
- Metrics
[]Get
En Metrics Metric - (List) array of metrics.
- Constraints: The maximum length is
5
items. The minimum length is5
items. Nested schema for metrics:
- Constraints: The maximum length is
- Destination
Id string - Email
To string - Notification
Id string - Source
Id string - Subject string
- destination
Type String - gte String
- id String
- The unique identifier of the en_metrics.
- instance
Id String - lte String
- metrics
List<Get
En Metrics Metric> - (List) array of metrics.
- Constraints: The maximum length is
5
items. The minimum length is5
items. Nested schema for metrics:
- Constraints: The maximum length is
- destination
Id String - email
To String - notification
Id String - source
Id String - subject String
- destination
Type string - gte string
- id string
- The unique identifier of the en_metrics.
- instance
Id string - lte string
- metrics
Get
En Metrics Metric[] - (List) array of metrics.
- Constraints: The maximum length is
5
items. The minimum length is5
items. Nested schema for metrics:
- Constraints: The maximum length is
- destination
Id string - email
To string - notification
Id string - source
Id string - subject string
- destination_
type str - gte str
- id str
- The unique identifier of the en_metrics.
- instance_
id str - lte str
- metrics
Sequence[Get
En Metrics Metric] - (List) array of metrics.
- Constraints: The maximum length is
5
items. The minimum length is5
items. Nested schema for metrics:
- Constraints: The maximum length is
- destination_
id str - email_
to str - notification_
id str - source_
id str - subject str
- destination
Type String - gte String
- id String
- The unique identifier of the en_metrics.
- instance
Id String - lte String
- metrics List<Property Map>
- (List) array of metrics.
- Constraints: The maximum length is
5
items. The minimum length is5
items. Nested schema for metrics:
- Constraints: The maximum length is
- destination
Id String - email
To String - notification
Id String - source
Id String - subject String
Supporting Types
GetEnMetricsMetric
- Doc
Count double - (Integer) Total count.
- Histograms
List<Get
En Metrics Metric Histogram> - (List) Payload describing histogram. Nested schema for histogram:
- Key string
- (String) key.
- Constraints: Allowable values are:
bounced
,deferred
,opened
,success
,submitted
. The maximum length is255
characters. The minimum length is1
character.
- Constraints: Allowable values are:
- Doc
Count float64 - (Integer) Total count.
- Histograms
[]Get
En Metrics Metric Histogram - (List) Payload describing histogram. Nested schema for histogram:
- Key string
- (String) key.
- Constraints: Allowable values are:
bounced
,deferred
,opened
,success
,submitted
. The maximum length is255
characters. The minimum length is1
character.
- Constraints: Allowable values are:
- doc
Count Double - (Integer) Total count.
- histograms
List<Get
En Metrics Metric Histogram> - (List) Payload describing histogram. Nested schema for histogram:
- key String
- (String) key.
- Constraints: Allowable values are:
bounced
,deferred
,opened
,success
,submitted
. The maximum length is255
characters. The minimum length is1
character.
- Constraints: Allowable values are:
- doc
Count number - (Integer) Total count.
- histograms
Get
En Metrics Metric Histogram[] - (List) Payload describing histogram. Nested schema for histogram:
- key string
- (String) key.
- Constraints: Allowable values are:
bounced
,deferred
,opened
,success
,submitted
. The maximum length is255
characters. The minimum length is1
character.
- Constraints: Allowable values are:
- doc_
count float - (Integer) Total count.
- histograms
Sequence[Get
En Metrics Metric Histogram] - (List) Payload describing histogram. Nested schema for histogram:
- key str
- (String) key.
- Constraints: Allowable values are:
bounced
,deferred
,opened
,success
,submitted
. The maximum length is255
characters. The minimum length is1
character.
- Constraints: Allowable values are:
- doc
Count Number - (Integer) Total count.
- histograms List<Property Map>
- (List) Payload describing histogram. Nested schema for histogram:
- key String
- (String) key.
- Constraints: Allowable values are:
bounced
,deferred
,opened
,success
,submitted
. The maximum length is255
characters. The minimum length is1
character.
- Constraints: Allowable values are:
GetEnMetricsMetricHistogram
- Buckets
List<Get
En Metrics Metric Histogram Bucket> - (List) List of buckets.
- Constraints: The maximum length is
48
items. The minimum length is0
items. Nested schema for buckets:
- Constraints: The maximum length is
- Buckets
[]Get
En Metrics Metric Histogram Bucket - (List) List of buckets.
- Constraints: The maximum length is
48
items. The minimum length is0
items. Nested schema for buckets:
- Constraints: The maximum length is
- buckets
List<Get
En Metrics Metric Histogram Bucket> - (List) List of buckets.
- Constraints: The maximum length is
48
items. The minimum length is0
items. Nested schema for buckets:
- Constraints: The maximum length is
- buckets
Get
En Metrics Metric Histogram Bucket[] - (List) List of buckets.
- Constraints: The maximum length is
48
items. The minimum length is0
items. Nested schema for buckets:
- Constraints: The maximum length is
- buckets
Sequence[Get
En Metrics Metric Histogram Bucket] - (List) List of buckets.
- Constraints: The maximum length is
48
items. The minimum length is0
items. Nested schema for buckets:
- Constraints: The maximum length is
- buckets List<Property Map>
- (List) List of buckets.
- Constraints: The maximum length is
48
items. The minimum length is0
items. Nested schema for buckets:
- Constraints: The maximum length is
GetEnMetricsMetricHistogramBucket
- Doc
Count double - (Integer) Total count.
- Key
As stringString - (String) Timestamp.
- Doc
Count float64 - (Integer) Total count.
- Key
As stringString - (String) Timestamp.
- doc
Count Double - (Integer) Total count.
- key
As StringString - (String) Timestamp.
- doc
Count number - (Integer) Total count.
- key
As stringString - (String) Timestamp.
- doc_
count float - (Integer) Total count.
- key_
as_ strstring - (String) Timestamp.
- doc
Count Number - (Integer) Total count.
- key
As StringString - (String) Timestamp.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.