mv-oci-sdk 2.142.0__py3-none-any.whl → 2.142.0.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. {mv_oci_sdk-2.142.0.dist-info → mv_oci_sdk-2.142.0.1.dist-info}/METADATA +3 -3
  2. {mv_oci_sdk-2.142.0.dist-info → mv_oci_sdk-2.142.0.1.dist-info}/RECORD +197 -6
  3. oci/file_storage/__init__.py +14 -0
  4. oci/file_storage/file_storage_client.py +8601 -0
  5. oci/file_storage/file_storage_client_composite_operations.py +2068 -0
  6. oci/file_storage/models/__init__.py +130 -0
  7. oci/file_storage/models/change_file_system_compartment_details.py +76 -0
  8. oci/file_storage/models/change_filesystem_snapshot_policy_compartment_details.py +76 -0
  9. oci/file_storage/models/change_mount_target_compartment_details.py +76 -0
  10. oci/file_storage/models/change_outbound_connector_compartment_details.py +78 -0
  11. oci/file_storage/models/change_replication_compartment_details.py +76 -0
  12. oci/file_storage/models/client_options.py +389 -0
  13. oci/file_storage/models/create_export_details.py +303 -0
  14. oci/file_storage/models/create_file_system_details.py +425 -0
  15. oci/file_storage/models/create_filesystem_snapshot_policy_details.py +337 -0
  16. oci/file_storage/models/create_kerberos_details.py +200 -0
  17. oci/file_storage/models/create_ldap_bind_account_details.py +220 -0
  18. oci/file_storage/models/create_ldap_idmap_details.py +317 -0
  19. oci/file_storage/models/create_mount_target_details.py +581 -0
  20. oci/file_storage/models/create_outbound_connector_details.py +309 -0
  21. oci/file_storage/models/create_replication_details.py +325 -0
  22. oci/file_storage/models/create_snapshot_details.py +261 -0
  23. oci/file_storage/models/endpoint.py +103 -0
  24. oci/file_storage/models/export.py +456 -0
  25. oci/file_storage/models/export_set.py +411 -0
  26. oci/file_storage/models/export_set_summary.py +316 -0
  27. oci/file_storage/models/export_summary.py +343 -0
  28. oci/file_storage/models/file_system.py +818 -0
  29. oci/file_storage/models/file_system_summary.py +659 -0
  30. oci/file_storage/models/filesystem_snapshot_policy.py +473 -0
  31. oci/file_storage/models/filesystem_snapshot_policy_summary.py +429 -0
  32. oci/file_storage/models/kerberos.py +200 -0
  33. oci/file_storage/models/kerberos_keytab_entry.py +166 -0
  34. oci/file_storage/models/key_tab_secret_details.py +138 -0
  35. oci/file_storage/models/ldap_bind_account.py +243 -0
  36. oci/file_storage/models/ldap_bind_account_summary.py +176 -0
  37. oci/file_storage/models/ldap_idmap.py +317 -0
  38. oci/file_storage/models/mount_target.py +828 -0
  39. oci/file_storage/models/mount_target_summary.py +696 -0
  40. oci/file_storage/models/outbound_connector.py +453 -0
  41. oci/file_storage/models/outbound_connector_summary.py +438 -0
  42. oci/file_storage/models/replication.py +740 -0
  43. oci/file_storage/models/replication_estimate.py +196 -0
  44. oci/file_storage/models/replication_summary.py +491 -0
  45. oci/file_storage/models/replication_target.py +679 -0
  46. oci/file_storage/models/replication_target_summary.py +425 -0
  47. oci/file_storage/models/resource_lock.py +185 -0
  48. oci/file_storage/models/schedule_downgrade_shape_mount_target_details.py +78 -0
  49. oci/file_storage/models/snapshot.py +638 -0
  50. oci/file_storage/models/snapshot_schedule.py +487 -0
  51. oci/file_storage/models/snapshot_summary.py +601 -0
  52. oci/file_storage/models/source_details.py +119 -0
  53. oci/file_storage/models/update_export_details.py +111 -0
  54. oci/file_storage/models/update_export_set_details.py +172 -0
  55. oci/file_storage/models/update_file_system_details.py +246 -0
  56. oci/file_storage/models/update_filesystem_snapshot_policy_details.py +236 -0
  57. oci/file_storage/models/update_kerberos_details.py +200 -0
  58. oci/file_storage/models/update_ldap_idmap_details.py +317 -0
  59. oci/file_storage/models/update_mount_target_details.py +286 -0
  60. oci/file_storage/models/update_outbound_connector_details.py +158 -0
  61. oci/file_storage/models/update_replication_details.py +189 -0
  62. oci/file_storage/models/update_snapshot_details.py +156 -0
  63. oci/file_storage/models/upgrade_shape_mount_target_details.py +78 -0
  64. oci/file_storage/models/validate_key_tabs_details.py +103 -0
  65. oci/file_storage/models/validate_key_tabs_response_details.py +103 -0
  66. oci/functions/__init__.py +16 -0
  67. oci/functions/functions_invoke_client.py +267 -0
  68. oci/functions/functions_invoke_client_composite_operations.py +26 -0
  69. oci/functions/functions_management_client.py +2056 -0
  70. oci/functions/functions_management_client_composite_operations.py +326 -0
  71. oci/functions/models/__init__.py +74 -0
  72. oci/functions/models/application.py +628 -0
  73. oci/functions/models/application_summary.py +512 -0
  74. oci/functions/models/application_trace_config.py +103 -0
  75. oci/functions/models/change_application_compartment_details.py +78 -0
  76. oci/functions/models/config_details.py +134 -0
  77. oci/functions/models/constant_provisioned_concurrency_config.py +82 -0
  78. oci/functions/models/create_application_details.py +446 -0
  79. oci/functions/models/create_function_details.py +437 -0
  80. oci/functions/models/function.py +734 -0
  81. oci/functions/models/function_provisioned_concurrency_config.py +109 -0
  82. oci/functions/models/function_source_details.py +101 -0
  83. oci/functions/models/function_summary.py +657 -0
  84. oci/functions/models/function_trace_config.py +72 -0
  85. oci/functions/models/image_policy_config.py +103 -0
  86. oci/functions/models/key_details.py +76 -0
  87. oci/functions/models/none_provisioned_concurrency_config.py +51 -0
  88. oci/functions/models/pbf_listing.py +408 -0
  89. oci/functions/models/pbf_listing_summary.py +386 -0
  90. oci/functions/models/pbf_listing_version.py +467 -0
  91. oci/functions/models/pbf_listing_version_summary.py +446 -0
  92. oci/functions/models/pbf_listing_versions_collection.py +73 -0
  93. oci/functions/models/pbf_listings_collection.py +72 -0
  94. oci/functions/models/policy_details.py +103 -0
  95. oci/functions/models/pre_built_function_source_details.py +88 -0
  96. oci/functions/models/publisher_details.py +72 -0
  97. oci/functions/models/requirement_details.py +106 -0
  98. oci/functions/models/trigger.py +72 -0
  99. oci/functions/models/trigger_summary.py +72 -0
  100. oci/functions/models/triggers_collection.py +72 -0
  101. oci/functions/models/update_application_details.py +290 -0
  102. oci/functions/models/update_function_details.py +346 -0
  103. oci/load_balancer/__init__.py +14 -0
  104. oci/load_balancer/load_balancer_client.py +7641 -0
  105. oci/load_balancer/load_balancer_client_composite_operations.py +1630 -0
  106. oci/load_balancer/models/__init__.py +186 -0
  107. oci/load_balancer/models/action.py +97 -0
  108. oci/load_balancer/models/add_http_request_header_rule.py +134 -0
  109. oci/load_balancer/models/add_http_response_header_rule.py +137 -0
  110. oci/load_balancer/models/allow_rule.py +123 -0
  111. oci/load_balancer/models/backend.py +350 -0
  112. oci/load_balancer/models/backend_details.py +312 -0
  113. oci/load_balancer/models/backend_health.py +143 -0
  114. oci/load_balancer/models/backend_set.py +305 -0
  115. oci/load_balancer/models/backend_set_details.py +262 -0
  116. oci/load_balancer/models/backend_set_health.py +265 -0
  117. oci/load_balancer/models/certificate.py +188 -0
  118. oci/load_balancer/models/certificate_details.py +270 -0
  119. oci/load_balancer/models/change_load_balancer_compartment_details.py +78 -0
  120. oci/load_balancer/models/connection_configuration.py +168 -0
  121. oci/load_balancer/models/control_access_using_http_methods_rule.py +162 -0
  122. oci/load_balancer/models/create_backend_details.py +316 -0
  123. oci/load_balancer/models/create_backend_set_details.py +305 -0
  124. oci/load_balancer/models/create_certificate_details.py +270 -0
  125. oci/load_balancer/models/create_hostname_details.py +121 -0
  126. oci/load_balancer/models/create_listener_details.py +387 -0
  127. oci/load_balancer/models/create_load_balancer_details.py +895 -0
  128. oci/load_balancer/models/create_path_route_set_details.py +111 -0
  129. oci/load_balancer/models/create_routing_policy_details.py +154 -0
  130. oci/load_balancer/models/create_rule_set_details.py +109 -0
  131. oci/load_balancer/models/create_ssl_cipher_suite_details.py +606 -0
  132. oci/load_balancer/models/extend_http_request_header_value_rule.py +181 -0
  133. oci/load_balancer/models/extend_http_response_header_value_rule.py +181 -0
  134. oci/load_balancer/models/forward_to_backend_set.py +86 -0
  135. oci/load_balancer/models/health_check_result.py +219 -0
  136. oci/load_balancer/models/health_checker.py +381 -0
  137. oci/load_balancer/models/health_checker_details.py +376 -0
  138. oci/load_balancer/models/hostname.py +121 -0
  139. oci/load_balancer/models/hostname_details.py +117 -0
  140. oci/load_balancer/models/http_header_rule.py +127 -0
  141. oci/load_balancer/models/ip_address.py +142 -0
  142. oci/load_balancer/models/ip_based_max_connections_rule.py +118 -0
  143. oci/load_balancer/models/ip_max_connections.py +111 -0
  144. oci/load_balancer/models/lb_cookie_session_persistence_configuration_details.py +423 -0
  145. oci/load_balancer/models/listener.py +383 -0
  146. oci/load_balancer/models/listener_details.py +344 -0
  147. oci/load_balancer/models/listener_rule_summary.py +104 -0
  148. oci/load_balancer/models/load_balancer.py +1023 -0
  149. oci/load_balancer/models/load_balancer_health.py +281 -0
  150. oci/load_balancer/models/load_balancer_health_summary.py +167 -0
  151. oci/load_balancer/models/load_balancer_policy.py +80 -0
  152. oci/load_balancer/models/load_balancer_protocol.py +76 -0
  153. oci/load_balancer/models/load_balancer_shape.py +80 -0
  154. oci/load_balancer/models/path_match_condition.py +166 -0
  155. oci/load_balancer/models/path_match_type.py +126 -0
  156. oci/load_balancer/models/path_route.py +156 -0
  157. oci/load_balancer/models/path_route_set.py +112 -0
  158. oci/load_balancer/models/path_route_set_details.py +72 -0
  159. oci/load_balancer/models/redirect_rule.py +173 -0
  160. oci/load_balancer/models/redirect_uri.py +420 -0
  161. oci/load_balancer/models/remove_http_request_header_rule.py +90 -0
  162. oci/load_balancer/models/remove_http_response_header_rule.py +92 -0
  163. oci/load_balancer/models/reserved_ip.py +90 -0
  164. oci/load_balancer/models/routing_policy.py +152 -0
  165. oci/load_balancer/models/routing_policy_details.py +73 -0
  166. oci/load_balancer/models/routing_rule.py +135 -0
  167. oci/load_balancer/models/rule.py +177 -0
  168. oci/load_balancer/models/rule_condition.py +121 -0
  169. oci/load_balancer/models/rule_set.py +113 -0
  170. oci/load_balancer/models/rule_set_details.py +72 -0
  171. oci/load_balancer/models/session_persistence_configuration_details.py +136 -0
  172. oci/load_balancer/models/shape_details.py +121 -0
  173. oci/load_balancer/models/source_ip_address_condition.py +90 -0
  174. oci/load_balancer/models/source_vcn_id_condition.py +98 -0
  175. oci/load_balancer/models/source_vcn_ip_address_condition.py +97 -0
  176. oci/load_balancer/models/ssl_cipher_suite.py +606 -0
  177. oci/load_balancer/models/ssl_cipher_suite_details.py +606 -0
  178. oci/load_balancer/models/ssl_configuration.py +478 -0
  179. oci/load_balancer/models/ssl_configuration_details.py +476 -0
  180. oci/load_balancer/models/update_backend_details.py +242 -0
  181. oci/load_balancer/models/update_backend_set_details.py +264 -0
  182. oci/load_balancer/models/update_health_checker_details.py +374 -0
  183. oci/load_balancer/models/update_hostname_details.py +86 -0
  184. oci/load_balancer/models/update_listener_details.py +344 -0
  185. oci/load_balancer/models/update_load_balancer_details.py +356 -0
  186. oci/load_balancer/models/update_load_balancer_shape_details.py +127 -0
  187. oci/load_balancer/models/update_network_security_groups_details.py +99 -0
  188. oci/load_balancer/models/update_path_route_set_details.py +72 -0
  189. oci/load_balancer/models/update_routing_policy_details.py +115 -0
  190. oci/load_balancer/models/update_rule_set_details.py +72 -0
  191. oci/load_balancer/models/update_ssl_cipher_suite_details.py +300 -0
  192. oci/load_balancer/models/work_request.py +385 -0
  193. oci/load_balancer/models/work_request_error.py +115 -0
  194. oci/version.py +1 -1
  195. {mv_oci_sdk-2.142.0.dist-info → mv_oci_sdk-2.142.0.1.dist-info}/LICENSE.txt +0 -0
  196. {mv_oci_sdk-2.142.0.dist-info → mv_oci_sdk-2.142.0.1.dist-info}/WHEEL +0 -0
  197. {mv_oci_sdk-2.142.0.dist-info → mv_oci_sdk-2.142.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,828 @@
1
+ # coding: utf-8
2
+ # Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
3
+ # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4
+
5
+ # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215
6
+
7
+
8
+ from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
9
+ from oci.decorators import init_model_state_from_kwargs
10
+
11
+
12
+ @init_model_state_from_kwargs
13
+ class MountTarget(object):
14
+ """
15
+ Provides access to a collection of file systems through one or more VNICs on a
16
+ specified subnet. The set of file systems is controlled through the
17
+ referenced export set.
18
+ """
19
+
20
+ #: A constant which can be used with the lifecycle_state property of a MountTarget.
21
+ #: This constant has a value of "CREATING"
22
+ LIFECYCLE_STATE_CREATING = "CREATING"
23
+
24
+ #: A constant which can be used with the lifecycle_state property of a MountTarget.
25
+ #: This constant has a value of "ACTIVE"
26
+ LIFECYCLE_STATE_ACTIVE = "ACTIVE"
27
+
28
+ #: A constant which can be used with the lifecycle_state property of a MountTarget.
29
+ #: This constant has a value of "DELETING"
30
+ LIFECYCLE_STATE_DELETING = "DELETING"
31
+
32
+ #: A constant which can be used with the lifecycle_state property of a MountTarget.
33
+ #: This constant has a value of "DELETED"
34
+ LIFECYCLE_STATE_DELETED = "DELETED"
35
+
36
+ #: A constant which can be used with the lifecycle_state property of a MountTarget.
37
+ #: This constant has a value of "FAILED"
38
+ LIFECYCLE_STATE_FAILED = "FAILED"
39
+
40
+ #: A constant which can be used with the lifecycle_state property of a MountTarget.
41
+ #: This constant has a value of "UPDATING"
42
+ LIFECYCLE_STATE_UPDATING = "UPDATING"
43
+
44
+ #: A constant which can be used with the idmap_type property of a MountTarget.
45
+ #: This constant has a value of "LDAP"
46
+ IDMAP_TYPE_LDAP = "LDAP"
47
+
48
+ #: A constant which can be used with the idmap_type property of a MountTarget.
49
+ #: This constant has a value of "NONE"
50
+ IDMAP_TYPE_NONE = "NONE"
51
+
52
+ def __init__(self, **kwargs):
53
+ """
54
+ Initializes a new MountTarget object with values from keyword arguments.
55
+ The following keyword arguments are supported (corresponding to the getters/setters of this class):
56
+
57
+ :param availability_domain:
58
+ The value to assign to the availability_domain property of this MountTarget.
59
+ :type availability_domain: str
60
+
61
+ :param compartment_id:
62
+ The value to assign to the compartment_id property of this MountTarget.
63
+ :type compartment_id: str
64
+
65
+ :param display_name:
66
+ The value to assign to the display_name property of this MountTarget.
67
+ :type display_name: str
68
+
69
+ :param export_set_id:
70
+ The value to assign to the export_set_id property of this MountTarget.
71
+ :type export_set_id: str
72
+
73
+ :param id:
74
+ The value to assign to the id property of this MountTarget.
75
+ :type id: str
76
+
77
+ :param lifecycle_details:
78
+ The value to assign to the lifecycle_details property of this MountTarget.
79
+ :type lifecycle_details: str
80
+
81
+ :param lifecycle_state:
82
+ The value to assign to the lifecycle_state property of this MountTarget.
83
+ Allowed values for this property are: "CREATING", "ACTIVE", "DELETING", "DELETED", "FAILED", "UPDATING", 'UNKNOWN_ENUM_VALUE'.
84
+ Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
85
+ :type lifecycle_state: str
86
+
87
+ :param private_ip_ids:
88
+ The value to assign to the private_ip_ids property of this MountTarget.
89
+ :type private_ip_ids: list[str]
90
+
91
+ :param subnet_id:
92
+ The value to assign to the subnet_id property of this MountTarget.
93
+ :type subnet_id: str
94
+
95
+ :param idmap_type:
96
+ The value to assign to the idmap_type property of this MountTarget.
97
+ Allowed values for this property are: "LDAP", "NONE", 'UNKNOWN_ENUM_VALUE'.
98
+ Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
99
+ :type idmap_type: str
100
+
101
+ :param ldap_idmap:
102
+ The value to assign to the ldap_idmap property of this MountTarget.
103
+ :type ldap_idmap: oci.file_storage.models.LdapIdmap
104
+
105
+ :param nsg_ids:
106
+ The value to assign to the nsg_ids property of this MountTarget.
107
+ :type nsg_ids: list[str]
108
+
109
+ :param kerberos:
110
+ The value to assign to the kerberos property of this MountTarget.
111
+ :type kerberos: oci.file_storage.models.Kerberos
112
+
113
+ :param time_billing_cycle_end:
114
+ The value to assign to the time_billing_cycle_end property of this MountTarget.
115
+ :type time_billing_cycle_end: datetime
116
+
117
+ :param observed_throughput:
118
+ The value to assign to the observed_throughput property of this MountTarget.
119
+ :type observed_throughput: int
120
+
121
+ :param requested_throughput:
122
+ The value to assign to the requested_throughput property of this MountTarget.
123
+ :type requested_throughput: int
124
+
125
+ :param reserved_storage_capacity:
126
+ The value to assign to the reserved_storage_capacity property of this MountTarget.
127
+ :type reserved_storage_capacity: int
128
+
129
+ :param time_created:
130
+ The value to assign to the time_created property of this MountTarget.
131
+ :type time_created: datetime
132
+
133
+ :param locks:
134
+ The value to assign to the locks property of this MountTarget.
135
+ :type locks: list[oci.file_storage.models.ResourceLock]
136
+
137
+ :param freeform_tags:
138
+ The value to assign to the freeform_tags property of this MountTarget.
139
+ :type freeform_tags: dict(str, str)
140
+
141
+ :param defined_tags:
142
+ The value to assign to the defined_tags property of this MountTarget.
143
+ :type defined_tags: dict(str, dict(str, object))
144
+
145
+ """
146
+ self.swagger_types = {
147
+ 'availability_domain': 'str',
148
+ 'compartment_id': 'str',
149
+ 'display_name': 'str',
150
+ 'export_set_id': 'str',
151
+ 'id': 'str',
152
+ 'lifecycle_details': 'str',
153
+ 'lifecycle_state': 'str',
154
+ 'private_ip_ids': 'list[str]',
155
+ 'subnet_id': 'str',
156
+ 'idmap_type': 'str',
157
+ 'ldap_idmap': 'LdapIdmap',
158
+ 'nsg_ids': 'list[str]',
159
+ 'kerberos': 'Kerberos',
160
+ 'time_billing_cycle_end': 'datetime',
161
+ 'observed_throughput': 'int',
162
+ 'requested_throughput': 'int',
163
+ 'reserved_storage_capacity': 'int',
164
+ 'time_created': 'datetime',
165
+ 'locks': 'list[ResourceLock]',
166
+ 'freeform_tags': 'dict(str, str)',
167
+ 'defined_tags': 'dict(str, dict(str, object))'
168
+ }
169
+
170
+ self.attribute_map = {
171
+ 'availability_domain': 'availabilityDomain',
172
+ 'compartment_id': 'compartmentId',
173
+ 'display_name': 'displayName',
174
+ 'export_set_id': 'exportSetId',
175
+ 'id': 'id',
176
+ 'lifecycle_details': 'lifecycleDetails',
177
+ 'lifecycle_state': 'lifecycleState',
178
+ 'private_ip_ids': 'privateIpIds',
179
+ 'subnet_id': 'subnetId',
180
+ 'idmap_type': 'idmapType',
181
+ 'ldap_idmap': 'ldapIdmap',
182
+ 'nsg_ids': 'nsgIds',
183
+ 'kerberos': 'kerberos',
184
+ 'time_billing_cycle_end': 'timeBillingCycleEnd',
185
+ 'observed_throughput': 'observedThroughput',
186
+ 'requested_throughput': 'requestedThroughput',
187
+ 'reserved_storage_capacity': 'reservedStorageCapacity',
188
+ 'time_created': 'timeCreated',
189
+ 'locks': 'locks',
190
+ 'freeform_tags': 'freeformTags',
191
+ 'defined_tags': 'definedTags'
192
+ }
193
+
194
+ self._availability_domain = None
195
+ self._compartment_id = None
196
+ self._display_name = None
197
+ self._export_set_id = None
198
+ self._id = None
199
+ self._lifecycle_details = None
200
+ self._lifecycle_state = None
201
+ self._private_ip_ids = None
202
+ self._subnet_id = None
203
+ self._idmap_type = None
204
+ self._ldap_idmap = None
205
+ self._nsg_ids = None
206
+ self._kerberos = None
207
+ self._time_billing_cycle_end = None
208
+ self._observed_throughput = None
209
+ self._requested_throughput = None
210
+ self._reserved_storage_capacity = None
211
+ self._time_created = None
212
+ self._locks = None
213
+ self._freeform_tags = None
214
+ self._defined_tags = None
215
+
216
+ @property
217
+ def availability_domain(self):
218
+ """
219
+ Gets the availability_domain of this MountTarget.
220
+ The availability domain the mount target is in. May be unset
221
+ as a blank or NULL value.
222
+
223
+ Example: `Uocm:PHX-AD-1`
224
+
225
+
226
+ :return: The availability_domain of this MountTarget.
227
+ :rtype: str
228
+ """
229
+ return self._availability_domain
230
+
231
+ @availability_domain.setter
232
+ def availability_domain(self, availability_domain):
233
+ """
234
+ Sets the availability_domain of this MountTarget.
235
+ The availability domain the mount target is in. May be unset
236
+ as a blank or NULL value.
237
+
238
+ Example: `Uocm:PHX-AD-1`
239
+
240
+
241
+ :param availability_domain: The availability_domain of this MountTarget.
242
+ :type: str
243
+ """
244
+ self._availability_domain = availability_domain
245
+
246
+ @property
247
+ def compartment_id(self):
248
+ """
249
+ **[Required]** Gets the compartment_id of this MountTarget.
250
+ The `OCID`__ of the compartment that contains the mount target.
251
+
252
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
253
+
254
+
255
+ :return: The compartment_id of this MountTarget.
256
+ :rtype: str
257
+ """
258
+ return self._compartment_id
259
+
260
+ @compartment_id.setter
261
+ def compartment_id(self, compartment_id):
262
+ """
263
+ Sets the compartment_id of this MountTarget.
264
+ The `OCID`__ of the compartment that contains the mount target.
265
+
266
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
267
+
268
+
269
+ :param compartment_id: The compartment_id of this MountTarget.
270
+ :type: str
271
+ """
272
+ self._compartment_id = compartment_id
273
+
274
+ @property
275
+ def display_name(self):
276
+ """
277
+ **[Required]** Gets the display_name of this MountTarget.
278
+ A user-friendly name. It does not have to be unique, and it is changeable.
279
+ Avoid entering confidential information.
280
+
281
+ Example: `My mount target`
282
+
283
+
284
+ :return: The display_name of this MountTarget.
285
+ :rtype: str
286
+ """
287
+ return self._display_name
288
+
289
+ @display_name.setter
290
+ def display_name(self, display_name):
291
+ """
292
+ Sets the display_name of this MountTarget.
293
+ A user-friendly name. It does not have to be unique, and it is changeable.
294
+ Avoid entering confidential information.
295
+
296
+ Example: `My mount target`
297
+
298
+
299
+ :param display_name: The display_name of this MountTarget.
300
+ :type: str
301
+ """
302
+ self._display_name = display_name
303
+
304
+ @property
305
+ def export_set_id(self):
306
+ """
307
+ Gets the export_set_id of this MountTarget.
308
+ The `OCID`__ of the associated export set. Controls what file
309
+ systems will be exported through Network File System (NFS) protocol on this
310
+ mount target.
311
+
312
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
313
+
314
+
315
+ :return: The export_set_id of this MountTarget.
316
+ :rtype: str
317
+ """
318
+ return self._export_set_id
319
+
320
+ @export_set_id.setter
321
+ def export_set_id(self, export_set_id):
322
+ """
323
+ Sets the export_set_id of this MountTarget.
324
+ The `OCID`__ of the associated export set. Controls what file
325
+ systems will be exported through Network File System (NFS) protocol on this
326
+ mount target.
327
+
328
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
329
+
330
+
331
+ :param export_set_id: The export_set_id of this MountTarget.
332
+ :type: str
333
+ """
334
+ self._export_set_id = export_set_id
335
+
336
+ @property
337
+ def id(self):
338
+ """
339
+ **[Required]** Gets the id of this MountTarget.
340
+ The `OCID`__ of the mount target.
341
+
342
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
343
+
344
+
345
+ :return: The id of this MountTarget.
346
+ :rtype: str
347
+ """
348
+ return self._id
349
+
350
+ @id.setter
351
+ def id(self, id):
352
+ """
353
+ Sets the id of this MountTarget.
354
+ The `OCID`__ of the mount target.
355
+
356
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
357
+
358
+
359
+ :param id: The id of this MountTarget.
360
+ :type: str
361
+ """
362
+ self._id = id
363
+
364
+ @property
365
+ def lifecycle_details(self):
366
+ """
367
+ **[Required]** Gets the lifecycle_details of this MountTarget.
368
+ Additional information about the current 'lifecycleState'.
369
+
370
+
371
+ :return: The lifecycle_details of this MountTarget.
372
+ :rtype: str
373
+ """
374
+ return self._lifecycle_details
375
+
376
+ @lifecycle_details.setter
377
+ def lifecycle_details(self, lifecycle_details):
378
+ """
379
+ Sets the lifecycle_details of this MountTarget.
380
+ Additional information about the current 'lifecycleState'.
381
+
382
+
383
+ :param lifecycle_details: The lifecycle_details of this MountTarget.
384
+ :type: str
385
+ """
386
+ self._lifecycle_details = lifecycle_details
387
+
388
+ @property
389
+ def lifecycle_state(self):
390
+ """
391
+ **[Required]** Gets the lifecycle_state of this MountTarget.
392
+ The current state of the mount target.
393
+
394
+ Allowed values for this property are: "CREATING", "ACTIVE", "DELETING", "DELETED", "FAILED", "UPDATING", 'UNKNOWN_ENUM_VALUE'.
395
+ Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
396
+
397
+
398
+ :return: The lifecycle_state of this MountTarget.
399
+ :rtype: str
400
+ """
401
+ return self._lifecycle_state
402
+
403
+ @lifecycle_state.setter
404
+ def lifecycle_state(self, lifecycle_state):
405
+ """
406
+ Sets the lifecycle_state of this MountTarget.
407
+ The current state of the mount target.
408
+
409
+
410
+ :param lifecycle_state: The lifecycle_state of this MountTarget.
411
+ :type: str
412
+ """
413
+ allowed_values = ["CREATING", "ACTIVE", "DELETING", "DELETED", "FAILED", "UPDATING"]
414
+ if not value_allowed_none_or_none_sentinel(lifecycle_state, allowed_values):
415
+ lifecycle_state = 'UNKNOWN_ENUM_VALUE'
416
+ self._lifecycle_state = lifecycle_state
417
+
418
+ @property
419
+ def private_ip_ids(self):
420
+ """
421
+ **[Required]** Gets the private_ip_ids of this MountTarget.
422
+ The OCIDs of the private IP addresses associated with this mount target.
423
+
424
+
425
+ :return: The private_ip_ids of this MountTarget.
426
+ :rtype: list[str]
427
+ """
428
+ return self._private_ip_ids
429
+
430
+ @private_ip_ids.setter
431
+ def private_ip_ids(self, private_ip_ids):
432
+ """
433
+ Sets the private_ip_ids of this MountTarget.
434
+ The OCIDs of the private IP addresses associated with this mount target.
435
+
436
+
437
+ :param private_ip_ids: The private_ip_ids of this MountTarget.
438
+ :type: list[str]
439
+ """
440
+ self._private_ip_ids = private_ip_ids
441
+
442
+ @property
443
+ def subnet_id(self):
444
+ """
445
+ **[Required]** Gets the subnet_id of this MountTarget.
446
+ The `OCID`__ of the subnet the mount target is in.
447
+
448
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
449
+
450
+
451
+ :return: The subnet_id of this MountTarget.
452
+ :rtype: str
453
+ """
454
+ return self._subnet_id
455
+
456
+ @subnet_id.setter
457
+ def subnet_id(self, subnet_id):
458
+ """
459
+ Sets the subnet_id of this MountTarget.
460
+ The `OCID`__ of the subnet the mount target is in.
461
+
462
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
463
+
464
+
465
+ :param subnet_id: The subnet_id of this MountTarget.
466
+ :type: str
467
+ """
468
+ self._subnet_id = subnet_id
469
+
470
+ @property
471
+ def idmap_type(self):
472
+ """
473
+ Gets the idmap_type of this MountTarget.
474
+ The method used to map a Unix UID to secondary groups. If NONE, the mount target will not use the Unix UID for ID mapping.
475
+
476
+ Allowed values for this property are: "LDAP", "NONE", 'UNKNOWN_ENUM_VALUE'.
477
+ Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
478
+
479
+
480
+ :return: The idmap_type of this MountTarget.
481
+ :rtype: str
482
+ """
483
+ return self._idmap_type
484
+
485
+ @idmap_type.setter
486
+ def idmap_type(self, idmap_type):
487
+ """
488
+ Sets the idmap_type of this MountTarget.
489
+ The method used to map a Unix UID to secondary groups. If NONE, the mount target will not use the Unix UID for ID mapping.
490
+
491
+
492
+ :param idmap_type: The idmap_type of this MountTarget.
493
+ :type: str
494
+ """
495
+ allowed_values = ["LDAP", "NONE"]
496
+ if not value_allowed_none_or_none_sentinel(idmap_type, allowed_values):
497
+ idmap_type = 'UNKNOWN_ENUM_VALUE'
498
+ self._idmap_type = idmap_type
499
+
500
+ @property
501
+ def ldap_idmap(self):
502
+ """
503
+ Gets the ldap_idmap of this MountTarget.
504
+
505
+ :return: The ldap_idmap of this MountTarget.
506
+ :rtype: oci.file_storage.models.LdapIdmap
507
+ """
508
+ return self._ldap_idmap
509
+
510
+ @ldap_idmap.setter
511
+ def ldap_idmap(self, ldap_idmap):
512
+ """
513
+ Sets the ldap_idmap of this MountTarget.
514
+
515
+ :param ldap_idmap: The ldap_idmap of this MountTarget.
516
+ :type: oci.file_storage.models.LdapIdmap
517
+ """
518
+ self._ldap_idmap = ldap_idmap
519
+
520
+ @property
521
+ def nsg_ids(self):
522
+ """
523
+ Gets the nsg_ids of this MountTarget.
524
+ A list of Network Security Group `OCIDs`__ associated with this mount target.
525
+ A maximum of 5 is allowed.
526
+ Setting this to an empty array after the list is created removes the mount target from all NSGs.
527
+ For more information about NSGs, see `Security Rules`__.
528
+
529
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
530
+ __ https://docs.cloud.oracle.com/Content/Network/Concepts/securityrules.htm
531
+
532
+
533
+ :return: The nsg_ids of this MountTarget.
534
+ :rtype: list[str]
535
+ """
536
+ return self._nsg_ids
537
+
538
+ @nsg_ids.setter
539
+ def nsg_ids(self, nsg_ids):
540
+ """
541
+ Sets the nsg_ids of this MountTarget.
542
+ A list of Network Security Group `OCIDs`__ associated with this mount target.
543
+ A maximum of 5 is allowed.
544
+ Setting this to an empty array after the list is created removes the mount target from all NSGs.
545
+ For more information about NSGs, see `Security Rules`__.
546
+
547
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
548
+ __ https://docs.cloud.oracle.com/Content/Network/Concepts/securityrules.htm
549
+
550
+
551
+ :param nsg_ids: The nsg_ids of this MountTarget.
552
+ :type: list[str]
553
+ """
554
+ self._nsg_ids = nsg_ids
555
+
556
+ @property
557
+ def kerberos(self):
558
+ """
559
+ Gets the kerberos of this MountTarget.
560
+
561
+ :return: The kerberos of this MountTarget.
562
+ :rtype: oci.file_storage.models.Kerberos
563
+ """
564
+ return self._kerberos
565
+
566
+ @kerberos.setter
567
+ def kerberos(self, kerberos):
568
+ """
569
+ Sets the kerberos of this MountTarget.
570
+
571
+ :param kerberos: The kerberos of this MountTarget.
572
+ :type: oci.file_storage.models.Kerberos
573
+ """
574
+ self._kerberos = kerberos
575
+
576
+ @property
577
+ def time_billing_cycle_end(self):
578
+ """
579
+ Gets the time_billing_cycle_end of this MountTarget.
580
+ The date and time the mount target current billing cycle will end and next one starts, expressed
581
+ in `RFC 3339`__ timestamp format.
582
+
583
+ Example: `2016-08-25T21:10:29.600Z`
584
+
585
+ __ https://tools.ietf.org/rfc/rfc3339
586
+
587
+
588
+ :return: The time_billing_cycle_end of this MountTarget.
589
+ :rtype: datetime
590
+ """
591
+ return self._time_billing_cycle_end
592
+
593
+ @time_billing_cycle_end.setter
594
+ def time_billing_cycle_end(self, time_billing_cycle_end):
595
+ """
596
+ Sets the time_billing_cycle_end of this MountTarget.
597
+ The date and time the mount target current billing cycle will end and next one starts, expressed
598
+ in `RFC 3339`__ timestamp format.
599
+
600
+ Example: `2016-08-25T21:10:29.600Z`
601
+
602
+ __ https://tools.ietf.org/rfc/rfc3339
603
+
604
+
605
+ :param time_billing_cycle_end: The time_billing_cycle_end of this MountTarget.
606
+ :type: datetime
607
+ """
608
+ self._time_billing_cycle_end = time_billing_cycle_end
609
+
610
+ @property
611
+ def observed_throughput(self):
612
+ """
613
+ Gets the observed_throughput of this MountTarget.
614
+ Current billed throughput for mount target in Gbps. This corresponds to shape of mount target.
615
+ Available shapes and corresponding throughput are listed at `Mount Target Performance`__.
616
+
617
+ __ https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance
618
+
619
+
620
+ :return: The observed_throughput of this MountTarget.
621
+ :rtype: int
622
+ """
623
+ return self._observed_throughput
624
+
625
+ @observed_throughput.setter
626
+ def observed_throughput(self, observed_throughput):
627
+ """
628
+ Sets the observed_throughput of this MountTarget.
629
+ Current billed throughput for mount target in Gbps. This corresponds to shape of mount target.
630
+ Available shapes and corresponding throughput are listed at `Mount Target Performance`__.
631
+
632
+ __ https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance
633
+
634
+
635
+ :param observed_throughput: The observed_throughput of this MountTarget.
636
+ :type: int
637
+ """
638
+ self._observed_throughput = observed_throughput
639
+
640
+ @property
641
+ def requested_throughput(self):
642
+ """
643
+ Gets the requested_throughput of this MountTarget.
644
+ - New throughput for mount target at the end of billing cycle in Gbps.
645
+
646
+
647
+ :return: The requested_throughput of this MountTarget.
648
+ :rtype: int
649
+ """
650
+ return self._requested_throughput
651
+
652
+ @requested_throughput.setter
653
+ def requested_throughput(self, requested_throughput):
654
+ """
655
+ Sets the requested_throughput of this MountTarget.
656
+ - New throughput for mount target at the end of billing cycle in Gbps.
657
+
658
+
659
+ :param requested_throughput: The requested_throughput of this MountTarget.
660
+ :type: int
661
+ """
662
+ self._requested_throughput = requested_throughput
663
+
664
+ @property
665
+ def reserved_storage_capacity(self):
666
+ """
667
+ Gets the reserved_storage_capacity of this MountTarget.
668
+ - Reserved capacity (GB) associated with this mount target. Reserved capacity depends on observedThroughput value
669
+ of mount target. Value is listed at `Mount Target Performance`__.
670
+
671
+ __ https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance
672
+
673
+
674
+ :return: The reserved_storage_capacity of this MountTarget.
675
+ :rtype: int
676
+ """
677
+ return self._reserved_storage_capacity
678
+
679
+ @reserved_storage_capacity.setter
680
+ def reserved_storage_capacity(self, reserved_storage_capacity):
681
+ """
682
+ Sets the reserved_storage_capacity of this MountTarget.
683
+ - Reserved capacity (GB) associated with this mount target. Reserved capacity depends on observedThroughput value
684
+ of mount target. Value is listed at `Mount Target Performance`__.
685
+
686
+ __ https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance
687
+
688
+
689
+ :param reserved_storage_capacity: The reserved_storage_capacity of this MountTarget.
690
+ :type: int
691
+ """
692
+ self._reserved_storage_capacity = reserved_storage_capacity
693
+
694
+ @property
695
+ def time_created(self):
696
+ """
697
+ **[Required]** Gets the time_created of this MountTarget.
698
+ The date and time the mount target was created, expressed
699
+ in `RFC 3339`__ timestamp format.
700
+
701
+ Example: `2016-08-25T21:10:29.600Z`
702
+
703
+ __ https://tools.ietf.org/rfc/rfc3339
704
+
705
+
706
+ :return: The time_created of this MountTarget.
707
+ :rtype: datetime
708
+ """
709
+ return self._time_created
710
+
711
+ @time_created.setter
712
+ def time_created(self, time_created):
713
+ """
714
+ Sets the time_created of this MountTarget.
715
+ The date and time the mount target was created, expressed
716
+ in `RFC 3339`__ timestamp format.
717
+
718
+ Example: `2016-08-25T21:10:29.600Z`
719
+
720
+ __ https://tools.ietf.org/rfc/rfc3339
721
+
722
+
723
+ :param time_created: The time_created of this MountTarget.
724
+ :type: datetime
725
+ """
726
+ self._time_created = time_created
727
+
728
+ @property
729
+ def locks(self):
730
+ """
731
+ Gets the locks of this MountTarget.
732
+ Locks associated with this resource.
733
+
734
+
735
+ :return: The locks of this MountTarget.
736
+ :rtype: list[oci.file_storage.models.ResourceLock]
737
+ """
738
+ return self._locks
739
+
740
+ @locks.setter
741
+ def locks(self, locks):
742
+ """
743
+ Sets the locks of this MountTarget.
744
+ Locks associated with this resource.
745
+
746
+
747
+ :param locks: The locks of this MountTarget.
748
+ :type: list[oci.file_storage.models.ResourceLock]
749
+ """
750
+ self._locks = locks
751
+
752
+ @property
753
+ def freeform_tags(self):
754
+ """
755
+ Gets the freeform_tags of this MountTarget.
756
+ Free-form tags for this resource. Each tag is a simple key-value pair
757
+ with no predefined name, type, or namespace.
758
+ For more information, see `Resource Tags`__.
759
+ Example: `{\"Department\": \"Finance\"}`
760
+
761
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm
762
+
763
+
764
+ :return: The freeform_tags of this MountTarget.
765
+ :rtype: dict(str, str)
766
+ """
767
+ return self._freeform_tags
768
+
769
+ @freeform_tags.setter
770
+ def freeform_tags(self, freeform_tags):
771
+ """
772
+ Sets the freeform_tags of this MountTarget.
773
+ Free-form tags for this resource. Each tag is a simple key-value pair
774
+ with no predefined name, type, or namespace.
775
+ For more information, see `Resource Tags`__.
776
+ Example: `{\"Department\": \"Finance\"}`
777
+
778
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm
779
+
780
+
781
+ :param freeform_tags: The freeform_tags of this MountTarget.
782
+ :type: dict(str, str)
783
+ """
784
+ self._freeform_tags = freeform_tags
785
+
786
+ @property
787
+ def defined_tags(self):
788
+ """
789
+ Gets the defined_tags of this MountTarget.
790
+ Defined tags for this resource. Each key is predefined and scoped to a namespace.
791
+ For more information, see `Resource Tags`__.
792
+ Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
793
+
794
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm
795
+
796
+
797
+ :return: The defined_tags of this MountTarget.
798
+ :rtype: dict(str, dict(str, object))
799
+ """
800
+ return self._defined_tags
801
+
802
+ @defined_tags.setter
803
+ def defined_tags(self, defined_tags):
804
+ """
805
+ Sets the defined_tags of this MountTarget.
806
+ Defined tags for this resource. Each key is predefined and scoped to a namespace.
807
+ For more information, see `Resource Tags`__.
808
+ Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
809
+
810
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm
811
+
812
+
813
+ :param defined_tags: The defined_tags of this MountTarget.
814
+ :type: dict(str, dict(str, object))
815
+ """
816
+ self._defined_tags = defined_tags
817
+
818
+ def __repr__(self):
819
+ return formatted_flat_dict(self)
820
+
821
+ def __eq__(self, other):
822
+ if other is None:
823
+ return False
824
+
825
+ return self.__dict__ == other.__dict__
826
+
827
+ def __ne__(self, other):
828
+ return not self == other