![]() |
Consumption Analytics Documentation |
Retrieves the list of all rate plans defined in your Cloud Cruiser system.
XML text with root element
ratePlans
and the following XML schema:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.cloudcruiser.com/webservices/v1/RatePlan" targetNamespace="http://www.cloudcruiser.com/webservices/v1/RatePlan">
<xs:element name="ratePlans">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" ref="tns:ratePlan"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType name="RatePlan">
<xs:all>
<xs:element name="name" type="xs:string"/>
<xs:element name="defaultPlan" type="xs:boolean"/>
</xs:all>
<xs:attribute name="id" type="xs:int"/>
</xs:complexType>
</xs:schema>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ratePlans xmlns="http://www.cloudcruiser.com/webservices/v1/RatePlan">
<ratePlan id="1">
<name>default</name>
<defaultPlan>true</defaultPlan>
</ratePlan>
<ratePlan id="2">
<name>Customer 1</name>
<defaultPlan>false</defaultPlan>
</ratePlan>
<ratePlan id="3">
<name>Customer 2</name>
<defaultPlan>false</defaultPlan>
</ratePlan>
</ratePlans>
(c) Copyright 2017-2020 Hewlett Packard Enterprise Development LP