Current File : //proc/self/root/lib/python3/dist-packages/botocore/data/secretsmanager/2017-10-17/examples-1.json
{
  "version": "1.0",
  "examples": {
    "CancelRotateSecret": [
      {
        "input": {
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "Name"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to cancel rotation for a secret. The operation sets the RotationEnabled field to false and cancels all scheduled rotations. To resume scheduled rotations, you must re-enable rotation by calling the rotate-secret operation.",
        "id": "to-cancel-scheduled-rotation-for-a-secret-1523996016032",
        "title": "To cancel scheduled rotation for a secret"
      }
    ],
    "CreateSecret": [
      {
        "input": {
          "ClientRequestToken": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1",
          "Description": "My test database secret created with the CLI",
          "Name": "MyTestDatabaseSecret",
          "SecretString": "{\"username\":\"david\",\"password\":\"EXAMPLE-PASSWORD\"}"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret",
          "VersionId": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to create a secret. The credentials stored in the encrypted secret value are retrieved from a file on disk named mycreds.json.",
        "id": "to-create-a-basic-secret-1523996473658",
        "title": "To create a basic secret"
      }
    ],
    "DeleteResourcePolicy": [
      {
        "input": {
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseMasterSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to delete the resource-based policy that is attached to a secret.",
        "id": "to-delete-the-resource-based-policy-attached-to-a-secret-1530209419204",
        "title": "To delete the resource-based policy attached to a secret"
      }
    ],
    "DeleteSecret": [
      {
        "input": {
          "RecoveryWindowInDays": 7,
          "SecretId": "MyTestDatabaseSecret1"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "DeletionDate": "1524085349.095",
          "Name": "MyTestDatabaseSecret"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to delete a secret. The secret stays in your account in a deprecated and inaccessible state until the recovery window ends. After the date and time in the DeletionDate response field has passed, you can no longer recover this secret with restore-secret.",
        "id": "to-delete-a-secret-1523996905092",
        "title": "To delete a secret"
      }
    ],
    "DescribeSecret": [
      {
        "input": {
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Description": "My test database secret",
          "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/EXAMPLE1-90ab-cdef-fedc-ba987KMSKEY1",
          "LastAccessedDate": "1523923200",
          "LastChangedDate": 1523477145.729,
          "LastRotatedDate": 1525747253.72,
          "Name": "MyTestDatabaseSecret",
          "RotationEnabled": true,
          "RotationLambdaARN": "arn:aws:lambda:us-west-2:123456789012:function:MyTestRotationLambda",
          "RotationRules": {
            "AutomaticallyAfterDays": 14,
            "Duration": "2h",
            "ScheduleExpression": "cron(0 16 1,15 * ? *)"
          },
          "Tags": [
            {
              "Key": "SecondTag",
              "Value": "AnotherValue"
            },
            {
              "Key": "FirstTag",
              "Value": "SomeValue"
            }
          ],
          "VersionIdsToStages": {
            "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE": [
              "AWSPREVIOUS"
            ],
            "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE": [
              "AWSCURRENT"
            ]
          }
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to get the details about a secret.",
        "id": "to-retrieve-the-details-of-a-secret-1524000138629",
        "title": "To retrieve the details of a secret"
      }
    ],
    "GetRandomPassword": [
      {
        "input": {
          "IncludeSpace": true,
          "PasswordLength": 20,
          "RequireEachIncludedType": true
        },
        "output": {
          "RandomPassword": "EXAMPLE-PASSWORD"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to request a randomly generated password. This example includes the optional flags to require spaces and at least one character of each included type. It specifies a length of 20 characters.",
        "id": "to-generate-a-random-password-1524000546092",
        "title": "To generate a random password"
      }
    ],
    "GetResourcePolicy": [
      {
        "input": {
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret",
          "ResourcePolicy": "{\n\"Version\":\"2012-10-17\",\n\"Statement\":[{\n\"Effect\":\"Allow\",\n\"Principal\":{\n\"AWS\":\"arn:aws:iam::123456789012:root\"\n},\n\"Action\":\"secretsmanager:GetSecretValue\",\n\"Resource\":\"*\"\n}]\n}"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to retrieve the resource-based policy that is attached to a secret.",
        "id": "to-retrieve-the-resource-based-policy-attached-to-a-secret-1530209677536",
        "title": "To retrieve the resource-based policy attached to a secret"
      }
    ],
    "GetSecretValue": [
      {
        "input": {
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "CreatedDate": 1523477145.713,
          "Name": "MyTestDatabaseSecret",
          "SecretString": "{\n  \"username\":\"david\",\n  \"password\":\"EXAMPLE-PASSWORD\"\n}\n",
          "VersionId": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1",
          "VersionStages": [
            "AWSPREVIOUS"
          ]
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to retrieve a secret string value.",
        "id": "to-retrieve-the-encrypted-secret-value-of-a-secret-1524000702484",
        "title": "To retrieve the encrypted secret value of a secret"
      }
    ],
    "ListSecretVersionIds": [
      {
        "input": {
          "IncludeDeprecated": true,
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret",
          "Versions": [
            {
              "CreatedDate": 1523477145.713,
              "VersionId": "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE",
              "VersionStages": [
                "AWSPREVIOUS"
              ]
            },
            {
              "CreatedDate": 1523486221.391,
              "VersionId": "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE",
              "VersionStages": [
                "AWSCURRENT"
              ]
            },
            {
              "CreatedDate": 1511974462.36,
              "VersionId": "EXAMPLE3-90ab-cdef-fedc-ba987EXAMPLE;"
            }
          ]
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to retrieve a list of all of the versions of a secret, including those without any staging labels.",
        "id": "to-list-all-of-the-secret-versions-associated-with-a-secret-1524000999164",
        "title": "To list all of the secret versions associated with a secret"
      }
    ],
    "ListSecrets": [
      {
        "input": {
        },
        "output": {
          "SecretList": [
            {
              "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
              "Description": "My test database secret",
              "LastChangedDate": 1523477145.729,
              "Name": "MyTestDatabaseSecret",
              "SecretVersionsToStages": {
                "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE": [
                  "AWSCURRENT"
                ]
              }
            },
            {
              "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret1-d4e5f6",
              "Description": "Another secret created for a different database",
              "LastChangedDate": 1523482025.685,
              "Name": "MyTestDatabaseSecret1",
              "SecretVersionsToStages": {
                "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE": [
                  "AWSCURRENT"
                ]
              }
            }
          ]
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to list all of the secrets in your account.",
        "id": "to-list-the-secrets-in-your-account-1524001246087",
        "title": "To list the secrets in your account"
      }
    ],
    "PutResourcePolicy": [
      {
        "input": {
          "ResourcePolicy": "{\n\"Version\":\"2012-10-17\",\n\"Statement\":[{\n\"Effect\":\"Allow\",\n\"Principal\":{\n\"AWS\":\"arn:aws:iam::123456789012:root\"\n},\n\"Action\":\"secretsmanager:GetSecretValue\",\n\"Resource\":\"*\"\n}]\n}",
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to add a resource-based policy to a secret.",
        "id": "to-add-a-resource-based-policy-to-a-secret-1530209881839",
        "title": "To add a resource-based policy to a secret"
      }
    ],
    "PutSecretValue": [
      {
        "input": {
          "ClientRequestToken": "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE",
          "SecretId": "MyTestDatabaseSecret",
          "SecretString": "{\"username\":\"david\",\"password\":\"EXAMPLE-PASSWORD\"}"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret",
          "VersionId": "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE",
          "VersionStages": [
            "AWSCURRENT"
          ]
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to create a new version of the secret. Alternatively, you can use the update-secret command.",
        "id": "to-store-a-secret-value-in-a-new-version-of-a-secret-1524001393971",
        "title": "To store a secret value in a new version of a secret"
      }
    ],
    "RestoreSecret": [
      {
        "input": {
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to restore a secret that you previously scheduled for deletion.",
        "id": "to-restore-a-previously-deleted-secret-1524001513930",
        "title": "To restore a previously deleted secret"
      }
    ],
    "RotateSecret": [
      {
        "input": {
          "RotationLambdaARN": "arn:aws:lambda:us-west-2:123456789012:function:MyTestDatabaseRotationLambda",
          "RotationRules": {
            "Duration": "2h",
            "ScheduleExpression": "cron(0 16 1,15 * ? *)"
          },
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret",
          "VersionId": "EXAMPLE2-90ab-cdef-fedc-ba987SECRET2"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example configures rotation for a secret using a cron expression. The first rotation happens immediately after the changes are stored in the secret. The rotation schedule is the first and 15th day of every month. The rotation window begins at 4:00 PM UTC and ends at 6:00 PM.",
        "id": "to-configure-rotation-for-a-secret-1524001629475",
        "title": "To configure rotation for a secret"
      },
      {
        "input": {
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret",
          "VersionId": "EXAMPLE2-90ab-cdef-fedc-ba987SECRET2"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example requests an immediate invocation of the secret's Lambda rotation function. It assumes that the specified secret already has rotation configured. The rotation function runs asynchronously in the background.",
        "id": "to-request-an-immediate-rotation-for-a-secret-1524001949004",
        "title": "To request an immediate rotation for a secret"
      }
    ],
    "TagResource": [
      {
        "input": {
          "SecretId": "MyExampleSecret",
          "Tags": [
            {
              "Key": "FirstTag",
              "Value": "SomeValue"
            },
            {
              "Key": "SecondTag",
              "Value": "AnotherValue"
            }
          ]
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to attach two tags each with a Key and Value to a secret. There is no output from this API. To see the result, use the DescribeSecret operation.",
        "id": "to-add-tags-to-a-secret-1524002106718",
        "title": "To add tags to a secret"
      }
    ],
    "UntagResource": [
      {
        "input": {
          "SecretId": "MyTestDatabaseSecret",
          "TagKeys": [
            "FirstTag",
            "SecondTag"
          ]
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to remove two tags from a secret's metadata. For each, both the tag and the associated value are removed. There is no output from this API. To see the result, use the DescribeSecret operation.",
        "id": "to-remove-tags-from-a-secret-1524002239065",
        "title": "To remove tags from a secret"
      }
    ],
    "UpdateSecret": [
      {
        "input": {
          "ClientRequestToken": "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE",
          "Description": "This is a new description for the secret.",
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to modify the description of a secret.",
        "id": "to-update-the-description-of-a-secret-1524002349094",
        "title": "To update the description of a secret"
      },
      {
        "input": {
          "KmsKeyId": "arn:aws:kms:us-west-2:123456789012:key/EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE",
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "This example shows how to update the KMS customer managed key (CMK) used to encrypt the secret value. The KMS CMK must be in the same region as the secret.",
        "id": "to-update-the-kms-key-associated-with-a-secret-1524002421563",
        "title": "To update the KMS key associated with a secret"
      },
      {
        "input": {
          "SecretId": "MyTestDatabaseSecret",
          "SecretString": "{JSON STRING WITH CREDENTIALS}"
        },
        "output": {
          "ARN": "aws:arn:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret",
          "VersionId": "EXAMPLE1-90ab-cdef-fedc-ba987EXAMPLE"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to create a new version of the secret by updating the SecretString field. Alternatively, you can use the put-secret-value operation.",
        "id": "to-create-a-new-version-of-the-encrypted-secret-value-1524004651836",
        "title": "To create a new version of the encrypted secret value"
      }
    ],
    "UpdateSecretVersionStage": [
      {
        "input": {
          "MoveToVersionId": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1",
          "SecretId": "MyTestDatabaseSecret",
          "VersionStage": "STAGINGLABEL1"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows you how to add a staging label to a version of a secret. You can review the results by running the operation ListSecretVersionIds and viewing the VersionStages response field for the affected version.",
        "id": "to-add-a-staging-label-attached-to-a-version-of-a-secret-1524004783841",
        "title": "To add a staging label attached to a version of a secret"
      },
      {
        "input": {
          "RemoveFromVersionId": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1",
          "SecretId": "MyTestDatabaseSecret",
          "VersionStage": "STAGINGLABEL1"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows you how to delete a staging label that is attached to a version of a secret. You can review the results by running the operation ListSecretVersionIds and viewing the VersionStages response field for the affected version.",
        "id": "to-delete-a-staging-label-attached-to-a-version-of-a-secret-1524004862181",
        "title": "To delete a staging label attached to a version of a secret"
      },
      {
        "input": {
          "MoveToVersionId": "EXAMPLE2-90ab-cdef-fedc-ba987SECRET2",
          "RemoveFromVersionId": "EXAMPLE1-90ab-cdef-fedc-ba987SECRET1",
          "SecretId": "MyTestDatabaseSecret",
          "VersionStage": "AWSCURRENT"
        },
        "output": {
          "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
          "Name": "MyTestDatabaseSecret"
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows you how to move a staging label that is attached to one version of a secret to a different version. You can review the results by running the operation ListSecretVersionIds and viewing the VersionStages response field for the affected version.",
        "id": "to-move-a-staging-label-from-one-version-of-a-secret-to-another-1524004963841",
        "title": "To move a staging label from one version of a secret to another"
      }
    ],
    "ValidateResourcePolicy": [
      {
        "input": {
          "ResourcePolicy": "{\n\"Version\":\"2012-10-17\",\n\"Statement\":[{\n\"Effect\":\"Allow\",\n\"Principal\":{\n\"AWS\":\"arn:aws:iam::123456789012:root\"\n},\n\"Action\":\"secretsmanager:GetSecretValue\",\n\"Resource\":\"*\"\n}]\n}",
          "SecretId": "MyTestDatabaseSecret"
        },
        "output": {
          "PolicyValidationPassed": true,
          "ValidationErrors": [

          ]
        },
        "comments": {
          "input": {
          },
          "output": {
          }
        },
        "description": "The following example shows how to validate a resource-based policy to a secret.",
        "id": "to-validate-the-resource-policy-of-a-secret-1524000138629",
        "title": "To validate a resource-based policy to a secret"
      }
    ]
  }
}
¿Qué es la limpieza dental de perros? - Clínica veterinaria


Es la eliminación del sarro y la placa adherida a la superficie de los dientes mediante un equipo de ultrasonidos que garantiza la integridad de las piezas dentales a la vez que elimina en profundidad cualquier resto de suciedad.

A continuación se procede al pulido de los dientes mediante una fresa especial que elimina la placa bacteriana y devuelve a los dientes el aspecto sano que deben tener.

Una vez terminado todo el proceso, se mantiene al perro en observación hasta que se despierta de la anestesia, bajo la atenta supervisión de un veterinario.

¿Cada cuánto tiempo tengo que hacerle una limpieza dental a mi perro?

A partir de cierta edad, los perros pueden necesitar una limpieza dental anual o bianual. Depende de cada caso. En líneas generales, puede decirse que los perros de razas pequeñas suelen acumular más sarro y suelen necesitar una atención mayor en cuanto a higiene dental.


Riesgos de una mala higiene


Los riesgos más evidentes de una mala higiene dental en los perros son los siguientes:

  • Cuando la acumulación de sarro no se trata, se puede producir una inflamación y retracción de las encías que puede descalzar el diente y provocar caídas.
  • Mal aliento (halitosis).
  • Sarro perros
  • Puede ir a más
  • Las bacterias de la placa pueden trasladarse a través del torrente circulatorio a órganos vitales como el corazón ocasionando problemas de endocarditis en las válvulas. Las bacterias pueden incluso acantonarse en huesos (La osteomielitis es la infección ósea, tanto cortical como medular) provocando mucho dolor y una artritis séptica).

¿Cómo se forma el sarro?

El sarro es la calcificación de la placa dental. Los restos de alimentos, junto con las bacterias presentes en la boca, van a formar la placa bacteriana o placa dental. Si la placa no se retira, al mezclarse con la saliva y los minerales presentes en ella, reaccionará formando una costra. La placa se calcifica y se forma el sarro.

El sarro, cuando se forma, es de color blanquecino pero a medida que pasa el tiempo se va poniendo amarillo y luego marrón.

Síntomas de una pobre higiene dental
La señal más obvia de una mala salud dental canina es el mal aliento.

Sin embargo, a veces no es tan fácil de detectar
Y hay perros que no se dejan abrir la boca por su dueño. Por ejemplo…

Recientemente nos trajeron a la clínica a un perro que parpadeaba de un ojo y decía su dueño que le picaba un lado de la cara. Tenía molestias y dificultad para comer, lo que había llevado a sus dueños a comprarle comida blanda (que suele ser un poco más cara y llevar más contenido en grasa) durante medio año. Después de una exploración oftalmológica, nos dimos cuenta de que el ojo tenía una úlcera en la córnea probablemente de rascarse . Además, el canto lateral del ojo estaba inflamado. Tenía lo que en humanos llamamos flemón pero como era un perro de pelo largo, no se le notaba a simple vista. Al abrirle la boca nos llamó la atención el ver una muela llena de sarro. Le realizamos una radiografía y encontramos una fístula que llegaba hasta la parte inferior del ojo.

Le tuvimos que extraer la muela. Tras esto, el ojo se curó completamente con unos colirios y una lentilla protectora de úlcera. Afortunadamente, la úlcera no profundizó y no perforó el ojo. Ahora el perro come perfectamente a pesar de haber perdido una muela.

¿Cómo mantener la higiene dental de tu perro?
Hay varias maneras de prevenir problemas derivados de la salud dental de tu perro.

Limpiezas de dientes en casa
Es recomendable limpiar los dientes de tu perro semanal o diariamente si se puede. Existe una gran variedad de productos que se pueden utilizar:

Pastas de dientes.
Cepillos de dientes o dedales para el dedo índice, que hacen más fácil la limpieza.
Colutorios para echar en agua de bebida o directamente sobre el diente en líquido o en spray.

En la Clínica Tus Veterinarios enseñamos a nuestros clientes a tomar el hábito de limpiar los dientes de sus perros desde que son cachorros. Esto responde a nuestro compromiso con la prevención de enfermedades caninas.

Hoy en día tenemos muchos clientes que limpian los dientes todos los días a su mascota, y como resultado, se ahorran el dinero de hacer limpiezas dentales profesionales y consiguen una mejor salud de su perro.


Limpiezas dentales profesionales de perros y gatos

Recomendamos hacer una limpieza dental especializada anualmente. La realizamos con un aparato de ultrasonidos que utiliza agua para quitar el sarro. Después, procedemos a pulir los dientes con un cepillo de alta velocidad y una pasta especial. Hacemos esto para proteger el esmalte.

La frecuencia de limpiezas dentales necesaria varía mucho entre razas. En general, las razas grandes tienen buena calidad de esmalte, por lo que no necesitan hacerlo tan a menudo e incluso pueden pasarse la vida sin requerir una limpieza. Sin embargo, razas pequeñas como el Yorkshire o el Maltés, deben hacérselas todos los años desde cachorros si se quiere conservar sus piezas dentales.

Otro factor fundamental es la calidad del pienso. Algunas marcas han diseñado croquetas que limpian la superficie del diente y de la muela al masticarse.

Ultrasonido para perros

¿Se necesita anestesia para las limpiezas dentales de perros y gatos?

La limpieza dental en perros no es una técnica que pueda practicarse sin anestesia general , aunque hay veces que los propietarios no quieren anestesiar y si tiene poco sarro y el perro es muy bueno se puede intentar…… , pero no se va a poder pulir ni acceder a todas la zona de la boca …. Además los limpiadores dentales van a irrigar agua y hay riesgo de aspiración a vías respiratorias si no se realiza una anestesia correcta con intubación traqueal . En resumen , sin anestesia no se va hacer una correcta limpieza dental.

Tampoco sirve la sedación ya que necesitamos que el animal esté totalmente quieto, y el veterinario tenga un acceso completo a todas sus piezas dentales y encías.

Alimentos para la limpieza dental

Hay que tener cierto cuidado a la hora de comprar determinados alimentos porque no todos son saludables. Algunos tienen demasiado contenido graso, que en exceso puede causar problemas cardiovasculares y obesidad.

Los mejores alimentos para los dientes son aquellos que están elaborados por empresas farmacéuticas y llevan componentes químicos con tratamientos específicos para el diente del perro. Esto implica no solo limpieza a través de la acción mecánica de morder sino también un tratamiento antibacteriano para prevenir el sarro.

Conclusión

Si eres como la mayoría de dueños, por falta de tiempo , es probable que no estés prestando la suficiente atención a la limpieza dental de tu perro. Por eso te animamos a que comiences a limpiar los dientes de tu perro y consideres atender a su higiene bucal con frecuencia.

Estas simples medidas pueden conllevar a que tu perro tenga una vida más larga y mucho más saludable.

Si te resulta imposible introducir un cepillo de dientes a tu perro en la boca, pásate con él por clínica Tus Veterinarios y te explicamos cómo hacerlo.

Necesitas hacer una limpieza dental profesional a tu mascota?
Llámanos al 622575274 o contacta con nosotros

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

¡Hola!