17
17
18
18
from ._configuration import MicrosoftDatadogClientConfiguration
19
19
from .operations import MarketplaceAgreementsOperations
20
- from .operations import ApiKeysOperations
21
- from .operations import HostsOperations
22
- from .operations import LinkedResourcesOperations
23
- from .operations import MonitoredResourcesOperations
24
- from .operations import Operations
25
20
from .operations import MonitorsOperations
26
- from .operations import RefreshSetPasswordOperations
21
+ from .operations import Operations
27
22
from .operations import TagRulesOperations
28
23
from .operations import SingleSignOnConfigurationsOperations
29
24
from .. import models
@@ -34,20 +29,10 @@ class MicrosoftDatadogClient(object):
34
29
35
30
:ivar marketplace_agreements: MarketplaceAgreementsOperations operations
36
31
:vartype marketplace_agreements: microsoft_datadog_client.aio.operations.MarketplaceAgreementsOperations
37
- :ivar api_keys: ApiKeysOperations operations
38
- :vartype api_keys: microsoft_datadog_client.aio.operations.ApiKeysOperations
39
- :ivar hosts: HostsOperations operations
40
- :vartype hosts: microsoft_datadog_client.aio.operations.HostsOperations
41
- :ivar linked_resources: LinkedResourcesOperations operations
42
- :vartype linked_resources: microsoft_datadog_client.aio.operations.LinkedResourcesOperations
43
- :ivar monitored_resources: MonitoredResourcesOperations operations
44
- :vartype monitored_resources: microsoft_datadog_client.aio.operations.MonitoredResourcesOperations
45
- :ivar operations: Operations operations
46
- :vartype operations: microsoft_datadog_client.aio.operations.Operations
47
32
:ivar monitors: MonitorsOperations operations
48
33
:vartype monitors: microsoft_datadog_client.aio.operations.MonitorsOperations
49
- :ivar refresh_set_password: RefreshSetPasswordOperations operations
50
- :vartype refresh_set_password : microsoft_datadog_client.aio.operations.RefreshSetPasswordOperations
34
+ :ivar operations: Operations operations
35
+ :vartype operations : microsoft_datadog_client.aio.operations.Operations
51
36
:ivar tag_rules: TagRulesOperations operations
52
37
:vartype tag_rules: microsoft_datadog_client.aio.operations.TagRulesOperations
53
38
:ivar single_sign_on_configurations: SingleSignOnConfigurationsOperations operations
@@ -74,24 +59,13 @@ def __init__(
74
59
75
60
client_models = {k : v for k , v in models .__dict__ .items () if isinstance (v , type )}
76
61
self ._serialize = Serializer (client_models )
77
- self ._serialize .client_side_validation = False
78
62
self ._deserialize = Deserializer (client_models )
79
63
80
64
self .marketplace_agreements = MarketplaceAgreementsOperations (
81
65
self ._client , self ._config , self ._serialize , self ._deserialize )
82
- self .api_keys = ApiKeysOperations (
83
- self ._client , self ._config , self ._serialize , self ._deserialize )
84
- self .hosts = HostsOperations (
85
- self ._client , self ._config , self ._serialize , self ._deserialize )
86
- self .linked_resources = LinkedResourcesOperations (
87
- self ._client , self ._config , self ._serialize , self ._deserialize )
88
- self .monitored_resources = MonitoredResourcesOperations (
89
- self ._client , self ._config , self ._serialize , self ._deserialize )
90
- self .operations = Operations (
91
- self ._client , self ._config , self ._serialize , self ._deserialize )
92
66
self .monitors = MonitorsOperations (
93
67
self ._client , self ._config , self ._serialize , self ._deserialize )
94
- self .refresh_set_password = RefreshSetPasswordOperations (
68
+ self .operations = Operations (
95
69
self ._client , self ._config , self ._serialize , self ._deserialize )
96
70
self .tag_rules = TagRulesOperations (
97
71
self ._client , self ._config , self ._serialize , self ._deserialize )
0 commit comments