Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
oci.DataIntegration.getWorkspaceApplicationPatches
Explore with Pulumi AI
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
This data source provides the list of Workspace Application Patches in Oracle Cloud Infrastructure Data Integration service.
Retrieves a list of patches in an application and provides options to filter the list. For listing changes based on a period and logical objects changed, see ListPatchChanges API.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testWorkspaceApplicationPatches = oci.DataIntegration.getWorkspaceApplicationPatches({
applicationKey: workspaceApplicationPatchApplicationKey,
workspaceId: testWorkspace.id,
fields: workspaceApplicationPatchFields,
identifiers: workspaceApplicationPatchIdentifier,
name: workspaceApplicationPatchName,
});
import pulumi
import pulumi_oci as oci
test_workspace_application_patches = oci.DataIntegration.get_workspace_application_patches(application_key=workspace_application_patch_application_key,
workspace_id=test_workspace["id"],
fields=workspace_application_patch_fields,
identifiers=workspace_application_patch_identifier,
name=workspace_application_patch_name)
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.GetWorkspaceApplicationPatches(ctx, &dataintegration.GetWorkspaceApplicationPatchesArgs{
ApplicationKey: workspaceApplicationPatchApplicationKey,
WorkspaceId: testWorkspace.Id,
Fields: workspaceApplicationPatchFields,
Identifiers: workspaceApplicationPatchIdentifier,
Name: pulumi.StringRef(workspaceApplicationPatchName),
}, nil)
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 testWorkspaceApplicationPatches = Oci.DataIntegration.GetWorkspaceApplicationPatches.Invoke(new()
{
ApplicationKey = workspaceApplicationPatchApplicationKey,
WorkspaceId = testWorkspace.Id,
Fields = workspaceApplicationPatchFields,
Identifiers = workspaceApplicationPatchIdentifier,
Name = workspaceApplicationPatchName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataIntegration.DataIntegrationFunctions;
import com.pulumi.oci.DataIntegration.inputs.GetWorkspaceApplicationPatchesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testWorkspaceApplicationPatches = DataIntegrationFunctions.getWorkspaceApplicationPatches(GetWorkspaceApplicationPatchesArgs.builder()
.applicationKey(workspaceApplicationPatchApplicationKey)
.workspaceId(testWorkspace.id())
.fields(workspaceApplicationPatchFields)
.identifiers(workspaceApplicationPatchIdentifier)
.name(workspaceApplicationPatchName)
.build());
}
}
variables:
testWorkspaceApplicationPatches:
fn::invoke:
Function: oci:DataIntegration:getWorkspaceApplicationPatches
Arguments:
applicationKey: ${workspaceApplicationPatchApplicationKey}
workspaceId: ${testWorkspace.id}
fields: ${workspaceApplicationPatchFields}
identifiers: ${workspaceApplicationPatchIdentifier}
name: ${workspaceApplicationPatchName}
Using getWorkspaceApplicationPatches
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getWorkspaceApplicationPatches(args: GetWorkspaceApplicationPatchesArgs, opts?: InvokeOptions): Promise<GetWorkspaceApplicationPatchesResult>
function getWorkspaceApplicationPatchesOutput(args: GetWorkspaceApplicationPatchesOutputArgs, opts?: InvokeOptions): Output<GetWorkspaceApplicationPatchesResult>
def get_workspace_application_patches(application_key: Optional[str] = None,
fields: Optional[Sequence[str]] = None,
filters: Optional[Sequence[_dataintegration.GetWorkspaceApplicationPatchesFilter]] = None,
identifiers: Optional[Sequence[str]] = None,
name: Optional[str] = None,
workspace_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetWorkspaceApplicationPatchesResult
def get_workspace_application_patches_output(application_key: Optional[pulumi.Input[str]] = None,
fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dataintegration.GetWorkspaceApplicationPatchesFilterArgs]]]] = None,
identifiers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
name: Optional[pulumi.Input[str]] = None,
workspace_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetWorkspaceApplicationPatchesResult]
func GetWorkspaceApplicationPatches(ctx *Context, args *GetWorkspaceApplicationPatchesArgs, opts ...InvokeOption) (*GetWorkspaceApplicationPatchesResult, error)
func GetWorkspaceApplicationPatchesOutput(ctx *Context, args *GetWorkspaceApplicationPatchesOutputArgs, opts ...InvokeOption) GetWorkspaceApplicationPatchesResultOutput
> Note: This function is named GetWorkspaceApplicationPatches
in the Go SDK.
public static class GetWorkspaceApplicationPatches
{
public static Task<GetWorkspaceApplicationPatchesResult> InvokeAsync(GetWorkspaceApplicationPatchesArgs args, InvokeOptions? opts = null)
public static Output<GetWorkspaceApplicationPatchesResult> Invoke(GetWorkspaceApplicationPatchesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetWorkspaceApplicationPatchesResult> getWorkspaceApplicationPatches(GetWorkspaceApplicationPatchesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:DataIntegration/getWorkspaceApplicationPatches:getWorkspaceApplicationPatches
arguments:
# arguments dictionary
The following arguments are supported:
- Application
Key string - The application key.
- Workspace
Id string - The workspace ID.
- Fields List<string>
- Specifies the fields to get for an object.
- Filters
List<Get
Workspace Application Patches Filter> - Identifiers List<string>
- Used to filter by the identifier of the published object.
- Name string
- Used to filter by the name of the object.
- Application
Key string - The application key.
- Workspace
Id string - The workspace ID.
- Fields []string
- Specifies the fields to get for an object.
- Filters
[]Get
Workspace Application Patches Filter - Identifiers []string
- Used to filter by the identifier of the published object.
- Name string
- Used to filter by the name of the object.
- application
Key String - The application key.
- workspace
Id String - The workspace ID.
- fields List<String>
- Specifies the fields to get for an object.
- filters
List<Get
Workspace Application Patches Filter> - identifiers List<String>
- Used to filter by the identifier of the published object.
- name String
- Used to filter by the name of the object.
- application
Key string - The application key.
- workspace
Id string - The workspace ID.
- fields string[]
- Specifies the fields to get for an object.
- filters
Get
Workspace Application Patches Filter[] - identifiers string[]
- Used to filter by the identifier of the published object.
- name string
- Used to filter by the name of the object.
- application_
key str - The application key.
- workspace_
id str - The workspace ID.
- fields Sequence[str]
- Specifies the fields to get for an object.
- filters
Sequence[dataintegration.
Get Workspace Application Patches Filter] - identifiers Sequence[str]
- Used to filter by the identifier of the published object.
- name str
- Used to filter by the name of the object.
- application
Key String - The application key.
- workspace
Id String - The workspace ID.
- fields List<String>
- Specifies the fields to get for an object.
- filters List<Property Map>
- identifiers List<String>
- Used to filter by the identifier of the published object.
- name String
- Used to filter by the name of the object.
getWorkspaceApplicationPatches Result
The following output properties are available:
- Application
Key string - Id string
- The provider-assigned unique ID for this managed resource.
- Patch
Summary List<GetCollections Workspace Application Patches Patch Summary Collection> - The list of patch_summary_collection.
- Workspace
Id string - Fields List<string>
- Filters
List<Get
Workspace Application Patches Filter> - Identifiers List<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.
- 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.
- Application
Key string - Id string
- The provider-assigned unique ID for this managed resource.
- Patch
Summary []GetCollections Workspace Application Patches Patch Summary Collection - The list of patch_summary_collection.
- Workspace
Id string - Fields []string
- Filters
[]Get
Workspace Application Patches Filter - Identifiers []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.
- 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.
- application
Key String - id String
- The provider-assigned unique ID for this managed resource.
- patch
Summary List<GetCollections Workspace Application Patches Patch Summary Collection> - The list of patch_summary_collection.
- workspace
Id String - fields List<String>
- filters
List<Get
Workspace Application Patches Filter> - identifiers List<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.
- 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.
- application
Key string - id string
- The provider-assigned unique ID for this managed resource.
- patch
Summary GetCollections Workspace Application Patches Patch Summary Collection[] - The list of patch_summary_collection.
- workspace
Id string - fields string[]
- filters
Get
Workspace Application Patches Filter[] - identifiers 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.
- 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.
- application_
key str - id str
- The provider-assigned unique ID for this managed resource.
- patch_
summary_ Sequence[dataintegration.collections Get Workspace Application Patches Patch Summary Collection] - The list of patch_summary_collection.
- workspace_
id str - fields Sequence[str]
- filters
Sequence[dataintegration.
Get Workspace Application Patches Filter] - identifiers Sequence[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.
- 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.
- application
Key String - id String
- The provider-assigned unique ID for this managed resource.
- patch
Summary List<Property Map>Collections - The list of patch_summary_collection.
- workspace
Id String - fields List<String>
- filters List<Property Map>
- identifiers List<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.
- 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.
Supporting Types
GetWorkspaceApplicationPatchesFilter
GetWorkspaceApplicationPatchesPatchSummaryCollection
GetWorkspaceApplicationPatchesPatchSummaryCollectionItem
- Application
Key string - The application key.
- Application
Version int - The application version of the patch.
- Dependent
Object List<GetMetadatas Workspace Application Patches Patch Summary Collection Item Dependent Object Metadata> - List of dependent objects in this patch.
- Description string
- The description of the aggregator.
- Error
Messages Dictionary<string, object> - The errors encountered while applying the patch, if any.
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- 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<Get
Workspace Application Patches Patch Summary Collection Item 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
- Used to filter by the name of the object.
- Object
Keys List<string> - 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<GetWorkspace Application Patches Patch Summary Collection Item Parent Ref> - A reference to the object's parent.
- Patch
Object List<GetMetadatas Workspace Application Patches Patch Summary Collection Item 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 GetWorkspace Application Patches Patch Summary Collection Item Registry Metadata - Time
Patched string - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- Workspace
Id string - The workspace ID.
- Application
Key string - The application key.
- Application
Version int - The application version of the patch.
- Dependent
Object []GetMetadatas Workspace Application Patches Patch Summary Collection Item Dependent Object Metadata - List of dependent objects in this patch.
- Description string
- The description of the aggregator.
- Error
Messages map[string]interface{} - The errors encountered while applying the patch, if any.
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- 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
[]Get
Workspace Application Patches Patch Summary Collection Item 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
- Used to filter by the name of the object.
- Object
Keys []string - 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 []GetWorkspace Application Patches Patch Summary Collection Item Parent Ref - A reference to the object's parent.
- Patch
Object []GetMetadatas Workspace Application Patches Patch Summary Collection Item 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 GetWorkspace Application Patches Patch Summary Collection Item Registry Metadata - Time
Patched string - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- Workspace
Id string - The workspace ID.
- application
Key String - The application key.
- application
Version Integer - The application version of the patch.
- dependent
Object List<GetMetadatas Workspace Application Patches Patch Summary Collection Item Dependent Object Metadata> - List of dependent objects in this patch.
- description String
- The description of the aggregator.
- error
Messages Map<String,Object> - The errors encountered while applying the patch, if any.
- identifier String
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- 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<Get
Workspace Application Patches Patch Summary Collection Item 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
- Used to filter by the name of the object.
- object
Keys List<String> - 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<GetWorkspace Application Patches Patch Summary Collection Item Parent Ref> - A reference to the object's parent.
- patch
Object List<GetMetadatas Workspace Application Patches Patch Summary Collection Item 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 GetWorkspace Application Patches Patch Summary Collection Item Registry Metadata - time
Patched String - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- workspace
Id String - The workspace ID.
- application
Key string - The application key.
- application
Version number - The application version of the patch.
- dependent
Object GetMetadatas Workspace Application Patches Patch Summary Collection Item Dependent Object Metadata[] - List of dependent objects in this patch.
- description string
- The description of the aggregator.
- error
Messages {[key: string]: any} - The errors encountered while applying the patch, if any.
- identifier string
- Used to filter by the identifier of the published object.
- key string
- The key of the object.
- 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
Get
Workspace Application Patches Patch Summary Collection Item 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
- Used to filter by the name of the object.
- object
Keys string[] - 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 GetWorkspace Application Patches Patch Summary Collection Item Parent Ref[] - A reference to the object's parent.
- patch
Object GetMetadatas Workspace Application Patches Patch Summary Collection Item 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 GetWorkspace Application Patches Patch Summary Collection Item Registry Metadata - time
Patched string - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- workspace
Id string - The workspace ID.
- application_
key str - The application key.
- application_
version int - The application version of the patch.
- dependent_
object_ Sequence[dataintegration.metadatas Get Workspace Application Patches Patch Summary Collection Item Dependent Object Metadata] - List of dependent objects in this patch.
- description str
- The description of the aggregator.
- error_
messages Mapping[str, Any] - The errors encountered while applying the patch, if any.
- identifier str
- Used to filter by the identifier of the published object.
- key str
- The key of the object.
- 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.
Get Workspace Application Patches Patch Summary Collection Item 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.
- model_
version str - The object's model version.
- name str
- Used to filter by the name of the object.
- object_
keys Sequence[str] - 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.Get Workspace Application Patches Patch Summary Collection Item Parent Ref] - A reference to the object's parent.
- patch_
object_ Sequence[dataintegration.metadatas Get Workspace Application Patches Patch Summary Collection Item 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
- patch_
type str - The type of the patch applied or being applied on the application.
- registry_
metadata dataintegration.Get Workspace Application Patches Patch Summary Collection Item Registry Metadata - time_
patched str - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- workspace_
id str - The workspace ID.
- 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
- The description of the aggregator.
- error
Messages Map<Any> - The errors encountered while applying the patch, if any.
- identifier String
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- 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
- Used to filter by the name of the object.
- object
Keys List<String> - 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 - time
Patched String - The date and time the patch was applied, in the timestamp format defined by RFC3339.
- workspace
Id String - The workspace ID.
GetWorkspaceApplicationPatchesPatchSummaryCollectionItemDependentObjectMetadata
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key string
- The key of the object.
- name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key str
- The key of the object.
- name str
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- 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.
GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadata
- Aggregator
Key string - The owning object key for this object.
- Aggregators
List<Get
Workspace Application Patches Patch Summary Collection Item Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics List<GetWorkspace Application Patches Patch Summary Collection Item 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
[]Get
Workspace Application Patches Patch Summary Collection Item Metadata Aggregator - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics []GetWorkspace Application Patches Patch Summary Collection Item 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<Get
Workspace Application Patches Patch Summary Collection Item Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics List<GetWorkspace Application Patches Patch Summary Collection Item 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
Get
Workspace Application Patches Patch Summary Collection Item Metadata Aggregator[] - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics GetWorkspace Application Patches Patch Summary Collection Item 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.
Get Workspace Application Patches Patch Summary Collection Item Metadata Aggregator] - A summary type containing information about the object's aggregator including its type, key, name and description.
- count_
statistics Sequence[dataintegration.Get Workspace Application Patches Patch Summary Collection Item 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.
GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataAggregator
- Description string
- The description of the aggregator.
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- Type string
- The type of the object in patch.
- Description string
- The description of the aggregator.
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- Type string
- The type of the object in patch.
- description String
- The description of the aggregator.
- identifier String
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- type String
- The type of the object in patch.
- description string
- The description of the aggregator.
- identifier string
- Used to filter by the identifier of the published object.
- key string
- The key of the object.
- name string
- Used to filter by the name of the object.
- type string
- The type of the object in patch.
- description str
- The description of the aggregator.
- identifier str
- Used to filter by the identifier of the published object.
- key str
- The key of the object.
- name str
- Used to filter by the name of the object.
- type str
- The type of the object in patch.
- description String
- The description of the aggregator.
- identifier String
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- type String
- The type of the object in patch.
GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataCountStatistic
- object
Type List<Property Map>Count Lists - The array of statistics.
GetWorkspaceApplicationPatchesPatchSummaryCollectionItemMetadataCountStatisticObjectTypeCountList
- 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.
GetWorkspaceApplicationPatchesPatchSummaryCollectionItemParentRef
- parent str
- Key of the parent object.
- root_
doc_ strid - Key of the root document object.
GetWorkspaceApplicationPatchesPatchSummaryCollectionItemPatchObjectMetadata
- Action string
- The patch action indicating if object was created, updated, or deleted.
- Identifier string
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- Key string
- The key of the object.
- Name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key string
- The key of the object.
- name string
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key str
- The key of the object.
- name str
- Used to filter by the name of the object.
- 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
- Used to filter by the identifier of the published object.
- key String
- The key of the object.
- name String
- Used to filter by the name of the object.
- 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.
GetWorkspaceApplicationPatchesPatchSummaryCollectionItemRegistryMetadata
- Aggregator
Key string - The owning object key for this object.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Key string
- The key of the object.
- 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.
- Aggregator
Key string - The owning object key for this object.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Key string
- The key of the object.
- 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.
- aggregator
Key String - The owning object key for this object.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- key String
- The key of the object.
- 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.
- aggregator
Key string - The owning object key for this object.
- is
Favorite boolean - Specifies whether this object is a favorite or not.
- key string
- The key of the object.
- 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.
- aggregator_
key str - The owning object key for this object.
- is_
favorite bool - Specifies whether this object is a favorite or not.
- key str
- The key of the object.
- 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.
- aggregator
Key String - The owning object key for this object.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- key String
- The key of the object.
- 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.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi