Interface ServiceDescriptionInterface
A ServiceDescription stores service information based on a service document
-
Guzzle\Service\Description\ServiceDescriptionInterface
implements
Serializable
Methods summary
public
string
|
#
getBaseUrl( )
Get the basePath/baseUrl of the description
Get the basePath/baseUrl of the description
Returns
string
|
public
array
|
#
getOperations( )
Get the API operations of the service
Get the API operations of the service
Returns
|
public
boolean
|
#
hasOperation( string $name )
Check if the service has an operation by name
Check if the service has an operation by name
Parameters
- $name
- Name of the operation to check
Returns
boolean
|
public
Guzzle\Service\Description\OperationInterface |null
|
#
getOperation( string $name )
Get an API operation by name
Get an API operation by name
Parameters
- $name
- Name of the command
Returns
|
public
Guzzle\Service\Description\Parameter |null
|
#
getModel( string $id )
Get a specific model from the description
Get a specific model from the description
Parameters
Returns
|
public
array
|
#
getModels( )
Get all service description models
Get all service description models
Returns
array
|
public
boolean
|
#
hasModel( string $id )
Check if the description has a specific model by name
Check if the description has a specific model by name
Parameters
Returns
boolean
|
public
string
|
#
getApiVersion( )
Get the API version of the service
Get the API version of the service
Returns
string
|
public
string
|
#
getName( )
Get the name of the API
Returns
string
|
public
string
|
#
getDescription( )
Get a summary of the purpose of the API
Get a summary of the purpose of the API
Returns
string
|
public
null|mixed
|
#
getData( string $key )
Get arbitrary data from the service description that is not part of the Guzzle spec
Get arbitrary data from the service description that is not part of the Guzzle spec
Parameters
- $key
- Data key to retrieve
Returns
null|mixed
|
public
Guzzle\Service\Description\ServiceDescriptionInterface
|
#
setData( string $key, mixed $value )
Set arbitrary data on the service description
Set arbitrary data on the service description
Parameters
- $key
- Data key to set
- $value
- Value to set
Returns
|