1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Jms
  5. UtilsSubscriptionAcknowledgmentConfiguration
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

oci.Jms.UtilsSubscriptionAcknowledgmentConfiguration

Start a Neo task
Explain and create an oci.Jms.UtilsSubscriptionAcknowledgmentConfiguration resource
oci logo
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

    This resource provides the Subscription Acknowledgment Configuration resource in Oracle Cloud Infrastructure Jms Utils service.

    Updates the configuration for subscription acknowledgment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSubscriptionAcknowledgmentConfiguration = new oci.jms.UtilsSubscriptionAcknowledgmentConfiguration("test_subscription_acknowledgment_configuration", {
        compartmentId: compartmentId,
        isAcknowledged: subscriptionAcknowledgmentConfigurationIsAcknowledged,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_subscription_acknowledgment_configuration = oci.jms.UtilsSubscriptionAcknowledgmentConfiguration("test_subscription_acknowledgment_configuration",
        compartment_id=compartment_id,
        is_acknowledged=subscription_acknowledgment_configuration_is_acknowledged)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/jms"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := jms.NewUtilsSubscriptionAcknowledgmentConfiguration(ctx, "test_subscription_acknowledgment_configuration", &jms.UtilsSubscriptionAcknowledgmentConfigurationArgs{
    			CompartmentId:  pulumi.Any(compartmentId),
    			IsAcknowledged: pulumi.Any(subscriptionAcknowledgmentConfigurationIsAcknowledged),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testSubscriptionAcknowledgmentConfiguration = new Oci.Jms.UtilsSubscriptionAcknowledgmentConfiguration("test_subscription_acknowledgment_configuration", new()
        {
            CompartmentId = compartmentId,
            IsAcknowledged = subscriptionAcknowledgmentConfigurationIsAcknowledged,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Jms.UtilsSubscriptionAcknowledgmentConfiguration;
    import com.pulumi.oci.Jms.UtilsSubscriptionAcknowledgmentConfigurationArgs;
    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) {
            var testSubscriptionAcknowledgmentConfiguration = new UtilsSubscriptionAcknowledgmentConfiguration("testSubscriptionAcknowledgmentConfiguration", UtilsSubscriptionAcknowledgmentConfigurationArgs.builder()
                .compartmentId(compartmentId)
                .isAcknowledged(subscriptionAcknowledgmentConfigurationIsAcknowledged)
                .build());
    
        }
    }
    
    resources:
      testSubscriptionAcknowledgmentConfiguration:
        type: oci:Jms:UtilsSubscriptionAcknowledgmentConfiguration
        name: test_subscription_acknowledgment_configuration
        properties:
          compartmentId: ${compartmentId}
          isAcknowledged: ${subscriptionAcknowledgmentConfigurationIsAcknowledged}
    

    Create UtilsSubscriptionAcknowledgmentConfiguration Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new UtilsSubscriptionAcknowledgmentConfiguration(name: string, args: UtilsSubscriptionAcknowledgmentConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def UtilsSubscriptionAcknowledgmentConfiguration(resource_name: str,
                                                     args: UtilsSubscriptionAcknowledgmentConfigurationArgs,
                                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def UtilsSubscriptionAcknowledgmentConfiguration(resource_name: str,
                                                     opts: Optional[ResourceOptions] = None,
                                                     compartment_id: Optional[str] = None,
                                                     is_acknowledged: Optional[bool] = None)
    func NewUtilsSubscriptionAcknowledgmentConfiguration(ctx *Context, name string, args UtilsSubscriptionAcknowledgmentConfigurationArgs, opts ...ResourceOption) (*UtilsSubscriptionAcknowledgmentConfiguration, error)
    public UtilsSubscriptionAcknowledgmentConfiguration(string name, UtilsSubscriptionAcknowledgmentConfigurationArgs args, CustomResourceOptions? opts = null)
    public UtilsSubscriptionAcknowledgmentConfiguration(String name, UtilsSubscriptionAcknowledgmentConfigurationArgs args)
    public UtilsSubscriptionAcknowledgmentConfiguration(String name, UtilsSubscriptionAcknowledgmentConfigurationArgs args, CustomResourceOptions options)
    
    type: oci:Jms:UtilsSubscriptionAcknowledgmentConfiguration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args UtilsSubscriptionAcknowledgmentConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args UtilsSubscriptionAcknowledgmentConfigurationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args UtilsSubscriptionAcknowledgmentConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UtilsSubscriptionAcknowledgmentConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UtilsSubscriptionAcknowledgmentConfigurationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var utilsSubscriptionAcknowledgmentConfigurationResource = new Oci.Jms.UtilsSubscriptionAcknowledgmentConfiguration("utilsSubscriptionAcknowledgmentConfigurationResource", new()
    {
        CompartmentId = "string",
        IsAcknowledged = false,
    });
    
    example, err := jms.NewUtilsSubscriptionAcknowledgmentConfiguration(ctx, "utilsSubscriptionAcknowledgmentConfigurationResource", &jms.UtilsSubscriptionAcknowledgmentConfigurationArgs{
    	CompartmentId:  pulumi.String("string"),
    	IsAcknowledged: pulumi.Bool(false),
    })
    
    var utilsSubscriptionAcknowledgmentConfigurationResource = new UtilsSubscriptionAcknowledgmentConfiguration("utilsSubscriptionAcknowledgmentConfigurationResource", UtilsSubscriptionAcknowledgmentConfigurationArgs.builder()
        .compartmentId("string")
        .isAcknowledged(false)
        .build());
    
    utils_subscription_acknowledgment_configuration_resource = oci.jms.UtilsSubscriptionAcknowledgmentConfiguration("utilsSubscriptionAcknowledgmentConfigurationResource",
        compartment_id="string",
        is_acknowledged=False)
    
    const utilsSubscriptionAcknowledgmentConfigurationResource = new oci.jms.UtilsSubscriptionAcknowledgmentConfiguration("utilsSubscriptionAcknowledgmentConfigurationResource", {
        compartmentId: "string",
        isAcknowledged: false,
    });
    
    type: oci:Jms:UtilsSubscriptionAcknowledgmentConfiguration
    properties:
        compartmentId: string
        isAcknowledged: false
    

    UtilsSubscriptionAcknowledgmentConfiguration Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The UtilsSubscriptionAcknowledgmentConfiguration resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment in which to list resources.
    IsAcknowledged bool

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    CompartmentId string
    (Updatable) The OCID of the compartment in which to list resources.
    IsAcknowledged bool

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) The OCID of the compartment in which to list resources.
    isAcknowledged Boolean

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId string
    (Updatable) The OCID of the compartment in which to list resources.
    isAcknowledged boolean

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartment_id str
    (Updatable) The OCID of the compartment in which to list resources.
    is_acknowledged bool

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) The OCID of the compartment in which to list resources.
    isAcknowledged Boolean

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

    All input properties are implicitly available as output properties. Additionally, the UtilsSubscriptionAcknowledgmentConfiguration resource produces the following output properties:

    AcknowledgedBy string
    The OCID of the principal that ackwnoledged the subscription.
    Id string
    The provider-assigned unique ID for this managed resource.
    TimeAcknowledged string
    The date and time the subscription was acknowledged (formatted according to RFC3339).
    AcknowledgedBy string
    The OCID of the principal that ackwnoledged the subscription.
    Id string
    The provider-assigned unique ID for this managed resource.
    TimeAcknowledged string
    The date and time the subscription was acknowledged (formatted according to RFC3339).
    acknowledgedBy String
    The OCID of the principal that ackwnoledged the subscription.
    id String
    The provider-assigned unique ID for this managed resource.
    timeAcknowledged String
    The date and time the subscription was acknowledged (formatted according to RFC3339).
    acknowledgedBy string
    The OCID of the principal that ackwnoledged the subscription.
    id string
    The provider-assigned unique ID for this managed resource.
    timeAcknowledged string
    The date and time the subscription was acknowledged (formatted according to RFC3339).
    acknowledged_by str
    The OCID of the principal that ackwnoledged the subscription.
    id str
    The provider-assigned unique ID for this managed resource.
    time_acknowledged str
    The date and time the subscription was acknowledged (formatted according to RFC3339).
    acknowledgedBy String
    The OCID of the principal that ackwnoledged the subscription.
    id String
    The provider-assigned unique ID for this managed resource.
    timeAcknowledged String
    The date and time the subscription was acknowledged (formatted according to RFC3339).

    Look up Existing UtilsSubscriptionAcknowledgmentConfiguration Resource

    Get an existing UtilsSubscriptionAcknowledgmentConfiguration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: UtilsSubscriptionAcknowledgmentConfigurationState, opts?: CustomResourceOptions): UtilsSubscriptionAcknowledgmentConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            acknowledged_by: Optional[str] = None,
            compartment_id: Optional[str] = None,
            is_acknowledged: Optional[bool] = None,
            time_acknowledged: Optional[str] = None) -> UtilsSubscriptionAcknowledgmentConfiguration
    func GetUtilsSubscriptionAcknowledgmentConfiguration(ctx *Context, name string, id IDInput, state *UtilsSubscriptionAcknowledgmentConfigurationState, opts ...ResourceOption) (*UtilsSubscriptionAcknowledgmentConfiguration, error)
    public static UtilsSubscriptionAcknowledgmentConfiguration Get(string name, Input<string> id, UtilsSubscriptionAcknowledgmentConfigurationState? state, CustomResourceOptions? opts = null)
    public static UtilsSubscriptionAcknowledgmentConfiguration get(String name, Output<String> id, UtilsSubscriptionAcknowledgmentConfigurationState state, CustomResourceOptions options)
    resources:  _:    type: oci:Jms:UtilsSubscriptionAcknowledgmentConfiguration    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AcknowledgedBy string
    The OCID of the principal that ackwnoledged the subscription.
    CompartmentId string
    (Updatable) The OCID of the compartment in which to list resources.
    IsAcknowledged bool

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    TimeAcknowledged string
    The date and time the subscription was acknowledged (formatted according to RFC3339).
    AcknowledgedBy string
    The OCID of the principal that ackwnoledged the subscription.
    CompartmentId string
    (Updatable) The OCID of the compartment in which to list resources.
    IsAcknowledged bool

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    TimeAcknowledged string
    The date and time the subscription was acknowledged (formatted according to RFC3339).
    acknowledgedBy String
    The OCID of the principal that ackwnoledged the subscription.
    compartmentId String
    (Updatable) The OCID of the compartment in which to list resources.
    isAcknowledged Boolean

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    timeAcknowledged String
    The date and time the subscription was acknowledged (formatted according to RFC3339).
    acknowledgedBy string
    The OCID of the principal that ackwnoledged the subscription.
    compartmentId string
    (Updatable) The OCID of the compartment in which to list resources.
    isAcknowledged boolean

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    timeAcknowledged string
    The date and time the subscription was acknowledged (formatted according to RFC3339).
    acknowledged_by str
    The OCID of the principal that ackwnoledged the subscription.
    compartment_id str
    (Updatable) The OCID of the compartment in which to list resources.
    is_acknowledged bool

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    time_acknowledged str
    The date and time the subscription was acknowledged (formatted according to RFC3339).
    acknowledgedBy String
    The OCID of the principal that ackwnoledged the subscription.
    compartmentId String
    (Updatable) The OCID of the compartment in which to list resources.
    isAcknowledged Boolean

    (Updatable) Flag to determine whether the subscription was acknowledged or not.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    timeAcknowledged String
    The date and time the subscription was acknowledged (formatted according to RFC3339).

    Import

    SubscriptionAcknowledgmentConfigurations can be imported using the id, e.g.

    $ pulumi import oci:Jms/utilsSubscriptionAcknowledgmentConfiguration:UtilsSubscriptionAcknowledgmentConfiguration test_subscription_acknowledgment_configuration "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate