ruạṛ
# coding: utf-8 # Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. # 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. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 from .monitor_configuration import MonitorConfiguration from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class ScriptedBrowserMonitorConfiguration(MonitorConfiguration): """ Configuration details for the SCRIPTED_BROWSER monitor type. """ def __init__(self, **kwargs): """ Initializes a new ScriptedBrowserMonitorConfiguration object with values from keyword arguments. The default value of the :py:attr:`~oci.apm_synthetics.models.ScriptedBrowserMonitorConfiguration.config_type` attribute of this class is ``SCRIPTED_BROWSER_CONFIG`` and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param config_type: The value to assign to the config_type property of this ScriptedBrowserMonitorConfiguration. Allowed values for this property are: "BROWSER_CONFIG", "SCRIPTED_BROWSER_CONFIG", "REST_CONFIG", "SCRIPTED_REST_CONFIG", "NETWORK_CONFIG", "DNS_SERVER_CONFIG", "DNS_TRACE_CONFIG", "DNSSEC_CONFIG", "FTP_CONFIG", "SQL_CONFIG" :type config_type: str :param is_failure_retried: The value to assign to the is_failure_retried property of this ScriptedBrowserMonitorConfiguration. :type is_failure_retried: bool :param dns_configuration: The value to assign to the dns_configuration property of this ScriptedBrowserMonitorConfiguration. :type dns_configuration: oci.apm_synthetics.models.DnsConfiguration :param is_certificate_validation_enabled: The value to assign to the is_certificate_validation_enabled property of this ScriptedBrowserMonitorConfiguration. :type is_certificate_validation_enabled: bool :param is_default_snapshot_enabled: The value to assign to the is_default_snapshot_enabled property of this ScriptedBrowserMonitorConfiguration. :type is_default_snapshot_enabled: bool :param network_configuration: The value to assign to the network_configuration property of this ScriptedBrowserMonitorConfiguration. :type network_configuration: oci.apm_synthetics.models.NetworkConfiguration """ self.swagger_types = { 'config_type': 'str', 'is_failure_retried': 'bool', 'dns_configuration': 'DnsConfiguration', 'is_certificate_validation_enabled': 'bool', 'is_default_snapshot_enabled': 'bool', 'network_configuration': 'NetworkConfiguration' } self.attribute_map = { 'config_type': 'configType', 'is_failure_retried': 'isFailureRetried', 'dns_configuration': 'dnsConfiguration', 'is_certificate_validation_enabled': 'isCertificateValidationEnabled', 'is_default_snapshot_enabled': 'isDefaultSnapshotEnabled', 'network_configuration': 'networkConfiguration' } self._config_type = None self._is_failure_retried = None self._dns_configuration = None self._is_certificate_validation_enabled = None self._is_default_snapshot_enabled = None self._network_configuration = None self._config_type = 'SCRIPTED_BROWSER_CONFIG' @property def is_certificate_validation_enabled(self): """ Gets the is_certificate_validation_enabled of this ScriptedBrowserMonitorConfiguration. If certificate validation is enabled, then the call will fail in case of certification errors. :return: The is_certificate_validation_enabled of this ScriptedBrowserMonitorConfiguration. :rtype: bool """ return self._is_certificate_validation_enabled @is_certificate_validation_enabled.setter def is_certificate_validation_enabled(self, is_certificate_validation_enabled): """ Sets the is_certificate_validation_enabled of this ScriptedBrowserMonitorConfiguration. If certificate validation is enabled, then the call will fail in case of certification errors. :param is_certificate_validation_enabled: The is_certificate_validation_enabled of this ScriptedBrowserMonitorConfiguration. :type: bool """ self._is_certificate_validation_enabled = is_certificate_validation_enabled @property def is_default_snapshot_enabled(self): """ Gets the is_default_snapshot_enabled of this ScriptedBrowserMonitorConfiguration. If disabled, auto snapshots are not collected. :return: The is_default_snapshot_enabled of this ScriptedBrowserMonitorConfiguration. :rtype: bool """ return self._is_default_snapshot_enabled @is_default_snapshot_enabled.setter def is_default_snapshot_enabled(self, is_default_snapshot_enabled): """ Sets the is_default_snapshot_enabled of this ScriptedBrowserMonitorConfiguration. If disabled, auto snapshots are not collected. :param is_default_snapshot_enabled: The is_default_snapshot_enabled of this ScriptedBrowserMonitorConfiguration. :type: bool """ self._is_default_snapshot_enabled = is_default_snapshot_enabled @property def network_configuration(self): """ Gets the network_configuration of this ScriptedBrowserMonitorConfiguration. :return: The network_configuration of this ScriptedBrowserMonitorConfiguration. :rtype: oci.apm_synthetics.models.NetworkConfiguration """ return self._network_configuration @network_configuration.setter def network_configuration(self, network_configuration): """ Sets the network_configuration of this ScriptedBrowserMonitorConfiguration. :param network_configuration: The network_configuration of this ScriptedBrowserMonitorConfiguration. :type: oci.apm_synthetics.models.NetworkConfiguration """ self._network_configuration = network_configuration def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other
cải xoăn