Commit 73b445ce authored by xiaohua guan's avatar xiaohua guan Committed by Yas Naoi
Browse files

Issue #3322021 by Xiaohua Guan, yas: Create entity type OpenStack Heat

parent c6cc8ec6
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -20,6 +20,8 @@ dependencies:
    - field.field.cloud_config.openstack.field_location_longitude
    - field.field.cloud_config.openstack.field_network_api_endpoint
    - field.field.cloud_config.openstack.field_network_version
    - field.field.cloud_config.openstack.field_orchestration_api_endpoint
    - field.field.cloud_config.openstack.field_orchestration_version
    - field.field.cloud_config.openstack.field_os_region
    - field.field.cloud_config.openstack.field_password
    - field.field.cloud_config.openstack.field_project_id
@@ -171,6 +173,22 @@ content:
      size: 60
      placeholder: ''
    third_party_settings: {  }
  field_orchestration_api_endpoint:
    type: string_textfield
    weight: 29
    region: content
    settings:
      size: 60
      placeholder: ''
    third_party_settings: {  }
  field_orchestration_version:
    type: string_textfield
    weight: 30
    region: content
    settings:
      size: 60
      placeholder: ''
    third_party_settings: {  }
  field_os_region:
    type: string_textfield
    weight: 4
+18 −0
Original line number Diff line number Diff line
@@ -20,6 +20,8 @@ dependencies:
    - field.field.cloud_config.openstack.field_location_longitude
    - field.field.cloud_config.openstack.field_network_api_endpoint
    - field.field.cloud_config.openstack.field_network_version
    - field.field.cloud_config.openstack.field_orchestration_api_endpoint
    - field.field.cloud_config.openstack.field_orchestration_version
    - field.field.cloud_config.openstack.field_os_region
    - field.field.cloud_config.openstack.field_password
    - field.field.cloud_config.openstack.field_project_id
@@ -184,6 +186,22 @@ content:
    third_party_settings: {  }
    weight: 25
    region: content
  field_orchestration_api_endpoint:
    type: string
    label: above
    settings:
      link_to_entity: false
    third_party_settings: {  }
    weight: 29
    region: content
  field_orchestration_version:
    type: string
    label: above
    settings:
      link_to_entity: false
    third_party_settings: {  }
    weight: 30
    region: content
  field_os_region:
    type: string
    label: above
+18 −0
Original line number Diff line number Diff line
langcode: en
status: true
dependencies:
  config:
    - cloud.cloud_config_type.openstack
    - field.storage.cloud_config.field_orchestration_api_endpoint
id: cloud_config.openstack.field_orchestration_api_endpoint
field_name: field_orchestration_api_endpoint
entity_type: cloud_config
bundle: openstack
label: 'Orchestration API endpoint'
description: 'Fully qualified endpoint including scheme and port. e.g. https://example.com:8004 (port-based) or https://example.com/heat-api (path-based)'
required: false
translatable: false
default_value: {  }
default_value_callback: ''
settings: {  }
field_type: string
+20 −0
Original line number Diff line number Diff line
langcode: en
status: true
dependencies:
  config:
    - cloud.cloud_config_type.openstack
    - field.storage.cloud_config.field_orchestration_version
id: cloud_config.openstack.field_orchestration_version
field_name: field_orchestration_version
entity_type: cloud_config
bundle: openstack
label: 'Orchestration API version'
description: ''
required: false
translatable: false
default_value:
  -
    value: v1
default_value_callback: ''
settings: {  }
field_type: string
+23 −0
Original line number Diff line number Diff line
langcode: en
status: true
dependencies:
  module:
    - cloud
  enforced:
    module:
      - openstack
id: cloud_config.field_orchestration_api_endpoint
field_name: field_orchestration_api_endpoint
entity_type: cloud_config
type: string
settings:
  max_length: 255
  case_sensitive: false
  is_ascii: false
module: core
locked: false
cardinality: 1
translatable: true
indexes: {  }
persist_with_no_fields: false
custom_storage: false
Loading