Viewing docs for ibm 2.1.0-beta0
published on Wednesday, Apr 29, 2026 by ibm-cloud
published on Wednesday, Apr 29, 2026 by ibm-cloud
Viewing docs for ibm 2.1.0-beta0
published on Wednesday, Apr 29, 2026 by ibm-cloud
published on Wednesday, Apr 29, 2026 by ibm-cloud
Provides a read-only data source to retrieve information about a Get list of extensions response. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.
Example Usage
List all extensions
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const logsExtensionsInstance = ibm.getLogsExtensions({
instanceId: logsInstance.guid,
region: logsInstance.location,
});
import pulumi
import pulumi_ibm as ibm
logs_extensions_instance = ibm.get_logs_extensions(instance_id=logs_instance["guid"],
region=logs_instance["location"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/v2/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.GetLogsExtensions(ctx, &ibm.GetLogsExtensionsArgs{
InstanceId: logsInstance.Guid,
Region: pulumi.StringRef(logsInstance.Location),
}, 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 logsExtensionsInstance = Ibm.GetLogsExtensions.Invoke(new()
{
InstanceId = logsInstance.Guid,
Region = logsInstance.Location,
});
});
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.GetLogsExtensionsArgs;
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 logsExtensionsInstance = IbmFunctions.getLogsExtensions(GetLogsExtensionsArgs.builder()
.instanceId(logsInstance.guid())
.region(logsInstance.location())
.build());
}
}
variables:
logsExtensionsInstance:
fn::invoke:
function: ibm:getLogsExtensions
arguments:
instanceId: ${logsInstance.guid}
region: ${logsInstance.location}
List all deployed extensions
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const deployments = ibm.getLogsExtensions({
instanceId: logsInstance.guid,
region: logsInstance.location,
deployed: true,
});
import pulumi
import pulumi_ibm as ibm
deployments = ibm.get_logs_extensions(instance_id=logs_instance["guid"],
region=logs_instance["location"],
deployed=True)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/v2/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.GetLogsExtensions(ctx, &ibm.GetLogsExtensionsArgs{
InstanceId: logsInstance.Guid,
Region: pulumi.StringRef(logsInstance.Location),
Deployed: pulumi.BoolRef(true),
}, 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 deployments = Ibm.GetLogsExtensions.Invoke(new()
{
InstanceId = logsInstance.Guid,
Region = logsInstance.Location,
Deployed = true,
});
});
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.GetLogsExtensionsArgs;
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 deployments = IbmFunctions.getLogsExtensions(GetLogsExtensionsArgs.builder()
.instanceId(logsInstance.guid())
.region(logsInstance.location())
.deployed(true)
.build());
}
}
variables:
deployments:
fn::invoke:
function: ibm:getLogsExtensions
arguments:
instanceId: ${logsInstance.guid}
region: ${logsInstance.location}
deployed: true
Using getLogsExtensions
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 getLogsExtensions(args: GetLogsExtensionsArgs, opts?: InvokeOptions): Promise<GetLogsExtensionsResult>
function getLogsExtensionsOutput(args: GetLogsExtensionsOutputArgs, opts?: InvokeOptions): Output<GetLogsExtensionsResult>def get_logs_extensions(deployed: Optional[bool] = None,
endpoint_type: Optional[str] = None,
id: Optional[str] = None,
instance_id: Optional[str] = None,
region: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetLogsExtensionsResult
def get_logs_extensions_output(deployed: Optional[pulumi.Input[bool]] = None,
endpoint_type: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
region: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetLogsExtensionsResult]func GetLogsExtensions(ctx *Context, args *GetLogsExtensionsArgs, opts ...InvokeOption) (*GetLogsExtensionsResult, error)
func GetLogsExtensionsOutput(ctx *Context, args *GetLogsExtensionsOutputArgs, opts ...InvokeOption) GetLogsExtensionsResultOutput> Note: This function is named GetLogsExtensions in the Go SDK.
public static class GetLogsExtensions
{
public static Task<GetLogsExtensionsResult> InvokeAsync(GetLogsExtensionsArgs args, InvokeOptions? opts = null)
public static Output<GetLogsExtensionsResult> Invoke(GetLogsExtensionsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetLogsExtensionsResult> getLogsExtensions(GetLogsExtensionsArgs args, InvokeOptions options)
public static Output<GetLogsExtensionsResult> getLogsExtensions(GetLogsExtensionsArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getLogsExtensions:getLogsExtensions
arguments:
# arguments dictionaryThe following arguments are supported:
- Instance
Id string - Cloud Logs Instance GUID.
- Deployed bool
- Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - Id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Region string
- Cloud Logs Instance Region.
- Instance
Id string - Cloud Logs Instance GUID.
- Deployed bool
- Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - Id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Region string
- Cloud Logs Instance Region.
- instance
Id String - Cloud Logs Instance GUID.
- deployed Boolean
- Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - id String
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- region String
- Cloud Logs Instance Region.
- instance
Id string - Cloud Logs Instance GUID.
- deployed boolean
- Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
- endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- region string
- Cloud Logs Instance Region.
- instance_
id str - Cloud Logs Instance GUID.
- deployed bool
- Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
- endpoint_
type str - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - id str
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- region str
- Cloud Logs Instance Region.
- instance
Id String - Cloud Logs Instance GUID.
- deployed Boolean
- Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - id String
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- region String
- Cloud Logs Instance Region.
getLogsExtensions Result
The following output properties are available:
- Extensions
List<Get
Logs Extensions Extension> - (List) List of Extensions.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for extensions:
- Constraints: The maximum length is
- Id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Instance
Id string - Region string
- Deployed bool
- Endpoint
Type string
- Extensions
[]Get
Logs Extensions Extension - (List) List of Extensions.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for extensions:
- Constraints: The maximum length is
- Id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Instance
Id string - Region string
- Deployed bool
- Endpoint
Type string
- extensions
List<Get
Logs Extensions Extension> - (List) List of Extensions.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for extensions:
- Constraints: The maximum length is
- id String
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- instance
Id String - region String
- deployed Boolean
- endpoint
Type String
- extensions
Get
Logs Extensions Extension[] - (List) List of Extensions.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for extensions:
- Constraints: The maximum length is
- id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- instance
Id string - region string
- deployed boolean
- endpoint
Type string
- extensions
Sequence[Get
Logs Extensions Extension] - (List) List of Extensions.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for extensions:
- Constraints: The maximum length is
- id str
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- instance_
id str - region str
- deployed bool
- endpoint_
type str
- extensions List<Property Map>
- (List) List of Extensions.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for extensions:
- Constraints: The maximum length is
- id String
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- instance
Id String - region String
- deployed Boolean
- endpoint
Type String
Supporting Types
GetLogsExtensionsExtension
- Changelogs
List<Get
Logs Extensions Extension Changelog> - (List) The of changelog entries made in each version of the Extension.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for changelog:
- Constraints: The maximum length is
- Deployments
List<Get
Logs Extensions Extension Deployment> - (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
- Deprecations
List<Get
Logs Extensions Extension Deprecation> - (List) Deprecation details of the Extension. Nested schema for deprecation:
- Id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Keywords List<string>
- (List) The list of keywords to enhance search capabilities on the front-end side.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Name string
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Revisions
List<Get
Logs Extensions Extension Revision> - (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for revisions:
- Constraints: The maximum length is
- Changelogs
[]Get
Logs Extensions Extension Changelog - (List) The of changelog entries made in each version of the Extension.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for changelog:
- Constraints: The maximum length is
- Deployments
[]Get
Logs Extensions Extension Deployment - (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
- Deprecations
[]Get
Logs Extensions Extension Deprecation - (List) Deprecation details of the Extension. Nested schema for deprecation:
- Id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Keywords []string
- (List) The list of keywords to enhance search capabilities on the front-end side.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Name string
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Revisions
[]Get
Logs Extensions Extension Revision - (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for revisions:
- Constraints: The maximum length is
- changelogs
List<Get
Logs Extensions Extension Changelog> - (List) The of changelog entries made in each version of the Extension.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for changelog:
- Constraints: The maximum length is
- deployments
List<Get
Logs Extensions Extension Deployment> - (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
- deprecations
List<Get
Logs Extensions Extension Deprecation> - (List) Deprecation details of the Extension. Nested schema for deprecation:
- id String
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- keywords List<String>
- (List) The list of keywords to enhance search capabilities on the front-end side.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- name String
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- revisions
List<Get
Logs Extensions Extension Revision> - (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for revisions:
- Constraints: The maximum length is
- changelogs
Get
Logs Extensions Extension Changelog[] - (List) The of changelog entries made in each version of the Extension.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for changelog:
- Constraints: The maximum length is
- deployments
Get
Logs Extensions Extension Deployment[] - (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
- deprecations
Get
Logs Extensions Extension Deprecation[] - (List) Deprecation details of the Extension. Nested schema for deprecation:
- id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- keywords string[]
- (List) The list of keywords to enhance search capabilities on the front-end side.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- name string
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- revisions
Get
Logs Extensions Extension Revision[] - (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for revisions:
- Constraints: The maximum length is
- changelogs
Sequence[Get
Logs Extensions Extension Changelog] - (List) The of changelog entries made in each version of the Extension.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for changelog:
- Constraints: The maximum length is
- deployments
Sequence[Get
Logs Extensions Extension Deployment] - (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
- deprecations
Sequence[Get
Logs Extensions Extension Deprecation] - (List) Deprecation details of the Extension. Nested schema for deprecation:
- id str
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- keywords Sequence[str]
- (List) The list of keywords to enhance search capabilities on the front-end side.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- name str
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- revisions
Sequence[Get
Logs Extensions Extension Revision] - (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for revisions:
- Constraints: The maximum length is
- changelogs List<Property Map>
- (List) The of changelog entries made in each version of the Extension.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for changelog:
- Constraints: The maximum length is
- deployments List<Property Map>
- (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
- deprecations List<Property Map>
- (List) Deprecation details of the Extension. Nested schema for deprecation:
- id String
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- keywords List<String>
- (List) The list of keywords to enhance search capabilities on the front-end side.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- name String
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- revisions List<Property Map>
- (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for revisions:
- Constraints: The maximum length is
GetLogsExtensionsExtensionChangelog
- Description
Md string - (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- Version string
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Description
Md string - (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- Version string
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- description
Md String - (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- version String
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- description
Md string - (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- version string
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- description_
md str - (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- version str
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- description
Md String - (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- version String
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
GetLogsExtensionsExtensionDeployment
- Applications List<string>
- (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Item
Ids List<string> - (List) The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- Subsystems List<string>
- (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Version string
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Applications []string
- (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Item
Ids []string - (List) The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- Subsystems []string
- (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Version string
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications List<String>
- (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- id String
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- item
Ids List<String> - (List) The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- subsystems List<String>
- (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version String
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications string[]
- (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- item
Ids string[] - (List) The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- subsystems string[]
- (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version string
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications Sequence[str]
- (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- id str
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- item_
ids Sequence[str] - (List) The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- subsystems Sequence[str]
- (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version str
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications List<String>
- (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- id String
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- item
Ids List<String> - (List) The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- subsystems List<String>
- (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version String
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
GetLogsExtensionsExtensionDeprecation
- Reason string
- (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- Replacement
Extensions List<string> - (List) The list of Extension IDs that serve as replacements for the deprecated element.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Reason string
- (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- Replacement
Extensions []string - (List) The list of Extension IDs that serve as replacements for the deprecated element.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- reason String
- (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- replacement
Extensions List<String> - (List) The list of Extension IDs that serve as replacements for the deprecated element.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- reason string
- (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- replacement
Extensions string[] - (List) The list of Extension IDs that serve as replacements for the deprecated element.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- reason str
- (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- replacement_
extensions Sequence[str] - (List) The list of Extension IDs that serve as replacements for the deprecated element.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- reason String
- (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}\\r\\n\\t]+$/.
- Constraints: The maximum length is
- replacement
Extensions List<String> - (List) The list of Extension IDs that serve as replacements for the deprecated element.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
GetLogsExtensionsExtensionRevision
- Description string
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Excerpt string
- (String) The brief summary or excerpt of the Extension's description for quick reference.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Items
List<Get
Logs Extensions Extension Revision Item> - (List) The Extension items included in this revision.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for items:
- Constraints: The maximum length is
- Labels List<string>
- (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Version string
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Description string
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Excerpt string
- (String) The brief summary or excerpt of the Extension's description for quick reference.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Items
[]Get
Logs Extensions Extension Revision Item - (List) The Extension items included in this revision.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for items:
- Constraints: The maximum length is
- Labels []string
- (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Version string
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- description String
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- excerpt String
- (String) The brief summary or excerpt of the Extension's description for quick reference.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- items
List<Get
Logs Extensions Extension Revision Item> - (List) The Extension items included in this revision.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for items:
- Constraints: The maximum length is
- labels List<String>
- (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version String
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- description string
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- excerpt string
- (String) The brief summary or excerpt of the Extension's description for quick reference.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- items
Get
Logs Extensions Extension Revision Item[] - (List) The Extension items included in this revision.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for items:
- Constraints: The maximum length is
- labels string[]
- (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version string
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- description str
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- excerpt str
- (String) The brief summary or excerpt of the Extension's description for quick reference.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- items
Sequence[Get
Logs Extensions Extension Revision Item] - (List) The Extension items included in this revision.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for items:
- Constraints: The maximum length is
- labels Sequence[str]
- (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version str
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- description String
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- excerpt String
- (String) The brief summary or excerpt of the Extension's description for quick reference.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- items List<Property Map>
- (List) The Extension items included in this revision.
- Constraints: The maximum length is
4096items. The minimum length is0items. Nested schema for items:
- Constraints: The maximum length is
- labels List<String>
- (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version String
- (String) The version identifier for this revision of the Extension.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
GetLogsExtensionsExtensionRevisionItem
- Description string
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Is
Mandatory bool - (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
- Name string
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Target
Domain string - (String) The domain of the Extension item.
- Constraints: Allowable values are:
alert_definition,alert,enrichment,rule_group,view,dashboard,events_to_metrics.
- Constraints: Allowable values are:
- Description string
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Is
Mandatory bool - (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
- Name string
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Target
Domain string - (String) The domain of the Extension item.
- Constraints: Allowable values are:
alert_definition,alert,enrichment,rule_group,view,dashboard,events_to_metrics.
- Constraints: Allowable values are:
- description String
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- id String
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- is
Mandatory Boolean - (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
- name String
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- target
Domain String - (String) The domain of the Extension item.
- Constraints: Allowable values are:
alert_definition,alert,enrichment,rule_group,view,dashboard,events_to_metrics.
- Constraints: Allowable values are:
- description string
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- id string
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- is
Mandatory boolean - (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
- name string
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- target
Domain string - (String) The domain of the Extension item.
- Constraints: Allowable values are:
alert_definition,alert,enrichment,rule_group,view,dashboard,events_to_metrics.
- Constraints: Allowable values are:
- description str
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- id str
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- is_
mandatory bool - (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
- name str
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- target_
domain str - (String) The domain of the Extension item.
- Constraints: Allowable values are:
alert_definition,alert,enrichment,rule_group,view,dashboard,events_to_metrics.
- Constraints: Allowable values are:
- description String
- (String) The detailed description of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- id String
- (String) The ID of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- is
Mandatory Boolean - (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
- name String
- (String) The name of the Extension item.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- target
Domain String - (String) The domain of the Extension item.
- Constraints: Allowable values are:
alert_definition,alert,enrichment,rule_group,view,dashboard,events_to_metrics.
- Constraints: Allowable values are:
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibmTerraform Provider.
Viewing docs for ibm 2.1.0-beta0
published on Wednesday, Apr 29, 2026 by ibm-cloud
published on Wednesday, Apr 29, 2026 by ibm-cloud
