1# coding=utf-8
2# --------------------------------------------------------------------------
3# Copyright (c) Microsoft Corporation. All rights reserved.
4# Licensed under the MIT License. See License.txt in the project root for
5# license information.
6#
7# Code generated by Microsoft (R) AutoRest Code Generator.
8# Changes may cause incorrect behavior and will be lost if the code is
9# regenerated.
10# --------------------------------------------------------------------------
11
12from msrest.serialization import Model
13
14
15class SecretProperties(Model):
16    """Properties of the key backing a certificate.
17
18    :param content_type: The media type (MIME type).
19    :type content_type: str
20    """
21
22    _attribute_map = {
23        'content_type': {'key': 'contentType', 'type': 'str'},
24    }
25
26    def __init__(self, *, content_type: str=None, **kwargs) -> None:
27        super(SecretProperties, self).__init__(**kwargs)
28        self.content_type = content_type
29