get_base_path_mapping¶
Operation¶
get_base_path_mapping
async
¶
get_base_path_mapping(input: GetBasePathMappingInput, plugins: list[Plugin] | None = None) -> GetBasePathMappingOutput
Describe a BasePathMapping resource.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
GetBasePathMappingInput
|
An instance of |
required |
plugins
|
list[Plugin] | None
|
A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations. |
None
|
Returns:
| Type | Description |
|---|---|
GetBasePathMappingOutput
|
An instance of |
Input¶
GetBasePathMappingInput
dataclass
¶
Request to describe a BasePathMapping resource.
Attributes¶
base_path
class-attribute
instance-attribute
¶
base_path: str | None = None
The base path name that callers of the API must provide as part of the URL after the domain name. This value must be unique for all of the mappings across a single API. Specify '(none)' if you do not want callers to specify any base path name after the domain name.
Output¶
GetBasePathMappingOutput
dataclass
¶
Represents the base path that callers of the API must provide as part of the URL after the domain name.
Attributes¶
base_path
class-attribute
instance-attribute
¶
base_path: str | None = None
The base path name that callers of the API must provide as part of the URL after the domain name.