oci.Jms.UtilsAnalyzeApplicationsConfiguration
This resource provides the Analyze Applications Configuration resource in Oracle Cloud Infrastructure Jms Utils service.
Updates the configuration for analyze application.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAnalyzeApplicationsConfiguration = new oci.jms.UtilsAnalyzeApplicationsConfiguration("test_analyze_applications_configuration", {
bucket: analyzeApplicationsConfigurationBucket,
compartmentId: compartmentId,
namespace: analyzeApplicationsConfigurationNamespace,
});
import pulumi
import pulumi_oci as oci
test_analyze_applications_configuration = oci.jms.UtilsAnalyzeApplicationsConfiguration("test_analyze_applications_configuration",
bucket=analyze_applications_configuration_bucket,
compartment_id=compartment_id,
namespace=analyze_applications_configuration_namespace)
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.NewUtilsAnalyzeApplicationsConfiguration(ctx, "test_analyze_applications_configuration", &jms.UtilsAnalyzeApplicationsConfigurationArgs{
Bucket: pulumi.Any(analyzeApplicationsConfigurationBucket),
CompartmentId: pulumi.Any(compartmentId),
Namespace: pulumi.Any(analyzeApplicationsConfigurationNamespace),
})
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 testAnalyzeApplicationsConfiguration = new Oci.Jms.UtilsAnalyzeApplicationsConfiguration("test_analyze_applications_configuration", new()
{
Bucket = analyzeApplicationsConfigurationBucket,
CompartmentId = compartmentId,
Namespace = analyzeApplicationsConfigurationNamespace,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Jms.UtilsAnalyzeApplicationsConfiguration;
import com.pulumi.oci.Jms.UtilsAnalyzeApplicationsConfigurationArgs;
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 testAnalyzeApplicationsConfiguration = new UtilsAnalyzeApplicationsConfiguration("testAnalyzeApplicationsConfiguration", UtilsAnalyzeApplicationsConfigurationArgs.builder()
.bucket(analyzeApplicationsConfigurationBucket)
.compartmentId(compartmentId)
.namespace(analyzeApplicationsConfigurationNamespace)
.build());
}
}
resources:
testAnalyzeApplicationsConfiguration:
type: oci:Jms:UtilsAnalyzeApplicationsConfiguration
name: test_analyze_applications_configuration
properties:
bucket: ${analyzeApplicationsConfigurationBucket}
compartmentId: ${compartmentId}
namespace: ${analyzeApplicationsConfigurationNamespace}
Create UtilsAnalyzeApplicationsConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UtilsAnalyzeApplicationsConfiguration(name: string, args: UtilsAnalyzeApplicationsConfigurationArgs, opts?: CustomResourceOptions);@overload
def UtilsAnalyzeApplicationsConfiguration(resource_name: str,
args: UtilsAnalyzeApplicationsConfigurationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UtilsAnalyzeApplicationsConfiguration(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
bucket: Optional[str] = None,
namespace: Optional[str] = None)func NewUtilsAnalyzeApplicationsConfiguration(ctx *Context, name string, args UtilsAnalyzeApplicationsConfigurationArgs, opts ...ResourceOption) (*UtilsAnalyzeApplicationsConfiguration, error)public UtilsAnalyzeApplicationsConfiguration(string name, UtilsAnalyzeApplicationsConfigurationArgs args, CustomResourceOptions? opts = null)
public UtilsAnalyzeApplicationsConfiguration(String name, UtilsAnalyzeApplicationsConfigurationArgs args)
public UtilsAnalyzeApplicationsConfiguration(String name, UtilsAnalyzeApplicationsConfigurationArgs args, CustomResourceOptions options)
type: oci:Jms:UtilsAnalyzeApplicationsConfiguration
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 UtilsAnalyzeApplicationsConfigurationArgs
- 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 UtilsAnalyzeApplicationsConfigurationArgs
- 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 UtilsAnalyzeApplicationsConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UtilsAnalyzeApplicationsConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UtilsAnalyzeApplicationsConfigurationArgs
- 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 utilsAnalyzeApplicationsConfigurationResource = new Oci.Jms.UtilsAnalyzeApplicationsConfiguration("utilsAnalyzeApplicationsConfigurationResource", new()
{
CompartmentId = "string",
Bucket = "string",
Namespace = "string",
});
example, err := jms.NewUtilsAnalyzeApplicationsConfiguration(ctx, "utilsAnalyzeApplicationsConfigurationResource", &jms.UtilsAnalyzeApplicationsConfigurationArgs{
CompartmentId: pulumi.String("string"),
Bucket: pulumi.String("string"),
Namespace: pulumi.String("string"),
})
var utilsAnalyzeApplicationsConfigurationResource = new UtilsAnalyzeApplicationsConfiguration("utilsAnalyzeApplicationsConfigurationResource", UtilsAnalyzeApplicationsConfigurationArgs.builder()
.compartmentId("string")
.bucket("string")
.namespace("string")
.build());
utils_analyze_applications_configuration_resource = oci.jms.UtilsAnalyzeApplicationsConfiguration("utilsAnalyzeApplicationsConfigurationResource",
compartment_id="string",
bucket="string",
namespace="string")
const utilsAnalyzeApplicationsConfigurationResource = new oci.jms.UtilsAnalyzeApplicationsConfiguration("utilsAnalyzeApplicationsConfigurationResource", {
compartmentId: "string",
bucket: "string",
namespace: "string",
});
type: oci:Jms:UtilsAnalyzeApplicationsConfiguration
properties:
bucket: string
compartmentId: string
namespace: string
UtilsAnalyzeApplicationsConfiguration 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 UtilsAnalyzeApplicationsConfiguration resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment in which to list resources.
- Bucket string
- (Updatable) The name of the bucket used for analyzing applications.
- Namespace string
(Updatable) The Object Storage namespace used for analyzing applications.
** 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 string - (Updatable) The OCID of the compartment in which to list resources.
- Bucket string
- (Updatable) The name of the bucket used for analyzing applications.
- Namespace string
(Updatable) The Object Storage namespace used for analyzing applications.
** 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 String - (Updatable) The OCID of the compartment in which to list resources.
- bucket String
- (Updatable) The name of the bucket used for analyzing applications.
- namespace String
(Updatable) The Object Storage namespace used for analyzing applications.
** 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 string - (Updatable) The OCID of the compartment in which to list resources.
- bucket string
- (Updatable) The name of the bucket used for analyzing applications.
- namespace string
(Updatable) The Object Storage namespace used for analyzing applications.
** 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.
- bucket str
- (Updatable) The name of the bucket used for analyzing applications.
- namespace str
(Updatable) The Object Storage namespace used for analyzing applications.
** 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 String - (Updatable) The OCID of the compartment in which to list resources.
- bucket String
- (Updatable) The name of the bucket used for analyzing applications.
- namespace String
(Updatable) The Object Storage namespace used for analyzing applications.
** 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 UtilsAnalyzeApplicationsConfiguration resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing UtilsAnalyzeApplicationsConfiguration Resource
Get an existing UtilsAnalyzeApplicationsConfiguration 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?: UtilsAnalyzeApplicationsConfigurationState, opts?: CustomResourceOptions): UtilsAnalyzeApplicationsConfiguration@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bucket: Optional[str] = None,
compartment_id: Optional[str] = None,
namespace: Optional[str] = None) -> UtilsAnalyzeApplicationsConfigurationfunc GetUtilsAnalyzeApplicationsConfiguration(ctx *Context, name string, id IDInput, state *UtilsAnalyzeApplicationsConfigurationState, opts ...ResourceOption) (*UtilsAnalyzeApplicationsConfiguration, error)public static UtilsAnalyzeApplicationsConfiguration Get(string name, Input<string> id, UtilsAnalyzeApplicationsConfigurationState? state, CustomResourceOptions? opts = null)public static UtilsAnalyzeApplicationsConfiguration get(String name, Output<String> id, UtilsAnalyzeApplicationsConfigurationState state, CustomResourceOptions options)resources: _: type: oci:Jms:UtilsAnalyzeApplicationsConfiguration 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.
- Bucket string
- (Updatable) The name of the bucket used for analyzing applications.
- Compartment
Id string - (Updatable) The OCID of the compartment in which to list resources.
- Namespace string
(Updatable) The Object Storage namespace used for analyzing applications.
** 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
- Bucket string
- (Updatable) The name of the bucket used for analyzing applications.
- Compartment
Id string - (Updatable) The OCID of the compartment in which to list resources.
- Namespace string
(Updatable) The Object Storage namespace used for analyzing applications.
** 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
- bucket String
- (Updatable) The name of the bucket used for analyzing applications.
- compartment
Id String - (Updatable) The OCID of the compartment in which to list resources.
- namespace String
(Updatable) The Object Storage namespace used for analyzing applications.
** 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
- bucket string
- (Updatable) The name of the bucket used for analyzing applications.
- compartment
Id string - (Updatable) The OCID of the compartment in which to list resources.
- namespace string
(Updatable) The Object Storage namespace used for analyzing applications.
** 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
- bucket str
- (Updatable) The name of the bucket used for analyzing applications.
- compartment_
id str - (Updatable) The OCID of the compartment in which to list resources.
- namespace str
(Updatable) The Object Storage namespace used for analyzing applications.
** 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
- bucket String
- (Updatable) The name of the bucket used for analyzing applications.
- compartment
Id String - (Updatable) The OCID of the compartment in which to list resources.
- namespace String
(Updatable) The Object Storage namespace used for analyzing applications.
** 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
Import
AnalyzeApplicationsConfigurations can be imported using the id, e.g.
$ pulumi import oci:Jms/utilsAnalyzeApplicationsConfiguration:UtilsAnalyzeApplicationsConfiguration test_analyze_applications_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
ociTerraform Provider.
