network flavor profile

A network flavor profile allows administrators to create, delete, list, show and update network service profile, which details a framework to enable operators to configure and users to select from different abstract representations of a service implementation in the Networking service. It decouples the logical configuration from its instantiation enabling operators to create user options according to deployment needs.

Network v2

network flavor profile create

Create new network flavor profile

openstack network flavor profile create
    [--project <project>]
    [--project-domain <project-domain>]
    [--description <description>]
    [--enable | --disable]
    [--driver DRIVER]
    [--metainfo METAINFO]
--project <project>

Owner’s project (name or ID)

--project-domain <project-domain>

Domain the project belongs to (name or ID). This can be used in case collisions between project names exist.

--description <description>

Description for the flavor profile

--enable

Enable the flavor profile

--disable

Disable the flavor profile

--driver <DRIVER>

Python module path to driver. This becomes required if –metainfo is missing and vice versa

--metainfo <METAINFO>

Metainfo for the flavor profile. This becomes required if –driver is missing and vice versa

This command is provided by the python-openstackclient plugin.

network flavor profile delete

Delete network flavor profile

openstack network flavor profile delete
    <flavor-profile>
    [<flavor-profile> ...]
flavor-profile

Flavor profile(s) to delete (ID only)

This command is provided by the python-openstackclient plugin.

network flavor profile list

List network flavor profile(s)

openstack network flavor profile list [--sort-column SORT_COLUMN]
--sort-column SORT_COLUMN

specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated

This command is provided by the python-openstackclient plugin.

network flavor profile set

Set network flavor profile properties

openstack network flavor profile set
    [--project-domain <project-domain>]
    [--description <description>]
    [--enable | --disable]
    [--driver DRIVER]
    [--metainfo METAINFO]
    <flavor-profile>
--project-domain <project-domain>

Domain the project belongs to (name or ID). This can be used in case collisions between project names exist.

--description <description>

Description for the flavor profile

--enable

Enable the flavor profile

--disable

Disable the flavor profile

--driver <DRIVER>

Python module path to driver. This becomes required if –metainfo is missing and vice versa

--metainfo <METAINFO>

Metainfo for the flavor profile. This becomes required if –driver is missing and vice versa

flavor-profile

Flavor profile to update (ID only)

This command is provided by the python-openstackclient plugin.

network flavor profile show

Display network flavor profile details

openstack network flavor profile show <flavor-profile>
flavor-profile

Flavor profile to display (ID only)

This command is provided by the python-openstackclient plugin.