Obtenir des informations sur les tags associés à vos load balancers
Vous pouvez obtenir des informations sur les tags associés à vos load balancers.
Obtenir des informations sur les tags avec OSC CLI
À ce jour, cette section est disponible en anglais uniquement. |
The ReadLoadBalancerTags command lists the tags associated with one or more specified load balancers.
$ osc-cli api ReadLoadBalancerTags --profile "default" \
--LoadBalancerNames '["private-lb-example"]'
This command contains the following attributes that you need to specify:
-
DryRun
: (optional) If true, checks whether you have the required permissions to perform the action. -
LoadBalancerNames
: One or more load balancer names.
The ReadLoadBalancerTags command returns the following elements:
-
ResponseContext
: Information about the context of the response.-
RequestId
: The ID of the request.
-
-
Tags
: Information about one or more load balancer tags.-
Key
: The key of the tag. -
LoadBalancerName
: The name of the load balancer. -
Value
: The value of the tag.
-
{
"Tags": [
{
"Value": "value1",
"LoadBalancerName": "private-lb-example",
"Key": "key1"
}
],
"ResponseContext": {
"RequestId": "0475ca1e-d0c5-441d-712a-da55a4175157"
}
}
Obtenir des informations sur les tags avec oapi-cli
À ce jour, cette section est disponible en anglais uniquement. |
The ReadLoadBalancerTags command lists the tags associated with one or more specified load balancers.
$ oapi-cli --profile "default" ReadLoadBalancerTags \
--LoadBalancerNames '["private-lb-example"]'
This command contains the following attributes that you need to specify:
-
DryRun
: (optional) If true, checks whether you have the required permissions to perform the action. -
LoadBalancerNames
: One or more load balancer names.
The ReadLoadBalancerTags command returns the following elements:
-
ResponseContext
: Information about the context of the response.-
RequestId
: The ID of the request.
-
-
Tags
: Information about one or more load balancer tags.-
Key
: The key of the tag. -
LoadBalancerName
: The name of the load balancer. -
Value
: The value of the tag.
-
{
"Tags": [
{
"Value": "value1",
"LoadBalancerName": "private-lb-example",
"Key": "key1"
}
],
"ResponseContext": {
"RequestId": "0475ca1e-d0c5-441d-712a-da55a4175157"
}
}
Obtenir des informations sur les tags avec AWS CLI
Avant de commencer : Installez et configurez AWS CLI. Pour en savoir plus, voir Installer et configurer AWS CLI. |
Pour obtenir des informations sur les tags associés à vos load balancers, utilisez la commande describe-tags en suivant cette syntaxe :
$ aws elb describe-tags \
--profile YOUR_PROFILE \
--load-balancer-names LB1 \
--endpoint https://lbu.eu-west-2.outscale.com
Cette commande contient les attributs suivants que vous devez spécifier :
-
(optionnel)
profile
: Le profil nommé que vous voulez utiliser, créé pendant la configuration d’AWS CLI. Pour en savoir plus, voir Installer et configurer AWS CLI. -
load-balancer-names
: Le nom d’un ou plusieurs load balancers. -
endpoint
: Le endpoint correspondant à la Région à laquelle vous voulez envoyer la requête. Pour en savoir plus, voir Installer et configurer AWS CLI.
La commande describe-tags renvoie les éléments suivants :
-
TagDescriptions
: Informations sur un ou plusieurs tags. Cet élément contient les informations suivantes :-
Tags
: Informations sur un ou plusieurs tags associés à un load balancer. Cet élément contient les informations suivantes :-
(optionnel)
value
: La valeur du tag. -
key
: La clé du tag.
-
-
LoadBalancerName
: Le nom du load balancer.
-
{
"TagDescriptions": [
{
"Tags": [
{
"Value": "name",
"Key": "LB1"
}
],
"LoadBalancerName": "LB1"
}
]
}
Pages connexes
Méthodes API correspondantes
AWS™ et Amazon Web Services™ sont des marques de commerce d'Amazon Technologies, Inc. ou de ses affiliées aux États-Unis et/ou dans les autres pays.