Class: OCI::FleetAppsManagement::Models::CreateCatalogItemDetails
- Inherits:
-
Object
- Object
- OCI::FleetAppsManagement::Models::CreateCatalogItemDetails
- Defined in:
- lib/oci/fleet_apps_management/models/create_catalog_item_details.rb
Overview
The data to create a CatalogItem.
Instance Attribute Summary collapse
- #catalog_source_payload ⇒ OCI::FleetAppsManagement::Models::CatalogSourcePayload
-
#compartment_id ⇒ String
[Required] The OCID of the compartment.
-
#config_source_type ⇒ String
[Required] Config source type Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, GIT_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#description ⇒ String
[Required] The description of the CatalogItem.
-
#display_name ⇒ String
[Required] The CatalogItem name.
-
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair that is applied without any predefined name, type or scope.
-
#listing_id ⇒ String
The catalog listing Id.
-
#listing_version ⇒ String
The catalog package version.
-
#package_type ⇒ String
[Required] Config package type Eg: TF_PACKAGE, NON_TF_PACKAGE, CONFIG_FILE.
-
#short_description ⇒ String
Short description about the catalog item.
-
#time_released ⇒ DateTime
The date and time the CatalogItem was released, in the format defined by RFC 3339.
-
#version_description ⇒ String
Version description about the catalog item.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ CreateCatalogItemDetails
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ CreateCatalogItemDetails
Initializes the object
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 134 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId'] raise 'You cannot provide both :compartmentId and :compartment_id' if attributes.key?(:'compartmentId') && attributes.key?(:'compartment_id') self.compartment_id = attributes[:'compartment_id'] if attributes[:'compartment_id'] self.config_source_type = attributes[:'configSourceType'] if attributes[:'configSourceType'] raise 'You cannot provide both :configSourceType and :config_source_type' if attributes.key?(:'configSourceType') && attributes.key?(:'config_source_type') self.config_source_type = attributes[:'config_source_type'] if attributes[:'config_source_type'] self.description = attributes[:'description'] if attributes[:'description'] self.version_description = attributes[:'versionDescription'] if attributes[:'versionDescription'] raise 'You cannot provide both :versionDescription and :version_description' if attributes.key?(:'versionDescription') && attributes.key?(:'version_description') self.version_description = attributes[:'version_description'] if attributes[:'version_description'] self.short_description = attributes[:'shortDescription'] if attributes[:'shortDescription'] raise 'You cannot provide both :shortDescription and :short_description' if attributes.key?(:'shortDescription') && attributes.key?(:'short_description') self.short_description = attributes[:'short_description'] if attributes[:'short_description'] self.time_released = attributes[:'timeReleased'] if attributes[:'timeReleased'] raise 'You cannot provide both :timeReleased and :time_released' if attributes.key?(:'timeReleased') && attributes.key?(:'time_released') self.time_released = attributes[:'time_released'] if attributes[:'time_released'] self.display_name = attributes[:'displayName'] if attributes[:'displayName'] raise 'You cannot provide both :displayName and :display_name' if attributes.key?(:'displayName') && attributes.key?(:'display_name') self.display_name = attributes[:'display_name'] if attributes[:'display_name'] self.catalog_source_payload = attributes[:'catalogSourcePayload'] if attributes[:'catalogSourcePayload'] raise 'You cannot provide both :catalogSourcePayload and :catalog_source_payload' if attributes.key?(:'catalogSourcePayload') && attributes.key?(:'catalog_source_payload') self.catalog_source_payload = attributes[:'catalog_source_payload'] if attributes[:'catalog_source_payload'] self.listing_id = attributes[:'listingId'] if attributes[:'listingId'] raise 'You cannot provide both :listingId and :listing_id' if attributes.key?(:'listingId') && attributes.key?(:'listing_id') self.listing_id = attributes[:'listing_id'] if attributes[:'listing_id'] self.listing_version = attributes[:'listingVersion'] if attributes[:'listingVersion'] raise 'You cannot provide both :listingVersion and :listing_version' if attributes.key?(:'listingVersion') && attributes.key?(:'listing_version') self.listing_version = attributes[:'listing_version'] if attributes[:'listing_version'] self.package_type = attributes[:'packageType'] if attributes[:'packageType'] raise 'You cannot provide both :packageType and :package_type' if attributes.key?(:'packageType') && attributes.key?(:'package_type') self.package_type = attributes[:'package_type'] if attributes[:'package_type'] self. = attributes[:'freeformTags'] if attributes[:'freeformTags'] raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags') self. = attributes[:'freeform_tags'] if attributes[:'freeform_tags'] self. = attributes[:'definedTags'] if attributes[:'definedTags'] raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags') self. = attributes[:'defined_tags'] if attributes[:'defined_tags'] end |
Instance Attribute Details
#catalog_source_payload ⇒ OCI::FleetAppsManagement::Models::CatalogSourcePayload
44 45 46 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 44 def catalog_source_payload @catalog_source_payload end |
#compartment_id ⇒ String
[Required] The OCID of the compartment.
13 14 15 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 13 def compartment_id @compartment_id end |
#config_source_type ⇒ String
[Required] Config source type Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, GIT_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
18 19 20 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 18 def config_source_type @config_source_type end |
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {\"foo-namespace\": {\"bar-key\": \"value\"}}
71 72 73 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 71 def @defined_tags end |
#description ⇒ String
[Required] The description of the CatalogItem.
23 24 25 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 23 def description @description end |
#display_name ⇒ String
[Required] The CatalogItem name.
41 42 43 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 41 def display_name @display_name end |
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {\"bar-key\": \"value\"}
65 66 67 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 65 def @freeform_tags end |
#listing_id ⇒ String
The catalog listing Id.
49 50 51 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 49 def listing_id @listing_id end |
#listing_version ⇒ String
The catalog package version.
54 55 56 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 54 def listing_version @listing_version end |
#package_type ⇒ String
[Required] Config package type Eg: TF_PACKAGE, NON_TF_PACKAGE, CONFIG_FILE.
59 60 61 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 59 def package_type @package_type end |
#short_description ⇒ String
Short description about the catalog item.
31 32 33 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 31 def short_description @short_description end |
#time_released ⇒ DateTime
The date and time the CatalogItem was released, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
37 38 39 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 37 def time_released @time_released end |
#version_description ⇒ String
Version description about the catalog item.
27 28 29 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 27 def version_description @version_description end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 74 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'compartment_id': :'compartmentId', 'config_source_type': :'configSourceType', 'description': :'description', 'version_description': :'versionDescription', 'short_description': :'shortDescription', 'time_released': :'timeReleased', 'display_name': :'displayName', 'catalog_source_payload': :'catalogSourcePayload', 'listing_id': :'listingId', 'listing_version': :'listingVersion', 'package_type': :'packageType', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 95 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'compartment_id': :'String', 'config_source_type': :'String', 'description': :'String', 'version_description': :'String', 'short_description': :'String', 'time_released': :'DateTime', 'display_name': :'String', 'catalog_source_payload': :'OCI::FleetAppsManagement::Models::CatalogSourcePayload', 'listing_id': :'String', 'listing_version': :'String', 'package_type': :'String', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 222 def ==(other) return true if equal?(other) self.class == other.class && compartment_id == other.compartment_id && config_source_type == other.config_source_type && description == other.description && version_description == other.version_description && short_description == other.short_description && time_released == other.time_released && display_name == other.display_name && catalog_source_payload == other.catalog_source_payload && listing_id == other.listing_id && listing_version == other.listing_version && package_type == other.package_type && == other. && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 264 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
244 245 246 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 244 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
253 254 255 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 253 def hash [compartment_id, config_source_type, description, version_description, short_description, time_released, display_name, catalog_source_payload, listing_id, listing_version, package_type, , ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
297 298 299 300 301 302 303 304 305 306 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 297 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
291 292 293 |
# File 'lib/oci/fleet_apps_management/models/create_catalog_item_details.rb', line 291 def to_s to_hash.to_s end |