ibm.CmOffering
Explore with Pulumi AI
Provides a resource for ibm_cm_offering. This allows ibm.CmOffering to be created, updated and deleted.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const cmOffering = new ibm.CmOffering("cmOffering", {
catalogId: ibm_cm_catalog.cm_catalog.id,
label: "offering label",
offeringIconUrl: "icon_url",
tags: [
"tag1",
"tag2",
],
});
import pulumi
import pulumi_ibm as ibm
cm_offering = ibm.CmOffering("cmOffering",
catalog_id=ibm_cm_catalog["cm_catalog"]["id"],
label="offering label",
offering_icon_url="icon_url",
tags=[
"tag1",
"tag2",
])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.NewCmOffering(ctx, "cmOffering", &ibm.CmOfferingArgs{
CatalogId: pulumi.Any(ibm_cm_catalog.Cm_catalog.Id),
Label: pulumi.String("offering label"),
OfferingIconUrl: pulumi.String("icon_url"),
Tags: pulumi.StringArray{
pulumi.String("tag1"),
pulumi.String("tag2"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var cmOffering = new Ibm.CmOffering("cmOffering", new()
{
CatalogId = ibm_cm_catalog.Cm_catalog.Id,
Label = "offering label",
OfferingIconUrl = "icon_url",
Tags = new[]
{
"tag1",
"tag2",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.CmOffering;
import com.pulumi.ibm.CmOfferingArgs;
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 cmOffering = new CmOffering("cmOffering", CmOfferingArgs.builder()
.catalogId(ibm_cm_catalog.cm_catalog().id())
.label("offering label")
.offeringIconUrl("icon_url")
.tags(
"tag1",
"tag2")
.build());
}
}
resources:
cmOffering:
type: ibm:CmOffering
properties:
catalogId: ${ibm_cm_catalog.cm_catalog.id}
label: offering label
offeringIconUrl: icon_url
tags:
- tag1
- tag2
Provider Configuration
The IBM Cloud provider offers a flexible means of providing credentials for authentication. The following methods are supported, in this order, and explained below:
- Static credentials
- Environment variables
To find which credentials are required for this resource, see the service table here.
Static credentials
You can provide your static credentials by adding the ibmcloud_api_key
, iaas_classic_username
, and iaas_classic_api_key
arguments in the IBM Cloud provider block.
Usage:
provider "ibm" {
ibmcloud_api_key = ""
iaas_classic_username = ""
iaas_classic_api_key = ""
}
Environment variables
You can provide your credentials by exporting the IC_API_KEY
, IAAS_CLASSIC_USERNAME
, and IAAS_CLASSIC_API_KEY
environment variables, representing your IBM Cloud platform API key, IBM Cloud Classic Infrastructure (SoftLayer) user name, and IBM Cloud infrastructure API key, respectively.
provider "ibm" {}
Usage:
export IC_API_KEY="api_key"
export IAAS_CLASSIC_USERNAME="iaas_classic_username"
export IAAS_CLASSIC_API_KEY="api_key"
pulumi preview
Note:
- Create or find your
ibmcloud_api_key
andiaas_classic_api_key
here.
- Select
My IBM Cloud API Keys
option from view dropdown foribmcloud_api_key
- Select
Classic Infrastructure API Keys
option from view dropdown foriaas_classic_api_key
- For iaas_classic_username
- Go to Users
- Click on user.
- Find user name in the
VPN password
section underUser Details
tab
For more informaton, see here.
Create CmOffering Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CmOffering(name: string, args: CmOfferingArgs, opts?: CustomResourceOptions);
@overload
def CmOffering(resource_name: str,
args: CmOfferingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CmOffering(resource_name: str,
opts: Optional[ResourceOptions] = None,
catalog_id: Optional[str] = None,
cm_offering_id: Optional[str] = None,
deprecate: Optional[bool] = None,
disclaimer: Optional[str] = None,
features: Optional[Sequence[CmOfferingFeatureArgs]] = None,
hidden: Optional[bool] = None,
image_pull_keys: Optional[Sequence[CmOfferingImagePullKeyArgs]] = None,
keywords: Optional[Sequence[str]] = None,
label: Optional[str] = None,
label_i18n: Optional[Mapping[str, str]] = None,
long_description: Optional[str] = None,
long_description_i18n: Optional[Mapping[str, str]] = None,
media: Optional[Sequence[CmOfferingMediaArgs]] = None,
metadata: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
offering_docs_url: Optional[str] = None,
offering_icon_url: Optional[str] = None,
offering_id: Optional[str] = None,
offering_support_url: Optional[str] = None,
portal_approval_record: Optional[str] = None,
portal_ui_url: Optional[str] = None,
product_kind: Optional[str] = None,
provider_info: Optional[CmOfferingProviderInfoArgs] = None,
public_original_crn: Optional[str] = None,
publish_public_crn: Optional[str] = None,
share_enabled: Optional[bool] = None,
share_with_access_lists: Optional[Sequence[str]] = None,
share_with_all: Optional[bool] = None,
share_with_ibm: Optional[bool] = None,
short_description: Optional[str] = None,
short_description_i18n: Optional[Mapping[str, str]] = None,
tags: Optional[Sequence[str]] = None)
func NewCmOffering(ctx *Context, name string, args CmOfferingArgs, opts ...ResourceOption) (*CmOffering, error)
public CmOffering(string name, CmOfferingArgs args, CustomResourceOptions? opts = null)
public CmOffering(String name, CmOfferingArgs args)
public CmOffering(String name, CmOfferingArgs args, CustomResourceOptions options)
type: ibm:CmOffering
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 CmOfferingArgs
- 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 CmOfferingArgs
- 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 CmOfferingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CmOfferingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CmOfferingArgs
- 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 cmOfferingResource = new Ibm.CmOffering("cmOfferingResource", new()
{
CatalogId = "string",
CmOfferingId = "string",
Deprecate = false,
Disclaimer = "string",
Features = new[]
{
new Ibm.Inputs.CmOfferingFeatureArgs
{
Description = "string",
DescriptionI18n =
{
{ "string", "string" },
},
Title = "string",
TitleI18n =
{
{ "string", "string" },
},
},
},
Hidden = false,
ImagePullKeys = new[]
{
new Ibm.Inputs.CmOfferingImagePullKeyArgs
{
Description = "string",
Name = "string",
Value = "string",
},
},
Keywords = new[]
{
"string",
},
Label = "string",
LabelI18n =
{
{ "string", "string" },
},
LongDescription = "string",
LongDescriptionI18n =
{
{ "string", "string" },
},
Media = new[]
{
new Ibm.Inputs.CmOfferingMediaArgs
{
ApiUrl = "string",
Caption = "string",
CaptionI18n =
{
{ "string", "string" },
},
ThumbnailUrl = "string",
Type = "string",
Url = "string",
UrlProxy = new Ibm.Inputs.CmOfferingMediaUrlProxyArgs
{
Sha = "string",
Url = "string",
},
},
},
Metadata =
{
{ "string", "string" },
},
Name = "string",
OfferingDocsUrl = "string",
OfferingIconUrl = "string",
OfferingId = "string",
PortalApprovalRecord = "string",
PortalUiUrl = "string",
ProductKind = "string",
ProviderInfo = new Ibm.Inputs.CmOfferingProviderInfoArgs
{
Id = "string",
Name = "string",
},
PublicOriginalCrn = "string",
PublishPublicCrn = "string",
ShareEnabled = false,
ShareWithAccessLists = new[]
{
"string",
},
ShareWithAll = false,
ShareWithIbm = false,
ShortDescription = "string",
ShortDescriptionI18n =
{
{ "string", "string" },
},
Tags = new[]
{
"string",
},
});
example, err := ibm.NewCmOffering(ctx, "cmOfferingResource", &ibm.CmOfferingArgs{
CatalogId: pulumi.String("string"),
CmOfferingId: pulumi.String("string"),
Deprecate: pulumi.Bool(false),
Disclaimer: pulumi.String("string"),
Features: ibm.CmOfferingFeatureArray{
&ibm.CmOfferingFeatureArgs{
Description: pulumi.String("string"),
DescriptionI18n: pulumi.StringMap{
"string": pulumi.String("string"),
},
Title: pulumi.String("string"),
TitleI18n: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
},
Hidden: pulumi.Bool(false),
ImagePullKeys: ibm.CmOfferingImagePullKeyArray{
&ibm.CmOfferingImagePullKeyArgs{
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Keywords: pulumi.StringArray{
pulumi.String("string"),
},
Label: pulumi.String("string"),
LabelI18n: pulumi.StringMap{
"string": pulumi.String("string"),
},
LongDescription: pulumi.String("string"),
LongDescriptionI18n: pulumi.StringMap{
"string": pulumi.String("string"),
},
Media: ibm.CmOfferingMediaArray{
&ibm.CmOfferingMediaArgs{
ApiUrl: pulumi.String("string"),
Caption: pulumi.String("string"),
CaptionI18n: pulumi.StringMap{
"string": pulumi.String("string"),
},
ThumbnailUrl: pulumi.String("string"),
Type: pulumi.String("string"),
Url: pulumi.String("string"),
UrlProxy: &ibm.CmOfferingMediaUrlProxyArgs{
Sha: pulumi.String("string"),
Url: pulumi.String("string"),
},
},
},
Metadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
OfferingDocsUrl: pulumi.String("string"),
OfferingIconUrl: pulumi.String("string"),
OfferingId: pulumi.String("string"),
PortalApprovalRecord: pulumi.String("string"),
PortalUiUrl: pulumi.String("string"),
ProductKind: pulumi.String("string"),
ProviderInfo: &ibm.CmOfferingProviderInfoArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
},
PublicOriginalCrn: pulumi.String("string"),
PublishPublicCrn: pulumi.String("string"),
ShareEnabled: pulumi.Bool(false),
ShareWithAccessLists: pulumi.StringArray{
pulumi.String("string"),
},
ShareWithAll: pulumi.Bool(false),
ShareWithIbm: pulumi.Bool(false),
ShortDescription: pulumi.String("string"),
ShortDescriptionI18n: pulumi.StringMap{
"string": pulumi.String("string"),
},
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var cmOfferingResource = new CmOffering("cmOfferingResource", CmOfferingArgs.builder()
.catalogId("string")
.cmOfferingId("string")
.deprecate(false)
.disclaimer("string")
.features(CmOfferingFeatureArgs.builder()
.description("string")
.descriptionI18n(Map.of("string", "string"))
.title("string")
.titleI18n(Map.of("string", "string"))
.build())
.hidden(false)
.imagePullKeys(CmOfferingImagePullKeyArgs.builder()
.description("string")
.name("string")
.value("string")
.build())
.keywords("string")
.label("string")
.labelI18n(Map.of("string", "string"))
.longDescription("string")
.longDescriptionI18n(Map.of("string", "string"))
.media(CmOfferingMediaArgs.builder()
.apiUrl("string")
.caption("string")
.captionI18n(Map.of("string", "string"))
.thumbnailUrl("string")
.type("string")
.url("string")
.urlProxy(CmOfferingMediaUrlProxyArgs.builder()
.sha("string")
.url("string")
.build())
.build())
.metadata(Map.of("string", "string"))
.name("string")
.offeringDocsUrl("string")
.offeringIconUrl("string")
.offeringId("string")
.portalApprovalRecord("string")
.portalUiUrl("string")
.productKind("string")
.providerInfo(CmOfferingProviderInfoArgs.builder()
.id("string")
.name("string")
.build())
.publicOriginalCrn("string")
.publishPublicCrn("string")
.shareEnabled(false)
.shareWithAccessLists("string")
.shareWithAll(false)
.shareWithIbm(false)
.shortDescription("string")
.shortDescriptionI18n(Map.of("string", "string"))
.tags("string")
.build());
cm_offering_resource = ibm.CmOffering("cmOfferingResource",
catalog_id="string",
cm_offering_id="string",
deprecate=False,
disclaimer="string",
features=[{
"description": "string",
"description_i18n": {
"string": "string",
},
"title": "string",
"title_i18n": {
"string": "string",
},
}],
hidden=False,
image_pull_keys=[{
"description": "string",
"name": "string",
"value": "string",
}],
keywords=["string"],
label="string",
label_i18n={
"string": "string",
},
long_description="string",
long_description_i18n={
"string": "string",
},
media=[{
"api_url": "string",
"caption": "string",
"caption_i18n": {
"string": "string",
},
"thumbnail_url": "string",
"type": "string",
"url": "string",
"url_proxy": {
"sha": "string",
"url": "string",
},
}],
metadata={
"string": "string",
},
name="string",
offering_docs_url="string",
offering_icon_url="string",
offering_id="string",
portal_approval_record="string",
portal_ui_url="string",
product_kind="string",
provider_info={
"id": "string",
"name": "string",
},
public_original_crn="string",
publish_public_crn="string",
share_enabled=False,
share_with_access_lists=["string"],
share_with_all=False,
share_with_ibm=False,
short_description="string",
short_description_i18n={
"string": "string",
},
tags=["string"])
const cmOfferingResource = new ibm.CmOffering("cmOfferingResource", {
catalogId: "string",
cmOfferingId: "string",
deprecate: false,
disclaimer: "string",
features: [{
description: "string",
descriptionI18n: {
string: "string",
},
title: "string",
titleI18n: {
string: "string",
},
}],
hidden: false,
imagePullKeys: [{
description: "string",
name: "string",
value: "string",
}],
keywords: ["string"],
label: "string",
labelI18n: {
string: "string",
},
longDescription: "string",
longDescriptionI18n: {
string: "string",
},
media: [{
apiUrl: "string",
caption: "string",
captionI18n: {
string: "string",
},
thumbnailUrl: "string",
type: "string",
url: "string",
urlProxy: {
sha: "string",
url: "string",
},
}],
metadata: {
string: "string",
},
name: "string",
offeringDocsUrl: "string",
offeringIconUrl: "string",
offeringId: "string",
portalApprovalRecord: "string",
portalUiUrl: "string",
productKind: "string",
providerInfo: {
id: "string",
name: "string",
},
publicOriginalCrn: "string",
publishPublicCrn: "string",
shareEnabled: false,
shareWithAccessLists: ["string"],
shareWithAll: false,
shareWithIbm: false,
shortDescription: "string",
shortDescriptionI18n: {
string: "string",
},
tags: ["string"],
});
type: ibm:CmOffering
properties:
catalogId: string
cmOfferingId: string
deprecate: false
disclaimer: string
features:
- description: string
descriptionI18n:
string: string
title: string
titleI18n:
string: string
hidden: false
imagePullKeys:
- description: string
name: string
value: string
keywords:
- string
label: string
labelI18n:
string: string
longDescription: string
longDescriptionI18n:
string: string
media:
- apiUrl: string
caption: string
captionI18n:
string: string
thumbnailUrl: string
type: string
url: string
urlProxy:
sha: string
url: string
metadata:
string: string
name: string
offeringDocsUrl: string
offeringIconUrl: string
offeringId: string
portalApprovalRecord: string
portalUiUrl: string
productKind: string
providerInfo:
id: string
name: string
publicOriginalCrn: string
publishPublicCrn: string
shareEnabled: false
shareWithAccessLists:
- string
shareWithAll: false
shareWithIbm: false
shortDescription: string
shortDescriptionI18n:
string: string
tags:
- string
CmOffering Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The CmOffering resource accepts the following input properties:
- Catalog
Id string - Catalog identifier.
- Cm
Offering stringId - (String) The id of this provider.
- Deprecate bool
- Specify if this offering should be deprecated.
- Disclaimer string
- (String) A disclaimer for this offering.
- Features
List<Cm
Offering Feature> - List of features associated with this offering. Nested scheme for features:
- bool
- Determine if this offering should be displayed in the Consumption UI.
- Image
Pull List<CmKeys Offering Image Pull Key> - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- Keywords List<string>
- List of keywords associated with an offering, typically used to search for it.
- Label string
- Display Name in the requested language.
- Label
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Long
Description string - Long description in the requested language.
- Long
Description Dictionary<string, string>I18n - (Map) A map of translated strings, by language code.
- Media
List<Cm
Offering Media> - A list of media items related to this offering. Nested scheme for media:
- Metadata Dictionary<string, string>
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Offering
Docs stringUrl - URL for additional docs of this offering.
- Offering
Icon stringUrl - URL for an icon associated with this offering.
- Offering
Id string - Offering identifier, provide to import an existing offering.
- Offering
Support stringUrl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- Portal
Approval stringRecord - (String) The portal's approval record ID.
- Portal
Ui stringUrl - (String) The portal UI URL.
- Product
Kind string - The kind of the product. Valid values are "solution" and "software"
- Provider
Info CmOffering Provider Info - Information on the provider of this offering. Nested scheme for provider_info:
- Public
Original stringCrn - (String) The original offering CRN that this publish entry came from.
- Publish
Public stringCrn - (String) The crn of the public catalog entry of this offering.
- bool
- Denotes sharing including access list availability of an Offering is enabled.
- List<string>
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - bool
- Denotes public availability of an Offering - if share_enabled is true.
- bool
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- Short
Description string - Short description in the requested language.
- Short
Description Dictionary<string, string>I18n - (Map) A map of translated strings, by language code.
- List<string>
- List of tags associated with this catalog.
- Catalog
Id string - Catalog identifier.
- Cm
Offering stringId - (String) The id of this provider.
- Deprecate bool
- Specify if this offering should be deprecated.
- Disclaimer string
- (String) A disclaimer for this offering.
- Features
[]Cm
Offering Feature Args - List of features associated with this offering. Nested scheme for features:
- bool
- Determine if this offering should be displayed in the Consumption UI.
- Image
Pull []CmKeys Offering Image Pull Key Args - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- Keywords []string
- List of keywords associated with an offering, typically used to search for it.
- Label string
- Display Name in the requested language.
- Label
I18n map[string]string - (Map) A map of translated strings, by language code.
- Long
Description string - Long description in the requested language.
- Long
Description map[string]stringI18n - (Map) A map of translated strings, by language code.
- Media
[]Cm
Offering Media Args - A list of media items related to this offering. Nested scheme for media:
- Metadata map[string]string
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Offering
Docs stringUrl - URL for additional docs of this offering.
- Offering
Icon stringUrl - URL for an icon associated with this offering.
- Offering
Id string - Offering identifier, provide to import an existing offering.
- Offering
Support stringUrl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- Portal
Approval stringRecord - (String) The portal's approval record ID.
- Portal
Ui stringUrl - (String) The portal UI URL.
- Product
Kind string - The kind of the product. Valid values are "solution" and "software"
- Provider
Info CmOffering Provider Info Args - Information on the provider of this offering. Nested scheme for provider_info:
- Public
Original stringCrn - (String) The original offering CRN that this publish entry came from.
- Publish
Public stringCrn - (String) The crn of the public catalog entry of this offering.
- bool
- Denotes sharing including access list availability of an Offering is enabled.
- []string
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - bool
- Denotes public availability of an Offering - if share_enabled is true.
- bool
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- Short
Description string - Short description in the requested language.
- Short
Description map[string]stringI18n - (Map) A map of translated strings, by language code.
- []string
- List of tags associated with this catalog.
- catalog
Id String - Catalog identifier.
- cm
Offering StringId - (String) The id of this provider.
- deprecate Boolean
- Specify if this offering should be deprecated.
- disclaimer String
- (String) A disclaimer for this offering.
- features
List<Cm
Offering Feature> - List of features associated with this offering. Nested scheme for features:
- Boolean
- Determine if this offering should be displayed in the Consumption UI.
- image
Pull List<CmKeys Offering Image Pull Key> - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- keywords List<String>
- List of keywords associated with an offering, typically used to search for it.
- label String
- Display Name in the requested language.
- label
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- long
Description String - Long description in the requested language.
- long
Description Map<String,String>I18n - (Map) A map of translated strings, by language code.
- media
List<Cm
Offering Media> - A list of media items related to this offering. Nested scheme for media:
- metadata Map<String,String>
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- offering
Docs StringUrl - URL for additional docs of this offering.
- offering
Icon StringUrl - URL for an icon associated with this offering.
- offering
Id String - Offering identifier, provide to import an existing offering.
- offering
Support StringUrl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- portal
Approval StringRecord - (String) The portal's approval record ID.
- portal
Ui StringUrl - (String) The portal UI URL.
- product
Kind String - The kind of the product. Valid values are "solution" and "software"
- provider
Info CmOffering Provider Info - Information on the provider of this offering. Nested scheme for provider_info:
- public
Original StringCrn - (String) The original offering CRN that this publish entry came from.
- publish
Public StringCrn - (String) The crn of the public catalog entry of this offering.
- Boolean
- Denotes sharing including access list availability of an Offering is enabled.
- List<String>
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - Boolean
- Denotes public availability of an Offering - if share_enabled is true.
- Boolean
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- short
Description String - Short description in the requested language.
- short
Description Map<String,String>I18n - (Map) A map of translated strings, by language code.
- List<String>
- List of tags associated with this catalog.
- catalog
Id string - Catalog identifier.
- cm
Offering stringId - (String) The id of this provider.
- deprecate boolean
- Specify if this offering should be deprecated.
- disclaimer string
- (String) A disclaimer for this offering.
- features
Cm
Offering Feature[] - List of features associated with this offering. Nested scheme for features:
- boolean
- Determine if this offering should be displayed in the Consumption UI.
- image
Pull CmKeys Offering Image Pull Key[] - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- keywords string[]
- List of keywords associated with an offering, typically used to search for it.
- label string
- Display Name in the requested language.
- label
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- long
Description string - Long description in the requested language.
- long
Description {[key: string]: string}I18n - (Map) A map of translated strings, by language code.
- media
Cm
Offering Media[] - A list of media items related to this offering. Nested scheme for media:
- metadata {[key: string]: string}
- (Map) Map of metadata values for this offering.
- name string
- The programmatic name of this offering.
- offering
Docs stringUrl - URL for additional docs of this offering.
- offering
Icon stringUrl - URL for an icon associated with this offering.
- offering
Id string - Offering identifier, provide to import an existing offering.
- offering
Support stringUrl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- portal
Approval stringRecord - (String) The portal's approval record ID.
- portal
Ui stringUrl - (String) The portal UI URL.
- product
Kind string - The kind of the product. Valid values are "solution" and "software"
- provider
Info CmOffering Provider Info - Information on the provider of this offering. Nested scheme for provider_info:
- public
Original stringCrn - (String) The original offering CRN that this publish entry came from.
- publish
Public stringCrn - (String) The crn of the public catalog entry of this offering.
- boolean
- Denotes sharing including access list availability of an Offering is enabled.
- string[]
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - boolean
- Denotes public availability of an Offering - if share_enabled is true.
- boolean
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- short
Description string - Short description in the requested language.
- short
Description {[key: string]: string}I18n - (Map) A map of translated strings, by language code.
- string[]
- List of tags associated with this catalog.
- catalog_
id str - Catalog identifier.
- cm_
offering_ strid - (String) The id of this provider.
- deprecate bool
- Specify if this offering should be deprecated.
- disclaimer str
- (String) A disclaimer for this offering.
- features
Sequence[Cm
Offering Feature Args] - List of features associated with this offering. Nested scheme for features:
- bool
- Determine if this offering should be displayed in the Consumption UI.
- image_
pull_ Sequence[Cmkeys Offering Image Pull Key Args] - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- keywords Sequence[str]
- List of keywords associated with an offering, typically used to search for it.
- label str
- Display Name in the requested language.
- label_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- long_
description str - Long description in the requested language.
- long_
description_ Mapping[str, str]i18n - (Map) A map of translated strings, by language code.
- media
Sequence[Cm
Offering Media Args] - A list of media items related to this offering. Nested scheme for media:
- metadata Mapping[str, str]
- (Map) Map of metadata values for this offering.
- name str
- The programmatic name of this offering.
- offering_
docs_ strurl - URL for additional docs of this offering.
- offering_
icon_ strurl - URL for an icon associated with this offering.
- offering_
id str - Offering identifier, provide to import an existing offering.
- offering_
support_ strurl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- portal_
approval_ strrecord - (String) The portal's approval record ID.
- portal_
ui_ strurl - (String) The portal UI URL.
- product_
kind str - The kind of the product. Valid values are "solution" and "software"
- provider_
info CmOffering Provider Info Args - Information on the provider of this offering. Nested scheme for provider_info:
- public_
original_ strcrn - (String) The original offering CRN that this publish entry came from.
- publish_
public_ strcrn - (String) The crn of the public catalog entry of this offering.
- bool
- Denotes sharing including access list availability of an Offering is enabled.
- Sequence[str]
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - bool
- Denotes public availability of an Offering - if share_enabled is true.
- bool
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- short_
description str - Short description in the requested language.
- short_
description_ Mapping[str, str]i18n - (Map) A map of translated strings, by language code.
- Sequence[str]
- List of tags associated with this catalog.
- catalog
Id String - Catalog identifier.
- cm
Offering StringId - (String) The id of this provider.
- deprecate Boolean
- Specify if this offering should be deprecated.
- disclaimer String
- (String) A disclaimer for this offering.
- features List<Property Map>
- List of features associated with this offering. Nested scheme for features:
- Boolean
- Determine if this offering should be displayed in the Consumption UI.
- image
Pull List<Property Map>Keys - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- keywords List<String>
- List of keywords associated with an offering, typically used to search for it.
- label String
- Display Name in the requested language.
- label
I18n Map<String> - (Map) A map of translated strings, by language code.
- long
Description String - Long description in the requested language.
- long
Description Map<String>I18n - (Map) A map of translated strings, by language code.
- media List<Property Map>
- A list of media items related to this offering. Nested scheme for media:
- metadata Map<String>
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- offering
Docs StringUrl - URL for additional docs of this offering.
- offering
Icon StringUrl - URL for an icon associated with this offering.
- offering
Id String - Offering identifier, provide to import an existing offering.
- offering
Support StringUrl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- portal
Approval StringRecord - (String) The portal's approval record ID.
- portal
Ui StringUrl - (String) The portal UI URL.
- product
Kind String - The kind of the product. Valid values are "solution" and "software"
- provider
Info Property Map - Information on the provider of this offering. Nested scheme for provider_info:
- public
Original StringCrn - (String) The original offering CRN that this publish entry came from.
- publish
Public StringCrn - (String) The crn of the public catalog entry of this offering.
- Boolean
- Denotes sharing including access list availability of an Offering is enabled.
- List<String>
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - Boolean
- Denotes public availability of an Offering - if share_enabled is true.
- Boolean
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- short
Description String - Short description in the requested language.
- short
Description Map<String>I18n - (Map) A map of translated strings, by language code.
- List<String>
- List of tags associated with this catalog.
Outputs
All input properties are implicitly available as output properties. Additionally, the CmOffering resource produces the following output properties:
- Badges
List<Cm
Offering Badge> - (List) A list of badges for this offering. Nested scheme for badges:
- Catalog
Name string - (String) The name of the catalog.
- Created string
- (String) The date and time this version was created.
- Crn string
- (String) Version's CRN.
- Deprecate
Pendings List<CmOffering Deprecate Pending> - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- Id string
- The provider-assigned unique ID for this managed resource.
- Kinds
List<Cm
Offering Kind> - (List) Array of kind. Nested scheme for kinds:
- Offering
Identifier string - Computed Offering ID.
- Pc
Managed bool - (Boolean) Offering is managed by Partner Center.
- Publish
Approved bool - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- Ratings
List<Cm
Offering Rating> - (List) Repository info for offerings. Nested scheme for rating:
- Repo
Infos List<CmOffering Repo Info> - (List) Repository info for offerings. Nested scheme for repo_info:
- Rev string
- (String) Cloudant revision.
- Supports
List<Cm
Offering Support> - (List) Offering Support information. Nested scheme for support:
- Updated string
- (String) The date and time this catalog was last updated.
- Url string
- (String) The url for this specific offering.
- Badges
[]Cm
Offering Badge - (List) A list of badges for this offering. Nested scheme for badges:
- Catalog
Name string - (String) The name of the catalog.
- Created string
- (String) The date and time this version was created.
- Crn string
- (String) Version's CRN.
- Deprecate
Pendings []CmOffering Deprecate Pending - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- Id string
- The provider-assigned unique ID for this managed resource.
- Kinds
[]Cm
Offering Kind - (List) Array of kind. Nested scheme for kinds:
- Offering
Identifier string - Computed Offering ID.
- Pc
Managed bool - (Boolean) Offering is managed by Partner Center.
- Publish
Approved bool - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- Ratings
[]Cm
Offering Rating - (List) Repository info for offerings. Nested scheme for rating:
- Repo
Infos []CmOffering Repo Info - (List) Repository info for offerings. Nested scheme for repo_info:
- Rev string
- (String) Cloudant revision.
- Supports
[]Cm
Offering Support - (List) Offering Support information. Nested scheme for support:
- Updated string
- (String) The date and time this catalog was last updated.
- Url string
- (String) The url for this specific offering.
- badges
List<Cm
Offering Badge> - (List) A list of badges for this offering. Nested scheme for badges:
- catalog
Name String - (String) The name of the catalog.
- created String
- (String) The date and time this version was created.
- crn String
- (String) Version's CRN.
- deprecate
Pendings List<CmOffering Deprecate Pending> - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- id String
- The provider-assigned unique ID for this managed resource.
- kinds
List<Cm
Offering Kind> - (List) Array of kind. Nested scheme for kinds:
- offering
Identifier String - Computed Offering ID.
- pc
Managed Boolean - (Boolean) Offering is managed by Partner Center.
- publish
Approved Boolean - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- ratings
List<Cm
Offering Rating> - (List) Repository info for offerings. Nested scheme for rating:
- repo
Infos List<CmOffering Repo Info> - (List) Repository info for offerings. Nested scheme for repo_info:
- rev String
- (String) Cloudant revision.
- supports
List<Cm
Offering Support> - (List) Offering Support information. Nested scheme for support:
- updated String
- (String) The date and time this catalog was last updated.
- url String
- (String) The url for this specific offering.
- badges
Cm
Offering Badge[] - (List) A list of badges for this offering. Nested scheme for badges:
- catalog
Name string - (String) The name of the catalog.
- created string
- (String) The date and time this version was created.
- crn string
- (String) Version's CRN.
- deprecate
Pendings CmOffering Deprecate Pending[] - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- id string
- The provider-assigned unique ID for this managed resource.
- kinds
Cm
Offering Kind[] - (List) Array of kind. Nested scheme for kinds:
- offering
Identifier string - Computed Offering ID.
- pc
Managed boolean - (Boolean) Offering is managed by Partner Center.
- publish
Approved boolean - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- ratings
Cm
Offering Rating[] - (List) Repository info for offerings. Nested scheme for rating:
- repo
Infos CmOffering Repo Info[] - (List) Repository info for offerings. Nested scheme for repo_info:
- rev string
- (String) Cloudant revision.
- supports
Cm
Offering Support[] - (List) Offering Support information. Nested scheme for support:
- updated string
- (String) The date and time this catalog was last updated.
- url string
- (String) The url for this specific offering.
- badges
Sequence[Cm
Offering Badge] - (List) A list of badges for this offering. Nested scheme for badges:
- catalog_
name str - (String) The name of the catalog.
- created str
- (String) The date and time this version was created.
- crn str
- (String) Version's CRN.
- deprecate_
pendings Sequence[CmOffering Deprecate Pending] - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- id str
- The provider-assigned unique ID for this managed resource.
- kinds
Sequence[Cm
Offering Kind] - (List) Array of kind. Nested scheme for kinds:
- offering_
identifier str - Computed Offering ID.
- pc_
managed bool - (Boolean) Offering is managed by Partner Center.
- publish_
approved bool - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- ratings
Sequence[Cm
Offering Rating] - (List) Repository info for offerings. Nested scheme for rating:
- repo_
infos Sequence[CmOffering Repo Info] - (List) Repository info for offerings. Nested scheme for repo_info:
- rev str
- (String) Cloudant revision.
- supports
Sequence[Cm
Offering Support] - (List) Offering Support information. Nested scheme for support:
- updated str
- (String) The date and time this catalog was last updated.
- url str
- (String) The url for this specific offering.
- badges List<Property Map>
- (List) A list of badges for this offering. Nested scheme for badges:
- catalog
Name String - (String) The name of the catalog.
- created String
- (String) The date and time this version was created.
- crn String
- (String) Version's CRN.
- deprecate
Pendings List<Property Map> - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- id String
- The provider-assigned unique ID for this managed resource.
- kinds List<Property Map>
- (List) Array of kind. Nested scheme for kinds:
- offering
Identifier String - Computed Offering ID.
- pc
Managed Boolean - (Boolean) Offering is managed by Partner Center.
- publish
Approved Boolean - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- ratings List<Property Map>
- (List) Repository info for offerings. Nested scheme for rating:
- repo
Infos List<Property Map> - (List) Repository info for offerings. Nested scheme for repo_info:
- rev String
- (String) Cloudant revision.
- supports List<Property Map>
- (List) Offering Support information. Nested scheme for support:
- updated String
- (String) The date and time this catalog was last updated.
- url String
- (String) The url for this specific offering.
Look up Existing CmOffering Resource
Get an existing CmOffering 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?: CmOfferingState, opts?: CustomResourceOptions): CmOffering
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
badges: Optional[Sequence[CmOfferingBadgeArgs]] = None,
catalog_id: Optional[str] = None,
catalog_name: Optional[str] = None,
cm_offering_id: Optional[str] = None,
created: Optional[str] = None,
crn: Optional[str] = None,
deprecate: Optional[bool] = None,
deprecate_pendings: Optional[Sequence[CmOfferingDeprecatePendingArgs]] = None,
disclaimer: Optional[str] = None,
features: Optional[Sequence[CmOfferingFeatureArgs]] = None,
hidden: Optional[bool] = None,
image_pull_keys: Optional[Sequence[CmOfferingImagePullKeyArgs]] = None,
keywords: Optional[Sequence[str]] = None,
kinds: Optional[Sequence[CmOfferingKindArgs]] = None,
label: Optional[str] = None,
label_i18n: Optional[Mapping[str, str]] = None,
long_description: Optional[str] = None,
long_description_i18n: Optional[Mapping[str, str]] = None,
media: Optional[Sequence[CmOfferingMediaArgs]] = None,
metadata: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
offering_docs_url: Optional[str] = None,
offering_icon_url: Optional[str] = None,
offering_id: Optional[str] = None,
offering_identifier: Optional[str] = None,
offering_support_url: Optional[str] = None,
pc_managed: Optional[bool] = None,
portal_approval_record: Optional[str] = None,
portal_ui_url: Optional[str] = None,
product_kind: Optional[str] = None,
provider_info: Optional[CmOfferingProviderInfoArgs] = None,
public_original_crn: Optional[str] = None,
publish_approved: Optional[bool] = None,
publish_public_crn: Optional[str] = None,
ratings: Optional[Sequence[CmOfferingRatingArgs]] = None,
repo_infos: Optional[Sequence[CmOfferingRepoInfoArgs]] = None,
rev: Optional[str] = None,
share_enabled: Optional[bool] = None,
share_with_access_lists: Optional[Sequence[str]] = None,
share_with_all: Optional[bool] = None,
share_with_ibm: Optional[bool] = None,
short_description: Optional[str] = None,
short_description_i18n: Optional[Mapping[str, str]] = None,
supports: Optional[Sequence[CmOfferingSupportArgs]] = None,
tags: Optional[Sequence[str]] = None,
updated: Optional[str] = None,
url: Optional[str] = None) -> CmOffering
func GetCmOffering(ctx *Context, name string, id IDInput, state *CmOfferingState, opts ...ResourceOption) (*CmOffering, error)
public static CmOffering Get(string name, Input<string> id, CmOfferingState? state, CustomResourceOptions? opts = null)
public static CmOffering get(String name, Output<String> id, CmOfferingState state, CustomResourceOptions options)
resources: _: type: ibm:CmOffering get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Badges
List<Cm
Offering Badge> - (List) A list of badges for this offering. Nested scheme for badges:
- Catalog
Id string - Catalog identifier.
- Catalog
Name string - (String) The name of the catalog.
- Cm
Offering stringId - (String) The id of this provider.
- Created string
- (String) The date and time this version was created.
- Crn string
- (String) Version's CRN.
- Deprecate bool
- Specify if this offering should be deprecated.
- Deprecate
Pendings List<CmOffering Deprecate Pending> - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- Disclaimer string
- (String) A disclaimer for this offering.
- Features
List<Cm
Offering Feature> - List of features associated with this offering. Nested scheme for features:
- bool
- Determine if this offering should be displayed in the Consumption UI.
- Image
Pull List<CmKeys Offering Image Pull Key> - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- Keywords List<string>
- List of keywords associated with an offering, typically used to search for it.
- Kinds
List<Cm
Offering Kind> - (List) Array of kind. Nested scheme for kinds:
- Label string
- Display Name in the requested language.
- Label
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Long
Description string - Long description in the requested language.
- Long
Description Dictionary<string, string>I18n - (Map) A map of translated strings, by language code.
- Media
List<Cm
Offering Media> - A list of media items related to this offering. Nested scheme for media:
- Metadata Dictionary<string, string>
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Offering
Docs stringUrl - URL for additional docs of this offering.
- Offering
Icon stringUrl - URL for an icon associated with this offering.
- Offering
Id string - Offering identifier, provide to import an existing offering.
- Offering
Identifier string - Computed Offering ID.
- Offering
Support stringUrl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- Pc
Managed bool - (Boolean) Offering is managed by Partner Center.
- Portal
Approval stringRecord - (String) The portal's approval record ID.
- Portal
Ui stringUrl - (String) The portal UI URL.
- Product
Kind string - The kind of the product. Valid values are "solution" and "software"
- Provider
Info CmOffering Provider Info - Information on the provider of this offering. Nested scheme for provider_info:
- Public
Original stringCrn - (String) The original offering CRN that this publish entry came from.
- Publish
Approved bool - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- Publish
Public stringCrn - (String) The crn of the public catalog entry of this offering.
- Ratings
List<Cm
Offering Rating> - (List) Repository info for offerings. Nested scheme for rating:
- Repo
Infos List<CmOffering Repo Info> - (List) Repository info for offerings. Nested scheme for repo_info:
- Rev string
- (String) Cloudant revision.
- bool
- Denotes sharing including access list availability of an Offering is enabled.
- List<string>
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - bool
- Denotes public availability of an Offering - if share_enabled is true.
- bool
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- Short
Description string - Short description in the requested language.
- Short
Description Dictionary<string, string>I18n - (Map) A map of translated strings, by language code.
- Supports
List<Cm
Offering Support> - (List) Offering Support information. Nested scheme for support:
- List<string>
- List of tags associated with this catalog.
- Updated string
- (String) The date and time this catalog was last updated.
- Url string
- (String) The url for this specific offering.
- Badges
[]Cm
Offering Badge Args - (List) A list of badges for this offering. Nested scheme for badges:
- Catalog
Id string - Catalog identifier.
- Catalog
Name string - (String) The name of the catalog.
- Cm
Offering stringId - (String) The id of this provider.
- Created string
- (String) The date and time this version was created.
- Crn string
- (String) Version's CRN.
- Deprecate bool
- Specify if this offering should be deprecated.
- Deprecate
Pendings []CmOffering Deprecate Pending Args - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- Disclaimer string
- (String) A disclaimer for this offering.
- Features
[]Cm
Offering Feature Args - List of features associated with this offering. Nested scheme for features:
- bool
- Determine if this offering should be displayed in the Consumption UI.
- Image
Pull []CmKeys Offering Image Pull Key Args - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- Keywords []string
- List of keywords associated with an offering, typically used to search for it.
- Kinds
[]Cm
Offering Kind Args - (List) Array of kind. Nested scheme for kinds:
- Label string
- Display Name in the requested language.
- Label
I18n map[string]string - (Map) A map of translated strings, by language code.
- Long
Description string - Long description in the requested language.
- Long
Description map[string]stringI18n - (Map) A map of translated strings, by language code.
- Media
[]Cm
Offering Media Args - A list of media items related to this offering. Nested scheme for media:
- Metadata map[string]string
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Offering
Docs stringUrl - URL for additional docs of this offering.
- Offering
Icon stringUrl - URL for an icon associated with this offering.
- Offering
Id string - Offering identifier, provide to import an existing offering.
- Offering
Identifier string - Computed Offering ID.
- Offering
Support stringUrl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- Pc
Managed bool - (Boolean) Offering is managed by Partner Center.
- Portal
Approval stringRecord - (String) The portal's approval record ID.
- Portal
Ui stringUrl - (String) The portal UI URL.
- Product
Kind string - The kind of the product. Valid values are "solution" and "software"
- Provider
Info CmOffering Provider Info Args - Information on the provider of this offering. Nested scheme for provider_info:
- Public
Original stringCrn - (String) The original offering CRN that this publish entry came from.
- Publish
Approved bool - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- Publish
Public stringCrn - (String) The crn of the public catalog entry of this offering.
- Ratings
[]Cm
Offering Rating Args - (List) Repository info for offerings. Nested scheme for rating:
- Repo
Infos []CmOffering Repo Info Args - (List) Repository info for offerings. Nested scheme for repo_info:
- Rev string
- (String) Cloudant revision.
- bool
- Denotes sharing including access list availability of an Offering is enabled.
- []string
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - bool
- Denotes public availability of an Offering - if share_enabled is true.
- bool
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- Short
Description string - Short description in the requested language.
- Short
Description map[string]stringI18n - (Map) A map of translated strings, by language code.
- Supports
[]Cm
Offering Support Args - (List) Offering Support information. Nested scheme for support:
- []string
- List of tags associated with this catalog.
- Updated string
- (String) The date and time this catalog was last updated.
- Url string
- (String) The url for this specific offering.
- badges
List<Cm
Offering Badge> - (List) A list of badges for this offering. Nested scheme for badges:
- catalog
Id String - Catalog identifier.
- catalog
Name String - (String) The name of the catalog.
- cm
Offering StringId - (String) The id of this provider.
- created String
- (String) The date and time this version was created.
- crn String
- (String) Version's CRN.
- deprecate Boolean
- Specify if this offering should be deprecated.
- deprecate
Pendings List<CmOffering Deprecate Pending> - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- disclaimer String
- (String) A disclaimer for this offering.
- features
List<Cm
Offering Feature> - List of features associated with this offering. Nested scheme for features:
- Boolean
- Determine if this offering should be displayed in the Consumption UI.
- image
Pull List<CmKeys Offering Image Pull Key> - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- keywords List<String>
- List of keywords associated with an offering, typically used to search for it.
- kinds
List<Cm
Offering Kind> - (List) Array of kind. Nested scheme for kinds:
- label String
- Display Name in the requested language.
- label
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- long
Description String - Long description in the requested language.
- long
Description Map<String,String>I18n - (Map) A map of translated strings, by language code.
- media
List<Cm
Offering Media> - A list of media items related to this offering. Nested scheme for media:
- metadata Map<String,String>
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- offering
Docs StringUrl - URL for additional docs of this offering.
- offering
Icon StringUrl - URL for an icon associated with this offering.
- offering
Id String - Offering identifier, provide to import an existing offering.
- offering
Identifier String - Computed Offering ID.
- offering
Support StringUrl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- pc
Managed Boolean - (Boolean) Offering is managed by Partner Center.
- portal
Approval StringRecord - (String) The portal's approval record ID.
- portal
Ui StringUrl - (String) The portal UI URL.
- product
Kind String - The kind of the product. Valid values are "solution" and "software"
- provider
Info CmOffering Provider Info - Information on the provider of this offering. Nested scheme for provider_info:
- public
Original StringCrn - (String) The original offering CRN that this publish entry came from.
- publish
Approved Boolean - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- publish
Public StringCrn - (String) The crn of the public catalog entry of this offering.
- ratings
List<Cm
Offering Rating> - (List) Repository info for offerings. Nested scheme for rating:
- repo
Infos List<CmOffering Repo Info> - (List) Repository info for offerings. Nested scheme for repo_info:
- rev String
- (String) Cloudant revision.
- Boolean
- Denotes sharing including access list availability of an Offering is enabled.
- List<String>
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - Boolean
- Denotes public availability of an Offering - if share_enabled is true.
- Boolean
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- short
Description String - Short description in the requested language.
- short
Description Map<String,String>I18n - (Map) A map of translated strings, by language code.
- supports
List<Cm
Offering Support> - (List) Offering Support information. Nested scheme for support:
- List<String>
- List of tags associated with this catalog.
- updated String
- (String) The date and time this catalog was last updated.
- url String
- (String) The url for this specific offering.
- badges
Cm
Offering Badge[] - (List) A list of badges for this offering. Nested scheme for badges:
- catalog
Id string - Catalog identifier.
- catalog
Name string - (String) The name of the catalog.
- cm
Offering stringId - (String) The id of this provider.
- created string
- (String) The date and time this version was created.
- crn string
- (String) Version's CRN.
- deprecate boolean
- Specify if this offering should be deprecated.
- deprecate
Pendings CmOffering Deprecate Pending[] - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- disclaimer string
- (String) A disclaimer for this offering.
- features
Cm
Offering Feature[] - List of features associated with this offering. Nested scheme for features:
- boolean
- Determine if this offering should be displayed in the Consumption UI.
- image
Pull CmKeys Offering Image Pull Key[] - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- keywords string[]
- List of keywords associated with an offering, typically used to search for it.
- kinds
Cm
Offering Kind[] - (List) Array of kind. Nested scheme for kinds:
- label string
- Display Name in the requested language.
- label
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- long
Description string - Long description in the requested language.
- long
Description {[key: string]: string}I18n - (Map) A map of translated strings, by language code.
- media
Cm
Offering Media[] - A list of media items related to this offering. Nested scheme for media:
- metadata {[key: string]: string}
- (Map) Map of metadata values for this offering.
- name string
- The programmatic name of this offering.
- offering
Docs stringUrl - URL for additional docs of this offering.
- offering
Icon stringUrl - URL for an icon associated with this offering.
- offering
Id string - Offering identifier, provide to import an existing offering.
- offering
Identifier string - Computed Offering ID.
- offering
Support stringUrl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- pc
Managed boolean - (Boolean) Offering is managed by Partner Center.
- portal
Approval stringRecord - (String) The portal's approval record ID.
- portal
Ui stringUrl - (String) The portal UI URL.
- product
Kind string - The kind of the product. Valid values are "solution" and "software"
- provider
Info CmOffering Provider Info - Information on the provider of this offering. Nested scheme for provider_info:
- public
Original stringCrn - (String) The original offering CRN that this publish entry came from.
- publish
Approved boolean - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- publish
Public stringCrn - (String) The crn of the public catalog entry of this offering.
- ratings
Cm
Offering Rating[] - (List) Repository info for offerings. Nested scheme for rating:
- repo
Infos CmOffering Repo Info[] - (List) Repository info for offerings. Nested scheme for repo_info:
- rev string
- (String) Cloudant revision.
- boolean
- Denotes sharing including access list availability of an Offering is enabled.
- string[]
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - boolean
- Denotes public availability of an Offering - if share_enabled is true.
- boolean
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- short
Description string - Short description in the requested language.
- short
Description {[key: string]: string}I18n - (Map) A map of translated strings, by language code.
- supports
Cm
Offering Support[] - (List) Offering Support information. Nested scheme for support:
- string[]
- List of tags associated with this catalog.
- updated string
- (String) The date and time this catalog was last updated.
- url string
- (String) The url for this specific offering.
- badges
Sequence[Cm
Offering Badge Args] - (List) A list of badges for this offering. Nested scheme for badges:
- catalog_
id str - Catalog identifier.
- catalog_
name str - (String) The name of the catalog.
- cm_
offering_ strid - (String) The id of this provider.
- created str
- (String) The date and time this version was created.
- crn str
- (String) Version's CRN.
- deprecate bool
- Specify if this offering should be deprecated.
- deprecate_
pendings Sequence[CmOffering Deprecate Pending Args] - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- disclaimer str
- (String) A disclaimer for this offering.
- features
Sequence[Cm
Offering Feature Args] - List of features associated with this offering. Nested scheme for features:
- bool
- Determine if this offering should be displayed in the Consumption UI.
- image_
pull_ Sequence[Cmkeys Offering Image Pull Key Args] - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- keywords Sequence[str]
- List of keywords associated with an offering, typically used to search for it.
- kinds
Sequence[Cm
Offering Kind Args] - (List) Array of kind. Nested scheme for kinds:
- label str
- Display Name in the requested language.
- label_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- long_
description str - Long description in the requested language.
- long_
description_ Mapping[str, str]i18n - (Map) A map of translated strings, by language code.
- media
Sequence[Cm
Offering Media Args] - A list of media items related to this offering. Nested scheme for media:
- metadata Mapping[str, str]
- (Map) Map of metadata values for this offering.
- name str
- The programmatic name of this offering.
- offering_
docs_ strurl - URL for additional docs of this offering.
- offering_
icon_ strurl - URL for an icon associated with this offering.
- offering_
id str - Offering identifier, provide to import an existing offering.
- offering_
identifier str - Computed Offering ID.
- offering_
support_ strurl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- pc_
managed bool - (Boolean) Offering is managed by Partner Center.
- portal_
approval_ strrecord - (String) The portal's approval record ID.
- portal_
ui_ strurl - (String) The portal UI URL.
- product_
kind str - The kind of the product. Valid values are "solution" and "software"
- provider_
info CmOffering Provider Info Args - Information on the provider of this offering. Nested scheme for provider_info:
- public_
original_ strcrn - (String) The original offering CRN that this publish entry came from.
- publish_
approved bool - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- publish_
public_ strcrn - (String) The crn of the public catalog entry of this offering.
- ratings
Sequence[Cm
Offering Rating Args] - (List) Repository info for offerings. Nested scheme for rating:
- repo_
infos Sequence[CmOffering Repo Info Args] - (List) Repository info for offerings. Nested scheme for repo_info:
- rev str
- (String) Cloudant revision.
- bool
- Denotes sharing including access list availability of an Offering is enabled.
- Sequence[str]
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - bool
- Denotes public availability of an Offering - if share_enabled is true.
- bool
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- short_
description str - Short description in the requested language.
- short_
description_ Mapping[str, str]i18n - (Map) A map of translated strings, by language code.
- supports
Sequence[Cm
Offering Support Args] - (List) Offering Support information. Nested scheme for support:
- Sequence[str]
- List of tags associated with this catalog.
- updated str
- (String) The date and time this catalog was last updated.
- url str
- (String) The url for this specific offering.
- badges List<Property Map>
- (List) A list of badges for this offering. Nested scheme for badges:
- catalog
Id String - Catalog identifier.
- catalog
Name String - (String) The name of the catalog.
- cm
Offering StringId - (String) The id of this provider.
- created String
- (String) The date and time this version was created.
- crn String
- (String) Version's CRN.
- deprecate Boolean
- Specify if this offering should be deprecated.
- deprecate
Pendings List<Property Map> - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- disclaimer String
- (String) A disclaimer for this offering.
- features List<Property Map>
- List of features associated with this offering. Nested scheme for features:
- Boolean
- Determine if this offering should be displayed in the Consumption UI.
- image
Pull List<Property Map>Keys - (List) Image pull keys for this offering. Nested scheme for image_pull_keys:
- keywords List<String>
- List of keywords associated with an offering, typically used to search for it.
- kinds List<Property Map>
- (List) Array of kind. Nested scheme for kinds:
- label String
- Display Name in the requested language.
- label
I18n Map<String> - (Map) A map of translated strings, by language code.
- long
Description String - Long description in the requested language.
- long
Description Map<String>I18n - (Map) A map of translated strings, by language code.
- media List<Property Map>
- A list of media items related to this offering. Nested scheme for media:
- metadata Map<String>
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- offering
Docs StringUrl - URL for additional docs of this offering.
- offering
Icon StringUrl - URL for an icon associated with this offering.
- offering
Id String - Offering identifier, provide to import an existing offering.
- offering
Identifier String - Computed Offering ID.
- offering
Support StringUrl - (String) [deprecated] - Use offering.support instead. URL to be displayed in the Consumption UI for getting support on this offering.
- pc
Managed Boolean - (Boolean) Offering is managed by Partner Center.
- portal
Approval StringRecord - (String) The portal's approval record ID.
- portal
Ui StringUrl - (String) The portal UI URL.
- product
Kind String - The kind of the product. Valid values are "solution" and "software"
- provider
Info Property Map - Information on the provider of this offering. Nested scheme for provider_info:
- public
Original StringCrn - (String) The original offering CRN that this publish entry came from.
- publish
Approved Boolean - (Boolean) Offering has been approved to publish to permitted to IBM or Public Catalog.
- publish
Public StringCrn - (String) The crn of the public catalog entry of this offering.
- ratings List<Property Map>
- (List) Repository info for offerings. Nested scheme for rating:
- repo
Infos List<Property Map> - (List) Repository info for offerings. Nested scheme for repo_info:
- rev String
- (String) Cloudant revision.
- Boolean
- Denotes sharing including access list availability of an Offering is enabled.
- List<String>
- List of account, enterprise, or enterprise group IDs. Enterprise IDs should be prefixed with
-ent-
and enterpries group IDs should be prefixed with-entgrp-
. - Boolean
- Denotes public availability of an Offering - if share_enabled is true.
- Boolean
- Denotes IBM employee availability of an Offering - if share_enabled is true.
- short
Description String - Short description in the requested language.
- short
Description Map<String>I18n - (Map) A map of translated strings, by language code.
- supports List<Property Map>
- (List) Offering Support information. Nested scheme for support:
- List<String>
- List of tags associated with this catalog.
- updated String
- (String) The date and time this catalog was last updated.
- url String
- (String) The url for this specific offering.
Supporting Types
CmOfferingBadge, CmOfferingBadgeArgs
- string
- (String) Authority for the current badge.
- Constraints
List<Cm
Offering Badge Constraint> - (List) An optional set of constraints indicating which versions in an Offering have this particular badge. Nested scheme for constraints:
- Description string
- (String) Feature description.
- Description
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Icon string
- (String) Icon for the current badge.
- Id string
- (String) The id of this provider.
- Label string
- Display Name in the requested language.
- Label
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Learn
More List<CmLinks Offering Badge Learn More Link> - (List) Learn more links for a badge. Nested scheme for learn_more_links:
- Tag string
- (String) Tag for the current badge.
- string
- (String) Authority for the current badge.
- Constraints
[]Cm
Offering Badge Constraint - (List) An optional set of constraints indicating which versions in an Offering have this particular badge. Nested scheme for constraints:
- Description string
- (String) Feature description.
- Description
I18n map[string]string - (Map) A map of translated strings, by language code.
- Icon string
- (String) Icon for the current badge.
- Id string
- (String) The id of this provider.
- Label string
- Display Name in the requested language.
- Label
I18n map[string]string - (Map) A map of translated strings, by language code.
- Learn
More []CmLinks Offering Badge Learn More Link - (List) Learn more links for a badge. Nested scheme for learn_more_links:
- Tag string
- (String) Tag for the current badge.
- String
- (String) Authority for the current badge.
- constraints
List<Cm
Offering Badge Constraint> - (List) An optional set of constraints indicating which versions in an Offering have this particular badge. Nested scheme for constraints:
- description String
- (String) Feature description.
- description
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- icon String
- (String) Icon for the current badge.
- id String
- (String) The id of this provider.
- label String
- Display Name in the requested language.
- label
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- learn
More List<CmLinks Offering Badge Learn More Link> - (List) Learn more links for a badge. Nested scheme for learn_more_links:
- tag String
- (String) Tag for the current badge.
- string
- (String) Authority for the current badge.
- constraints
Cm
Offering Badge Constraint[] - (List) An optional set of constraints indicating which versions in an Offering have this particular badge. Nested scheme for constraints:
- description string
- (String) Feature description.
- description
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- icon string
- (String) Icon for the current badge.
- id string
- (String) The id of this provider.
- label string
- Display Name in the requested language.
- label
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- learn
More CmLinks Offering Badge Learn More Link[] - (List) Learn more links for a badge. Nested scheme for learn_more_links:
- tag string
- (String) Tag for the current badge.
- str
- (String) Authority for the current badge.
- constraints
Sequence[Cm
Offering Badge Constraint] - (List) An optional set of constraints indicating which versions in an Offering have this particular badge. Nested scheme for constraints:
- description str
- (String) Feature description.
- description_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- icon str
- (String) Icon for the current badge.
- id str
- (String) The id of this provider.
- label str
- Display Name in the requested language.
- label_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- learn_
more_ Sequence[Cmlinks Offering Badge Learn More Link] - (List) Learn more links for a badge. Nested scheme for learn_more_links:
- tag str
- (String) Tag for the current badge.
- String
- (String) Authority for the current badge.
- constraints List<Property Map>
- (List) An optional set of constraints indicating which versions in an Offering have this particular badge. Nested scheme for constraints:
- description String
- (String) Feature description.
- description
I18n Map<String> - (Map) A map of translated strings, by language code.
- icon String
- (String) Icon for the current badge.
- id String
- (String) The id of this provider.
- label String
- Display Name in the requested language.
- label
I18n Map<String> - (Map) A map of translated strings, by language code.
- learn
More List<Property Map>Links - (List) Learn more links for a badge. Nested scheme for learn_more_links:
- tag String
- (String) Tag for the current badge.
CmOfferingBadgeConstraint, CmOfferingBadgeConstraintArgs
CmOfferingBadgeLearnMoreLink, CmOfferingBadgeLearnMoreLinkArgs
- First
Party string - (String) First party link.
- Third
Party string - (String) Third party link.
- First
Party string - (String) First party link.
- Third
Party string - (String) Third party link.
- first
Party String - (String) First party link.
- third
Party String - (String) Third party link.
- first
Party string - (String) First party link.
- third
Party string - (String) Third party link.
- first_
party str - (String) First party link.
- third_
party str - (String) Third party link.
- first
Party String - (String) First party link.
- third
Party String - (String) Third party link.
CmOfferingDeprecatePending, CmOfferingDeprecatePendingArgs
- Deprecate
Date string - (String) Date of deprecation.
- Deprecate
State string - (String) Deprecation state.
- Description string
- (String) Feature description.
- Deprecate
Date string - (String) Date of deprecation.
- Deprecate
State string - (String) Deprecation state.
- Description string
- (String) Feature description.
- deprecate
Date String - (String) Date of deprecation.
- deprecate
State String - (String) Deprecation state.
- description String
- (String) Feature description.
- deprecate
Date string - (String) Date of deprecation.
- deprecate
State string - (String) Deprecation state.
- description string
- (String) Feature description.
- deprecate_
date str - (String) Date of deprecation.
- deprecate_
state str - (String) Deprecation state.
- description str
- (String) Feature description.
- deprecate
Date String - (String) Date of deprecation.
- deprecate
State String - (String) Deprecation state.
- description String
- (String) Feature description.
CmOfferingFeature, CmOfferingFeatureArgs
- Description string
- Feature description.
- Description
I18n Dictionary<string, string> - A map of translated strings, by language code.
- Title string
- Heading.
- Title
I18n Dictionary<string, string> - A map of translated strings, by language code.
- Description string
- Feature description.
- Description
I18n map[string]string - A map of translated strings, by language code.
- Title string
- Heading.
- Title
I18n map[string]string - A map of translated strings, by language code.
- description String
- Feature description.
- description
I18n Map<String,String> - A map of translated strings, by language code.
- title String
- Heading.
- title
I18n Map<String,String> - A map of translated strings, by language code.
- description string
- Feature description.
- description
I18n {[key: string]: string} - A map of translated strings, by language code.
- title string
- Heading.
- title
I18n {[key: string]: string} - A map of translated strings, by language code.
- description str
- Feature description.
- description_
i18n Mapping[str, str] - A map of translated strings, by language code.
- title str
- Heading.
- title_
i18n Mapping[str, str] - A map of translated strings, by language code.
- description String
- Feature description.
- description
I18n Map<String> - A map of translated strings, by language code.
- title String
- Heading.
- title
I18n Map<String> - A map of translated strings, by language code.
CmOfferingImagePullKey, CmOfferingImagePullKeyArgs
- Description string
- (String) Feature description.
- Name string
- The programmatic name of this offering.
- Value string
- (Integer) Amount of time to wait in unit 'type'.
- Description string
- (String) Feature description.
- Name string
- The programmatic name of this offering.
- Value string
- (Integer) Amount of time to wait in unit 'type'.
- description String
- (String) Feature description.
- name String
- The programmatic name of this offering.
- value String
- (Integer) Amount of time to wait in unit 'type'.
- description string
- (String) Feature description.
- name string
- The programmatic name of this offering.
- value string
- (Integer) Amount of time to wait in unit 'type'.
- description str
- (String) Feature description.
- name str
- The programmatic name of this offering.
- value str
- (Integer) Amount of time to wait in unit 'type'.
- description String
- (String) Feature description.
- name String
- The programmatic name of this offering.
- value String
- (Integer) Amount of time to wait in unit 'type'.
CmOfferingKind, CmOfferingKindArgs
- Additional
Features List<CmOffering Kind Additional Feature> - (List) list of features associated with this offering. Nested scheme for additional_features:
- Created string
- (String) The date and time this version was created.
- Format
Kind string - (String) content kind, e.g., helm, vm image.
- Id string
- (String) The id of this provider.
- Install
Kind string - Metadata Dictionary<string, string>
- (Map) Map of metadata values for this offering.
- Plans
List<Cm
Offering Kind Plan> - (List) list of plans. Nested scheme for plans:
- List<string>
- List of tags associated with this catalog.
- Target
Kind string - (String) target cloud to install, e.g., iks, open_shift_iks.
- Updated string
- (String) The date and time this catalog was last updated.
- Versions
List<Cm
Offering Kind Version> - (List) list of versions. Nested scheme for versions:
- Additional
Features []CmOffering Kind Additional Feature - (List) list of features associated with this offering. Nested scheme for additional_features:
- Created string
- (String) The date and time this version was created.
- Format
Kind string - (String) content kind, e.g., helm, vm image.
- Id string
- (String) The id of this provider.
- Install
Kind string - Metadata map[string]string
- (Map) Map of metadata values for this offering.
- Plans
[]Cm
Offering Kind Plan - (List) list of plans. Nested scheme for plans:
- []string
- List of tags associated with this catalog.
- Target
Kind string - (String) target cloud to install, e.g., iks, open_shift_iks.
- Updated string
- (String) The date and time this catalog was last updated.
- Versions
[]Cm
Offering Kind Version - (List) list of versions. Nested scheme for versions:
- additional
Features List<CmOffering Kind Additional Feature> - (List) list of features associated with this offering. Nested scheme for additional_features:
- created String
- (String) The date and time this version was created.
- format
Kind String - (String) content kind, e.g., helm, vm image.
- id String
- (String) The id of this provider.
- install
Kind String - metadata Map<String,String>
- (Map) Map of metadata values for this offering.
- plans
List<Cm
Offering Kind Plan> - (List) list of plans. Nested scheme for plans:
- List<String>
- List of tags associated with this catalog.
- target
Kind String - (String) target cloud to install, e.g., iks, open_shift_iks.
- updated String
- (String) The date and time this catalog was last updated.
- versions
List<Cm
Offering Kind Version> - (List) list of versions. Nested scheme for versions:
- additional
Features CmOffering Kind Additional Feature[] - (List) list of features associated with this offering. Nested scheme for additional_features:
- created string
- (String) The date and time this version was created.
- format
Kind string - (String) content kind, e.g., helm, vm image.
- id string
- (String) The id of this provider.
- install
Kind string - metadata {[key: string]: string}
- (Map) Map of metadata values for this offering.
- plans
Cm
Offering Kind Plan[] - (List) list of plans. Nested scheme for plans:
- string[]
- List of tags associated with this catalog.
- target
Kind string - (String) target cloud to install, e.g., iks, open_shift_iks.
- updated string
- (String) The date and time this catalog was last updated.
- versions
Cm
Offering Kind Version[] - (List) list of versions. Nested scheme for versions:
- additional_
features Sequence[CmOffering Kind Additional Feature] - (List) list of features associated with this offering. Nested scheme for additional_features:
- created str
- (String) The date and time this version was created.
- format_
kind str - (String) content kind, e.g., helm, vm image.
- id str
- (String) The id of this provider.
- install_
kind str - metadata Mapping[str, str]
- (Map) Map of metadata values for this offering.
- plans
Sequence[Cm
Offering Kind Plan] - (List) list of plans. Nested scheme for plans:
- Sequence[str]
- List of tags associated with this catalog.
- target_
kind str - (String) target cloud to install, e.g., iks, open_shift_iks.
- updated str
- (String) The date and time this catalog was last updated.
- versions
Sequence[Cm
Offering Kind Version] - (List) list of versions. Nested scheme for versions:
- additional
Features List<Property Map> - (List) list of features associated with this offering. Nested scheme for additional_features:
- created String
- (String) The date and time this version was created.
- format
Kind String - (String) content kind, e.g., helm, vm image.
- id String
- (String) The id of this provider.
- install
Kind String - metadata Map<String>
- (Map) Map of metadata values for this offering.
- plans List<Property Map>
- (List) list of plans. Nested scheme for plans:
- List<String>
- List of tags associated with this catalog.
- target
Kind String - (String) target cloud to install, e.g., iks, open_shift_iks.
- updated String
- (String) The date and time this catalog was last updated.
- versions List<Property Map>
- (List) list of versions. Nested scheme for versions:
CmOfferingKindAdditionalFeature, CmOfferingKindAdditionalFeatureArgs
- Description string
- (String) Feature description.
- Description
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Title string
- (String) Heading.
- Title
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Description string
- (String) Feature description.
- Description
I18n map[string]string - (Map) A map of translated strings, by language code.
- Title string
- (String) Heading.
- Title
I18n map[string]string - (Map) A map of translated strings, by language code.
- description String
- (String) Feature description.
- description
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- title String
- (String) Heading.
- title
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- description string
- (String) Feature description.
- description
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- title string
- (String) Heading.
- title
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- description str
- (String) Feature description.
- description_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- title str
- (String) Heading.
- title_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- description String
- (String) Feature description.
- description
I18n Map<String> - (Map) A map of translated strings, by language code.
- title String
- (String) Heading.
- title
I18n Map<String> - (Map) A map of translated strings, by language code.
CmOfferingKindPlan, CmOfferingKindPlanArgs
- Additional
Features List<CmOffering Kind Plan Additional Feature> - (List) list of features associated with this offering. Nested scheme for additional_features:
- Created string
- (String) The date and time this version was created.
- Deployments
List<Cm
Offering Kind Plan Deployment> - (List) list of deployments. Nested scheme for deployments:
- Id string
- (String) The id of this provider.
- Label string
- Display Name in the requested language.
- Long
Description string - Long description in the requested language.
- Metadata Dictionary<string, string>
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Short
Description string - Short description in the requested language.
- List<string>
- List of tags associated with this catalog.
- Updated string
- (String) The date and time this catalog was last updated.
- Additional
Features []CmOffering Kind Plan Additional Feature - (List) list of features associated with this offering. Nested scheme for additional_features:
- Created string
- (String) The date and time this version was created.
- Deployments
[]Cm
Offering Kind Plan Deployment - (List) list of deployments. Nested scheme for deployments:
- Id string
- (String) The id of this provider.
- Label string
- Display Name in the requested language.
- Long
Description string - Long description in the requested language.
- Metadata map[string]string
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Short
Description string - Short description in the requested language.
- []string
- List of tags associated with this catalog.
- Updated string
- (String) The date and time this catalog was last updated.
- additional
Features List<CmOffering Kind Plan Additional Feature> - (List) list of features associated with this offering. Nested scheme for additional_features:
- created String
- (String) The date and time this version was created.
- deployments
List<Cm
Offering Kind Plan Deployment> - (List) list of deployments. Nested scheme for deployments:
- id String
- (String) The id of this provider.
- label String
- Display Name in the requested language.
- long
Description String - Long description in the requested language.
- metadata Map<String,String>
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- short
Description String - Short description in the requested language.
- List<String>
- List of tags associated with this catalog.
- updated String
- (String) The date and time this catalog was last updated.
- additional
Features CmOffering Kind Plan Additional Feature[] - (List) list of features associated with this offering. Nested scheme for additional_features:
- created string
- (String) The date and time this version was created.
- deployments
Cm
Offering Kind Plan Deployment[] - (List) list of deployments. Nested scheme for deployments:
- id string
- (String) The id of this provider.
- label string
- Display Name in the requested language.
- long
Description string - Long description in the requested language.
- metadata {[key: string]: string}
- (Map) Map of metadata values for this offering.
- name string
- The programmatic name of this offering.
- short
Description string - Short description in the requested language.
- string[]
- List of tags associated with this catalog.
- updated string
- (String) The date and time this catalog was last updated.
- additional_
features Sequence[CmOffering Kind Plan Additional Feature] - (List) list of features associated with this offering. Nested scheme for additional_features:
- created str
- (String) The date and time this version was created.
- deployments
Sequence[Cm
Offering Kind Plan Deployment] - (List) list of deployments. Nested scheme for deployments:
- id str
- (String) The id of this provider.
- label str
- Display Name in the requested language.
- long_
description str - Long description in the requested language.
- metadata Mapping[str, str]
- (Map) Map of metadata values for this offering.
- name str
- The programmatic name of this offering.
- short_
description str - Short description in the requested language.
- Sequence[str]
- List of tags associated with this catalog.
- updated str
- (String) The date and time this catalog was last updated.
- additional
Features List<Property Map> - (List) list of features associated with this offering. Nested scheme for additional_features:
- created String
- (String) The date and time this version was created.
- deployments List<Property Map>
- (List) list of deployments. Nested scheme for deployments:
- id String
- (String) The id of this provider.
- label String
- Display Name in the requested language.
- long
Description String - Long description in the requested language.
- metadata Map<String>
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- short
Description String - Short description in the requested language.
- List<String>
- List of tags associated with this catalog.
- updated String
- (String) The date and time this catalog was last updated.
CmOfferingKindPlanAdditionalFeature, CmOfferingKindPlanAdditionalFeatureArgs
- Description string
- (String) Feature description.
- Description
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Title string
- (String) Heading.
- Title
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Description string
- (String) Feature description.
- Description
I18n map[string]string - (Map) A map of translated strings, by language code.
- Title string
- (String) Heading.
- Title
I18n map[string]string - (Map) A map of translated strings, by language code.
- description String
- (String) Feature description.
- description
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- title String
- (String) Heading.
- title
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- description string
- (String) Feature description.
- description
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- title string
- (String) Heading.
- title
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- description str
- (String) Feature description.
- description_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- title str
- (String) Heading.
- title_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- description String
- (String) Feature description.
- description
I18n Map<String> - (Map) A map of translated strings, by language code.
- title String
- (String) Heading.
- title
I18n Map<String> - (Map) A map of translated strings, by language code.
CmOfferingKindPlanDeployment, CmOfferingKindPlanDeploymentArgs
- Created string
- (String) The date and time this version was created.
- Id string
- (String) The id of this provider.
- Label string
- Display Name in the requested language.
- Long
Description string - Long description in the requested language.
- Metadata Dictionary<string, string>
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Short
Description string - Short description in the requested language.
- List<string>
- List of tags associated with this catalog.
- Updated string
- (String) The date and time this catalog was last updated.
- Created string
- (String) The date and time this version was created.
- Id string
- (String) The id of this provider.
- Label string
- Display Name in the requested language.
- Long
Description string - Long description in the requested language.
- Metadata map[string]string
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Short
Description string - Short description in the requested language.
- []string
- List of tags associated with this catalog.
- Updated string
- (String) The date and time this catalog was last updated.
- created String
- (String) The date and time this version was created.
- id String
- (String) The id of this provider.
- label String
- Display Name in the requested language.
- long
Description String - Long description in the requested language.
- metadata Map<String,String>
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- short
Description String - Short description in the requested language.
- List<String>
- List of tags associated with this catalog.
- updated String
- (String) The date and time this catalog was last updated.
- created string
- (String) The date and time this version was created.
- id string
- (String) The id of this provider.
- label string
- Display Name in the requested language.
- long
Description string - Long description in the requested language.
- metadata {[key: string]: string}
- (Map) Map of metadata values for this offering.
- name string
- The programmatic name of this offering.
- short
Description string - Short description in the requested language.
- string[]
- List of tags associated with this catalog.
- updated string
- (String) The date and time this catalog was last updated.
- created str
- (String) The date and time this version was created.
- id str
- (String) The id of this provider.
- label str
- Display Name in the requested language.
- long_
description str - Long description in the requested language.
- metadata Mapping[str, str]
- (Map) Map of metadata values for this offering.
- name str
- The programmatic name of this offering.
- short_
description str - Short description in the requested language.
- Sequence[str]
- List of tags associated with this catalog.
- updated str
- (String) The date and time this catalog was last updated.
- created String
- (String) The date and time this version was created.
- id String
- (String) The id of this provider.
- label String
- Display Name in the requested language.
- long
Description String - Long description in the requested language.
- metadata Map<String>
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- short
Description String - Short description in the requested language.
- List<String>
- List of tags associated with this catalog.
- updated String
- (String) The date and time this catalog was last updated.
CmOfferingKindVersion, CmOfferingKindVersionArgs
- Catalog
Id string - Catalog identifier.
- Configurations
List<Cm
Offering Kind Version Configuration> - (List) List of user solicited overrides. Nested scheme for configuration:
- Created string
- (String) The date and time this version was created.
- Crn string
- (String) Version's CRN.
- Deprecate
Pendings List<CmOffering Kind Version Deprecate Pending> - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- Deprecated bool
- (Boolean) read only field, indicating if this version is deprecated.
- Entitlements
List<Cm
Offering Kind Version Entitlement> - (List) Entitlement license info. Nested scheme for entitlement:
- Flavors
List<Cm
Offering Kind Version Flavor> - (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- Iam
Permissions List<CmOffering Kind Version Iam Permission> - (List) List of IAM permissions that are required to consume this version. Nested scheme for iam_permissions:
- Id string
- (String) The id of this provider.
- Image
Manifest stringUrl - (String) If set, denotes a url to a YAML file with list of container images used by this version.
- Image
Pull stringKey Name - (String) ID of the image pull key to use from Offering.ImagePullKeys.
- Installs
List<Cm
Offering Kind Version Install> - (List) Script information. Nested scheme for install:
- Is
Consumable bool - (Boolean) Is the version able to be shared.
- Kind
Id string - (String) Kind ID.
- Licenses
List<Cm
Offering Kind Version License> - (List) List of licenses the product was built with. Nested scheme for licenses:
- Long
Description string - Long description in the requested language.
- Long
Description Dictionary<string, string>I18n - (Map) A map of translated strings, by language code.
- Metadatas
List<Cm
Offering Kind Version Metadata> - (Map) Map of metadata values for this offering.
- Offering
Id string - Offering identifier, provide to import an existing offering.
- Outputs
List<Cm
Offering Kind Version Output> - (List) List of output values for this version. Nested scheme for outputs:
- Package
Version string - (String) Version of the package used to create this version.
- Pre
Installs List<CmOffering Kind Version Pre Install> - (List) Optional pre-install instructions. Nested scheme for pre_install:
- Repo
Url string - (String) Content's repo URL.
- Required
Resources List<CmOffering Kind Version Required Resource> - (List) Resource requirments for installation. Nested scheme for required_resources:
- Rev string
- (String) Cloudant revision.
- Sha string
- (String) SHA256 fingerprint of image.
- Single
Instance bool - (Boolean) Denotes if single instance can be deployed to a given cluster.
- Solution
Infos List<CmOffering Kind Version Solution Info> - (List) Version Solution Information. Only supported for Product kind Solution. Nested scheme for solution_info:
- Source
Url string - (String) Content's source URL (e.g git repo).
- States
List<Cm
Offering Kind Version State> - (String) Current validation state - , in_progress, valid, invalid, expired.
- List<string>
- List of tags associated with this catalog.
- Tgz
Url string - (String) File used to on-board this version.
- Updated string
- (String) The date and time this catalog was last updated.
- Validations
List<Cm
Offering Kind Version Validation> - (List) Validation response. Nested scheme for validation:
- Version string
- (String) Version of content type.
- Version
Locator string - (String) A dotted value of
catalogID
.versionID
. - Whitelisted
Accounts List<string> - (List) Whitelisted accounts for version.
- Catalog
Id string - Catalog identifier.
- Configurations
[]Cm
Offering Kind Version Configuration - (List) List of user solicited overrides. Nested scheme for configuration:
- Created string
- (String) The date and time this version was created.
- Crn string
- (String) Version's CRN.
- Deprecate
Pendings []CmOffering Kind Version Deprecate Pending - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- Deprecated bool
- (Boolean) read only field, indicating if this version is deprecated.
- Entitlements
[]Cm
Offering Kind Version Entitlement - (List) Entitlement license info. Nested scheme for entitlement:
- Flavors
[]Cm
Offering Kind Version Flavor - (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- Iam
Permissions []CmOffering Kind Version Iam Permission - (List) List of IAM permissions that are required to consume this version. Nested scheme for iam_permissions:
- Id string
- (String) The id of this provider.
- Image
Manifest stringUrl - (String) If set, denotes a url to a YAML file with list of container images used by this version.
- Image
Pull stringKey Name - (String) ID of the image pull key to use from Offering.ImagePullKeys.
- Installs
[]Cm
Offering Kind Version Install - (List) Script information. Nested scheme for install:
- Is
Consumable bool - (Boolean) Is the version able to be shared.
- Kind
Id string - (String) Kind ID.
- Licenses
[]Cm
Offering Kind Version License - (List) List of licenses the product was built with. Nested scheme for licenses:
- Long
Description string - Long description in the requested language.
- Long
Description map[string]stringI18n - (Map) A map of translated strings, by language code.
- Metadatas
[]Cm
Offering Kind Version Metadata - (Map) Map of metadata values for this offering.
- Offering
Id string - Offering identifier, provide to import an existing offering.
- Outputs
[]Cm
Offering Kind Version Output Type - (List) List of output values for this version. Nested scheme for outputs:
- Package
Version string - (String) Version of the package used to create this version.
- Pre
Installs []CmOffering Kind Version Pre Install - (List) Optional pre-install instructions. Nested scheme for pre_install:
- Repo
Url string - (String) Content's repo URL.
- Required
Resources []CmOffering Kind Version Required Resource - (List) Resource requirments for installation. Nested scheme for required_resources:
- Rev string
- (String) Cloudant revision.
- Sha string
- (String) SHA256 fingerprint of image.
- Single
Instance bool - (Boolean) Denotes if single instance can be deployed to a given cluster.
- Solution
Infos []CmOffering Kind Version Solution Info - (List) Version Solution Information. Only supported for Product kind Solution. Nested scheme for solution_info:
- Source
Url string - (String) Content's source URL (e.g git repo).
- States
[]Cm
Offering Kind Version State - (String) Current validation state - , in_progress, valid, invalid, expired.
- []string
- List of tags associated with this catalog.
- Tgz
Url string - (String) File used to on-board this version.
- Updated string
- (String) The date and time this catalog was last updated.
- Validations
[]Cm
Offering Kind Version Validation - (List) Validation response. Nested scheme for validation:
- Version string
- (String) Version of content type.
- Version
Locator string - (String) A dotted value of
catalogID
.versionID
. - Whitelisted
Accounts []string - (List) Whitelisted accounts for version.
- catalog
Id String - Catalog identifier.
- configurations
List<Cm
Offering Kind Version Configuration> - (List) List of user solicited overrides. Nested scheme for configuration:
- created String
- (String) The date and time this version was created.
- crn String
- (String) Version's CRN.
- deprecate
Pendings List<CmOffering Kind Version Deprecate Pending> - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- deprecated Boolean
- (Boolean) read only field, indicating if this version is deprecated.
- entitlements
List<Cm
Offering Kind Version Entitlement> - (List) Entitlement license info. Nested scheme for entitlement:
- flavors
List<Cm
Offering Kind Version Flavor> - (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- iam
Permissions List<CmOffering Kind Version Iam Permission> - (List) List of IAM permissions that are required to consume this version. Nested scheme for iam_permissions:
- id String
- (String) The id of this provider.
- image
Manifest StringUrl - (String) If set, denotes a url to a YAML file with list of container images used by this version.
- image
Pull StringKey Name - (String) ID of the image pull key to use from Offering.ImagePullKeys.
- installs
List<Cm
Offering Kind Version Install> - (List) Script information. Nested scheme for install:
- is
Consumable Boolean - (Boolean) Is the version able to be shared.
- kind
Id String - (String) Kind ID.
- licenses
List<Cm
Offering Kind Version License> - (List) List of licenses the product was built with. Nested scheme for licenses:
- long
Description String - Long description in the requested language.
- long
Description Map<String,String>I18n - (Map) A map of translated strings, by language code.
- metadatas
List<Cm
Offering Kind Version Metadata> - (Map) Map of metadata values for this offering.
- offering
Id String - Offering identifier, provide to import an existing offering.
- outputs
List<Cm
Offering Kind Version Output> - (List) List of output values for this version. Nested scheme for outputs:
- package
Version String - (String) Version of the package used to create this version.
- pre
Installs List<CmOffering Kind Version Pre Install> - (List) Optional pre-install instructions. Nested scheme for pre_install:
- repo
Url String - (String) Content's repo URL.
- required
Resources List<CmOffering Kind Version Required Resource> - (List) Resource requirments for installation. Nested scheme for required_resources:
- rev String
- (String) Cloudant revision.
- sha String
- (String) SHA256 fingerprint of image.
- single
Instance Boolean - (Boolean) Denotes if single instance can be deployed to a given cluster.
- solution
Infos List<CmOffering Kind Version Solution Info> - (List) Version Solution Information. Only supported for Product kind Solution. Nested scheme for solution_info:
- source
Url String - (String) Content's source URL (e.g git repo).
- states
List<Cm
Offering Kind Version State> - (String) Current validation state - , in_progress, valid, invalid, expired.
- List<String>
- List of tags associated with this catalog.
- tgz
Url String - (String) File used to on-board this version.
- updated String
- (String) The date and time this catalog was last updated.
- validations
List<Cm
Offering Kind Version Validation> - (List) Validation response. Nested scheme for validation:
- version String
- (String) Version of content type.
- version
Locator String - (String) A dotted value of
catalogID
.versionID
. - whitelisted
Accounts List<String> - (List) Whitelisted accounts for version.
- catalog
Id string - Catalog identifier.
- configurations
Cm
Offering Kind Version Configuration[] - (List) List of user solicited overrides. Nested scheme for configuration:
- created string
- (String) The date and time this version was created.
- crn string
- (String) Version's CRN.
- deprecate
Pendings CmOffering Kind Version Deprecate Pending[] - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- deprecated boolean
- (Boolean) read only field, indicating if this version is deprecated.
- entitlements
Cm
Offering Kind Version Entitlement[] - (List) Entitlement license info. Nested scheme for entitlement:
- flavors
Cm
Offering Kind Version Flavor[] - (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- iam
Permissions CmOffering Kind Version Iam Permission[] - (List) List of IAM permissions that are required to consume this version. Nested scheme for iam_permissions:
- id string
- (String) The id of this provider.
- image
Manifest stringUrl - (String) If set, denotes a url to a YAML file with list of container images used by this version.
- image
Pull stringKey Name - (String) ID of the image pull key to use from Offering.ImagePullKeys.
- installs
Cm
Offering Kind Version Install[] - (List) Script information. Nested scheme for install:
- is
Consumable boolean - (Boolean) Is the version able to be shared.
- kind
Id string - (String) Kind ID.
- licenses
Cm
Offering Kind Version License[] - (List) List of licenses the product was built with. Nested scheme for licenses:
- long
Description string - Long description in the requested language.
- long
Description {[key: string]: string}I18n - (Map) A map of translated strings, by language code.
- metadatas
Cm
Offering Kind Version Metadata[] - (Map) Map of metadata values for this offering.
- offering
Id string - Offering identifier, provide to import an existing offering.
- outputs
Cm
Offering Kind Version Output[] - (List) List of output values for this version. Nested scheme for outputs:
- package
Version string - (String) Version of the package used to create this version.
- pre
Installs CmOffering Kind Version Pre Install[] - (List) Optional pre-install instructions. Nested scheme for pre_install:
- repo
Url string - (String) Content's repo URL.
- required
Resources CmOffering Kind Version Required Resource[] - (List) Resource requirments for installation. Nested scheme for required_resources:
- rev string
- (String) Cloudant revision.
- sha string
- (String) SHA256 fingerprint of image.
- single
Instance boolean - (Boolean) Denotes if single instance can be deployed to a given cluster.
- solution
Infos CmOffering Kind Version Solution Info[] - (List) Version Solution Information. Only supported for Product kind Solution. Nested scheme for solution_info:
- source
Url string - (String) Content's source URL (e.g git repo).
- states
Cm
Offering Kind Version State[] - (String) Current validation state - , in_progress, valid, invalid, expired.
- string[]
- List of tags associated with this catalog.
- tgz
Url string - (String) File used to on-board this version.
- updated string
- (String) The date and time this catalog was last updated.
- validations
Cm
Offering Kind Version Validation[] - (List) Validation response. Nested scheme for validation:
- version string
- (String) Version of content type.
- version
Locator string - (String) A dotted value of
catalogID
.versionID
. - whitelisted
Accounts string[] - (List) Whitelisted accounts for version.
- catalog_
id str - Catalog identifier.
- configurations
Sequence[Cm
Offering Kind Version Configuration] - (List) List of user solicited overrides. Nested scheme for configuration:
- created str
- (String) The date and time this version was created.
- crn str
- (String) Version's CRN.
- deprecate_
pendings Sequence[CmOffering Kind Version Deprecate Pending] - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- deprecated bool
- (Boolean) read only field, indicating if this version is deprecated.
- entitlements
Sequence[Cm
Offering Kind Version Entitlement] - (List) Entitlement license info. Nested scheme for entitlement:
- flavors
Sequence[Cm
Offering Kind Version Flavor] - (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- iam_
permissions Sequence[CmOffering Kind Version Iam Permission] - (List) List of IAM permissions that are required to consume this version. Nested scheme for iam_permissions:
- id str
- (String) The id of this provider.
- image_
manifest_ strurl - (String) If set, denotes a url to a YAML file with list of container images used by this version.
- image_
pull_ strkey_ name - (String) ID of the image pull key to use from Offering.ImagePullKeys.
- installs
Sequence[Cm
Offering Kind Version Install] - (List) Script information. Nested scheme for install:
- is_
consumable bool - (Boolean) Is the version able to be shared.
- kind_
id str - (String) Kind ID.
- licenses
Sequence[Cm
Offering Kind Version License] - (List) List of licenses the product was built with. Nested scheme for licenses:
- long_
description str - Long description in the requested language.
- long_
description_ Mapping[str, str]i18n - (Map) A map of translated strings, by language code.
- metadatas
Sequence[Cm
Offering Kind Version Metadata] - (Map) Map of metadata values for this offering.
- offering_
id str - Offering identifier, provide to import an existing offering.
- outputs
Sequence[Cm
Offering Kind Version Output] - (List) List of output values for this version. Nested scheme for outputs:
- package_
version str - (String) Version of the package used to create this version.
- pre_
installs Sequence[CmOffering Kind Version Pre Install] - (List) Optional pre-install instructions. Nested scheme for pre_install:
- repo_
url str - (String) Content's repo URL.
- required_
resources Sequence[CmOffering Kind Version Required Resource] - (List) Resource requirments for installation. Nested scheme for required_resources:
- rev str
- (String) Cloudant revision.
- sha str
- (String) SHA256 fingerprint of image.
- single_
instance bool - (Boolean) Denotes if single instance can be deployed to a given cluster.
- solution_
infos Sequence[CmOffering Kind Version Solution Info] - (List) Version Solution Information. Only supported for Product kind Solution. Nested scheme for solution_info:
- source_
url str - (String) Content's source URL (e.g git repo).
- states
Sequence[Cm
Offering Kind Version State] - (String) Current validation state - , in_progress, valid, invalid, expired.
- Sequence[str]
- List of tags associated with this catalog.
- tgz_
url str - (String) File used to on-board this version.
- updated str
- (String) The date and time this catalog was last updated.
- validations
Sequence[Cm
Offering Kind Version Validation] - (List) Validation response. Nested scheme for validation:
- version str
- (String) Version of content type.
- version_
locator str - (String) A dotted value of
catalogID
.versionID
. - whitelisted_
accounts Sequence[str] - (List) Whitelisted accounts for version.
- catalog
Id String - Catalog identifier.
- configurations List<Property Map>
- (List) List of user solicited overrides. Nested scheme for configuration:
- created String
- (String) The date and time this version was created.
- crn String
- (String) Version's CRN.
- deprecate
Pendings List<Property Map> - (List) Deprecation information for an Offering. Nested scheme for deprecate_pending:
- deprecated Boolean
- (Boolean) read only field, indicating if this version is deprecated.
- entitlements List<Property Map>
- (List) Entitlement license info. Nested scheme for entitlement:
- flavors List<Property Map>
- (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- iam
Permissions List<Property Map> - (List) List of IAM permissions that are required to consume this version. Nested scheme for iam_permissions:
- id String
- (String) The id of this provider.
- image
Manifest StringUrl - (String) If set, denotes a url to a YAML file with list of container images used by this version.
- image
Pull StringKey Name - (String) ID of the image pull key to use from Offering.ImagePullKeys.
- installs List<Property Map>
- (List) Script information. Nested scheme for install:
- is
Consumable Boolean - (Boolean) Is the version able to be shared.
- kind
Id String - (String) Kind ID.
- licenses List<Property Map>
- (List) List of licenses the product was built with. Nested scheme for licenses:
- long
Description String - Long description in the requested language.
- long
Description Map<String>I18n - (Map) A map of translated strings, by language code.
- metadatas List<Property Map>
- (Map) Map of metadata values for this offering.
- offering
Id String - Offering identifier, provide to import an existing offering.
- outputs List<Property Map>
- (List) List of output values for this version. Nested scheme for outputs:
- package
Version String - (String) Version of the package used to create this version.
- pre
Installs List<Property Map> - (List) Optional pre-install instructions. Nested scheme for pre_install:
- repo
Url String - (String) Content's repo URL.
- required
Resources List<Property Map> - (List) Resource requirments for installation. Nested scheme for required_resources:
- rev String
- (String) Cloudant revision.
- sha String
- (String) SHA256 fingerprint of image.
- single
Instance Boolean - (Boolean) Denotes if single instance can be deployed to a given cluster.
- solution
Infos List<Property Map> - (List) Version Solution Information. Only supported for Product kind Solution. Nested scheme for solution_info:
- source
Url String - (String) Content's source URL (e.g git repo).
- states List<Property Map>
- (String) Current validation state - , in_progress, valid, invalid, expired.
- List<String>
- List of tags associated with this catalog.
- tgz
Url String - (String) File used to on-board this version.
- updated String
- (String) The date and time this catalog was last updated.
- validations List<Property Map>
- (List) Validation response. Nested scheme for validation:
- version String
- (String) Version of content type.
- version
Locator String - (String) A dotted value of
catalogID
.versionID
. - whitelisted
Accounts List<String> - (List) Whitelisted accounts for version.
CmOfferingKindVersionConfiguration, CmOfferingKindVersionConfigurationArgs
- Custom
Configs List<CmOffering Kind Version Configuration Custom Config> - (List) Render type. Nested scheme for custom_config:
- Default
Value string - (Map) The default value. To use a secret when the type is password, specify a JSON encoded value of $ref:#/components/schemas/SecretInstance, prefixed with
cmsm_v1:
. - Description string
- (String) Feature description.
- Display
Name string - (String) Display name for configuration type.
- bool
- Determine if this offering should be displayed in the Consumption UI.
- Key string
- (String) Output key.
- Options
List<Immutable
Dictionary<string, string>> - (List) List of options of type.
- Required bool
- (Boolean) Is key required to install.
- Type string
- (String) Valid values are hour or day.
- Type
Metadata string - (String) The original type, as found in the source being onboarded.
- Value
Constraint string - (String) Constraint associated with value, e.g., for string type - regx:[a-z].
- Custom
Configs []CmOffering Kind Version Configuration Custom Config - (List) Render type. Nested scheme for custom_config:
- Default
Value string - (Map) The default value. To use a secret when the type is password, specify a JSON encoded value of $ref:#/components/schemas/SecretInstance, prefixed with
cmsm_v1:
. - Description string
- (String) Feature description.
- Display
Name string - (String) Display name for configuration type.
- bool
- Determine if this offering should be displayed in the Consumption UI.
- Key string
- (String) Output key.
- Options []map[string]string
- (List) List of options of type.
- Required bool
- (Boolean) Is key required to install.
- Type string
- (String) Valid values are hour or day.
- Type
Metadata string - (String) The original type, as found in the source being onboarded.
- Value
Constraint string - (String) Constraint associated with value, e.g., for string type - regx:[a-z].
- custom
Configs List<CmOffering Kind Version Configuration Custom Config> - (List) Render type. Nested scheme for custom_config:
- default
Value String - (Map) The default value. To use a secret when the type is password, specify a JSON encoded value of $ref:#/components/schemas/SecretInstance, prefixed with
cmsm_v1:
. - description String
- (String) Feature description.
- display
Name String - (String) Display name for configuration type.
- Boolean
- Determine if this offering should be displayed in the Consumption UI.
- key String
- (String) Output key.
- options List<Map<String,String>>
- (List) List of options of type.
- required Boolean
- (Boolean) Is key required to install.
- type String
- (String) Valid values are hour or day.
- type
Metadata String - (String) The original type, as found in the source being onboarded.
- value
Constraint String - (String) Constraint associated with value, e.g., for string type - regx:[a-z].
- custom
Configs CmOffering Kind Version Configuration Custom Config[] - (List) Render type. Nested scheme for custom_config:
- default
Value string - (Map) The default value. To use a secret when the type is password, specify a JSON encoded value of $ref:#/components/schemas/SecretInstance, prefixed with
cmsm_v1:
. - description string
- (String) Feature description.
- display
Name string - (String) Display name for configuration type.
- boolean
- Determine if this offering should be displayed in the Consumption UI.
- key string
- (String) Output key.
- options {[key: string]: string}[]
- (List) List of options of type.
- required boolean
- (Boolean) Is key required to install.
- type string
- (String) Valid values are hour or day.
- type
Metadata string - (String) The original type, as found in the source being onboarded.
- value
Constraint string - (String) Constraint associated with value, e.g., for string type - regx:[a-z].
- custom_
configs Sequence[CmOffering Kind Version Configuration Custom Config] - (List) Render type. Nested scheme for custom_config:
- default_
value str - (Map) The default value. To use a secret when the type is password, specify a JSON encoded value of $ref:#/components/schemas/SecretInstance, prefixed with
cmsm_v1:
. - description str
- (String) Feature description.
- display_
name str - (String) Display name for configuration type.
- bool
- Determine if this offering should be displayed in the Consumption UI.
- key str
- (String) Output key.
- options Sequence[Mapping[str, str]]
- (List) List of options of type.
- required bool
- (Boolean) Is key required to install.
- type str
- (String) Valid values are hour or day.
- type_
metadata str - (String) The original type, as found in the source being onboarded.
- value_
constraint str - (String) Constraint associated with value, e.g., for string type - regx:[a-z].
- custom
Configs List<Property Map> - (List) Render type. Nested scheme for custom_config:
- default
Value String - (Map) The default value. To use a secret when the type is password, specify a JSON encoded value of $ref:#/components/schemas/SecretInstance, prefixed with
cmsm_v1:
. - description String
- (String) Feature description.
- display
Name String - (String) Display name for configuration type.
- Boolean
- Determine if this offering should be displayed in the Consumption UI.
- key String
- (String) Output key.
- options List<Map<String>>
- (List) List of options of type.
- required Boolean
- (Boolean) Is key required to install.
- type String
- (String) Valid values are hour or day.
- type
Metadata String - (String) The original type, as found in the source being onboarded.
- value
Constraint String - (String) Constraint associated with value, e.g., for string type - regx:[a-z].
CmOfferingKindVersionConfigurationCustomConfig, CmOfferingKindVersionConfigurationCustomConfigArgs
- Associations
List<Cm
Offering Kind Version Configuration Custom Config Association> - (List) List of parameters that are associated with this configuration. Nested scheme for associations:
- Config
Constraints Dictionary<string, string> - (Map) Map of constraint parameters that will be passed to the custom widget.
- Grouping string
- (String) Determines where this configuration type is rendered (3 sections today - Target, Resource, and Deployment).
- Grouping
Index double - (Integer) Determines the order that this configuration item shows in that particular grouping.
- Original
Grouping string - (String) Original grouping type for this configuration (3 types - Target, Resource, and Deployment).
- Type string
- (String) Valid values are hour or day.
- Associations
[]Cm
Offering Kind Version Configuration Custom Config Association - (List) List of parameters that are associated with this configuration. Nested scheme for associations:
- Config
Constraints map[string]string - (Map) Map of constraint parameters that will be passed to the custom widget.
- Grouping string
- (String) Determines where this configuration type is rendered (3 sections today - Target, Resource, and Deployment).
- Grouping
Index float64 - (Integer) Determines the order that this configuration item shows in that particular grouping.
- Original
Grouping string - (String) Original grouping type for this configuration (3 types - Target, Resource, and Deployment).
- Type string
- (String) Valid values are hour or day.
- associations
List<Cm
Offering Kind Version Configuration Custom Config Association> - (List) List of parameters that are associated with this configuration. Nested scheme for associations:
- config
Constraints Map<String,String> - (Map) Map of constraint parameters that will be passed to the custom widget.
- grouping String
- (String) Determines where this configuration type is rendered (3 sections today - Target, Resource, and Deployment).
- grouping
Index Double - (Integer) Determines the order that this configuration item shows in that particular grouping.
- original
Grouping String - (String) Original grouping type for this configuration (3 types - Target, Resource, and Deployment).
- type String
- (String) Valid values are hour or day.
- associations
Cm
Offering Kind Version Configuration Custom Config Association[] - (List) List of parameters that are associated with this configuration. Nested scheme for associations:
- config
Constraints {[key: string]: string} - (Map) Map of constraint parameters that will be passed to the custom widget.
- grouping string
- (String) Determines where this configuration type is rendered (3 sections today - Target, Resource, and Deployment).
- grouping
Index number - (Integer) Determines the order that this configuration item shows in that particular grouping.
- original
Grouping string - (String) Original grouping type for this configuration (3 types - Target, Resource, and Deployment).
- type string
- (String) Valid values are hour or day.
- associations
Sequence[Cm
Offering Kind Version Configuration Custom Config Association] - (List) List of parameters that are associated with this configuration. Nested scheme for associations:
- config_
constraints Mapping[str, str] - (Map) Map of constraint parameters that will be passed to the custom widget.
- grouping str
- (String) Determines where this configuration type is rendered (3 sections today - Target, Resource, and Deployment).
- grouping_
index float - (Integer) Determines the order that this configuration item shows in that particular grouping.
- original_
grouping str - (String) Original grouping type for this configuration (3 types - Target, Resource, and Deployment).
- type str
- (String) Valid values are hour or day.
- associations List<Property Map>
- (List) List of parameters that are associated with this configuration. Nested scheme for associations:
- config
Constraints Map<String> - (Map) Map of constraint parameters that will be passed to the custom widget.
- grouping String
- (String) Determines where this configuration type is rendered (3 sections today - Target, Resource, and Deployment).
- grouping
Index Number - (Integer) Determines the order that this configuration item shows in that particular grouping.
- original
Grouping String - (String) Original grouping type for this configuration (3 types - Target, Resource, and Deployment).
- type String
- (String) Valid values are hour or day.
CmOfferingKindVersionConfigurationCustomConfigAssociation, CmOfferingKindVersionConfigurationCustomConfigAssociationArgs
- Parameters
List<Cm
Offering Kind Version Configuration Custom Config Association Parameter> - (List) Parameters for this association. Nested scheme for parameters:
- Parameters
[]Cm
Offering Kind Version Configuration Custom Config Association Parameter - (List) Parameters for this association. Nested scheme for parameters:
- parameters
List<Cm
Offering Kind Version Configuration Custom Config Association Parameter> - (List) Parameters for this association. Nested scheme for parameters:
- parameters
Cm
Offering Kind Version Configuration Custom Config Association Parameter[] - (List) Parameters for this association. Nested scheme for parameters:
- parameters
Sequence[Cm
Offering Kind Version Configuration Custom Config Association Parameter] - (List) Parameters for this association. Nested scheme for parameters:
- parameters List<Property Map>
- (List) Parameters for this association. Nested scheme for parameters:
CmOfferingKindVersionConfigurationCustomConfigAssociationParameter, CmOfferingKindVersionConfigurationCustomConfigAssociationParameterArgs
- Name string
- The programmatic name of this offering.
- Options
Refresh bool - (Boolean) Refresh options.
- Name string
- The programmatic name of this offering.
- Options
Refresh bool - (Boolean) Refresh options.
- name String
- The programmatic name of this offering.
- options
Refresh Boolean - (Boolean) Refresh options.
- name string
- The programmatic name of this offering.
- options
Refresh boolean - (Boolean) Refresh options.
- name str
- The programmatic name of this offering.
- options_
refresh bool - (Boolean) Refresh options.
- name String
- The programmatic name of this offering.
- options
Refresh Boolean - (Boolean) Refresh options.
CmOfferingKindVersionDeprecatePending, CmOfferingKindVersionDeprecatePendingArgs
- Deprecate
Date string - (String) Date of deprecation.
- Deprecate
State string - (String) Deprecation state.
- Description string
- (String) Feature description.
- Deprecate
Date string - (String) Date of deprecation.
- Deprecate
State string - (String) Deprecation state.
- Description string
- (String) Feature description.
- deprecate
Date String - (String) Date of deprecation.
- deprecate
State String - (String) Deprecation state.
- description String
- (String) Feature description.
- deprecate
Date string - (String) Date of deprecation.
- deprecate
State string - (String) Deprecation state.
- description string
- (String) Feature description.
- deprecate_
date str - (String) Date of deprecation.
- deprecate_
state str - (String) Deprecation state.
- description str
- (String) Feature description.
- deprecate
Date String - (String) Date of deprecation.
- deprecate
State String - (String) Deprecation state.
- description String
- (String) Feature description.
CmOfferingKindVersionEntitlement, CmOfferingKindVersionEntitlementArgs
- Image
Repo stringName - (String) Image repository name.
- Part
Numbers List<string> - (List) list of license entitlement part numbers, eg. D1YGZLL,D1ZXILL.
- Product
Id string - (String) Product ID.
- Provider
Id string - (String) Provider ID.
- Provider
Name string - (String) Provider name.
- Image
Repo stringName - (String) Image repository name.
- Part
Numbers []string - (List) list of license entitlement part numbers, eg. D1YGZLL,D1ZXILL.
- Product
Id string - (String) Product ID.
- Provider
Id string - (String) Provider ID.
- Provider
Name string - (String) Provider name.
- image
Repo StringName - (String) Image repository name.
- part
Numbers List<String> - (List) list of license entitlement part numbers, eg. D1YGZLL,D1ZXILL.
- product
Id String - (String) Product ID.
- provider
Id String - (String) Provider ID.
- provider
Name String - (String) Provider name.
- image
Repo stringName - (String) Image repository name.
- part
Numbers string[] - (List) list of license entitlement part numbers, eg. D1YGZLL,D1ZXILL.
- product
Id string - (String) Product ID.
- provider
Id string - (String) Provider ID.
- provider
Name string - (String) Provider name.
- image_
repo_ strname - (String) Image repository name.
- part_
numbers Sequence[str] - (List) list of license entitlement part numbers, eg. D1YGZLL,D1ZXILL.
- product_
id str - (String) Product ID.
- provider_
id str - (String) Provider ID.
- provider_
name str - (String) Provider name.
- image
Repo StringName - (String) Image repository name.
- part
Numbers List<String> - (List) list of license entitlement part numbers, eg. D1YGZLL,D1ZXILL.
- product
Id String - (String) Product ID.
- provider
Id String - (String) Provider ID.
- provider
Name String - (String) Provider name.
CmOfferingKindVersionFlavor, CmOfferingKindVersionFlavorArgs
- index float
- (Integer) Order that this flavor should appear when listed for a single version.
- label str
- Display Name in the requested language.
- label_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- name str
- The programmatic name of this offering.
CmOfferingKindVersionIamPermission, CmOfferingKindVersionIamPermissionArgs
- Resources
List<Cm
Offering Kind Version Iam Permission Resource> - (List) Resources. Nested scheme for resources:
- Role
Crns List<string> - (List) Role CRNs for this permission.
- Service
Name string - (String) Service name.
- Resources
[]Cm
Offering Kind Version Iam Permission Resource - (List) Resources. Nested scheme for resources:
- Role
Crns []string - (List) Role CRNs for this permission.
- Service
Name string - (String) Service name.
- resources
List<Cm
Offering Kind Version Iam Permission Resource> - (List) Resources. Nested scheme for resources:
- role
Crns List<String> - (List) Role CRNs for this permission.
- service
Name String - (String) Service name.
- resources
Cm
Offering Kind Version Iam Permission Resource[] - (List) Resources. Nested scheme for resources:
- role
Crns string[] - (List) Role CRNs for this permission.
- service
Name string - (String) Service name.
- resources
Sequence[Cm
Offering Kind Version Iam Permission Resource] - (List) Resources. Nested scheme for resources:
- role_
crns Sequence[str] - (List) Role CRNs for this permission.
- service_
name str - (String) Service name.
- resources List<Property Map>
- (List) Resources. Nested scheme for resources:
- role
Crns List<String> - (List) Role CRNs for this permission.
- service
Name String - (String) Service name.
CmOfferingKindVersionIamPermissionResource, CmOfferingKindVersionIamPermissionResourceArgs
- Description string
- (String) Feature description.
- Name string
- The programmatic name of this offering.
- Role
Crns List<string> - (List) Role CRNs for this permission.
- Description string
- (String) Feature description.
- Name string
- The programmatic name of this offering.
- Role
Crns []string - (List) Role CRNs for this permission.
- description String
- (String) Feature description.
- name String
- The programmatic name of this offering.
- role
Crns List<String> - (List) Role CRNs for this permission.
- description string
- (String) Feature description.
- name string
- The programmatic name of this offering.
- role
Crns string[] - (List) Role CRNs for this permission.
- description str
- (String) Feature description.
- name str
- The programmatic name of this offering.
- role_
crns Sequence[str] - (List) Role CRNs for this permission.
- description String
- (String) Feature description.
- name String
- The programmatic name of this offering.
- role
Crns List<String> - (List) Role CRNs for this permission.
CmOfferingKindVersionInstall, CmOfferingKindVersionInstallArgs
- Delete
Script string - (String) Optional script that if run will remove the installed version.
- Instructions string
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- Instructions
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Scope string
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- Script string
- (String) Optional script that needs to be run post any pre-condition script.
- Script
Permission string - (String) Optional iam permissions that are required on the target cluster to run this script.
- Delete
Script string - (String) Optional script that if run will remove the installed version.
- Instructions string
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- Instructions
I18n map[string]string - (Map) A map of translated strings, by language code.
- Scope string
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- Script string
- (String) Optional script that needs to be run post any pre-condition script.
- Script
Permission string - (String) Optional iam permissions that are required on the target cluster to run this script.
- delete
Script String - (String) Optional script that if run will remove the installed version.
- instructions String
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- instructions
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- scope String
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- script String
- (String) Optional script that needs to be run post any pre-condition script.
- script
Permission String - (String) Optional iam permissions that are required on the target cluster to run this script.
- delete
Script string - (String) Optional script that if run will remove the installed version.
- instructions string
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- instructions
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- scope string
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- script string
- (String) Optional script that needs to be run post any pre-condition script.
- script
Permission string - (String) Optional iam permissions that are required on the target cluster to run this script.
- delete_
script str - (String) Optional script that if run will remove the installed version.
- instructions str
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- instructions_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- scope str
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- script str
- (String) Optional script that needs to be run post any pre-condition script.
- script_
permission str - (String) Optional iam permissions that are required on the target cluster to run this script.
- delete
Script String - (String) Optional script that if run will remove the installed version.
- instructions String
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- instructions
I18n Map<String> - (Map) A map of translated strings, by language code.
- scope String
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- script String
- (String) Optional script that needs to be run post any pre-condition script.
- script
Permission String - (String) Optional iam permissions that are required on the target cluster to run this script.
CmOfferingKindVersionLicense, CmOfferingKindVersionLicenseArgs
- Description string
- (String) Feature description.
- Id string
- (String) The id of this provider.
- Name string
- The programmatic name of this offering.
- Type string
- (String) Valid values are hour or day.
- Url string
- (String) The url for this specific offering.
- Description string
- (String) Feature description.
- Id string
- (String) The id of this provider.
- Name string
- The programmatic name of this offering.
- Type string
- (String) Valid values are hour or day.
- Url string
- (String) The url for this specific offering.
- description String
- (String) Feature description.
- id String
- (String) The id of this provider.
- name String
- The programmatic name of this offering.
- type String
- (String) Valid values are hour or day.
- url String
- (String) The url for this specific offering.
- description string
- (String) Feature description.
- id string
- (String) The id of this provider.
- name string
- The programmatic name of this offering.
- type string
- (String) Valid values are hour or day.
- url string
- (String) The url for this specific offering.
- description str
- (String) Feature description.
- id str
- (String) The id of this provider.
- name str
- The programmatic name of this offering.
- type str
- (String) Valid values are hour or day.
- url str
- (String) The url for this specific offering.
- description String
- (String) Feature description.
- id String
- (String) The id of this provider.
- name String
- The programmatic name of this offering.
- type String
- (String) Valid values are hour or day.
- url String
- (String) The url for this specific offering.
CmOfferingKindVersionMetadata, CmOfferingKindVersionMetadataArgs
- End
Deploy stringTime - Est
Deploy doubleTime - Example
Name string - Files
List<Cm
Offering Kind Version Metadata File> - Images
List<Cm
Offering Kind Version Metadata Image> - Minimum
Provisioned doubleSize - Modules
List<Cm
Offering Kind Version Metadata Module> - Operating
Systems List<CmOffering Kind Version Metadata Operating System> - Source
Url string - (String) Content's source URL (e.g git repo).
- Start
Deploy stringTime - Terraform
Version string - Usage string
- Usage
Template string - Validated
Terraform stringVersion - Version
Name string - Vsi
Vpcs List<CmOffering Kind Version Metadata Vsi Vpc> - Working
Directory string
- End
Deploy stringTime - Est
Deploy float64Time - Example
Name string - Files
[]Cm
Offering Kind Version Metadata File - Images
[]Cm
Offering Kind Version Metadata Image - Minimum
Provisioned float64Size - Modules
[]Cm
Offering Kind Version Metadata Module - Operating
Systems []CmOffering Kind Version Metadata Operating System - Source
Url string - (String) Content's source URL (e.g git repo).
- Start
Deploy stringTime - Terraform
Version string - Usage string
- Usage
Template string - Validated
Terraform stringVersion - Version
Name string - Vsi
Vpcs []CmOffering Kind Version Metadata Vsi Vpc - Working
Directory string
- end
Deploy StringTime - est
Deploy DoubleTime - example
Name String - files
List<Cm
Offering Kind Version Metadata File> - images
List<Cm
Offering Kind Version Metadata Image> - minimum
Provisioned DoubleSize - modules
List<Cm
Offering Kind Version Metadata Module> - operating
Systems List<CmOffering Kind Version Metadata Operating System> - source
Url String - (String) Content's source URL (e.g git repo).
- start
Deploy StringTime - terraform
Version String - usage String
- usage
Template String - validated
Terraform StringVersion - version
Name String - vsi
Vpcs List<CmOffering Kind Version Metadata Vsi Vpc> - working
Directory String
- end
Deploy stringTime - est
Deploy numberTime - example
Name string - files
Cm
Offering Kind Version Metadata File[] - images
Cm
Offering Kind Version Metadata Image[] - minimum
Provisioned numberSize - modules
Cm
Offering Kind Version Metadata Module[] - operating
Systems CmOffering Kind Version Metadata Operating System[] - source
Url string - (String) Content's source URL (e.g git repo).
- start
Deploy stringTime - terraform
Version string - usage string
- usage
Template string - validated
Terraform stringVersion - version
Name string - vsi
Vpcs CmOffering Kind Version Metadata Vsi Vpc[] - working
Directory string
- end_
deploy_ strtime - est_
deploy_ floattime - example_
name str - files
Sequence[Cm
Offering Kind Version Metadata File] - images
Sequence[Cm
Offering Kind Version Metadata Image] - minimum_
provisioned_ floatsize - modules
Sequence[Cm
Offering Kind Version Metadata Module] - operating_
systems Sequence[CmOffering Kind Version Metadata Operating System] - source_
url str - (String) Content's source URL (e.g git repo).
- start_
deploy_ strtime - terraform_
version str - usage str
- usage_
template str - validated_
terraform_ strversion - version_
name str - vsi_
vpcs Sequence[CmOffering Kind Version Metadata Vsi Vpc] - working_
directory str
- end
Deploy StringTime - est
Deploy NumberTime - example
Name String - files List<Property Map>
- images List<Property Map>
- minimum
Provisioned NumberSize - modules List<Property Map>
- operating
Systems List<Property Map> - source
Url String - (String) Content's source URL (e.g git repo).
- start
Deploy StringTime - terraform
Version String - usage String
- usage
Template String - validated
Terraform StringVersion - version
Name String - vsi
Vpcs List<Property Map> - working
Directory String
CmOfferingKindVersionMetadataFile, CmOfferingKindVersionMetadataFileArgs
- Size double
- Size float64
- size Double
- size number
- size float
- size Number
CmOfferingKindVersionMetadataImage, CmOfferingKindVersionMetadataImageArgs
CmOfferingKindVersionMetadataModule, CmOfferingKindVersionMetadataModuleArgs
- Name string
- The programmatic name of this offering.
- Offering
References List<CmOffering Kind Version Metadata Module Offering Reference> - Source string
- Name string
- The programmatic name of this offering.
- Offering
References []CmOffering Kind Version Metadata Module Offering Reference - Source string
- name String
- The programmatic name of this offering.
- offering
References List<CmOffering Kind Version Metadata Module Offering Reference> - source String
- name string
- The programmatic name of this offering.
- offering
References CmOffering Kind Version Metadata Module Offering Reference[] - source string
- name str
- The programmatic name of this offering.
- offering_
references Sequence[CmOffering Kind Version Metadata Module Offering Reference] - source str
- name String
- The programmatic name of this offering.
- offering
References List<Property Map> - source String
CmOfferingKindVersionMetadataModuleOfferingReference, CmOfferingKindVersionMetadataModuleOfferingReferenceArgs
- Catalog
Id string - Catalog identifier.
- Flavor string
- (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- Flavors List<string>
- (List) Optional - List of dependent flavors in the specified range.
- Id string
- (String) The id of this provider.
- Kind string
- Metadata string
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Version string
- (String) Version of content type.
- Catalog
Id string - Catalog identifier.
- Flavor string
- (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- Flavors []string
- (List) Optional - List of dependent flavors in the specified range.
- Id string
- (String) The id of this provider.
- Kind string
- Metadata string
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Version string
- (String) Version of content type.
- catalog
Id String - Catalog identifier.
- flavor String
- (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- flavors List<String>
- (List) Optional - List of dependent flavors in the specified range.
- id String
- (String) The id of this provider.
- kind String
- metadata String
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- version String
- (String) Version of content type.
- catalog
Id string - Catalog identifier.
- flavor string
- (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- flavors string[]
- (List) Optional - List of dependent flavors in the specified range.
- id string
- (String) The id of this provider.
- kind string
- metadata string
- (Map) Map of metadata values for this offering.
- name string
- The programmatic name of this offering.
- version string
- (String) Version of content type.
- catalog_
id str - Catalog identifier.
- flavor str
- (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- flavors Sequence[str]
- (List) Optional - List of dependent flavors in the specified range.
- id str
- (String) The id of this provider.
- kind str
- metadata str
- (Map) Map of metadata values for this offering.
- name str
- The programmatic name of this offering.
- version str
- (String) Version of content type.
- catalog
Id String - Catalog identifier.
- flavor String
- (List) Version Flavor Information. Only supported for Product kind Solution. Nested scheme for flavor:
- flavors List<String>
- (List) Optional - List of dependent flavors in the specified range.
- id String
- (String) The id of this provider.
- kind String
- metadata String
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- version String
- (String) Version of content type.
CmOfferingKindVersionMetadataOperatingSystem, CmOfferingKindVersionMetadataOperatingSystemArgs
- Architecture string
- Dedicated
Host boolOnly - Display
Name string - (String) Display name for configuration type.
- Family string
- Href string
- Name string
- The programmatic name of this offering.
- Vendor string
- Version string
- (String) Version of content type.
- Architecture string
- Dedicated
Host boolOnly - Display
Name string - (String) Display name for configuration type.
- Family string
- Href string
- Name string
- The programmatic name of this offering.
- Vendor string
- Version string
- (String) Version of content type.
- architecture String
- dedicated
Host BooleanOnly - display
Name String - (String) Display name for configuration type.
- family String
- href String
- name String
- The programmatic name of this offering.
- vendor String
- version String
- (String) Version of content type.
- architecture string
- dedicated
Host booleanOnly - display
Name string - (String) Display name for configuration type.
- family string
- href string
- name string
- The programmatic name of this offering.
- vendor string
- version string
- (String) Version of content type.
- architecture str
- dedicated_
host_ boolonly - display_
name str - (String) Display name for configuration type.
- family str
- href str
- name str
- The programmatic name of this offering.
- vendor str
- version str
- (String) Version of content type.
- architecture String
- dedicated
Host BooleanOnly - display
Name String - (String) Display name for configuration type.
- family String
- href String
- name String
- The programmatic name of this offering.
- vendor String
- version String
- (String) Version of content type.
CmOfferingKindVersionMetadataVsiVpc, CmOfferingKindVersionMetadataVsiVpcArgs
CmOfferingKindVersionMetadataVsiVpcFile, CmOfferingKindVersionMetadataVsiVpcFileArgs
- Size double
- Size float64
- size Double
- size number
- size float
- size Number
CmOfferingKindVersionMetadataVsiVpcImage, CmOfferingKindVersionMetadataVsiVpcImageArgs
CmOfferingKindVersionMetadataVsiVpcOperatingSystem, CmOfferingKindVersionMetadataVsiVpcOperatingSystemArgs
- Architecture string
- Dedicated
Host boolOnly - Display
Name string - (String) Display name for configuration type.
- Family string
- Href string
- Name string
- The programmatic name of this offering.
- Vendor string
- Version string
- (String) Version of content type.
- Architecture string
- Dedicated
Host boolOnly - Display
Name string - (String) Display name for configuration type.
- Family string
- Href string
- Name string
- The programmatic name of this offering.
- Vendor string
- Version string
- (String) Version of content type.
- architecture String
- dedicated
Host BooleanOnly - display
Name String - (String) Display name for configuration type.
- family String
- href String
- name String
- The programmatic name of this offering.
- vendor String
- version String
- (String) Version of content type.
- architecture string
- dedicated
Host booleanOnly - display
Name string - (String) Display name for configuration type.
- family string
- href string
- name string
- The programmatic name of this offering.
- vendor string
- version string
- (String) Version of content type.
- architecture str
- dedicated_
host_ boolonly - display_
name str - (String) Display name for configuration type.
- family str
- href str
- name str
- The programmatic name of this offering.
- vendor str
- version str
- (String) Version of content type.
- architecture String
- dedicated
Host BooleanOnly - display
Name String - (String) Display name for configuration type.
- family String
- href String
- name String
- The programmatic name of this offering.
- vendor String
- version String
- (String) Version of content type.
CmOfferingKindVersionOutput, CmOfferingKindVersionOutputArgs
- Description string
- (String) Feature description.
- Key string
- (String) Output key.
- Description string
- (String) Feature description.
- Key string
- (String) Output key.
- description String
- (String) Feature description.
- key String
- (String) Output key.
- description string
- (String) Feature description.
- key string
- (String) Output key.
- description str
- (String) Feature description.
- key str
- (String) Output key.
- description String
- (String) Feature description.
- key String
- (String) Output key.
CmOfferingKindVersionPreInstall, CmOfferingKindVersionPreInstallArgs
- Delete
Script string - (String) Optional script that if run will remove the installed version.
- Instructions string
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- Instructions
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Scope string
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- Script string
- (String) Optional script that needs to be run post any pre-condition script.
- Script
Permission string - (String) Optional iam permissions that are required on the target cluster to run this script.
- Delete
Script string - (String) Optional script that if run will remove the installed version.
- Instructions string
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- Instructions
I18n map[string]string - (Map) A map of translated strings, by language code.
- Scope string
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- Script string
- (String) Optional script that needs to be run post any pre-condition script.
- Script
Permission string - (String) Optional iam permissions that are required on the target cluster to run this script.
- delete
Script String - (String) Optional script that if run will remove the installed version.
- instructions String
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- instructions
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- scope String
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- script String
- (String) Optional script that needs to be run post any pre-condition script.
- script
Permission String - (String) Optional iam permissions that are required on the target cluster to run this script.
- delete
Script string - (String) Optional script that if run will remove the installed version.
- instructions string
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- instructions
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- scope string
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- script string
- (String) Optional script that needs to be run post any pre-condition script.
- script
Permission string - (String) Optional iam permissions that are required on the target cluster to run this script.
- delete_
script str - (String) Optional script that if run will remove the installed version.
- instructions str
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- instructions_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- scope str
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- script str
- (String) Optional script that needs to be run post any pre-condition script.
- script_
permission str - (String) Optional iam permissions that are required on the target cluster to run this script.
- delete
Script String - (String) Optional script that if run will remove the installed version.
- instructions String
- (String) Instruction on step and by whom (role) that are needed to take place to prepare the target for installing this version.
- instructions
I18n Map<String> - (Map) A map of translated strings, by language code.
- scope String
- (String) Optional value indicating if this script is scoped to a namespace or the entire cluster.
- script String
- (String) Optional script that needs to be run post any pre-condition script.
- script
Permission String - (String) Optional iam permissions that are required on the target cluster to run this script.
CmOfferingKindVersionRequiredResource, CmOfferingKindVersionRequiredResourceArgs
CmOfferingKindVersionSolutionInfo, CmOfferingKindVersionSolutionInfoArgs
- Architecture
Diagrams List<CmOffering Kind Version Solution Info Architecture Diagram> - (List) Architecture diagrams for this solution. Nested scheme for architecture_diagrams:
- Cost
Estimates List<CmOffering Kind Version Solution Info Cost Estimate> - (List) Cost estimate definition. Nested scheme for cost_estimate:
- Dependencies
List<Cm
Offering Kind Version Solution Info Dependency> - (List) Dependencies for this solution. Nested scheme for dependencies:
- Features
List<Cm
Offering Kind Version Solution Info Feature> - List of features associated with this offering. Nested scheme for features:
- Architecture
Diagrams []CmOffering Kind Version Solution Info Architecture Diagram - (List) Architecture diagrams for this solution. Nested scheme for architecture_diagrams:
- Cost
Estimates []CmOffering Kind Version Solution Info Cost Estimate - (List) Cost estimate definition. Nested scheme for cost_estimate:
- Dependencies
[]Cm
Offering Kind Version Solution Info Dependency - (List) Dependencies for this solution. Nested scheme for dependencies:
- Features
[]Cm
Offering Kind Version Solution Info Feature - List of features associated with this offering. Nested scheme for features:
- architecture
Diagrams List<CmOffering Kind Version Solution Info Architecture Diagram> - (List) Architecture diagrams for this solution. Nested scheme for architecture_diagrams:
- cost
Estimates List<CmOffering Kind Version Solution Info Cost Estimate> - (List) Cost estimate definition. Nested scheme for cost_estimate:
- dependencies
List<Cm
Offering Kind Version Solution Info Dependency> - (List) Dependencies for this solution. Nested scheme for dependencies:
- features
List<Cm
Offering Kind Version Solution Info Feature> - List of features associated with this offering. Nested scheme for features:
- architecture
Diagrams CmOffering Kind Version Solution Info Architecture Diagram[] - (List) Architecture diagrams for this solution. Nested scheme for architecture_diagrams:
- cost
Estimates CmOffering Kind Version Solution Info Cost Estimate[] - (List) Cost estimate definition. Nested scheme for cost_estimate:
- dependencies
Cm
Offering Kind Version Solution Info Dependency[] - (List) Dependencies for this solution. Nested scheme for dependencies:
- features
Cm
Offering Kind Version Solution Info Feature[] - List of features associated with this offering. Nested scheme for features:
- architecture_
diagrams Sequence[CmOffering Kind Version Solution Info Architecture Diagram] - (List) Architecture diagrams for this solution. Nested scheme for architecture_diagrams:
- cost_
estimates Sequence[CmOffering Kind Version Solution Info Cost Estimate] - (List) Cost estimate definition. Nested scheme for cost_estimate:
- dependencies
Sequence[Cm
Offering Kind Version Solution Info Dependency] - (List) Dependencies for this solution. Nested scheme for dependencies:
- features
Sequence[Cm
Offering Kind Version Solution Info Feature] - List of features associated with this offering. Nested scheme for features:
- architecture
Diagrams List<Property Map> - (List) Architecture diagrams for this solution. Nested scheme for architecture_diagrams:
- cost
Estimates List<Property Map> - (List) Cost estimate definition. Nested scheme for cost_estimate:
- dependencies List<Property Map>
- (List) Dependencies for this solution. Nested scheme for dependencies:
- features List<Property Map>
- List of features associated with this offering. Nested scheme for features:
CmOfferingKindVersionSolutionInfoArchitectureDiagram, CmOfferingKindVersionSolutionInfoArchitectureDiagramArgs
- Description string
- (String) Feature description.
- Description
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Diagrams
List<Cm
Offering Kind Version Solution Info Architecture Diagram Diagram> - (List) Offering Media information. Nested scheme for diagram:
- Description string
- (String) Feature description.
- Description
I18n map[string]string - (Map) A map of translated strings, by language code.
- Diagrams
[]Cm
Offering Kind Version Solution Info Architecture Diagram Diagram - (List) Offering Media information. Nested scheme for diagram:
- description String
- (String) Feature description.
- description
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- diagrams
List<Cm
Offering Kind Version Solution Info Architecture Diagram Diagram> - (List) Offering Media information. Nested scheme for diagram:
- description string
- (String) Feature description.
- description
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- diagrams
Cm
Offering Kind Version Solution Info Architecture Diagram Diagram[] - (List) Offering Media information. Nested scheme for diagram:
- description str
- (String) Feature description.
- description_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- diagrams
Sequence[Cm
Offering Kind Version Solution Info Architecture Diagram Diagram] - (List) Offering Media information. Nested scheme for diagram:
- description String
- (String) Feature description.
- description
I18n Map<String> - (Map) A map of translated strings, by language code.
- diagrams List<Property Map>
- (List) Offering Media information. Nested scheme for diagram:
CmOfferingKindVersionSolutionInfoArchitectureDiagramDiagram, CmOfferingKindVersionSolutionInfoArchitectureDiagramDiagramArgs
- Api
Url string - (String) CM API specific URL of the specified media item.
- Caption string
- (String) Caption for this media item.
- Caption
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Thumbnail
Url string - (String) Thumbnail URL for this media item.
- Type string
- (String) Valid values are hour or day.
- Url string
- (String) The url for this specific offering.
- Url
Proxies List<CmOffering Kind Version Solution Info Architecture Diagram Diagram Url Proxy> - (List) Offering URL proxy information. Nested scheme for url_proxy:
- Api
Url string - (String) CM API specific URL of the specified media item.
- Caption string
- (String) Caption for this media item.
- Caption
I18n map[string]string - (Map) A map of translated strings, by language code.
- Thumbnail
Url string - (String) Thumbnail URL for this media item.
- Type string
- (String) Valid values are hour or day.
- Url string
- (String) The url for this specific offering.
- Url
Proxies []CmOffering Kind Version Solution Info Architecture Diagram Diagram Url Proxy - (List) Offering URL proxy information. Nested scheme for url_proxy:
- api
Url String - (String) CM API specific URL of the specified media item.
- caption String
- (String) Caption for this media item.
- caption
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- thumbnail
Url String - (String) Thumbnail URL for this media item.
- type String
- (String) Valid values are hour or day.
- url String
- (String) The url for this specific offering.
- url
Proxies List<CmOffering Kind Version Solution Info Architecture Diagram Diagram Url Proxy> - (List) Offering URL proxy information. Nested scheme for url_proxy:
- api
Url string - (String) CM API specific URL of the specified media item.
- caption string
- (String) Caption for this media item.
- caption
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- thumbnail
Url string - (String) Thumbnail URL for this media item.
- type string
- (String) Valid values are hour or day.
- url string
- (String) The url for this specific offering.
- url
Proxies CmOffering Kind Version Solution Info Architecture Diagram Diagram Url Proxy[] - (List) Offering URL proxy information. Nested scheme for url_proxy:
- api_
url str - (String) CM API specific URL of the specified media item.
- caption str
- (String) Caption for this media item.
- caption_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- thumbnail_
url str - (String) Thumbnail URL for this media item.
- type str
- (String) Valid values are hour or day.
- url str
- (String) The url for this specific offering.
- url_
proxies Sequence[CmOffering Kind Version Solution Info Architecture Diagram Diagram Url Proxy] - (List) Offering URL proxy information. Nested scheme for url_proxy:
- api
Url String - (String) CM API specific URL of the specified media item.
- caption String
- (String) Caption for this media item.
- caption
I18n Map<String> - (Map) A map of translated strings, by language code.
- thumbnail
Url String - (String) Thumbnail URL for this media item.
- type String
- (String) Valid values are hour or day.
- url String
- (String) The url for this specific offering.
- url
Proxies List<Property Map> - (List) Offering URL proxy information. Nested scheme for url_proxy:
CmOfferingKindVersionSolutionInfoArchitectureDiagramDiagramUrlProxy, CmOfferingKindVersionSolutionInfoArchitectureDiagramDiagramUrlProxyArgs
CmOfferingKindVersionSolutionInfoCostEstimate, CmOfferingKindVersionSolutionInfoCostEstimateArgs
- Currency string
- (String) Cost estimate currency.
- Diff
Total stringHourly Cost - (String) Difference in total hourly cost.
- Diff
Total stringMonthly Cost - (String) Difference in total monthly cost.
- Past
Total stringHourly Cost - (String) Past total hourly cost.
- Past
Total stringMonthly Cost - (String) Past total monthly cost.
- Projects
List<Cm
Offering Kind Version Solution Info Cost Estimate Project> - (List) Cost estimate projects. Nested scheme for projects:
- Summaries
List<Cm
Offering Kind Version Solution Info Cost Estimate Summary> - (List) Cost summary definition. Nested scheme for summary:
- Time
Generated string - (String) When this estimate was generated.
- Total
Hourly stringCost - (String) Total hourly cost.
- Total
Monthly stringCost - (String) Total monthly cost.
- Version string
- (String) Version of content type.
- Currency string
- (String) Cost estimate currency.
- Diff
Total stringHourly Cost - (String) Difference in total hourly cost.
- Diff
Total stringMonthly Cost - (String) Difference in total monthly cost.
- Past
Total stringHourly Cost - (String) Past total hourly cost.
- Past
Total stringMonthly Cost - (String) Past total monthly cost.
- Projects
[]Cm
Offering Kind Version Solution Info Cost Estimate Project - (List) Cost estimate projects. Nested scheme for projects:
- Summaries
[]Cm
Offering Kind Version Solution Info Cost Estimate Summary - (List) Cost summary definition. Nested scheme for summary:
- Time
Generated string - (String) When this estimate was generated.
- Total
Hourly stringCost - (String) Total hourly cost.
- Total
Monthly stringCost - (String) Total monthly cost.
- Version string
- (String) Version of content type.
- currency String
- (String) Cost estimate currency.
- diff
Total StringHourly Cost - (String) Difference in total hourly cost.
- diff
Total StringMonthly Cost - (String) Difference in total monthly cost.
- past
Total StringHourly Cost - (String) Past total hourly cost.
- past
Total StringMonthly Cost - (String) Past total monthly cost.
- projects
List<Cm
Offering Kind Version Solution Info Cost Estimate Project> - (List) Cost estimate projects. Nested scheme for projects:
- summaries
List<Cm
Offering Kind Version Solution Info Cost Estimate Summary> - (List) Cost summary definition. Nested scheme for summary:
- time
Generated String - (String) When this estimate was generated.
- total
Hourly StringCost - (String) Total hourly cost.
- total
Monthly StringCost - (String) Total monthly cost.
- version String
- (String) Version of content type.
- currency string
- (String) Cost estimate currency.
- diff
Total stringHourly Cost - (String) Difference in total hourly cost.
- diff
Total stringMonthly Cost - (String) Difference in total monthly cost.
- past
Total stringHourly Cost - (String) Past total hourly cost.
- past
Total stringMonthly Cost - (String) Past total monthly cost.
- projects
Cm
Offering Kind Version Solution Info Cost Estimate Project[] - (List) Cost estimate projects. Nested scheme for projects:
- summaries
Cm
Offering Kind Version Solution Info Cost Estimate Summary[] - (List) Cost summary definition. Nested scheme for summary:
- time
Generated string - (String) When this estimate was generated.
- total
Hourly stringCost - (String) Total hourly cost.
- total
Monthly stringCost - (String) Total monthly cost.
- version string
- (String) Version of content type.
- currency str
- (String) Cost estimate currency.
- diff_
total_ strhourly_ cost - (String) Difference in total hourly cost.
- diff_
total_ strmonthly_ cost - (String) Difference in total monthly cost.
- past_
total_ strhourly_ cost - (String) Past total hourly cost.
- past_
total_ strmonthly_ cost - (String) Past total monthly cost.
- projects
Sequence[Cm
Offering Kind Version Solution Info Cost Estimate Project] - (List) Cost estimate projects. Nested scheme for projects:
- summaries
Sequence[Cm
Offering Kind Version Solution Info Cost Estimate Summary] - (List) Cost summary definition. Nested scheme for summary:
- time_
generated str - (String) When this estimate was generated.
- total_
hourly_ strcost - (String) Total hourly cost.
- total_
monthly_ strcost - (String) Total monthly cost.
- version str
- (String) Version of content type.
- currency String
- (String) Cost estimate currency.
- diff
Total StringHourly Cost - (String) Difference in total hourly cost.
- diff
Total StringMonthly Cost - (String) Difference in total monthly cost.
- past
Total StringHourly Cost - (String) Past total hourly cost.
- past
Total StringMonthly Cost - (String) Past total monthly cost.
- projects List<Property Map>
- (List) Cost estimate projects. Nested scheme for projects:
- summaries List<Property Map>
- (List) Cost summary definition. Nested scheme for summary:
- time
Generated String - (String) When this estimate was generated.
- total
Hourly StringCost - (String) Total hourly cost.
- total
Monthly StringCost - (String) Total monthly cost.
- version String
- (String) Version of content type.
CmOfferingKindVersionSolutionInfoCostEstimateProject, CmOfferingKindVersionSolutionInfoCostEstimateProjectArgs
- Breakdowns
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Breakdown> - (List) Cost breakdown definition. Nested scheme for breakdown:
- Diffs
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Diff> - (List) Cost breakdown definition. Nested scheme for diff:
- Metadata Dictionary<string, string>
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Past
Breakdowns List<CmOffering Kind Version Solution Info Cost Estimate Project Past Breakdown> - (List) Cost breakdown definition. Nested scheme for past_breakdown:
- Summaries
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Summary> - (List) Cost summary definition. Nested scheme for summary:
- Breakdowns
[]Cm
Offering Kind Version Solution Info Cost Estimate Project Breakdown - (List) Cost breakdown definition. Nested scheme for breakdown:
- Diffs
[]Cm
Offering Kind Version Solution Info Cost Estimate Project Diff - (List) Cost breakdown definition. Nested scheme for diff:
- Metadata map[string]string
- (Map) Map of metadata values for this offering.
- Name string
- The programmatic name of this offering.
- Past
Breakdowns []CmOffering Kind Version Solution Info Cost Estimate Project Past Breakdown - (List) Cost breakdown definition. Nested scheme for past_breakdown:
- Summaries
[]Cm
Offering Kind Version Solution Info Cost Estimate Project Summary - (List) Cost summary definition. Nested scheme for summary:
- breakdowns
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Breakdown> - (List) Cost breakdown definition. Nested scheme for breakdown:
- diffs
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Diff> - (List) Cost breakdown definition. Nested scheme for diff:
- metadata Map<String,String>
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- past
Breakdowns List<CmOffering Kind Version Solution Info Cost Estimate Project Past Breakdown> - (List) Cost breakdown definition. Nested scheme for past_breakdown:
- summaries
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Summary> - (List) Cost summary definition. Nested scheme for summary:
- breakdowns
Cm
Offering Kind Version Solution Info Cost Estimate Project Breakdown[] - (List) Cost breakdown definition. Nested scheme for breakdown:
- diffs
Cm
Offering Kind Version Solution Info Cost Estimate Project Diff[] - (List) Cost breakdown definition. Nested scheme for diff:
- metadata {[key: string]: string}
- (Map) Map of metadata values for this offering.
- name string
- The programmatic name of this offering.
- past
Breakdowns CmOffering Kind Version Solution Info Cost Estimate Project Past Breakdown[] - (List) Cost breakdown definition. Nested scheme for past_breakdown:
- summaries
Cm
Offering Kind Version Solution Info Cost Estimate Project Summary[] - (List) Cost summary definition. Nested scheme for summary:
- breakdowns
Sequence[Cm
Offering Kind Version Solution Info Cost Estimate Project Breakdown] - (List) Cost breakdown definition. Nested scheme for breakdown:
- diffs
Sequence[Cm
Offering Kind Version Solution Info Cost Estimate Project Diff] - (List) Cost breakdown definition. Nested scheme for diff:
- metadata Mapping[str, str]
- (Map) Map of metadata values for this offering.
- name str
- The programmatic name of this offering.
- past_
breakdowns Sequence[CmOffering Kind Version Solution Info Cost Estimate Project Past Breakdown] - (List) Cost breakdown definition. Nested scheme for past_breakdown:
- summaries
Sequence[Cm
Offering Kind Version Solution Info Cost Estimate Project Summary] - (List) Cost summary definition. Nested scheme for summary:
- breakdowns List<Property Map>
- (List) Cost breakdown definition. Nested scheme for breakdown:
- diffs List<Property Map>
- (List) Cost breakdown definition. Nested scheme for diff:
- metadata Map<String>
- (Map) Map of metadata values for this offering.
- name String
- The programmatic name of this offering.
- past
Breakdowns List<Property Map> - (List) Cost breakdown definition. Nested scheme for past_breakdown:
- summaries List<Property Map>
- (List) Cost summary definition. Nested scheme for summary:
CmOfferingKindVersionSolutionInfoCostEstimateProjectBreakdown, CmOfferingKindVersionSolutionInfoCostEstimateProjectBreakdownArgs
- Resources
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Breakdown Resource> - (List) Resources. Nested scheme for resources:
- Total
Hourly stringCost - (String) Total hourly cost.
- Total
Monthly stringCost - (String) Total monthly cost.
- Resources
[]Cm
Offering Kind Version Solution Info Cost Estimate Project Breakdown Resource - (List) Resources. Nested scheme for resources:
- Total
Hourly stringCost - (String) Total hourly cost.
- Total
Monthly stringCost - (String) Total monthly cost.
- resources
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Breakdown Resource> - (List) Resources. Nested scheme for resources:
- total
Hourly StringCost - (String) Total hourly cost.
- total
Monthly StringCost - (String) Total monthly cost.
- resources
Cm
Offering Kind Version Solution Info Cost Estimate Project Breakdown Resource[] - (List) Resources. Nested scheme for resources:
- total
Hourly stringCost - (String) Total hourly cost.
- total
Monthly stringCost - (String) Total monthly cost.
- resources
Sequence[Cm
Offering Kind Version Solution Info Cost Estimate Project Breakdown Resource] - (List) Resources. Nested scheme for resources:
- total_
hourly_ strcost - (String) Total hourly cost.
- total_
monthly_ strcost - (String) Total monthly cost.
- resources List<Property Map>
- (List) Resources. Nested scheme for resources:
- total
Hourly StringCost - (String) Total hourly cost.
- total
Monthly StringCost - (String) Total monthly cost.
CmOfferingKindVersionSolutionInfoCostEstimateProjectBreakdownResource, CmOfferingKindVersionSolutionInfoCostEstimateProjectBreakdownResourceArgs
- Cost
Components List<CmOffering Kind Version Solution Info Cost Estimate Project Breakdown Resource Cost Component> - (List) Cost components. Nested scheme for cost_components:
- Hourly
Cost string - (String) Hourly cost.
- Metadata Dictionary<string, string>
- (Map) Map of metadata values for this offering.
- Monthly
Cost string - (String) Monthly cost.
- Name string
- The programmatic name of this offering.
- Cost
Components []CmOffering Kind Version Solution Info Cost Estimate Project Breakdown Resource Cost Component - (List) Cost components. Nested scheme for cost_components:
- Hourly
Cost string - (String) Hourly cost.
- Metadata map[string]string
- (Map) Map of metadata values for this offering.
- Monthly
Cost string - (String) Monthly cost.
- Name string
- The programmatic name of this offering.
- cost
Components List<CmOffering Kind Version Solution Info Cost Estimate Project Breakdown Resource Cost Component> - (List) Cost components. Nested scheme for cost_components:
- hourly
Cost String - (String) Hourly cost.
- metadata Map<String,String>
- (Map) Map of metadata values for this offering.
- monthly
Cost String - (String) Monthly cost.
- name String
- The programmatic name of this offering.
- cost
Components CmOffering Kind Version Solution Info Cost Estimate Project Breakdown Resource Cost Component[] - (List) Cost components. Nested scheme for cost_components:
- hourly
Cost string - (String) Hourly cost.
- metadata {[key: string]: string}
- (Map) Map of metadata values for this offering.
- monthly
Cost string - (String) Monthly cost.
- name string
- The programmatic name of this offering.
- cost_
components Sequence[CmOffering Kind Version Solution Info Cost Estimate Project Breakdown Resource Cost Component] - (List) Cost components. Nested scheme for cost_components:
- hourly_
cost str - (String) Hourly cost.
- metadata Mapping[str, str]
- (Map) Map of metadata values for this offering.
- monthly_
cost str - (String) Monthly cost.
- name str
- The programmatic name of this offering.
- cost
Components List<Property Map> - (List) Cost components. Nested scheme for cost_components:
- hourly
Cost String - (String) Hourly cost.
- metadata Map<String>
- (Map) Map of metadata values for this offering.
- monthly
Cost String - (String) Monthly cost.
- name String
- The programmatic name of this offering.
CmOfferingKindVersionSolutionInfoCostEstimateProjectBreakdownResourceCostComponent, CmOfferingKindVersionSolutionInfoCostEstimateProjectBreakdownResourceCostComponentArgs
- Hourly
Cost string - (String) Hourly cost.
- Hourly
Quantity string - (String) Cost component hourly quantity.
- Monthly
Cost string - (String) Monthly cost.
- Monthly
Quantity string - (String) Cost component monthly quantity.
- Name string
- The programmatic name of this offering.
- Price string
- (String) Cost component price.
- Unit string
- (String) Cost component unit.
- Hourly
Cost string - (String) Hourly cost.
- Hourly
Quantity string - (String) Cost component hourly quantity.
- Monthly
Cost string - (String) Monthly cost.
- Monthly
Quantity string - (String) Cost component monthly quantity.
- Name string
- The programmatic name of this offering.
- Price string
- (String) Cost component price.
- Unit string
- (String) Cost component unit.
- hourly
Cost String - (String) Hourly cost.
- hourly
Quantity String - (String) Cost component hourly quantity.
- monthly
Cost String - (String) Monthly cost.
- monthly
Quantity String - (String) Cost component monthly quantity.
- name String
- The programmatic name of this offering.
- price String
- (String) Cost component price.
- unit String
- (String) Cost component unit.
- hourly
Cost string - (String) Hourly cost.
- hourly
Quantity string - (String) Cost component hourly quantity.
- monthly
Cost string - (String) Monthly cost.
- monthly
Quantity string - (String) Cost component monthly quantity.
- name string
- The programmatic name of this offering.
- price string
- (String) Cost component price.
- unit string
- (String) Cost component unit.
- hourly_
cost str - (String) Hourly cost.
- hourly_
quantity str - (String) Cost component hourly quantity.
- monthly_
cost str - (String) Monthly cost.
- monthly_
quantity str - (String) Cost component monthly quantity.
- name str
- The programmatic name of this offering.
- price str
- (String) Cost component price.
- unit str
- (String) Cost component unit.
- hourly
Cost String - (String) Hourly cost.
- hourly
Quantity String - (String) Cost component hourly quantity.
- monthly
Cost String - (String) Monthly cost.
- monthly
Quantity String - (String) Cost component monthly quantity.
- name String
- The programmatic name of this offering.
- price String
- (String) Cost component price.
- unit String
- (String) Cost component unit.
CmOfferingKindVersionSolutionInfoCostEstimateProjectDiff, CmOfferingKindVersionSolutionInfoCostEstimateProjectDiffArgs
- Resources
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Diff Resource> - (List) Resources. Nested scheme for resources:
- Total
Hourly stringCost - (String) Total hourly cost.
- Total
Monthly stringCost - (String) Total monthly cost.
- Resources
[]Cm
Offering Kind Version Solution Info Cost Estimate Project Diff Resource - (List) Resources. Nested scheme for resources:
- Total
Hourly stringCost - (String) Total hourly cost.
- Total
Monthly stringCost - (String) Total monthly cost.
- resources
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Diff Resource> - (List) Resources. Nested scheme for resources:
- total
Hourly StringCost - (String) Total hourly cost.
- total
Monthly StringCost - (String) Total monthly cost.
- resources
Cm
Offering Kind Version Solution Info Cost Estimate Project Diff Resource[] - (List) Resources. Nested scheme for resources:
- total
Hourly stringCost - (String) Total hourly cost.
- total
Monthly stringCost - (String) Total monthly cost.
- resources
Sequence[Cm
Offering Kind Version Solution Info Cost Estimate Project Diff Resource] - (List) Resources. Nested scheme for resources:
- total_
hourly_ strcost - (String) Total hourly cost.
- total_
monthly_ strcost - (String) Total monthly cost.
- resources List<Property Map>
- (List) Resources. Nested scheme for resources:
- total
Hourly StringCost - (String) Total hourly cost.
- total
Monthly StringCost - (String) Total monthly cost.
CmOfferingKindVersionSolutionInfoCostEstimateProjectDiffResource, CmOfferingKindVersionSolutionInfoCostEstimateProjectDiffResourceArgs
- Cost
Components List<CmOffering Kind Version Solution Info Cost Estimate Project Diff Resource Cost Component> - (List) Cost components. Nested scheme for cost_components:
- Hourly
Cost string - (String) Hourly cost.
- Metadata Dictionary<string, string>
- (Map) Map of metadata values for this offering.
- Monthly
Cost string - (String) Monthly cost.
- Name string
- The programmatic name of this offering.
- Cost
Components []CmOffering Kind Version Solution Info Cost Estimate Project Diff Resource Cost Component - (List) Cost components. Nested scheme for cost_components:
- Hourly
Cost string - (String) Hourly cost.
- Metadata map[string]string
- (Map) Map of metadata values for this offering.
- Monthly
Cost string - (String) Monthly cost.
- Name string
- The programmatic name of this offering.
- cost
Components List<CmOffering Kind Version Solution Info Cost Estimate Project Diff Resource Cost Component> - (List) Cost components. Nested scheme for cost_components:
- hourly
Cost String - (String) Hourly cost.
- metadata Map<String,String>
- (Map) Map of metadata values for this offering.
- monthly
Cost String - (String) Monthly cost.
- name String
- The programmatic name of this offering.
- cost
Components CmOffering Kind Version Solution Info Cost Estimate Project Diff Resource Cost Component[] - (List) Cost components. Nested scheme for cost_components:
- hourly
Cost string - (String) Hourly cost.
- metadata {[key: string]: string}
- (Map) Map of metadata values for this offering.
- monthly
Cost string - (String) Monthly cost.
- name string
- The programmatic name of this offering.
- cost_
components Sequence[CmOffering Kind Version Solution Info Cost Estimate Project Diff Resource Cost Component] - (List) Cost components. Nested scheme for cost_components:
- hourly_
cost str - (String) Hourly cost.
- metadata Mapping[str, str]
- (Map) Map of metadata values for this offering.
- monthly_
cost str - (String) Monthly cost.
- name str
- The programmatic name of this offering.
- cost
Components List<Property Map> - (List) Cost components. Nested scheme for cost_components:
- hourly
Cost String - (String) Hourly cost.
- metadata Map<String>
- (Map) Map of metadata values for this offering.
- monthly
Cost String - (String) Monthly cost.
- name String
- The programmatic name of this offering.
CmOfferingKindVersionSolutionInfoCostEstimateProjectDiffResourceCostComponent, CmOfferingKindVersionSolutionInfoCostEstimateProjectDiffResourceCostComponentArgs
- Hourly
Cost string - (String) Hourly cost.
- Hourly
Quantity string - (String) Cost component hourly quantity.
- Monthly
Cost string - (String) Monthly cost.
- Monthly
Quantity string - (String) Cost component monthly quantity.
- Name string
- The programmatic name of this offering.
- Price string
- (String) Cost component price.
- Unit string
- (String) Cost component unit.
- Hourly
Cost string - (String) Hourly cost.
- Hourly
Quantity string - (String) Cost component hourly quantity.
- Monthly
Cost string - (String) Monthly cost.
- Monthly
Quantity string - (String) Cost component monthly quantity.
- Name string
- The programmatic name of this offering.
- Price string
- (String) Cost component price.
- Unit string
- (String) Cost component unit.
- hourly
Cost String - (String) Hourly cost.
- hourly
Quantity String - (String) Cost component hourly quantity.
- monthly
Cost String - (String) Monthly cost.
- monthly
Quantity String - (String) Cost component monthly quantity.
- name String
- The programmatic name of this offering.
- price String
- (String) Cost component price.
- unit String
- (String) Cost component unit.
- hourly
Cost string - (String) Hourly cost.
- hourly
Quantity string - (String) Cost component hourly quantity.
- monthly
Cost string - (String) Monthly cost.
- monthly
Quantity string - (String) Cost component monthly quantity.
- name string
- The programmatic name of this offering.
- price string
- (String) Cost component price.
- unit string
- (String) Cost component unit.
- hourly_
cost str - (String) Hourly cost.
- hourly_
quantity str - (String) Cost component hourly quantity.
- monthly_
cost str - (String) Monthly cost.
- monthly_
quantity str - (String) Cost component monthly quantity.
- name str
- The programmatic name of this offering.
- price str
- (String) Cost component price.
- unit str
- (String) Cost component unit.
- hourly
Cost String - (String) Hourly cost.
- hourly
Quantity String - (String) Cost component hourly quantity.
- monthly
Cost String - (String) Monthly cost.
- monthly
Quantity String - (String) Cost component monthly quantity.
- name String
- The programmatic name of this offering.
- price String
- (String) Cost component price.
- unit String
- (String) Cost component unit.
CmOfferingKindVersionSolutionInfoCostEstimateProjectPastBreakdown, CmOfferingKindVersionSolutionInfoCostEstimateProjectPastBreakdownArgs
- Resources
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Past Breakdown Resource> - (List) Resources. Nested scheme for resources:
- Total
Hourly stringCost - (String) Total hourly cost.
- Total
Monthly stringCost - (String) Total monthly cost.
- Resources
[]Cm
Offering Kind Version Solution Info Cost Estimate Project Past Breakdown Resource - (List) Resources. Nested scheme for resources:
- Total
Hourly stringCost - (String) Total hourly cost.
- Total
Monthly stringCost - (String) Total monthly cost.
- resources
List<Cm
Offering Kind Version Solution Info Cost Estimate Project Past Breakdown Resource> - (List) Resources. Nested scheme for resources:
- total
Hourly StringCost - (String) Total hourly cost.
- total
Monthly StringCost - (String) Total monthly cost.
- resources
Cm
Offering Kind Version Solution Info Cost Estimate Project Past Breakdown Resource[] - (List) Resources. Nested scheme for resources:
- total
Hourly stringCost - (String) Total hourly cost.
- total
Monthly stringCost - (String) Total monthly cost.
- resources
Sequence[Cm
Offering Kind Version Solution Info Cost Estimate Project Past Breakdown Resource] - (List) Resources. Nested scheme for resources:
- total_
hourly_ strcost - (String) Total hourly cost.
- total_
monthly_ strcost - (String) Total monthly cost.
- resources List<Property Map>
- (List) Resources. Nested scheme for resources:
- total
Hourly StringCost - (String) Total hourly cost.
- total
Monthly StringCost - (String) Total monthly cost.
CmOfferingKindVersionSolutionInfoCostEstimateProjectPastBreakdownResource, CmOfferingKindVersionSolutionInfoCostEstimateProjectPastBreakdownResourceArgs
- Cost
Components List<CmOffering Kind Version Solution Info Cost Estimate Project Past Breakdown Resource Cost Component> - (List) Cost components. Nested scheme for cost_components:
- Hourly
Cost string - (String) Hourly cost.
- Metadata Dictionary<string, string>
- (Map) Map of metadata values for this offering.
- Monthly
Cost string - (String) Monthly cost.
- Name string
- The programmatic name of this offering.
- Cost
Components []CmOffering Kind Version Solution Info Cost Estimate Project Past Breakdown Resource Cost Component - (List) Cost components. Nested scheme for cost_components:
- Hourly
Cost string - (String) Hourly cost.
- Metadata map[string]string
- (Map) Map of metadata values for this offering.
- Monthly
Cost string - (String) Monthly cost.
- Name string
- The programmatic name of this offering.
- cost
Components List<CmOffering Kind Version Solution Info Cost Estimate Project Past Breakdown Resource Cost Component> - (List) Cost components. Nested scheme for cost_components:
- hourly
Cost String - (String) Hourly cost.
- metadata Map<String,String>
- (Map) Map of metadata values for this offering.
- monthly
Cost String - (String) Monthly cost.
- name String
- The programmatic name of this offering.
- cost
Components CmOffering Kind Version Solution Info Cost Estimate Project Past Breakdown Resource Cost Component[] - (List) Cost components. Nested scheme for cost_components:
- hourly
Cost string - (String) Hourly cost.
- metadata {[key: string]: string}
- (Map) Map of metadata values for this offering.
- monthly
Cost string - (String) Monthly cost.
- name string
- The programmatic name of this offering.
- cost_
components Sequence[CmOffering Kind Version Solution Info Cost Estimate Project Past Breakdown Resource Cost Component] - (List) Cost components. Nested scheme for cost_components:
- hourly_
cost str - (String) Hourly cost.
- metadata Mapping[str, str]
- (Map) Map of metadata values for this offering.
- monthly_
cost str - (String) Monthly cost.
- name str
- The programmatic name of this offering.
- cost
Components List<Property Map> - (List) Cost components. Nested scheme for cost_components:
- hourly
Cost String - (String) Hourly cost.
- metadata Map<String>
- (Map) Map of metadata values for this offering.
- monthly
Cost String - (String) Monthly cost.
- name String
- The programmatic name of this offering.
CmOfferingKindVersionSolutionInfoCostEstimateProjectPastBreakdownResourceCostComponent, CmOfferingKindVersionSolutionInfoCostEstimateProjectPastBreakdownResourceCostComponentArgs
- Hourly
Cost string - (String) Hourly cost.
- Hourly
Quantity string - (String) Cost component hourly quantity.
- Monthly
Cost string - (String) Monthly cost.
- Monthly
Quantity string - (String) Cost component monthly quantity.
- Name string
- The programmatic name of this offering.
- Price string
- (String) Cost component price.
- Unit string
- (String) Cost component unit.
- Hourly
Cost string - (String) Hourly cost.
- Hourly
Quantity string - (String) Cost component hourly quantity.
- Monthly
Cost string - (String) Monthly cost.
- Monthly
Quantity string - (String) Cost component monthly quantity.
- Name string
- The programmatic name of this offering.
- Price string
- (String) Cost component price.
- Unit string
- (String) Cost component unit.
- hourly
Cost String - (String) Hourly cost.
- hourly
Quantity String - (String) Cost component hourly quantity.
- monthly
Cost String - (String) Monthly cost.
- monthly
Quantity String - (String) Cost component monthly quantity.
- name String
- The programmatic name of this offering.
- price String
- (String) Cost component price.
- unit String
- (String) Cost component unit.
- hourly
Cost string - (String) Hourly cost.
- hourly
Quantity string - (String) Cost component hourly quantity.
- monthly
Cost string - (String) Monthly cost.
- monthly
Quantity string - (String) Cost component monthly quantity.
- name string
- The programmatic name of this offering.
- price string
- (String) Cost component price.
- unit string
- (String) Cost component unit.
- hourly_
cost str - (String) Hourly cost.
- hourly_
quantity str - (String) Cost component hourly quantity.
- monthly_
cost str - (String) Monthly cost.
- monthly_
quantity str - (String) Cost component monthly quantity.
- name str
- The programmatic name of this offering.
- price str
- (String) Cost component price.
- unit str
- (String) Cost component unit.
- hourly
Cost String - (String) Hourly cost.
- hourly
Quantity String - (String) Cost component hourly quantity.
- monthly
Cost String - (String) Monthly cost.
- monthly
Quantity String - (String) Cost component monthly quantity.
- name String
- The programmatic name of this offering.
- price String
- (String) Cost component price.
- unit String
- (String) Cost component unit.
CmOfferingKindVersionSolutionInfoCostEstimateProjectSummary, CmOfferingKindVersionSolutionInfoCostEstimateProjectSummaryArgs
- No
Price Dictionary<string, string>Resource Counts - (Map) No price resource counts.
- Total
Detected doubleResources - (Integer) Total detected resources.
- Total
No doublePrice Resources - (Integer) Total no price resources.
- Total
Supported doubleResources - (Integer) Total supported resources.
- Total
Unsupported doubleResources - (Integer) Total unsupported resources.
- Total
Usage doubleBased Resources - (Integer) Total usage based resources.
- Unsupported
Resource Dictionary<string, string>Counts - (Map) Unsupported resource counts.
- No
Price map[string]stringResource Counts - (Map) No price resource counts.
- Total
Detected float64Resources - (Integer) Total detected resources.
- Total
No float64Price Resources - (Integer) Total no price resources.
- Total
Supported float64Resources - (Integer) Total supported resources.
- Total
Unsupported float64Resources - (Integer) Total unsupported resources.
- Total
Usage float64Based Resources - (Integer) Total usage based resources.
- Unsupported
Resource map[string]stringCounts - (Map) Unsupported resource counts.
- no
Price Map<String,String>Resource Counts - (Map) No price resource counts.
- total
Detected DoubleResources - (Integer) Total detected resources.
- total
No DoublePrice Resources - (Integer) Total no price resources.
- total
Supported DoubleResources - (Integer) Total supported resources.
- total
Unsupported DoubleResources - (Integer) Total unsupported resources.
- total
Usage DoubleBased Resources - (Integer) Total usage based resources.
- unsupported
Resource Map<String,String>Counts - (Map) Unsupported resource counts.
- no
Price {[key: string]: string}Resource Counts - (Map) No price resource counts.
- total
Detected numberResources - (Integer) Total detected resources.
- total
No numberPrice Resources - (Integer) Total no price resources.
- total
Supported numberResources - (Integer) Total supported resources.
- total
Unsupported numberResources - (Integer) Total unsupported resources.
- total
Usage numberBased Resources - (Integer) Total usage based resources.
- unsupported
Resource {[key: string]: string}Counts - (Map) Unsupported resource counts.
- no_
price_ Mapping[str, str]resource_ counts - (Map) No price resource counts.
- total_
detected_ floatresources - (Integer) Total detected resources.
- total_
no_ floatprice_ resources - (Integer) Total no price resources.
- total_
supported_ floatresources - (Integer) Total supported resources.
- total_
unsupported_ floatresources - (Integer) Total unsupported resources.
- total_
usage_ floatbased_ resources - (Integer) Total usage based resources.
- unsupported_
resource_ Mapping[str, str]counts - (Map) Unsupported resource counts.
- no
Price Map<String>Resource Counts - (Map) No price resource counts.
- total
Detected NumberResources - (Integer) Total detected resources.
- total
No NumberPrice Resources - (Integer) Total no price resources.
- total
Supported NumberResources - (Integer) Total supported resources.
- total
Unsupported NumberResources - (Integer) Total unsupported resources.
- total
Usage NumberBased Resources - (Integer) Total usage based resources.
- unsupported
Resource Map<String>Counts - (Map) Unsupported resource counts.
CmOfferingKindVersionSolutionInfoCostEstimateSummary, CmOfferingKindVersionSolutionInfoCostEstimateSummaryArgs
- No
Price Dictionary<string, string>Resource Counts - (Map) No price resource counts.
- Total
Detected doubleResources - (Integer) Total detected resources.
- Total
No doublePrice Resources - (Integer) Total no price resources.
- Total
Supported doubleResources - (Integer) Total supported resources.
- Total
Unsupported doubleResources - (Integer) Total unsupported resources.
- Total
Usage doubleBased Resources - (Integer) Total usage based resources.
- Unsupported
Resource Dictionary<string, string>Counts - (Map) Unsupported resource counts.
- No
Price map[string]stringResource Counts - (Map) No price resource counts.
- Total
Detected float64Resources - (Integer) Total detected resources.
- Total
No float64Price Resources - (Integer) Total no price resources.
- Total
Supported float64Resources - (Integer) Total supported resources.
- Total
Unsupported float64Resources - (Integer) Total unsupported resources.
- Total
Usage float64Based Resources - (Integer) Total usage based resources.
- Unsupported
Resource map[string]stringCounts - (Map) Unsupported resource counts.
- no
Price Map<String,String>Resource Counts - (Map) No price resource counts.
- total
Detected DoubleResources - (Integer) Total detected resources.
- total
No DoublePrice Resources - (Integer) Total no price resources.
- total
Supported DoubleResources - (Integer) Total supported resources.
- total
Unsupported DoubleResources - (Integer) Total unsupported resources.
- total
Usage DoubleBased Resources - (Integer) Total usage based resources.
- unsupported
Resource Map<String,String>Counts - (Map) Unsupported resource counts.
- no
Price {[key: string]: string}Resource Counts - (Map) No price resource counts.
- total
Detected numberResources - (Integer) Total detected resources.
- total
No numberPrice Resources - (Integer) Total no price resources.
- total
Supported numberResources - (Integer) Total supported resources.
- total
Unsupported numberResources - (Integer) Total unsupported resources.
- total
Usage numberBased Resources - (Integer) Total usage based resources.
- unsupported
Resource {[key: string]: string}Counts - (Map) Unsupported resource counts.
- no_
price_ Mapping[str, str]resource_ counts - (Map) No price resource counts.
- total_
detected_ floatresources - (Integer) Total detected resources.
- total_
no_ floatprice_ resources - (Integer) Total no price resources.
- total_
supported_ floatresources - (Integer) Total supported resources.
- total_
unsupported_ floatresources - (Integer) Total unsupported resources.
- total_
usage_ floatbased_ resources - (Integer) Total usage based resources.
- unsupported_
resource_ Mapping[str, str]counts - (Map) Unsupported resource counts.
- no
Price Map<String>Resource Counts - (Map) No price resource counts.
- total
Detected NumberResources - (Integer) Total detected resources.
- total
No NumberPrice Resources - (Integer) Total no price resources.
- total
Supported NumberResources - (Integer) Total supported resources.
- total
Unsupported NumberResources - (Integer) Total unsupported resources.
- total
Usage NumberBased Resources - (Integer) Total usage based resources.
- unsupported
Resource Map<String>Counts - (Map) Unsupported resource counts.
CmOfferingKindVersionSolutionInfoDependency, CmOfferingKindVersionSolutionInfoDependencyArgs
- catalog_
id str - Catalog identifier.
- flavors Sequence[str]
- (List) Optional - List of dependent flavors in the specified range.
- id str
- (String) The id of this provider.
- name str
- The programmatic name of this offering.
- version str
- (String) Version of content type.
CmOfferingKindVersionSolutionInfoFeature, CmOfferingKindVersionSolutionInfoFeatureArgs
- Description string
- Feature description.
- Description
I18n Dictionary<string, string> - A map of translated strings, by language code.
- Title string
- Heading.
- Title
I18n Dictionary<string, string> - A map of translated strings, by language code.
- Description string
- Feature description.
- Description
I18n map[string]string - A map of translated strings, by language code.
- Title string
- Heading.
- Title
I18n map[string]string - A map of translated strings, by language code.
- description String
- Feature description.
- description
I18n Map<String,String> - A map of translated strings, by language code.
- title String
- Heading.
- title
I18n Map<String,String> - A map of translated strings, by language code.
- description string
- Feature description.
- description
I18n {[key: string]: string} - A map of translated strings, by language code.
- title string
- Heading.
- title
I18n {[key: string]: string} - A map of translated strings, by language code.
- description str
- Feature description.
- description_
i18n Mapping[str, str] - A map of translated strings, by language code.
- title str
- Heading.
- title_
i18n Mapping[str, str] - A map of translated strings, by language code.
- description String
- Feature description.
- description
I18n Map<String> - A map of translated strings, by language code.
- title String
- Heading.
- title
I18n Map<String> - A map of translated strings, by language code.
CmOfferingKindVersionState, CmOfferingKindVersionStateArgs
- Current string
- (String) one of: new, validated, account-published, ibm-published, public-published.
- Current
Entered string - (String) Date and time of current request.
- Pending string
- (String) one of: new, validated, account-published, ibm-published, public-published.
- Pending
Requested string - (String) Date and time of pending request.
- Previous string
- (String) one of: new, validated, account-published, ibm-published, public-published.
- Current string
- (String) one of: new, validated, account-published, ibm-published, public-published.
- Current
Entered string - (String) Date and time of current request.
- Pending string
- (String) one of: new, validated, account-published, ibm-published, public-published.
- Pending
Requested string - (String) Date and time of pending request.
- Previous string
- (String) one of: new, validated, account-published, ibm-published, public-published.
- current String
- (String) one of: new, validated, account-published, ibm-published, public-published.
- current
Entered String - (String) Date and time of current request.
- pending String
- (String) one of: new, validated, account-published, ibm-published, public-published.
- pending
Requested String - (String) Date and time of pending request.
- previous String
- (String) one of: new, validated, account-published, ibm-published, public-published.
- current string
- (String) one of: new, validated, account-published, ibm-published, public-published.
- current
Entered string - (String) Date and time of current request.
- pending string
- (String) one of: new, validated, account-published, ibm-published, public-published.
- pending
Requested string - (String) Date and time of pending request.
- previous string
- (String) one of: new, validated, account-published, ibm-published, public-published.
- current str
- (String) one of: new, validated, account-published, ibm-published, public-published.
- current_
entered str - (String) Date and time of current request.
- pending str
- (String) one of: new, validated, account-published, ibm-published, public-published.
- pending_
requested str - (String) Date and time of pending request.
- previous str
- (String) one of: new, validated, account-published, ibm-published, public-published.
- current String
- (String) one of: new, validated, account-published, ibm-published, public-published.
- current
Entered String - (String) Date and time of current request.
- pending String
- (String) one of: new, validated, account-published, ibm-published, public-published.
- pending
Requested String - (String) Date and time of pending request.
- previous String
- (String) one of: new, validated, account-published, ibm-published, public-published.
CmOfferingKindVersionValidation, CmOfferingKindVersionValidationArgs
- Last
Operation string - (String) Last operation (e.g. submit_deployment, generate_installer, install_offering.
- Message string
- (String) Any message needing to be conveyed as part of the validation job.
- Requested string
- (String) Date and time of last validation was requested.
- State string
- (String) Current validation state - , in_progress, valid, invalid, expired.
- Target Dictionary<string, string>
- (Map) Validation target information (e.g. cluster_id, region, namespace, etc). Values will vary by Content type.
- Validated string
- (String) Date and time of last successful validation.
- Last
Operation string - (String) Last operation (e.g. submit_deployment, generate_installer, install_offering.
- Message string
- (String) Any message needing to be conveyed as part of the validation job.
- Requested string
- (String) Date and time of last validation was requested.
- State string
- (String) Current validation state - , in_progress, valid, invalid, expired.
- Target map[string]string
- (Map) Validation target information (e.g. cluster_id, region, namespace, etc). Values will vary by Content type.
- Validated string
- (String) Date and time of last successful validation.
- last
Operation String - (String) Last operation (e.g. submit_deployment, generate_installer, install_offering.
- message String
- (String) Any message needing to be conveyed as part of the validation job.
- requested String
- (String) Date and time of last validation was requested.
- state String
- (String) Current validation state - , in_progress, valid, invalid, expired.
- target Map<String,String>
- (Map) Validation target information (e.g. cluster_id, region, namespace, etc). Values will vary by Content type.
- validated String
- (String) Date and time of last successful validation.
- last
Operation string - (String) Last operation (e.g. submit_deployment, generate_installer, install_offering.
- message string
- (String) Any message needing to be conveyed as part of the validation job.
- requested string
- (String) Date and time of last validation was requested.
- state string
- (String) Current validation state - , in_progress, valid, invalid, expired.
- target {[key: string]: string}
- (Map) Validation target information (e.g. cluster_id, region, namespace, etc). Values will vary by Content type.
- validated string
- (String) Date and time of last successful validation.
- last_
operation str - (String) Last operation (e.g. submit_deployment, generate_installer, install_offering.
- message str
- (String) Any message needing to be conveyed as part of the validation job.
- requested str
- (String) Date and time of last validation was requested.
- state str
- (String) Current validation state - , in_progress, valid, invalid, expired.
- target Mapping[str, str]
- (Map) Validation target information (e.g. cluster_id, region, namespace, etc). Values will vary by Content type.
- validated str
- (String) Date and time of last successful validation.
- last
Operation String - (String) Last operation (e.g. submit_deployment, generate_installer, install_offering.
- message String
- (String) Any message needing to be conveyed as part of the validation job.
- requested String
- (String) Date and time of last validation was requested.
- state String
- (String) Current validation state - , in_progress, valid, invalid, expired.
- target Map<String>
- (Map) Validation target information (e.g. cluster_id, region, namespace, etc). Values will vary by Content type.
- validated String
- (String) Date and time of last successful validation.
CmOfferingMedia, CmOfferingMediaArgs
- Api
Url string - CM API specific URL of the specified media item.
- Caption string
- Caption for this media item.
- Caption
I18n Dictionary<string, string> - A map of translated strings, by language code.
- Thumbnail
Url string - Thumbnail URL for this media item.
- Type string
- Type of this media item.
- Url string
- URL of the specified media item.
- Url
Proxy CmOffering Media Url Proxy - Offering URL proxy information. Nested scheme for url_proxy:
- Api
Url string - CM API specific URL of the specified media item.
- Caption string
- Caption for this media item.
- Caption
I18n map[string]string - A map of translated strings, by language code.
- Thumbnail
Url string - Thumbnail URL for this media item.
- Type string
- Type of this media item.
- Url string
- URL of the specified media item.
- Url
Proxy CmOffering Media Url Proxy - Offering URL proxy information. Nested scheme for url_proxy:
- api
Url String - CM API specific URL of the specified media item.
- caption String
- Caption for this media item.
- caption
I18n Map<String,String> - A map of translated strings, by language code.
- thumbnail
Url String - Thumbnail URL for this media item.
- type String
- Type of this media item.
- url String
- URL of the specified media item.
- url
Proxy CmOffering Media Url Proxy - Offering URL proxy information. Nested scheme for url_proxy:
- api
Url string - CM API specific URL of the specified media item.
- caption string
- Caption for this media item.
- caption
I18n {[key: string]: string} - A map of translated strings, by language code.
- thumbnail
Url string - Thumbnail URL for this media item.
- type string
- Type of this media item.
- url string
- URL of the specified media item.
- url
Proxy CmOffering Media Url Proxy - Offering URL proxy information. Nested scheme for url_proxy:
- api_
url str - CM API specific URL of the specified media item.
- caption str
- Caption for this media item.
- caption_
i18n Mapping[str, str] - A map of translated strings, by language code.
- thumbnail_
url str - Thumbnail URL for this media item.
- type str
- Type of this media item.
- url str
- URL of the specified media item.
- url_
proxy CmOffering Media Url Proxy - Offering URL proxy information. Nested scheme for url_proxy:
- api
Url String - CM API specific URL of the specified media item.
- caption String
- Caption for this media item.
- caption
I18n Map<String> - A map of translated strings, by language code.
- thumbnail
Url String - Thumbnail URL for this media item.
- type String
- Type of this media item.
- url String
- URL of the specified media item.
- url
Proxy Property Map - Offering URL proxy information. Nested scheme for url_proxy:
CmOfferingMediaUrlProxy, CmOfferingMediaUrlProxyArgs
CmOfferingProviderInfo, CmOfferingProviderInfoArgs
CmOfferingRating, CmOfferingRatingArgs
- Four
Star doubleCount - (Integer) Four start rating.
- One
Star doubleCount - (Integer) One start rating.
- Three
Star doubleCount - (Integer) Three start rating.
- Two
Star doubleCount - (Integer) Two start rating.
- Four
Star float64Count - (Integer) Four start rating.
- One
Star float64Count - (Integer) One start rating.
- Three
Star float64Count - (Integer) Three start rating.
- Two
Star float64Count - (Integer) Two start rating.
- four
Star DoubleCount - (Integer) Four start rating.
- one
Star DoubleCount - (Integer) One start rating.
- three
Star DoubleCount - (Integer) Three start rating.
- two
Star DoubleCount - (Integer) Two start rating.
- four
Star numberCount - (Integer) Four start rating.
- one
Star numberCount - (Integer) One start rating.
- three
Star numberCount - (Integer) Three start rating.
- two
Star numberCount - (Integer) Two start rating.
- four_
star_ floatcount - (Integer) Four start rating.
- one_
star_ floatcount - (Integer) One start rating.
- three_
star_ floatcount - (Integer) Three start rating.
- two_
star_ floatcount - (Integer) Two start rating.
- four
Star NumberCount - (Integer) Four start rating.
- one
Star NumberCount - (Integer) One start rating.
- three
Star NumberCount - (Integer) Three start rating.
- two
Star NumberCount - (Integer) Two start rating.
CmOfferingRepoInfo, CmOfferingRepoInfoArgs
CmOfferingSupport, CmOfferingSupportArgs
- Locations List<string>
- (List) A list of country codes indicating where support is provided.
- Process string
- (String) Support process as provided by an ISV.
- Process
I18n Dictionary<string, string> - (Map) A map of translated strings, by language code.
- Support
Details List<CmOffering Support Support Detail> - (List) A list of support options (e.g. email, phone, slack, other). Nested scheme for support_details:
- Support
Escalations List<CmOffering Support Support Escalation> - (List) Support escalation policy. Nested scheme for support_escalation:
- Support
Type string - (String) Support type for this product.
- Url string
- (String) The url for this specific offering.
- Locations []string
- (List) A list of country codes indicating where support is provided.
- Process string
- (String) Support process as provided by an ISV.
- Process
I18n map[string]string - (Map) A map of translated strings, by language code.
- Support
Details []CmOffering Support Support Detail - (List) A list of support options (e.g. email, phone, slack, other). Nested scheme for support_details:
- Support
Escalations []CmOffering Support Support Escalation - (List) Support escalation policy. Nested scheme for support_escalation:
- Support
Type string - (String) Support type for this product.
- Url string
- (String) The url for this specific offering.
- locations List<String>
- (List) A list of country codes indicating where support is provided.
- process String
- (String) Support process as provided by an ISV.
- process
I18n Map<String,String> - (Map) A map of translated strings, by language code.
- support
Details List<CmOffering Support Support Detail> - (List) A list of support options (e.g. email, phone, slack, other). Nested scheme for support_details:
- support
Escalations List<CmOffering Support Support Escalation> - (List) Support escalation policy. Nested scheme for support_escalation:
- support
Type String - (String) Support type for this product.
- url String
- (String) The url for this specific offering.
- locations string[]
- (List) A list of country codes indicating where support is provided.
- process string
- (String) Support process as provided by an ISV.
- process
I18n {[key: string]: string} - (Map) A map of translated strings, by language code.
- support
Details CmOffering Support Support Detail[] - (List) A list of support options (e.g. email, phone, slack, other). Nested scheme for support_details:
- support
Escalations CmOffering Support Support Escalation[] - (List) Support escalation policy. Nested scheme for support_escalation:
- support
Type string - (String) Support type for this product.
- url string
- (String) The url for this specific offering.
- locations Sequence[str]
- (List) A list of country codes indicating where support is provided.
- process str
- (String) Support process as provided by an ISV.
- process_
i18n Mapping[str, str] - (Map) A map of translated strings, by language code.
- support_
details Sequence[CmOffering Support Support Detail] - (List) A list of support options (e.g. email, phone, slack, other). Nested scheme for support_details:
- support_
escalations Sequence[CmOffering Support Support Escalation] - (List) Support escalation policy. Nested scheme for support_escalation:
- support_
type str - (String) Support type for this product.
- url str
- (String) The url for this specific offering.
- locations List<String>
- (List) A list of country codes indicating where support is provided.
- process String
- (String) Support process as provided by an ISV.
- process
I18n Map<String> - (Map) A map of translated strings, by language code.
- support
Details List<Property Map> - (List) A list of support options (e.g. email, phone, slack, other). Nested scheme for support_details:
- support
Escalations List<Property Map> - (List) Support escalation policy. Nested scheme for support_escalation:
- support
Type String - (String) Support type for this product.
- url String
- (String) The url for this specific offering.
CmOfferingSupportSupportDetail, CmOfferingSupportSupportDetailArgs
- Availabilities
List<Cm
Offering Support Support Detail Availability> - (List) Times when support is available. Nested scheme for availability:
- Contact string
- (String) Escalation contact.
- Response
Wait List<CmTimes Offering Support Support Detail Response Wait Time> - (List) Time descriptor. Nested scheme for response_wait_time:
- Type string
- (String) Valid values are hour or day.
- Availabilities
[]Cm
Offering Support Support Detail Availability - (List) Times when support is available. Nested scheme for availability:
- Contact string
- (String) Escalation contact.
- Response
Wait []CmTimes Offering Support Support Detail Response Wait Time - (List) Time descriptor. Nested scheme for response_wait_time:
- Type string
- (String) Valid values are hour or day.
- availabilities
List<Cm
Offering Support Support Detail Availability> - (List) Times when support is available. Nested scheme for availability:
- contact String
- (String) Escalation contact.
- response
Wait List<CmTimes Offering Support Support Detail Response Wait Time> - (List) Time descriptor. Nested scheme for response_wait_time:
- type String
- (String) Valid values are hour or day.
- availabilities
Cm
Offering Support Support Detail Availability[] - (List) Times when support is available. Nested scheme for availability:
- contact string
- (String) Escalation contact.
- response
Wait CmTimes Offering Support Support Detail Response Wait Time[] - (List) Time descriptor. Nested scheme for response_wait_time:
- type string
- (String) Valid values are hour or day.
- availabilities
Sequence[Cm
Offering Support Support Detail Availability] - (List) Times when support is available. Nested scheme for availability:
- contact str
- (String) Escalation contact.
- response_
wait_ Sequence[Cmtimes Offering Support Support Detail Response Wait Time] - (List) Time descriptor. Nested scheme for response_wait_time:
- type str
- (String) Valid values are hour or day.
- availabilities List<Property Map>
- (List) Times when support is available. Nested scheme for availability:
- contact String
- (String) Escalation contact.
- response
Wait List<Property Map>Times - (List) Time descriptor. Nested scheme for response_wait_time:
- type String
- (String) Valid values are hour or day.
CmOfferingSupportSupportDetailAvailability, CmOfferingSupportSupportDetailAvailabilityArgs
- Always
Available bool - (Boolean) Is this support always available.
- Times
List<Cm
Offering Support Support Detail Availability Time> - (List) A list of support times. Nested scheme for times:
- Timezone string
- (String) Timezone (e.g. America/New_York).
- Always
Available bool - (Boolean) Is this support always available.
- Times
[]Cm
Offering Support Support Detail Availability Time - (List) A list of support times. Nested scheme for times:
- Timezone string
- (String) Timezone (e.g. America/New_York).
- always
Available Boolean - (Boolean) Is this support always available.
- times
List<Cm
Offering Support Support Detail Availability Time> - (List) A list of support times. Nested scheme for times:
- timezone String
- (String) Timezone (e.g. America/New_York).
- always
Available boolean - (Boolean) Is this support always available.
- times
Cm
Offering Support Support Detail Availability Time[] - (List) A list of support times. Nested scheme for times:
- timezone string
- (String) Timezone (e.g. America/New_York).
- always_
available bool - (Boolean) Is this support always available.
- times
Sequence[Cm
Offering Support Support Detail Availability Time] - (List) A list of support times. Nested scheme for times:
- timezone str
- (String) Timezone (e.g. America/New_York).
- always
Available Boolean - (Boolean) Is this support always available.
- times List<Property Map>
- (List) A list of support times. Nested scheme for times:
- timezone String
- (String) Timezone (e.g. America/New_York).
CmOfferingSupportSupportDetailAvailabilityTime, CmOfferingSupportSupportDetailAvailabilityTimeArgs
- day float
- (Integer) The day of the week, represented as an integer.
- end_
time str - (String) HOURS:MINUTES:SECONDS using 24 hour time (e.g. 8:15:00).
- start_
time str - (String) HOURS:MINUTES:SECONDS using 24 hour time (e.g. 8:15:00).
CmOfferingSupportSupportDetailResponseWaitTime, CmOfferingSupportSupportDetailResponseWaitTimeArgs
CmOfferingSupportSupportEscalation, CmOfferingSupportSupportEscalationArgs
- Contact string
- (String) Escalation contact.
- Escalation
Wait List<CmTimes Offering Support Support Escalation Escalation Wait Time> - (List) Time descriptor. Nested scheme for escalation_wait_time:
- Response
Wait List<CmTimes Offering Support Support Escalation Response Wait Time> - (List) Time descriptor. Nested scheme for response_wait_time:
- Contact string
- (String) Escalation contact.
- Escalation
Wait []CmTimes Offering Support Support Escalation Escalation Wait Time - (List) Time descriptor. Nested scheme for escalation_wait_time:
- Response
Wait []CmTimes Offering Support Support Escalation Response Wait Time - (List) Time descriptor. Nested scheme for response_wait_time:
- contact String
- (String) Escalation contact.
- escalation
Wait List<CmTimes Offering Support Support Escalation Escalation Wait Time> - (List) Time descriptor. Nested scheme for escalation_wait_time:
- response
Wait List<CmTimes Offering Support Support Escalation Response Wait Time> - (List) Time descriptor. Nested scheme for response_wait_time:
- contact string
- (String) Escalation contact.
- escalation
Wait CmTimes Offering Support Support Escalation Escalation Wait Time[] - (List) Time descriptor. Nested scheme for escalation_wait_time:
- response
Wait CmTimes Offering Support Support Escalation Response Wait Time[] - (List) Time descriptor. Nested scheme for response_wait_time:
- contact str
- (String) Escalation contact.
- escalation_
wait_ Sequence[Cmtimes Offering Support Support Escalation Escalation Wait Time] - (List) Time descriptor. Nested scheme for escalation_wait_time:
- response_
wait_ Sequence[Cmtimes Offering Support Support Escalation Response Wait Time] - (List) Time descriptor. Nested scheme for response_wait_time:
- contact String
- (String) Escalation contact.
- escalation
Wait List<Property Map>Times - (List) Time descriptor. Nested scheme for escalation_wait_time:
- response
Wait List<Property Map>Times - (List) Time descriptor. Nested scheme for response_wait_time:
CmOfferingSupportSupportEscalationEscalationWaitTime, CmOfferingSupportSupportEscalationEscalationWaitTimeArgs
CmOfferingSupportSupportEscalationResponseWaitTime, CmOfferingSupportSupportEscalationResponseWaitTimeArgs
Import
You can import the ibm_cm_offering
resource by using id
.
The id
property is just the offering_id
.
offering_id
: A string. Offering identification.
Syntax
$ pulumi import ibm:index/cmOffering:CmOffering cm_offering <offering_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.