oci.DataIntegration.WorkspaceApplicationPatch
Explore with Pulumi AI
This resource provides the Workspace Application Patch resource in Oracle Cloud Infrastructure Data Integration service.
Creates a patch in an application.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testWorkspaceApplicationPatch = new oci.dataintegration.WorkspaceApplicationPatch("test_workspace_application_patch", {
applicationKey: workspaceApplicationPatchApplicationKey,
identifier: workspaceApplicationPatchIdentifier,
name: workspaceApplicationPatchName,
objectKeys: workspaceApplicationPatchObjectKeys,
patchType: workspaceApplicationPatchPatchType,
workspaceId: testWorkspace.id,
description: workspaceApplicationPatchDescription,
key: workspaceApplicationPatchKey,
modelVersion: workspaceApplicationPatchModelVersion,
objectStatus: workspaceApplicationPatchObjectStatus,
registryMetadata: {
aggregatorKey: workspaceApplicationPatchRegistryMetadataAggregatorKey,
isFavorite: workspaceApplicationPatchRegistryMetadataIsFavorite,
key: workspaceApplicationPatchRegistryMetadataKey,
labels: workspaceApplicationPatchRegistryMetadataLabels,
registryVersion: workspaceApplicationPatchRegistryMetadataRegistryVersion,
},
});
import pulumi
import pulumi_oci as oci
test_workspace_application_patch = oci.data_integration.WorkspaceApplicationPatch("test_workspace_application_patch",
application_key=workspace_application_patch_application_key,
identifier=workspace_application_patch_identifier,
name=workspace_application_patch_name,
object_keys=workspace_application_patch_object_keys,
patch_type=workspace_application_patch_patch_type,
workspace_id=test_workspace["id"],
description=workspace_application_patch_description,
key=workspace_application_patch_key,
model_version=workspace_application_patch_model_version,
object_status=workspace_application_patch_object_status,
registry_metadata=oci.data_integration.WorkspaceApplicationPatchRegistryMetadataArgs(
aggregator_key=workspace_application_patch_registry_metadata_aggregator_key,
is_favorite=workspace_application_patch_registry_metadata_is_favorite,
key=workspace_application_patch_registry_metadata_key,
labels=workspace_application_patch_registry_metadata_labels,
registry_version=workspace_application_patch_registry_metadata_registry_version,
))
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/DataIntegration"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DataIntegration.NewWorkspaceApplicationPatch(ctx, "test_workspace_application_patch", &DataIntegration.WorkspaceApplicationPatchArgs{
ApplicationKey: pulumi.Any(workspaceApplicationPatchApplicationKey),
Identifier: pulumi.Any(workspaceApplicationPatchIdentifier),
Name: pulumi.Any(workspaceApplicationPatchName),
ObjectKeys: pulumi.Any(workspaceApplicationPatchObjectKeys),
PatchType: pulumi.Any(workspaceApplicationPatchPatchType),
WorkspaceId: pulumi.Any(testWorkspace.Id),
Description: pulumi.Any(workspaceApplicationPatchDescription),
Key: pulumi.Any(workspaceApplicationPatchKey),
ModelVersion: pulumi.Any(workspaceApplicationPatchModelVersion),
ObjectStatus: pulumi.Any(workspaceApplicationPatchObjectStatus),
RegistryMetadata: &dataintegration.WorkspaceApplicationPatchRegistryMetadataArgs{
AggregatorKey: pulumi.Any(workspaceApplicationPatchRegistryMetadataAggregatorKey),
IsFavorite: pulumi.Any(workspaceApplicationPatchRegistryMetadataIsFavorite),
Key: pulumi.Any(workspaceApplicationPatchRegistryMetadataKey),
Labels: pulumi.Any(workspaceApplicationPatchRegistryMetadataLabels),
RegistryVersion: pulumi.Any(workspaceApplicationPatchRegistryMetadataRegistryVersion),
},
})
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 testWorkspaceApplicationPatch = new Oci.DataIntegration.WorkspaceApplicationPatch("test_workspace_application_patch", new()
{
ApplicationKey = workspaceApplicationPatchApplicationKey,
Identifier = workspaceApplicationPatchIdentifier,
Name = workspaceApplicationPatchName,
ObjectKeys = workspaceApplicationPatchObjectKeys,
PatchType = workspaceApplicationPatchPatchType,
WorkspaceId = testWorkspace.Id,
Description = workspaceApplicationPatchDescription,
Key = workspaceApplicationPatchKey,
ModelVersion = workspaceApplicationPatchModelVersion,
ObjectStatus = workspaceApplicationPatchObjectStatus,
RegistryMetadata = new Oci.DataIntegration.Inputs.WorkspaceApplicationPatchRegistryMetadataArgs
{
AggregatorKey = workspaceApplicationPatchRegistryMetadataAggregatorKey,
IsFavorite = workspaceApplicationPatchRegistryMetadataIsFavorite,
Key = workspaceApplicationPatchRegistryMetadataKey,
Labels = workspaceApplicationPatchRegistryMetadataLabels,
RegistryVersion = workspaceApplicationPatchRegistryMetadataRegistryVersion,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataIntegration.WorkspaceApplicationPatch;
import com.pulumi.oci.DataIntegration.WorkspaceApplicationPatchArgs;
import com.pulumi.oci.DataIntegration.inputs.WorkspaceApplicationPatchRegistryMetadataArgs;
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 testWorkspaceApplicationPatch = new WorkspaceApplicationPatch("testWorkspaceApplicationPatch", WorkspaceApplicationPatchArgs.builder()
.applicationKey(workspaceApplicationPatchApplicationKey)
.identifier(workspaceApplicationPatchIdentifier)
.name(workspaceApplicationPatchName)
.objectKeys(workspaceApplicationPatchObjectKeys)
.patchType(workspaceApplicationPatchPatchType)
.workspaceId(testWorkspace.id())
.description(workspaceApplicationPatchDescription)
.key(workspaceApplicationPatchKey)
.modelVersion(workspaceApplicationPatchModelVersion)
.objectStatus(workspaceApplicationPatchObjectStatus)
.registryMetadata(WorkspaceApplicationPatchRegistryMetadataArgs.builder()
.aggregatorKey(workspaceApplicationPatchRegistryMetadataAggregatorKey)
.isFavorite(workspaceApplicationPatchRegistryMetadataIsFavorite)
.key(workspaceApplicationPatchRegistryMetadataKey)
.labels(workspaceApplicationPatchRegistryMetadataLabels)
.registryVersion(workspaceApplicationPatchRegistryMetadataRegistryVersion)
.build())
.build());
}
}
resources:
testWorkspaceApplicationPatch:
type: oci:DataIntegration:WorkspaceApplicationPatch
name: test_workspace_application_patch
properties:
applicationKey: ${workspaceApplicationPatchApplicationKey}
identifier: ${workspaceApplicationPatchIdentifier}
name: ${workspaceApplicationPatchName}
objectKeys: ${workspaceApplicationPatchObjectKeys}
patchType: ${workspaceApplicationPatchPatchType}
workspaceId: ${testWorkspace.id}
description: ${workspaceApplicationPatchDescription}
key: ${workspaceApplicationPatchKey}
modelVersion: ${workspaceApplicationPatchModelVersion}
objectStatus: ${workspaceApplicationPatchObjectStatus}
registryMetadata:
aggregatorKey: ${workspaceApplicationPatchRegistryMetadataAggregatorKey}
isFavorite: ${workspaceApplicationPatchRegistryMetadataIsFavorite}
key: ${workspaceApplicationPatchRegistryMetadataKey}
labels: ${workspaceApplicationPatchRegistryMetadataLabels}
registryVersion: ${workspaceApplicationPatchRegistryMetadataRegistryVersion}
Create WorkspaceApplicationPatch Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkspaceApplicationPatch(name: string, args: WorkspaceApplicationPatchArgs, opts?: CustomResourceOptions);
@overload
def WorkspaceApplicationPatch(resource_name: str,
args: WorkspaceApplicationPatchArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkspaceApplicationPatch(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_key: Optional[str] = None,
patch_type: Optional[str] = None,
workspace_id: Optional[str] = None,
description: Optional[str] = None,
identifier: Optional[str] = None,
key: Optional[str] = None,
model_version: Optional[str] = None,
name: Optional[str] = None,
object_keys: Optional[Sequence[str]] = None,
object_status: Optional[int] = None,
registry_metadata: Optional[_dataintegration.WorkspaceApplicationPatchRegistryMetadataArgs] = None)
func NewWorkspaceApplicationPatch(ctx *Context, name string, args WorkspaceApplicationPatchArgs, opts ...ResourceOption) (*WorkspaceApplicationPatch, error)
public WorkspaceApplicationPatch(string name, WorkspaceApplicationPatchArgs args, CustomResourceOptions? opts = null)
public WorkspaceApplicationPatch(String name, WorkspaceApplicationPatchArgs args)
public WorkspaceApplicationPatch(String name, WorkspaceApplicationPatchArgs args, CustomResourceOptions options)
type: oci:DataIntegration:WorkspaceApplicationPatch
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 WorkspaceApplicationPatchArgs
- 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 WorkspaceApplicationPatchArgs
- 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 WorkspaceApplicationPatchArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceApplicationPatchArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceApplicationPatchArgs
- 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 workspaceApplicationPatchResource = new Oci.DataIntegration.WorkspaceApplicationPatch("workspaceApplicationPatchResource", new()
{
ApplicationKey = "string",
PatchType = "string",
WorkspaceId = "string",
Description = "string",
Identifier = "string",
Key = "string",
ModelVersion = "string",
Name = "string",
ObjectKeys = new[]
{
"string",
},
ObjectStatus = 0,
RegistryMetadata = new Oci.DataIntegration.Inputs.WorkspaceApplicationPatchRegistryMetadataArgs
{
AggregatorKey = "string",
IsFavorite = false,
Key = "string",
Labels = new[]
{
"string",
},
RegistryVersion = 0,
},
});
example, err := DataIntegration.NewWorkspaceApplicationPatch(ctx, "workspaceApplicationPatchResource", &DataIntegration.WorkspaceApplicationPatchArgs{
ApplicationKey: pulumi.String("string"),
PatchType: pulumi.String("string"),
WorkspaceId: pulumi.String("string"),
Description: pulumi.String("string"),
Identifier: pulumi.String("string"),
Key: pulumi.String("string"),
ModelVersion: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectKeys: pulumi.StringArray{
pulumi.String("string"),
},
ObjectStatus: pulumi.Int(0),
RegistryMetadata: &dataintegration.WorkspaceApplicationPatchRegistryMetadataArgs{
AggregatorKey: pulumi.String("string"),
IsFavorite: pulumi.Bool(false),
Key: pulumi.String("string"),
Labels: pulumi.StringArray{
pulumi.String("string"),
},
RegistryVersion: pulumi.Int(0),
},
})
var workspaceApplicationPatchResource = new WorkspaceApplicationPatch("workspaceApplicationPatchResource", WorkspaceApplicationPatchArgs.builder()
.applicationKey("string")
.patchType("string")
.workspaceId("string")
.description("string")
.identifier("string")
.key("string")
.modelVersion("string")
.name("string")
.objectKeys("string")
.objectStatus(0)
.registryMetadata(WorkspaceApplicationPatchRegistryMetadataArgs.builder()
.aggregatorKey("string")
.isFavorite(false)
.key("string")
.labels("string")
.registryVersion(0)
.build())
.build());
workspace_application_patch_resource = oci.data_integration.WorkspaceApplicationPatch("workspaceApplicationPatchResource",
application_key="string",
patch_type="string",
workspace_id="string",
description="string",
identifier="string",
key="string",
model_version="string",
name="string",
object_keys=["string"],
object_status=0,
registry_metadata=oci.data_integration.WorkspaceApplicationPatchRegistryMetadataArgs(
aggregator_key="string",
is_favorite=False,
key="string",
labels=["string"],
registry_version=0,
))
const workspaceApplicationPatchResource = new oci.dataintegration.WorkspaceApplicationPatch("workspaceApplicationPatchResource", {
applicationKey: "string",
patchType: "string",
workspaceId: "string",
description: "string",
identifier: "string",
key: "string",
modelVersion: "string",
name: "string",
objectKeys: ["string"],
objectStatus: 0,
registryMetadata: {
aggregatorKey: "string",
isFavorite: false,
key: "string",
labels: ["string"],
registryVersion: 0,
},
});
type: oci:DataIntegration:WorkspaceApplicationPatch
properties:
applicationKey: string
description: string
identifier: string
key: string
modelVersion: string
name: string
objectKeys:
- string
objectStatus: 0
patchType: string
registryMetadata:
aggregatorKey: string
isFavorite: false
key: string
labels:
- string
registryVersion: 0
workspaceId: string
WorkspaceApplicationPatch Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The WorkspaceApplicationPatch resource accepts the following input properties:
- Application
Key string - The application key.
- Patch
Type string - The type of the patch applied or being applied on the application.
- Workspace
Id string The workspace ID.
** 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
- Description string
- Detailed description for the object.
- Identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- The object's key.
- Model
Version string - The object's model version.
- Name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Object
Keys List<string> - The array of object keys to publish into application.
- Object
Status int - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- Registry
Metadata WorkspaceApplication Patch Registry Metadata - Information about the object and its parent.
- Application
Key string - The application key.
- Patch
Type string - The type of the patch applied or being applied on the application.
- Workspace
Id string The workspace ID.
** 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
- Description string
- Detailed description for the object.
- Identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- The object's key.
- Model
Version string - The object's model version.
- Name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Object
Keys []string - The array of object keys to publish into application.
- Object
Status int - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- Registry
Metadata WorkspaceApplication Patch Registry Metadata Args - Information about the object and its parent.
- application
Key String - The application key.
- patch
Type String - The type of the patch applied or being applied on the application.
- workspace
Id String The workspace ID.
** 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
- description String
- Detailed description for the object.
- identifier String
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- The object's key.
- model
Version String - The object's model version.
- name String
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- object
Keys List<String> - The array of object keys to publish into application.
- object
Status Integer - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- registry
Metadata WorkspaceApplication Patch Registry Metadata - Information about the object and its parent.
- application
Key string - The application key.
- patch
Type string - The type of the patch applied or being applied on the application.
- workspace
Id string The workspace ID.
** 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
- description string
- Detailed description for the object.
- identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key string
- The object's key.
- model
Version string - The object's model version.
- name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- object
Keys string[] - The array of object keys to publish into application.
- object
Status number - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- registry
Metadata WorkspaceApplication Patch Registry Metadata - Information about the object and its parent.
- application_
key str - The application key.
- patch_
type str - The type of the patch applied or being applied on the application.
- workspace_
id str The workspace ID.
** 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
- description str
- Detailed description for the object.
- identifier str
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key str
- The object's key.
- model_
version str - The object's model version.
- name str
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- object_
keys Sequence[str] - The array of object keys to publish into application.
- object_
status int - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- registry_
metadata dataintegration.Workspace Application Patch Registry Metadata Args - Information about the object and its parent.
- application
Key String - The application key.
- patch
Type String - The type of the patch applied or being applied on the application.
- workspace
Id String The workspace ID.
** 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
- description String
- Detailed description for the object.
- identifier String
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- The object's key.
- model
Version String - The object's model version.
- name String
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- object
Keys List<String> - The array of object keys to publish into application.
- object
Status Number - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- registry
Metadata Property Map - Information about the object and its parent.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkspaceApplicationPatch resource produces the following output properties:
- Application
Version int - The application version of the patch.
- Dependent
Object List<WorkspaceMetadatas Application Patch Dependent Object Metadata> - List of dependent objects in this patch.
- Error
Messages Dictionary<string, object> - The errors encountered while applying the patch, if any.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key
Map Dictionary<string, object> - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- Metadatas
List<Workspace
Application Patch Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The object type.
- Object
Version int - The object version.
- Parent
Reves List<WorkspaceApplication Patch Parent Ref> - A reference to the object's parent.
- Patch
Object List<WorkspaceMetadatas Application Patch Patch Object Metadata> - List of objects that are published or unpublished in this patch.
- Patch
Status string - Status of the patch applied or being applied on the application
- Time
Patched string - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- Application
Version int - The application version of the patch.
- Dependent
Object []WorkspaceMetadatas Application Patch Dependent Object Metadata - List of dependent objects in this patch.
- Error
Messages map[string]interface{} - The errors encountered while applying the patch, if any.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key
Map map[string]interface{} - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- Metadatas
[]Workspace
Application Patch Metadata - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The object type.
- Object
Version int - The object version.
- Parent
Reves []WorkspaceApplication Patch Parent Ref - A reference to the object's parent.
- Patch
Object []WorkspaceMetadatas Application Patch Patch Object Metadata - List of objects that are published or unpublished in this patch.
- Patch
Status string - Status of the patch applied or being applied on the application
- Time
Patched string - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- application
Version Integer - The application version of the patch.
- dependent
Object List<WorkspaceMetadatas Application Patch Dependent Object Metadata> - List of dependent objects in this patch.
- error
Messages Map<String,Object> - The errors encountered while applying the patch, if any.
- id String
- The provider-assigned unique ID for this managed resource.
- key
Map Map<String,Object> - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
List<Workspace
Application Patch Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type String - The object type.
- object
Version Integer - The object version.
- parent
Reves List<WorkspaceApplication Patch Parent Ref> - A reference to the object's parent.
- patch
Object List<WorkspaceMetadatas Application Patch Patch Object Metadata> - List of objects that are published or unpublished in this patch.
- patch
Status String - Status of the patch applied or being applied on the application
- time
Patched String - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- application
Version number - The application version of the patch.
- dependent
Object WorkspaceMetadatas Application Patch Dependent Object Metadata[] - List of dependent objects in this patch.
- error
Messages {[key: string]: any} - The errors encountered while applying the patch, if any.
- id string
- The provider-assigned unique ID for this managed resource.
- key
Map {[key: string]: any} - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
Workspace
Application Patch Metadata[] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type string - The object type.
- object
Version number - The object version.
- parent
Reves WorkspaceApplication Patch Parent Ref[] - A reference to the object's parent.
- patch
Object WorkspaceMetadatas Application Patch Patch Object Metadata[] - List of objects that are published or unpublished in this patch.
- patch
Status string - Status of the patch applied or being applied on the application
- time
Patched string - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- application_
version int - The application version of the patch.
- dependent_
object_ Sequence[dataintegration.metadatas Workspace Application Patch Dependent Object Metadata] - List of dependent objects in this patch.
- error_
messages Mapping[str, Any] - The errors encountered while applying the patch, if any.
- id str
- The provider-assigned unique ID for this managed resource.
- key_
map Mapping[str, Any] - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
Sequence[dataintegration.
Workspace Application Patch Metadata] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model_
type str - The object type.
- object_
version int - The object version.
- parent_
reves Sequence[dataintegration.Workspace Application Patch Parent Ref] - A reference to the object's parent.
- patch_
object_ Sequence[dataintegration.metadatas Workspace Application Patch Patch Object Metadata] - List of objects that are published or unpublished in this patch.
- patch_
status str - Status of the patch applied or being applied on the application
- time_
patched str - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- application
Version Number - The application version of the patch.
- dependent
Object List<Property Map>Metadatas - List of dependent objects in this patch.
- error
Messages Map<Any> - The errors encountered while applying the patch, if any.
- id String
- The provider-assigned unique ID for this managed resource.
- key
Map Map<Any> - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas List<Property Map>
- A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type String - The object type.
- object
Version Number - The object version.
- parent
Reves List<Property Map> - A reference to the object's parent.
- patch
Object List<Property Map>Metadatas - List of objects that are published or unpublished in this patch.
- patch
Status String - Status of the patch applied or being applied on the application
- time
Patched String - The date and time the patch was applied, in the timestamp format defined by RFC3339.
Look up Existing WorkspaceApplicationPatch Resource
Get an existing WorkspaceApplicationPatch 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?: WorkspaceApplicationPatchState, opts?: CustomResourceOptions): WorkspaceApplicationPatch
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_key: Optional[str] = None,
application_version: Optional[int] = None,
dependent_object_metadatas: Optional[Sequence[_dataintegration.WorkspaceApplicationPatchDependentObjectMetadataArgs]] = None,
description: Optional[str] = None,
error_messages: Optional[Mapping[str, Any]] = None,
identifier: Optional[str] = None,
key: Optional[str] = None,
key_map: Optional[Mapping[str, Any]] = None,
metadatas: Optional[Sequence[_dataintegration.WorkspaceApplicationPatchMetadataArgs]] = None,
model_type: Optional[str] = None,
model_version: Optional[str] = None,
name: Optional[str] = None,
object_keys: Optional[Sequence[str]] = None,
object_status: Optional[int] = None,
object_version: Optional[int] = None,
parent_reves: Optional[Sequence[_dataintegration.WorkspaceApplicationPatchParentRefArgs]] = None,
patch_object_metadatas: Optional[Sequence[_dataintegration.WorkspaceApplicationPatchPatchObjectMetadataArgs]] = None,
patch_status: Optional[str] = None,
patch_type: Optional[str] = None,
registry_metadata: Optional[_dataintegration.WorkspaceApplicationPatchRegistryMetadataArgs] = None,
time_patched: Optional[str] = None,
workspace_id: Optional[str] = None) -> WorkspaceApplicationPatch
func GetWorkspaceApplicationPatch(ctx *Context, name string, id IDInput, state *WorkspaceApplicationPatchState, opts ...ResourceOption) (*WorkspaceApplicationPatch, error)
public static WorkspaceApplicationPatch Get(string name, Input<string> id, WorkspaceApplicationPatchState? state, CustomResourceOptions? opts = null)
public static WorkspaceApplicationPatch get(String name, Output<String> id, WorkspaceApplicationPatchState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Application
Key string - The application key.
- Application
Version int - The application version of the patch.
- Dependent
Object List<WorkspaceMetadatas Application Patch Dependent Object Metadata> - List of dependent objects in this patch.
- Description string
- Detailed description for the object.
- Error
Messages Dictionary<string, object> - The errors encountered while applying the patch, if any.
- Identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- The object's key.
- Key
Map Dictionary<string, object> - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- Metadatas
List<Workspace
Application Patch Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The object type.
- Model
Version string - The object's model version.
- Name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Object
Keys List<string> - The array of object keys to publish into application.
- Object
Status int - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- Object
Version int - The object version.
- Parent
Reves List<WorkspaceApplication Patch Parent Ref> - A reference to the object's parent.
- Patch
Object List<WorkspaceMetadatas Application Patch Patch Object Metadata> - List of objects that are published or unpublished in this patch.
- Patch
Status string - Status of the patch applied or being applied on the application
- Patch
Type string - The type of the patch applied or being applied on the application.
- Registry
Metadata WorkspaceApplication Patch Registry Metadata - Information about the object and its parent.
- Time
Patched string - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- Workspace
Id string The workspace ID.
** 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
- Application
Key string - The application key.
- Application
Version int - The application version of the patch.
- Dependent
Object []WorkspaceMetadatas Application Patch Dependent Object Metadata Args - List of dependent objects in this patch.
- Description string
- Detailed description for the object.
- Error
Messages map[string]interface{} - The errors encountered while applying the patch, if any.
- Identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- The object's key.
- Key
Map map[string]interface{} - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- Metadatas
[]Workspace
Application Patch Metadata Args - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The object type.
- Model
Version string - The object's model version.
- Name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Object
Keys []string - The array of object keys to publish into application.
- Object
Status int - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- Object
Version int - The object version.
- Parent
Reves []WorkspaceApplication Patch Parent Ref Args - A reference to the object's parent.
- Patch
Object []WorkspaceMetadatas Application Patch Patch Object Metadata Args - List of objects that are published or unpublished in this patch.
- Patch
Status string - Status of the patch applied or being applied on the application
- Patch
Type string - The type of the patch applied or being applied on the application.
- Registry
Metadata WorkspaceApplication Patch Registry Metadata Args - Information about the object and its parent.
- Time
Patched string - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- Workspace
Id string The workspace ID.
** 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
- application
Key String - The application key.
- application
Version Integer - The application version of the patch.
- dependent
Object List<WorkspaceMetadatas Application Patch Dependent Object Metadata> - List of dependent objects in this patch.
- description String
- Detailed description for the object.
- error
Messages Map<String,Object> - The errors encountered while applying the patch, if any.
- identifier String
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- The object's key.
- key
Map Map<String,Object> - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
List<Workspace
Application Patch Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type String - The object type.
- model
Version String - The object's model version.
- name String
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- object
Keys List<String> - The array of object keys to publish into application.
- object
Status Integer - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Integer - The object version.
- parent
Reves List<WorkspaceApplication Patch Parent Ref> - A reference to the object's parent.
- patch
Object List<WorkspaceMetadatas Application Patch Patch Object Metadata> - List of objects that are published or unpublished in this patch.
- patch
Status String - Status of the patch applied or being applied on the application
- patch
Type String - The type of the patch applied or being applied on the application.
- registry
Metadata WorkspaceApplication Patch Registry Metadata - Information about the object and its parent.
- time
Patched String - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- workspace
Id String The workspace ID.
** 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
- application
Key string - The application key.
- application
Version number - The application version of the patch.
- dependent
Object WorkspaceMetadatas Application Patch Dependent Object Metadata[] - List of dependent objects in this patch.
- description string
- Detailed description for the object.
- error
Messages {[key: string]: any} - The errors encountered while applying the patch, if any.
- identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key string
- The object's key.
- key
Map {[key: string]: any} - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
Workspace
Application Patch Metadata[] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type string - The object type.
- model
Version string - The object's model version.
- name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- object
Keys string[] - The array of object keys to publish into application.
- object
Status number - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version number - The object version.
- parent
Reves WorkspaceApplication Patch Parent Ref[] - A reference to the object's parent.
- patch
Object WorkspaceMetadatas Application Patch Patch Object Metadata[] - List of objects that are published or unpublished in this patch.
- patch
Status string - Status of the patch applied or being applied on the application
- patch
Type string - The type of the patch applied or being applied on the application.
- registry
Metadata WorkspaceApplication Patch Registry Metadata - Information about the object and its parent.
- time
Patched string - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- workspace
Id string The workspace ID.
** 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
- application_
key str - The application key.
- application_
version int - The application version of the patch.
- dependent_
object_ Sequence[dataintegration.metadatas Workspace Application Patch Dependent Object Metadata Args] - List of dependent objects in this patch.
- description str
- Detailed description for the object.
- error_
messages Mapping[str, Any] - The errors encountered while applying the patch, if any.
- identifier str
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key str
- The object's key.
- key_
map Mapping[str, Any] - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas
Sequence[dataintegration.
Workspace Application Patch Metadata Args] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model_
type str - The object type.
- model_
version str - The object's model version.
- name str
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- object_
keys Sequence[str] - The array of object keys to publish into application.
- object_
status int - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object_
version int - The object version.
- parent_
reves Sequence[dataintegration.Workspace Application Patch Parent Ref Args] - A reference to the object's parent.
- patch_
object_ Sequence[dataintegration.metadatas Workspace Application Patch Patch Object Metadata Args] - List of objects that are published or unpublished in this patch.
- patch_
status str - Status of the patch applied or being applied on the application
- patch_
type str - The type of the patch applied or being applied on the application.
- registry_
metadata dataintegration.Workspace Application Patch Registry Metadata Args - Information about the object and its parent.
- time_
patched str - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- workspace_
id str The workspace ID.
** 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
- application
Key String - The application key.
- application
Version Number - The application version of the patch.
- dependent
Object List<Property Map>Metadatas - List of dependent objects in this patch.
- description String
- Detailed description for the object.
- error
Messages Map<Any> - The errors encountered while applying the patch, if any.
- identifier String
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- The object's key.
- key
Map Map<Any> - A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
- metadatas List<Property Map>
- A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type String - The object type.
- model
Version String - The object's model version.
- name String
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- object
Keys List<String> - The array of object keys to publish into application.
- object
Status Number - The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Number - The object version.
- parent
Reves List<Property Map> - A reference to the object's parent.
- patch
Object List<Property Map>Metadatas - List of objects that are published or unpublished in this patch.
- patch
Status String - Status of the patch applied or being applied on the application
- patch
Type String - The type of the patch applied or being applied on the application.
- registry
Metadata Property Map - Information about the object and its parent.
- time
Patched String - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- workspace
Id String The workspace ID.
** 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
Supporting Types
WorkspaceApplicationPatchDependentObjectMetadata, WorkspaceApplicationPatchDependentObjectMetadataArgs
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- The object's key.
- Name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Name
Path string - The fully qualified path of the published object, which would include its project and folder.
- Object
Version int - The object version.
- Type string
- The type of the object in patch.
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- The object's key.
- Name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Name
Path string - The fully qualified path of the published object, which would include its project and folder.
- Object
Version int - The object version.
- Type string
- The type of the object in patch.
- action String
- The patch action indicating if object was created, updated, or deleted.
- identifier String
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- The object's key.
- name String
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path String - The fully qualified path of the published object, which would include its project and folder.
- object
Version Integer - The object version.
- type String
- The type of the object in patch.
- action string
- The patch action indicating if object was created, updated, or deleted.
- identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key string
- The object's key.
- name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path string - The fully qualified path of the published object, which would include its project and folder.
- object
Version number - The object version.
- type string
- The type of the object in patch.
- action str
- The patch action indicating if object was created, updated, or deleted.
- identifier str
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key str
- The object's key.
- name str
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name_
path str - The fully qualified path of the published object, which would include its project and folder.
- object_
version int - The object version.
- type str
- The type of the object in patch.
- action String
- The patch action indicating if object was created, updated, or deleted.
- identifier String
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- The object's key.
- name String
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path String - The fully qualified path of the published object, which would include its project and folder.
- object
Version Number - The object version.
- type String
- The type of the object in patch.
WorkspaceApplicationPatchMetadata, WorkspaceApplicationPatchMetadataArgs
- Aggregator
Key string - The owning object key for this object.
- Aggregators
List<Workspace
Application Patch Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics List<WorkspaceApplication Patch Metadata Count Statistic> - A count statistics.
- Created
By string - The user that created the object.
- Created
By stringName - The user that created the object.
- Identifier
Path string - The full path to identify this object.
- Info
Fields Dictionary<string, object> - Information property fields.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Labels List<string>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- Registry
Version int - The registry version of the object.
- Time
Created string - The date and time that the object was created.
- Time
Updated string - The date and time that the object was updated.
- Updated
By string - The user that updated the object.
- Updated
By stringName - The user that updated the object.
- Aggregator
Key string - The owning object key for this object.
- Aggregators
[]Workspace
Application Patch Metadata Aggregator - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics []WorkspaceApplication Patch Metadata Count Statistic - A count statistics.
- Created
By string - The user that created the object.
- Created
By stringName - The user that created the object.
- Identifier
Path string - The full path to identify this object.
- Info
Fields map[string]interface{} - Information property fields.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Labels []string
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- Registry
Version int - The registry version of the object.
- Time
Created string - The date and time that the object was created.
- Time
Updated string - The date and time that the object was updated.
- Updated
By string - The user that updated the object.
- Updated
By stringName - The user that updated the object.
- aggregator
Key String - The owning object key for this object.
- aggregators
List<Workspace
Application Patch Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics List<WorkspaceApplication Patch Metadata Count Statistic> - A count statistics.
- created
By String - The user that created the object.
- created
By StringName - The user that created the object.
- identifier
Path String - The full path to identify this object.
- info
Fields Map<String,Object> - Information property fields.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version Integer - The registry version of the object.
- time
Created String - The date and time that the object was created.
- time
Updated String - The date and time that the object was updated.
- updated
By String - The user that updated the object.
- updated
By StringName - The user that updated the object.
- aggregator
Key string - The owning object key for this object.
- aggregators
Workspace
Application Patch Metadata Aggregator[] - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics WorkspaceApplication Patch Metadata Count Statistic[] - A count statistics.
- created
By string - The user that created the object.
- created
By stringName - The user that created the object.
- identifier
Path string - The full path to identify this object.
- info
Fields {[key: string]: any} - Information property fields.
- is
Favorite boolean - Specifies whether this object is a favorite or not.
- labels string[]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version number - The registry version of the object.
- time
Created string - The date and time that the object was created.
- time
Updated string - The date and time that the object was updated.
- updated
By string - The user that updated the object.
- updated
By stringName - The user that updated the object.
- aggregator_
key str - The owning object key for this object.
- aggregators
Sequence[dataintegration.
Workspace Application Patch Metadata Aggregator] - A summary type containing information about the object's aggregator including its type, key, name and description.
- count_
statistics Sequence[dataintegration.Workspace Application Patch Metadata Count Statistic] - A count statistics.
- created_
by str - The user that created the object.
- created_
by_ strname - The user that created the object.
- identifier_
path str - The full path to identify this object.
- info_
fields Mapping[str, Any] - Information property fields.
- is_
favorite bool - Specifies whether this object is a favorite or not.
- labels Sequence[str]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry_
version int - The registry version of the object.
- time_
created str - The date and time that the object was created.
- time_
updated str - The date and time that the object was updated.
- updated_
by str - The user that updated the object.
- updated_
by_ strname - The user that updated the object.
- aggregator
Key String - The owning object key for this object.
- aggregators List<Property Map>
- A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics List<Property Map> - A count statistics.
- created
By String - The user that created the object.
- created
By StringName - The user that created the object.
- identifier
Path String - The full path to identify this object.
- info
Fields Map<Any> - Information property fields.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version Number - The registry version of the object.
- time
Created String - The date and time that the object was created.
- time
Updated String - The date and time that the object was updated.
- updated
By String - The user that updated the object.
- updated
By StringName - The user that updated the object.
WorkspaceApplicationPatchMetadataAggregator, WorkspaceApplicationPatchMetadataAggregatorArgs
- Description string
- Detailed description for the object.
- Identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- The object's key.
- Name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Type string
- The type of the object in patch.
- Description string
- Detailed description for the object.
- Identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- The object's key.
- Name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Type string
- The type of the object in patch.
- description String
- Detailed description for the object.
- identifier String
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- The object's key.
- name String
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- type String
- The type of the object in patch.
- description string
- Detailed description for the object.
- identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key string
- The object's key.
- name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- type string
- The type of the object in patch.
- description str
- Detailed description for the object.
- identifier str
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key str
- The object's key.
- name str
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- type str
- The type of the object in patch.
- description String
- Detailed description for the object.
- identifier String
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- The object's key.
- name String
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- type String
- The type of the object in patch.
WorkspaceApplicationPatchMetadataCountStatistic, WorkspaceApplicationPatchMetadataCountStatisticArgs
- Object
Type List<WorkspaceCount Lists Application Patch Metadata Count Statistic Object Type Count List> - The array of statistics.
- Object
Type []WorkspaceCount Lists Application Patch Metadata Count Statistic Object Type Count List - The array of statistics.
- object
Type List<WorkspaceCount Lists Application Patch Metadata Count Statistic Object Type Count List> - The array of statistics.
- object
Type WorkspaceCount Lists Application Patch Metadata Count Statistic Object Type Count List[] - The array of statistics.
- object
Type List<Property Map>Count Lists - The array of statistics.
WorkspaceApplicationPatchMetadataCountStatisticObjectTypeCountList, WorkspaceApplicationPatchMetadataCountStatisticObjectTypeCountListArgs
- Object
Count string - The value for the count statistic object.
- Object
Type string - The type of object for the count statistic object.
- Object
Count string - The value for the count statistic object.
- Object
Type string - The type of object for the count statistic object.
- object
Count String - The value for the count statistic object.
- object
Type String - The type of object for the count statistic object.
- object
Count string - The value for the count statistic object.
- object
Type string - The type of object for the count statistic object.
- object_
count str - The value for the count statistic object.
- object_
type str - The type of object for the count statistic object.
- object
Count String - The value for the count statistic object.
- object
Type String - The type of object for the count statistic object.
WorkspaceApplicationPatchParentRef, WorkspaceApplicationPatchParentRefArgs
- parent str
- Key of the parent object.
- root_
doc_ strid - Key of the root document object.
WorkspaceApplicationPatchPatchObjectMetadata, WorkspaceApplicationPatchPatchObjectMetadataArgs
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- The object's key.
- Name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Name
Path string - The fully qualified path of the published object, which would include its project and folder.
- Object
Version int - The object version.
- Type string
- The type of the object in patch.
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- Key string
- The object's key.
- Name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- Name
Path string - The fully qualified path of the published object, which would include its project and folder.
- Object
Version int - The object version.
- Type string
- The type of the object in patch.
- action String
- The patch action indicating if object was created, updated, or deleted.
- identifier String
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- The object's key.
- name String
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path String - The fully qualified path of the published object, which would include its project and folder.
- object
Version Integer - The object version.
- type String
- The type of the object in patch.
- action string
- The patch action indicating if object was created, updated, or deleted.
- identifier string
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key string
- The object's key.
- name string
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path string - The fully qualified path of the published object, which would include its project and folder.
- object
Version number - The object version.
- type string
- The type of the object in patch.
- action str
- The patch action indicating if object was created, updated, or deleted.
- identifier str
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key str
- The object's key.
- name str
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name_
path str - The fully qualified path of the published object, which would include its project and folder.
- object_
version int - The object version.
- type str
- The type of the object in patch.
- action String
- The patch action indicating if object was created, updated, or deleted.
- identifier String
- Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
- key String
- The object's key.
- name String
- Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
- name
Path String - The fully qualified path of the published object, which would include its project and folder.
- object
Version Number - The object version.
- type String
- The type of the object in patch.
WorkspaceApplicationPatchRegistryMetadata, WorkspaceApplicationPatchRegistryMetadataArgs
- Aggregator
Key string - The owning object's key for this object.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Key string
- The identifying key for the object.
- Labels List<string>
- Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
- Registry
Version int - The registry version.
- Aggregator
Key string - The owning object's key for this object.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Key string
- The identifying key for the object.
- Labels []string
- Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
- Registry
Version int - The registry version.
- aggregator
Key String - The owning object's key for this object.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- key String
- The identifying key for the object.
- labels List<String>
- Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
- registry
Version Integer - The registry version.
- aggregator
Key string - The owning object's key for this object.
- is
Favorite boolean - Specifies whether this object is a favorite or not.
- key string
- The identifying key for the object.
- labels string[]
- Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
- registry
Version number - The registry version.
- aggregator_
key str - The owning object's key for this object.
- is_
favorite bool - Specifies whether this object is a favorite or not.
- key str
- The identifying key for the object.
- labels Sequence[str]
- Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
- registry_
version int - The registry version.
- aggregator
Key String - The owning object's key for this object.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- key String
- The identifying key for the object.
- labels List<String>
- Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
- registry
Version Number - The registry version.
Import
WorkspaceApplicationPatches can be imported using the id
, e.g.
$ pulumi import oci:DataIntegration/workspaceApplicationPatch:WorkspaceApplicationPatch test_workspace_application_patch "workspaces/{workspaceId}/applications/{applicationKey}/patches/{patchKey}"
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.