Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi
oci.CapacityManagement.getInternalOccAvailabilityCatalogs
Explore with Pulumi AI
This data source provides the list of Internal Occ Availability Catalogs in Oracle Cloud Infrastructure Capacity Management service.
An internal api to list availability catalogs.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testInternalOccAvailabilityCatalogs = oci.CapacityManagement.getInternalOccAvailabilityCatalogs({
compartmentId: compartmentId,
occCustomerGroupId: testOccCustomerGroup.id,
catalogState: internalOccAvailabilityCatalogCatalogState,
displayName: internalOccAvailabilityCatalogDisplayName,
id: internalOccAvailabilityCatalogId,
namespace: internalOccAvailabilityCatalogNamespace,
});
import pulumi
import pulumi_oci as oci
test_internal_occ_availability_catalogs = oci.CapacityManagement.get_internal_occ_availability_catalogs(compartment_id=compartment_id,
occ_customer_group_id=test_occ_customer_group["id"],
catalog_state=internal_occ_availability_catalog_catalog_state,
display_name=internal_occ_availability_catalog_display_name,
id=internal_occ_availability_catalog_id,
namespace=internal_occ_availability_catalog_namespace)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/CapacityManagement"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := CapacityManagement.GetInternalOccAvailabilityCatalogs(ctx, &capacitymanagement.GetInternalOccAvailabilityCatalogsArgs{
CompartmentId: compartmentId,
OccCustomerGroupId: testOccCustomerGroup.Id,
CatalogState: pulumi.StringRef(internalOccAvailabilityCatalogCatalogState),
DisplayName: pulumi.StringRef(internalOccAvailabilityCatalogDisplayName),
Id: pulumi.StringRef(internalOccAvailabilityCatalogId),
Namespace: pulumi.StringRef(internalOccAvailabilityCatalogNamespace),
}, 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 testInternalOccAvailabilityCatalogs = Oci.CapacityManagement.GetInternalOccAvailabilityCatalogs.Invoke(new()
{
CompartmentId = compartmentId,
OccCustomerGroupId = testOccCustomerGroup.Id,
CatalogState = internalOccAvailabilityCatalogCatalogState,
DisplayName = internalOccAvailabilityCatalogDisplayName,
Id = internalOccAvailabilityCatalogId,
Namespace = internalOccAvailabilityCatalogNamespace,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.CapacityManagement.CapacityManagementFunctions;
import com.pulumi.oci.CapacityManagement.inputs.GetInternalOccAvailabilityCatalogsArgs;
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 testInternalOccAvailabilityCatalogs = CapacityManagementFunctions.getInternalOccAvailabilityCatalogs(GetInternalOccAvailabilityCatalogsArgs.builder()
.compartmentId(compartmentId)
.occCustomerGroupId(testOccCustomerGroup.id())
.catalogState(internalOccAvailabilityCatalogCatalogState)
.displayName(internalOccAvailabilityCatalogDisplayName)
.id(internalOccAvailabilityCatalogId)
.namespace(internalOccAvailabilityCatalogNamespace)
.build());
}
}
variables:
testInternalOccAvailabilityCatalogs:
fn::invoke:
Function: oci:CapacityManagement:getInternalOccAvailabilityCatalogs
Arguments:
compartmentId: ${compartmentId}
occCustomerGroupId: ${testOccCustomerGroup.id}
catalogState: ${internalOccAvailabilityCatalogCatalogState}
displayName: ${internalOccAvailabilityCatalogDisplayName}
id: ${internalOccAvailabilityCatalogId}
namespace: ${internalOccAvailabilityCatalogNamespace}
Using getInternalOccAvailabilityCatalogs
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 getInternalOccAvailabilityCatalogs(args: GetInternalOccAvailabilityCatalogsArgs, opts?: InvokeOptions): Promise<GetInternalOccAvailabilityCatalogsResult>
function getInternalOccAvailabilityCatalogsOutput(args: GetInternalOccAvailabilityCatalogsOutputArgs, opts?: InvokeOptions): Output<GetInternalOccAvailabilityCatalogsResult>
def get_internal_occ_availability_catalogs(catalog_state: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_capacitymanagement.GetInternalOccAvailabilityCatalogsFilter]] = None,
id: Optional[str] = None,
namespace: Optional[str] = None,
occ_customer_group_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetInternalOccAvailabilityCatalogsResult
def get_internal_occ_availability_catalogs_output(catalog_state: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_capacitymanagement.GetInternalOccAvailabilityCatalogsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
namespace: Optional[pulumi.Input[str]] = None,
occ_customer_group_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInternalOccAvailabilityCatalogsResult]
func GetInternalOccAvailabilityCatalogs(ctx *Context, args *GetInternalOccAvailabilityCatalogsArgs, opts ...InvokeOption) (*GetInternalOccAvailabilityCatalogsResult, error)
func GetInternalOccAvailabilityCatalogsOutput(ctx *Context, args *GetInternalOccAvailabilityCatalogsOutputArgs, opts ...InvokeOption) GetInternalOccAvailabilityCatalogsResultOutput
> Note: This function is named GetInternalOccAvailabilityCatalogs
in the Go SDK.
public static class GetInternalOccAvailabilityCatalogs
{
public static Task<GetInternalOccAvailabilityCatalogsResult> InvokeAsync(GetInternalOccAvailabilityCatalogsArgs args, InvokeOptions? opts = null)
public static Output<GetInternalOccAvailabilityCatalogsResult> Invoke(GetInternalOccAvailabilityCatalogsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetInternalOccAvailabilityCatalogsResult> getInternalOccAvailabilityCatalogs(GetInternalOccAvailabilityCatalogsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:CapacityManagement/getInternalOccAvailabilityCatalogs:getInternalOccAvailabilityCatalogs
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- Catalog
State string - Filter the list of availability catalogs based on the catalog state.
- Display
Name string - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- Filters
List<Get
Internal Occ Availability Catalogs Filter> - Id string
- The OCID of the availability catalog to filter the list of availability catalogs.
- Namespace string
- The namespace by which we would filter the list.
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- Catalog
State string - Filter the list of availability catalogs based on the catalog state.
- Display
Name string - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- Filters
[]Get
Internal Occ Availability Catalogs Filter - Id string
- The OCID of the availability catalog to filter the list of availability catalogs.
- Namespace string
- The namespace by which we would filter the list.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- catalog
State String - Filter the list of availability catalogs based on the catalog state.
- display
Name String - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- filters
List<Get
Internal Occ Availability Catalogs Filter> - id String
- The OCID of the availability catalog to filter the list of availability catalogs.
- namespace String
- The namespace by which we would filter the list.
- compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- catalog
State string - Filter the list of availability catalogs based on the catalog state.
- display
Name string - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- filters
Get
Internal Occ Availability Catalogs Filter[] - id string
- The OCID of the availability catalog to filter the list of availability catalogs.
- namespace string
- The namespace by which we would filter the list.
- compartment_
id str - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- occ_
customer_ strgroup_ id - The customer group ocid by which we would filter the list.
- catalog_
state str - Filter the list of availability catalogs based on the catalog state.
- display_
name str - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- filters
Sequence[capacitymanagement.
Get Internal Occ Availability Catalogs Filter] - id str
- The OCID of the availability catalog to filter the list of availability catalogs.
- namespace str
- The namespace by which we would filter the list.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- catalog
State String - Filter the list of availability catalogs based on the catalog state.
- display
Name String - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- filters List<Property Map>
- id String
- The OCID of the availability catalog to filter the list of availability catalogs.
- namespace String
- The namespace by which we would filter the list.
getInternalOccAvailabilityCatalogs Result
The following output properties are available:
- Compartment
Id string - The OCID of the tenancy where the availability catalog resides.
- Occ
Availability List<GetCatalog Collections Internal Occ Availability Catalogs Occ Availability Catalog Collection> - The list of occ_availability_catalog_collection.
- Occ
Customer stringGroup Id - The Customer Group OCID to which the availability catalog belongs.
- Catalog
State string - Represents whether this version of the availability catalog has been made available to the customer. The state is No by default.
- Display
Name string - An user-friendly name for the availability catalog. Does not have to be unique, and is changeable. Avoid entering confidential information.
- Filters
List<Get
Internal Occ Availability Catalogs Filter> - Id string
- The OCID of the availability catalog.
- Namespace string
- The name of the Oracle Cloud Infrastructure service in consideration. For example, Compute, Exadata, and so on.
- Compartment
Id string - The OCID of the tenancy where the availability catalog resides.
- Occ
Availability []GetCatalog Collections Internal Occ Availability Catalogs Occ Availability Catalog Collection - The list of occ_availability_catalog_collection.
- Occ
Customer stringGroup Id - The Customer Group OCID to which the availability catalog belongs.
- Catalog
State string - Represents whether this version of the availability catalog has been made available to the customer. The state is No by default.
- Display
Name string - An user-friendly name for the availability catalog. Does not have to be unique, and is changeable. Avoid entering confidential information.
- Filters
[]Get
Internal Occ Availability Catalogs Filter - Id string
- The OCID of the availability catalog.
- Namespace string
- The name of the Oracle Cloud Infrastructure service in consideration. For example, Compute, Exadata, and so on.
- compartment
Id String - The OCID of the tenancy where the availability catalog resides.
- occ
Availability List<GetCatalog Collections Internal Occ Availability Catalogs Occ Availability Catalog Collection> - The list of occ_availability_catalog_collection.
- occ
Customer StringGroup Id - The Customer Group OCID to which the availability catalog belongs.
- catalog
State String - Represents whether this version of the availability catalog has been made available to the customer. The state is No by default.
- display
Name String - An user-friendly name for the availability catalog. Does not have to be unique, and is changeable. Avoid entering confidential information.
- filters
List<Get
Internal Occ Availability Catalogs Filter> - id String
- The OCID of the availability catalog.
- namespace String
- The name of the Oracle Cloud Infrastructure service in consideration. For example, Compute, Exadata, and so on.
- compartment
Id string - The OCID of the tenancy where the availability catalog resides.
- occ
Availability GetCatalog Collections Internal Occ Availability Catalogs Occ Availability Catalog Collection[] - The list of occ_availability_catalog_collection.
- occ
Customer stringGroup Id - The Customer Group OCID to which the availability catalog belongs.
- catalog
State string - Represents whether this version of the availability catalog has been made available to the customer. The state is No by default.
- display
Name string - An user-friendly name for the availability catalog. Does not have to be unique, and is changeable. Avoid entering confidential information.
- filters
Get
Internal Occ Availability Catalogs Filter[] - id string
- The OCID of the availability catalog.
- namespace string
- The name of the Oracle Cloud Infrastructure service in consideration. For example, Compute, Exadata, and so on.
- compartment_
id str - The OCID of the tenancy where the availability catalog resides.
- occ_
availability_ Sequence[capacitymanagement.catalog_ collections Get Internal Occ Availability Catalogs Occ Availability Catalog Collection] - The list of occ_availability_catalog_collection.
- occ_
customer_ strgroup_ id - The Customer Group OCID to which the availability catalog belongs.
- catalog_
state str - Represents whether this version of the availability catalog has been made available to the customer. The state is No by default.
- display_
name str - An user-friendly name for the availability catalog. Does not have to be unique, and is changeable. Avoid entering confidential information.
- filters
Sequence[capacitymanagement.
Get Internal Occ Availability Catalogs Filter] - id str
- The OCID of the availability catalog.
- namespace str
- The name of the Oracle Cloud Infrastructure service in consideration. For example, Compute, Exadata, and so on.
- compartment
Id String - The OCID of the tenancy where the availability catalog resides.
- occ
Availability List<Property Map>Catalog Collections - The list of occ_availability_catalog_collection.
- occ
Customer StringGroup Id - The Customer Group OCID to which the availability catalog belongs.
- catalog
State String - Represents whether this version of the availability catalog has been made available to the customer. The state is No by default.
- display
Name String - An user-friendly name for the availability catalog. Does not have to be unique, and is changeable. Avoid entering confidential information.
- filters List<Property Map>
- id String
- The OCID of the availability catalog.
- namespace String
- The name of the Oracle Cloud Infrastructure service in consideration. For example, Compute, Exadata, and so on.
Supporting Types
GetInternalOccAvailabilityCatalogsFilter
GetInternalOccAvailabilityCatalogsOccAvailabilityCatalogCollection
- Items
List<Get
Internal Occ Availability Catalogs Occ Availability Catalog Collection Item> - An array of availability catalogs.
- Items
[]Get
Internal Occ Availability Catalogs Occ Availability Catalog Collection Item - An array of availability catalogs.
- items
List<Get
Internal Occ Availability Catalogs Occ Availability Catalog Collection Item> - An array of availability catalogs.
- items
Get
Internal Occ Availability Catalogs Occ Availability Catalog Collection Item[] - An array of availability catalogs.
- items
Sequence[capacitymanagement.
Get Internal Occ Availability Catalogs Occ Availability Catalog Collection Item] - An array of availability catalogs.
- items List<Property Map>
- An array of availability catalogs.
GetInternalOccAvailabilityCatalogsOccAvailabilityCatalogCollectionItem
- Catalog
State string - Filter the list of availability catalogs based on the catalog state.
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- Text information about the availability catalog.
- Display
Name string - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- The OCID of the availability catalog to filter the list of availability catalogs.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed State.
- Metadata
Details List<GetInternal Occ Availability Catalogs Occ Availability Catalog Collection Item Metadata Detail> - Used for representing the metadata of the catalog. This denotes the version and format of the CSV file for parsing.
- Namespace string
- The namespace by which we would filter the list.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- State string
- The current lifecycle state of the customer group.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time when the availability catalog was created.
- Time
Updated string - The time when the availability catalog was last updated.
- Catalog
State string - Filter the list of availability catalogs based on the catalog state.
- Compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- Text information about the availability catalog.
- Display
Name string - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- The OCID of the availability catalog to filter the list of availability catalogs.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed State.
- Metadata
Details []GetInternal Occ Availability Catalogs Occ Availability Catalog Collection Item Metadata Detail - Used for representing the metadata of the catalog. This denotes the version and format of the CSV file for parsing.
- Namespace string
- The namespace by which we would filter the list.
- Occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- State string
- The current lifecycle state of the customer group.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time when the availability catalog was created.
- Time
Updated string - The time when the availability catalog was last updated.
- catalog
State String - Filter the list of availability catalogs based on the catalog state.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- Text information about the availability catalog.
- display
Name String - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- The OCID of the availability catalog to filter the list of availability catalogs.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed State.
- metadata
Details List<GetInternal Occ Availability Catalogs Occ Availability Catalog Collection Item Metadata Detail> - Used for representing the metadata of the catalog. This denotes the version and format of the CSV file for parsing.
- namespace String
- The namespace by which we would filter the list.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- state String
- The current lifecycle state of the customer group.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when the availability catalog was created.
- time
Updated String - The time when the availability catalog was last updated.
- catalog
State string - Filter the list of availability catalogs based on the catalog state.
- compartment
Id string - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- Text information about the availability catalog.
- display
Name string - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id string
- The OCID of the availability catalog to filter the list of availability catalogs.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed State.
- metadata
Details GetInternal Occ Availability Catalogs Occ Availability Catalog Collection Item Metadata Detail[] - Used for representing the metadata of the catalog. This denotes the version and format of the CSV file for parsing.
- namespace string
- The namespace by which we would filter the list.
- occ
Customer stringGroup Id - The customer group ocid by which we would filter the list.
- state string
- The current lifecycle state of the customer group.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time when the availability catalog was created.
- time
Updated string - The time when the availability catalog was last updated.
- catalog_
state str - Filter the list of availability catalogs based on the catalog state.
- compartment_
id str - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- Text information about the availability catalog.
- display_
name str - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id str
- The OCID of the availability catalog to filter the list of availability catalogs.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed State.
- metadata_
details Sequence[capacitymanagement.Get Internal Occ Availability Catalogs Occ Availability Catalog Collection Item Metadata Detail] - Used for representing the metadata of the catalog. This denotes the version and format of the CSV file for parsing.
- namespace str
- The namespace by which we would filter the list.
- occ_
customer_ strgroup_ id - The customer group ocid by which we would filter the list.
- state str
- The current lifecycle state of the customer group.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time when the availability catalog was created.
- time_
updated str - The time when the availability catalog was last updated.
- catalog
State String - Filter the list of availability catalogs based on the catalog state.
- compartment
Id String - The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- Text information about the availability catalog.
- display
Name String - A filter to return only the resources that match the entire display name. The match is not case sensitive.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- The OCID of the availability catalog to filter the list of availability catalogs.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed State.
- metadata
Details List<Property Map> - Used for representing the metadata of the catalog. This denotes the version and format of the CSV file for parsing.
- namespace String
- The namespace by which we would filter the list.
- occ
Customer StringGroup Id - The customer group ocid by which we would filter the list.
- state String
- The current lifecycle state of the customer group.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when the availability catalog was created.
- time
Updated String - The time when the availability catalog was last updated.
GetInternalOccAvailabilityCatalogsOccAvailabilityCatalogCollectionItemMetadataDetail
- Format
Version string - The version for the format of the catalog file being uploaded.
- Format
Version string - The version for the format of the catalog file being uploaded.
- format
Version String - The version for the format of the catalog file being uploaded.
- format
Version string - The version for the format of the catalog file being uploaded.
- format_
version str - The version for the format of the catalog file being uploaded.
- format
Version String - The version for the format of the catalog file being uploaded.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.