├── .coveragerc ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .stestr.blacklist.functional ├── .stestr.conf ├── .testr.conf ├── .zuul.yaml ├── AUTHORS ├── CONTRIBUTING.rst ├── Dockerfile ├── LICENSE ├── README.rst ├── babel.cfg ├── bindep.txt ├── doc ├── requirements.txt ├── rtfd_requirements.txt └── source │ ├── appendices │ ├── glossary.rst │ ├── history.rst │ ├── index.rst │ ├── issues.rst │ └── releasenotes.rst │ ├── cli │ ├── anti_ddos.rst │ ├── auto_scaling.rst │ ├── cbr.rst │ ├── cce_v2.rst │ ├── ces.rst │ ├── css.rst │ ├── cts.rst │ ├── dcaas.rst │ ├── dcs.rst │ ├── deh.rst │ ├── dis.rst │ ├── dms.rst │ ├── dns.rst │ ├── dws.rst │ ├── identity.rst │ ├── index.rst │ ├── kms.rst │ ├── load_balancer.rst │ ├── modelarts.rst │ ├── nat.rst │ ├── obs.rst │ ├── rds_v3.rst │ ├── sdrs.rst │ ├── smn.rst │ ├── volume_backup.rst │ ├── vpc.rst │ └── vpcep.rst │ ├── conf.py │ ├── contributor │ ├── clouds.yaml │ ├── coding.rst │ ├── create │ │ ├── examples │ │ │ └── resource │ │ │ │ ├── fake.py │ │ │ │ └── fake_service.py │ │ └── resource.rst │ ├── index.rst │ ├── layout.rst │ ├── layout.txt │ ├── local.conf │ ├── release_notes.rst │ ├── setup.rst │ └── testing.rst │ ├── coverage.rst │ ├── enforcer.py │ ├── index.rst │ ├── install │ ├── configuration.rst │ ├── index.rst │ ├── pip_install.rst │ └── source_install.rst │ └── sdk │ ├── architecture.rst │ ├── examples │ ├── getting_started.rst │ ├── guides │ ├── anti_ddos.rst │ ├── apig.rst │ ├── auto_scaling.rst │ ├── cbr.rst │ ├── cce.rst │ ├── ces.rst │ ├── css.rst │ ├── cts.rst │ ├── dcaas.rst │ ├── dcs.rst │ ├── deh.rst │ ├── dis.rst │ ├── dms.rst │ ├── dns.rst │ ├── dws.rst │ ├── function_graph.rst │ ├── index.rst │ ├── kms.rst │ ├── logging.rst │ ├── lts.rst │ ├── modelarts.rst │ ├── mrs.rst │ ├── nat.rst │ ├── obs.rst │ ├── rds.rst │ ├── sfsturbo.rst │ ├── smn.rst │ ├── vpc.rst │ └── vpcep.rst │ ├── index.rst │ ├── proxies │ ├── anti_ddos.rst │ ├── apig.rst │ ├── auto_scaling.rst │ ├── cbr.rst │ ├── cce_v1.rst │ ├── cce_v3.rst │ ├── ces.rst │ ├── css.rst │ ├── cts.rst │ ├── cts_v3.rst │ ├── dcaas.rst │ ├── dcs.rst │ ├── dds_v3.rst │ ├── deh.rst │ ├── dis.rst │ ├── dms.rst │ ├── dns.rst │ ├── dws.rst │ ├── function_graph.rst │ ├── identity_v3.rst │ ├── ims_v1.rst │ ├── ims_v2.rst │ ├── index.rst │ ├── kms.rst │ ├── lts.rst │ ├── modelarts.rst │ ├── mrs.rst │ ├── nat.rst │ ├── obs.rst │ ├── rds_v1.rst │ ├── rds_v3.rst │ ├── sdrs.rst │ ├── sfsturbo.rst │ ├── smn.rst │ ├── swr.rst │ ├── tms.rst │ ├── vlb_v3.rst │ ├── volume_backup.rst │ ├── vpc.rst │ ├── vpcep.rst │ └── waf.rst │ └── resources │ ├── anti_ddos │ ├── index.rst │ └── v1 │ │ ├── config.rst │ │ ├── floating_ip.rst │ │ └── status.rst │ ├── apig │ ├── index.rst │ └── v2 │ │ ├── acl_binding.rst │ │ ├── acl_policy.rst │ │ ├── api.rst │ │ ├── api_auth.rst │ │ ├── api_supplements.rst │ │ ├── app.rst │ │ ├── az.rst │ │ ├── backend_server.rst │ │ ├── backend_server_group.rst │ │ ├── certificate.rst │ │ ├── custom_authorizer.rst │ │ ├── domain_name.rst │ │ ├── env.rst │ │ ├── env_var.rst │ │ ├── export_api.rst │ │ ├── gateway.rst │ │ ├── gateway_features.rst │ │ ├── group.rst │ │ ├── resource_query.rst │ │ ├── signature.rst │ │ ├── signature_bind.rst │ │ ├── throttling_excluded.rst │ │ ├── throttling_policy.rst │ │ ├── throttling_policy_bind.rst │ │ └── vpc_channel.rst │ ├── auto_scaling │ ├── index.rst │ └── v1 │ │ ├── activity.rst │ │ ├── config.rst │ │ ├── group.rst │ │ ├── instance.rst │ │ ├── policy.rst │ │ └── quota.rst │ ├── cbr │ ├── index.rst │ └── v3 │ │ ├── backup.rst │ │ ├── checkpoint.rst │ │ ├── member.rst │ │ ├── policy.rst │ │ ├── restore.rst │ │ ├── task.rst │ │ └── vault.rst │ ├── cce │ ├── index.rst │ ├── v1 │ │ ├── cluster.rst │ │ └── cluster_node.rst │ └── v3 │ │ ├── cluster.rst │ │ ├── cluster_node.rst │ │ └── node_pool.rst │ ├── ces │ ├── index.rst │ └── v1 │ │ ├── alarm.rst │ │ ├── event_data.rst │ │ ├── metric.rst │ │ ├── metric_data.rst │ │ └── quota.rst │ ├── css │ ├── index.rst │ └── v1 │ │ ├── cluster.rst │ │ └── snapshot.rst │ ├── cts │ ├── index.rst │ ├── v1 │ │ ├── trace.rst │ │ └── tracker.rst │ └── v3 │ │ ├── key_event.rst │ │ ├── quota.rst │ │ ├── trace.rst │ │ └── tracker.rst │ ├── dcaas │ ├── index.rst │ └── v2 │ │ ├── connection.rst │ │ ├── endpoint_group.rst │ │ ├── virtual_gateway.rst │ │ └── virtual_interface.rst │ ├── dcs │ ├── index.rst │ └── v1 │ │ ├── availability_zone.rst │ │ ├── backup.rst │ │ ├── config.rst │ │ ├── instance.rst │ │ ├── maintenance_time_window.rst │ │ ├── quota.rst │ │ ├── restore_record.rst │ │ ├── service_specification.rst │ │ └── statistic.rst │ ├── dds │ ├── index.rst │ └── v3 │ │ ├── datastore.rst │ │ ├── eip.rst │ │ ├── flavor.rst │ │ ├── instance.rst │ │ ├── job.rst │ │ ├── recycle_instance.rst │ │ └── recycle_policy.rst │ ├── deh │ ├── index.rst │ └── v1 │ │ ├── host.rst │ │ ├── host_type.rst │ │ └── server.rst │ ├── dis │ ├── index.rst │ └── v2 │ │ ├── app.rst │ │ ├── checkpoint.rst │ │ ├── data.rst │ │ ├── dump_task.rst │ │ └── stream.rst │ ├── dms │ ├── index.rst │ └── v1 │ │ ├── group.rst │ │ ├── instance.rst │ │ ├── message.rst │ │ ├── misc │ │ ├── misc.rst │ │ ├── queue.rst │ │ └── topic.rst │ ├── dns │ ├── index.rst │ └── v2 │ │ ├── floating_ip.rst │ │ ├── nameserver.rst │ │ ├── recordset.rst │ │ └── zone.rst │ ├── dws │ ├── index.rst │ └── v1 │ │ ├── cluster.rst │ │ ├── flavor.rst │ │ ├── snapshot.rst │ │ └── tag.rst │ ├── function_graph │ ├── index.rst │ └── v2 │ │ ├── alias.rst │ │ ├── dependency.rst │ │ ├── event.rst │ │ ├── export.rst │ │ ├── function.rst │ │ ├── function_invocation.rst │ │ ├── import.rst │ │ ├── log.rst │ │ ├── metric.rst │ │ ├── notification.rst │ │ ├── quota.rst │ │ ├── reserved_instance.rst │ │ ├── template.rst │ │ ├── trigger.rst │ │ └── version.rst │ ├── identity │ ├── index.rst │ └── v3 │ │ ├── agency.rst │ │ ├── agency_role.rst │ │ ├── credential.rst │ │ ├── domain.rst │ │ ├── endpoint.rst │ │ ├── group.rst │ │ ├── policy.rst │ │ ├── project.rst │ │ ├── service.rst │ │ └── user.rst │ ├── ims │ ├── index.rst │ ├── v1 │ │ └── async_job.rst │ └── v2 │ │ └── image.rst │ ├── index.rst │ ├── kms │ ├── index.rst │ └── v1 │ │ ├── data_key.rst │ │ └── key.rst │ ├── lts │ ├── index.rst │ └── v2 │ │ ├── group.rst │ │ └── stream.rst │ ├── modelarts │ ├── index.rst │ ├── v1 │ │ ├── builtin_model.rst │ │ ├── devenv.rst │ │ ├── model.rst │ │ ├── service.rst │ │ ├── training_job.rst │ │ ├── training_job_config.rst │ │ └── training_job_version.rst │ └── v2 │ │ ├── dataset.rst │ │ ├── dataset_export_task.rst │ │ ├── dataset_import_task.rst │ │ ├── dataset_label.rst │ │ ├── dataset_sample.rst │ │ └── dataset_sync.rst │ ├── mrs │ ├── index.rst │ └── v1 │ │ ├── cluster.rst │ │ ├── datasource.rst │ │ ├── job.rst │ │ └── jobbinary.rst │ ├── nat │ ├── index.rst │ └── v2 │ │ ├── dnat.rst │ │ ├── gateway.rst │ │ └── snat.rst │ ├── obs │ ├── index.rst │ └── v1 │ │ ├── container.rst │ │ └── obj.rst │ ├── rds │ ├── index.rst │ ├── v1 │ │ ├── configuration.rst │ │ ├── flavor.rst │ │ └── instance.rst │ └── v3 │ │ ├── configuration.rst │ │ ├── flavor.rst │ │ └── instance.rst │ ├── sdrs │ ├── index.rst │ └── v1 │ │ ├── active_domains.rst │ │ ├── dr_drill.rst │ │ ├── job.rst │ │ ├── protected_instance.rst │ │ ├── protection_group.rst │ │ ├── quota.rst │ │ ├── replication_pair.rst │ │ └── task_center.rst │ ├── sfsturbo │ ├── index.rst │ └── v1 │ │ └── share.rst │ ├── smn │ ├── index.rst │ └── v2 │ │ ├── message.rst │ │ ├── sms.rst │ │ ├── subscription.rst │ │ ├── template.rst │ │ └── topic.rst │ ├── swr │ ├── index.rst │ └── v2 │ │ ├── domain.rst │ │ ├── organization.rst │ │ └── repository.rst │ ├── tms │ ├── index.rst │ └── v1 │ │ ├── predefined_tag.rst │ │ └── resource_tag.rst │ ├── vlb │ ├── index.rst │ └── v3 │ │ ├── availability_zone.rst │ │ ├── certificate.rst │ │ ├── flavor.rst │ │ ├── health_monitor.rst │ │ ├── ip_address_group.rst │ │ ├── l7_policy.rst │ │ ├── l7_rule.rst │ │ ├── listener.rst │ │ ├── load_balancer.rst │ │ ├── load_balancer_status.rst │ │ ├── member.rst │ │ ├── pool.rst │ │ ├── quota.rst │ │ └── security_policy.rst │ ├── vpc │ ├── index.rst │ ├── v1 │ │ ├── bandwidth.rst │ │ ├── subnet.rst │ │ └── vpc.rst │ └── v2 │ │ ├── peering.rst │ │ └── route.rst │ ├── vpcep │ ├── index.rst │ └── v1 │ │ ├── connection.rst │ │ ├── endpoint.rst │ │ ├── quota.rst │ │ ├── service.rst │ │ └── whitelist.rst │ └── waf │ ├── index.rst │ └── v1 │ ├── certificate.rst │ └── domain.rst ├── examples ├── __init__.py ├── anti_ddos │ ├── get_floating_ip_policies.py │ ├── get_floating_ip_status.py │ ├── list_configs.py │ ├── list_floating_ip_events.py │ ├── list_floating_ip_stat_day.py │ ├── list_floating_ip_stat_week.py │ ├── list_floating_ips.py │ ├── protect_floating_ip.py │ ├── unprotect_floating_ip.py │ └── update_floating_ip_policies.py ├── apig │ ├── add_or_update_backend_server_group.py │ ├── add_or_update_backend_servers.py │ ├── authorize_apps.py │ ├── bind_acl_to_api.py │ ├── bind_domain_name.py │ ├── bind_eip.py │ ├── bind_signature.py │ ├── bind_throttling_policy.py │ ├── cancel_authorization.py │ ├── check_api.py │ ├── configure_gw_feature.py │ ├── create_acl_policy.py │ ├── create_api.py │ ├── create_api_group.py │ ├── create_app.py │ ├── create_app_code.py │ ├── create_certificate_for_domain.py │ ├── create_custom_authorizer.py │ ├── create_env.py │ ├── create_env_variable.py │ ├── create_gateway.py │ ├── create_signature.py │ ├── create_throttling_exclude.py │ ├── create_throttling_policy.py │ ├── create_vpc_channel.py │ ├── debug_api.py │ ├── delete_acl_policies.py │ ├── delete_acl_policy.py │ ├── delete_api.py │ ├── delete_api_group.py │ ├── delete_app.py │ ├── delete_app_code.py │ ├── delete_backend_server_group.py │ ├── delete_certificate.py │ ├── delete_custom_authorizer.py │ ├── delete_env.py │ ├── delete_env_variable.py │ ├── delete_gateway.py │ ├── delete_signature.py │ ├── delete_throttling_exclude.py │ ├── delete_throttling_policy.py │ ├── delete_vpc_channel.py │ ├── disable_backend_server.py │ ├── disable_ingress.py │ ├── disable_public_access.py │ ├── enable_backend_server.py │ ├── enable_debug_domain_name.py │ ├── enable_ingress.py │ ├── enable_public_access.py │ ├── export_api.py │ ├── generate_app_code.py │ ├── get_acl_policy.py │ ├── get_api.py │ ├── get_api_group.py │ ├── get_api_group_quantities.py │ ├── get_api_quantities.py │ ├── get_app.py │ ├── get_app_code.py │ ├── get_app_quantities.py │ ├── get_backend_server_group.py │ ├── get_bound_certificate.py │ ├── get_constraints.py │ ├── get_custom_authorizer.py │ ├── get_env_variable.py │ ├── get_gateway.py │ ├── get_gateway_progress.py │ ├── get_throttling_policy.py │ ├── get_vpc_channel.py │ ├── import_api.py │ ├── list_acl_for_api.py │ ├── list_acl_policies.py │ ├── list_api_bound_to_app.py │ ├── list_api_groups.py │ ├── list_api_not_bound_to_acl.py │ ├── list_api_not_bound_to_app.py │ ├── list_api_runtime_definitions.py │ ├── list_api_version_details.py │ ├── list_api_versions.py │ ├── list_apis.py │ ├── list_apis_for_acl.py │ ├── list_app_codes.py │ ├── list_apps.py │ ├── list_apps_bound_to_api.py │ ├── list_azs.py │ ├── list_backend_server_groups.py │ ├── list_backend_servers.py │ ├── list_bound_apis.py │ ├── list_bound_signatures.py │ ├── list_bound_throttling_policies.py │ ├── list_bound_throttling_policy_apis.py │ ├── list_custom_authorizers.py │ ├── list_env_variables.py │ ├── list_envs.py │ ├── list_gateways.py │ ├── list_gw_features.py │ ├── list_not_bound_apis.py │ ├── list_not_bound_throttling_policy_apis.py │ ├── list_quotas.py │ ├── list_signatures.py │ ├── list_supported_gw_features.py │ ├── list_throttling_exclude.py │ ├── list_throttling_policies.py │ ├── list_vpc_channels.py │ ├── modify_gateway_spec.py │ ├── modify_vpc_channel_healthcheck.py │ ├── offline_api.py │ ├── offline_api_version.py │ ├── offline_apis.py │ ├── publish_api.py │ ├── publish_apis.py │ ├── remove_backend_server.py │ ├── reset_app_secret.py │ ├── switch_api_version.py │ ├── unbind_acl.py │ ├── unbind_acls.py │ ├── unbind_certificate_from_domain.py │ ├── unbind_domain_name.py │ ├── unbind_eip.py │ ├── unbind_signature.py │ ├── unbind_throttling_policies.py │ ├── unbind_throttling_policy.py │ ├── update_acl_policy.py │ ├── update_api.py │ ├── update_api_group.py │ ├── update_app.py │ ├── update_backend_server.py │ ├── update_backend_server_group.py │ ├── update_custom_authorizer.py │ ├── update_domain_name_bound.py │ ├── update_env.py │ ├── update_env_variable.py │ ├── update_gateway.py │ ├── update_ingress.py │ ├── update_public_access.py │ ├── update_signature.py │ ├── update_throttling_exclude.py │ ├── update_throttling_policy.py │ ├── update_vpc_channel.py │ ├── verify_api_group_name.py │ ├── verify_app.py │ └── wait_for_gateway.py ├── auto_scaling │ ├── batch_delete_config.py │ ├── batch_instance_action.py │ ├── create_config.py │ ├── create_group.py │ ├── create_policy.py │ ├── delete_config.py │ ├── delete_group.py │ ├── delete_policy.py │ ├── execute_policy.py │ ├── find_config.py │ ├── find_group.py │ ├── find_policy.py │ ├── get_config.py │ ├── get_group.py │ ├── get_policy.py │ ├── init.py │ ├── list_activities.py │ ├── list_configs.py │ ├── list_groups.py │ ├── list_instances.py │ ├── list_policies.py │ ├── list_quotas.py │ ├── pause_group.py │ ├── pause_policy.py │ ├── remove_instance.py │ ├── resume_group.py │ ├── resume_policy.py │ └── update_policy.py ├── baremetal │ ├── list.py │ └── provisioning.py ├── cbr │ ├── add_member.py │ ├── associate_resources.py │ ├── bind_policy.py │ ├── create_checkpoint.py │ ├── create_policy.py │ ├── create_vault.py │ ├── delete_backup.py │ ├── delete_member.py │ ├── delete_policy.py │ ├── delete_vault.py │ ├── dissociate_resources.py │ ├── find_backup.py │ ├── find_policy.py │ ├── find_vault.py │ ├── get_backup.py │ ├── get_checkpoint.py │ ├── get_member.py │ ├── get_policy.py │ ├── get_task.py │ ├── get_vault.py │ ├── list_backups.py │ ├── list_members.py │ ├── list_policies.py │ ├── list_tasks.py │ ├── list_vaults.py │ ├── restore_data.py │ ├── unbind_policy.py │ ├── update_member.py │ ├── update_policy.py │ └── update_vault.py ├── cce │ ├── create_cluster.py │ ├── create_cluster_node.py │ ├── create_cluster_node_cloud_layer.py │ ├── create_node_pool.py │ ├── create_node_pool_cloud_layer.py │ ├── create_turbo_cluster.py │ ├── delete_cluster.py │ ├── delete_cluster_node.py │ ├── delete_cluster_node_cloud_layer.py │ ├── delete_node_pool.py │ ├── delete_node_pool_cloud_layer.py │ ├── find_cluster.py │ ├── find_cluster_node.py │ ├── find_node_pool.py │ ├── get_cluster.py │ ├── get_cluster_node.py │ ├── get_job.py │ ├── get_node_pool.py │ ├── list_cluster_nodes.py │ ├── list_clusters.py │ ├── list_node_pools.py │ └── wait_for_job.py ├── ces │ ├── create_alarm.py │ ├── create_metric_data.py │ ├── delete_alarm.py │ ├── find_alarm.py │ ├── get_alarm.py │ ├── list_alarms.py │ ├── list_event_data.py │ ├── list_metric_data.py │ ├── list_metrics.py │ ├── list_quotas.py │ └── switch_alarm_state.py ├── cloud │ ├── cleanup-servers.py │ ├── create-server-dict.py │ ├── create-server-name-or-id.py │ ├── debug-logging.py │ ├── find-an-image.py │ ├── http-debug-logging.py │ ├── munch-dict-object.py │ ├── normalization.py │ ├── server-information.py │ ├── service-conditional-overrides.py │ ├── service-conditionals.py │ ├── strict-mode.py │ ├── upload-large-object.py │ ├── upload-object.py │ └── user-agent.py ├── clustering │ ├── __init__.py │ ├── action.py │ ├── cluster.py │ ├── event.py │ ├── node.py │ ├── policy.py │ ├── policy_type.py │ ├── profile.py │ ├── profile_type.py │ └── receiver.py ├── compute │ ├── __init__.py │ ├── create.py │ ├── delete.py │ ├── find.py │ └── list.py ├── connect.py ├── connect_otc.py ├── css │ ├── add_cluster_nodes.py │ ├── create_cluster.py │ ├── create_cluster_opensearch.py │ ├── create_snapshot.py │ ├── delete_cluster.py │ ├── delete_snapshot.py │ ├── disable_snapshot_function.py │ ├── extend_cluster.py │ ├── extend_cluster_nodes.py │ ├── find_cluster.py │ ├── find_snapshot.py │ ├── get_certificate.py │ ├── get_cluster.py │ ├── get_cluster_upgrade_status.py │ ├── get_snapshot_policy.py │ ├── list_cluster_upgradable_versions.py │ ├── list_clusters.py │ ├── list_flavors.py │ ├── list_snapshots.py │ ├── replace_cluster_node.py │ ├── restart_cluster.py │ ├── restore_snapshot.py │ ├── retry_cluster_upgrade_job.py │ ├── scale_in_cluster.py │ ├── scale_in_cluster_by_node_type.py │ ├── set_snapshot_configuration.py │ ├── set_snapshot_policy.py │ ├── update_cluster_flavor.py │ ├── update_cluster_kernel.py │ ├── update_cluster_name.py │ ├── update_cluster_password.py │ ├── update_cluster_security_group.py │ ├── update_cluster_security_mode.py │ └── update_node_type_flavor.py ├── cts │ ├── create_tracker.py │ ├── delete_tracker.py │ ├── get_tracker.py │ ├── list_traces.py │ └── update_tracker.py ├── ctsv3 │ ├── __init__.py │ ├── create_key_event.py │ ├── create_tracker.py │ ├── delete_key_event.py │ ├── delete_tracker.py │ ├── list_key_events.py │ ├── list_quotas.py │ ├── list_traces.py │ ├── list_trackers.py │ └── update_key_event.py ├── dcaas │ ├── __init__.py │ ├── create_connection.py │ ├── create_endpoint_group.py │ ├── create_virtual_gateway.py │ ├── create_virtual_interface.py │ ├── delete_connection.py │ ├── delete_endpoint_group.py │ ├── delete_virtual_gateway.py │ ├── delete_virtual_interface.py │ ├── find_connection.py │ ├── find_endpoint_group.py │ ├── find_virtual_gateway.py │ ├── find_virtual_interface.py │ ├── get_connection.py │ ├── get_endpoint_group.py │ ├── get_virtual_gateway.py │ ├── get_virtual_interface.py │ ├── list_connections.py │ ├── list_endpoint_groups.py │ ├── list_virtual_gateways.py │ ├── list_virtual_interfaces.py │ ├── update_connection.py │ ├── update_endpoint_group.py │ ├── update_virtual_gateway.py │ └── update_virtual_interface.py ├── dcs │ ├── change_instance_password.py │ ├── create_backup.py │ ├── create_instance.py │ ├── delete_backup.py │ ├── delete_instance.py │ ├── extend_instance.py │ ├── find_instance.py │ ├── get_instance.py │ ├── list_availability_zones.py │ ├── list_backups.py │ ├── list_instance_params.py │ ├── list_instances.py │ ├── list_maintenance_time_windows.py │ ├── list_quotas.py │ ├── list_restore_records.py │ ├── list_service_specification.py │ ├── list_statistics.py │ ├── restart_instance.py │ ├── restore_instance.py │ ├── start_instance.py │ ├── stop_instance.py │ ├── update_instance.py │ └── update_instance_params.py ├── dds │ ├── __init__.py │ └── create_instance.py ├── deh │ ├── __init__.py │ ├── create.py │ ├── create_deh_host.py │ ├── list.py │ ├── list_deh_hosts.py │ ├── list_deh_servers.py │ ├── list_host_types.py │ ├── list_servers.py │ └── list_types.py ├── dis │ ├── create_app.py │ ├── create_dump_task.py │ ├── create_stream.py │ ├── delete_app.py │ ├── delete_dump_task.py │ ├── delete_stream.py │ ├── download_data.py │ ├── get_app.py │ ├── get_data_cursor.py │ ├── get_dump_task.py │ ├── get_stream.py │ ├── list_app_consumptions.py │ ├── list_apps.py │ ├── list_dump_tasks.py │ ├── list_streams.py │ ├── pause_dump_task.py │ ├── start_dump_task.py │ ├── update_stream_partition.py │ └── upload_data.py ├── dms │ ├── confirm_message.py │ ├── consume_message.py │ ├── create_instance.py │ ├── create_instance_topic.py │ ├── create_queue.py │ ├── create_queue_group.py │ ├── delete_instance.py │ ├── delete_instance_topic.py │ ├── delete_queue.py │ ├── delete_queue_group.py │ ├── find_instance.py │ ├── find_queue.py │ ├── find_queue_group.py │ ├── get_instance.py │ ├── get_queue.py │ ├── list_instance_az_zones.py │ ├── list_instance_products.py │ ├── list_instance_topics.py │ ├── list_instances.py │ ├── list_maintenance_windows.py │ ├── list_queue_groups.py │ ├── list_queues.py │ ├── restart_instance.py │ ├── send_messages.py │ └── update_instance.py ├── dns │ ├── add_router_to_zone.py │ ├── create_recordset.py │ ├── create_zone.py │ ├── delete_recordset.py │ ├── delete_zone.py │ ├── find_recordset.py │ ├── find_zone.py │ ├── get_floating_ip.py │ ├── get_recordset.py │ ├── get_zone.py │ ├── list_floating_ips.py │ ├── list_nameservers.py │ ├── list_recordsets.py │ ├── list_zones.py │ ├── remove_router_from_zone.py │ ├── set_floating_ip.py │ ├── unset_floating_ip.py │ ├── update_floating_ip.py │ ├── update_recordset.py │ └── update_zone.py ├── dws │ ├── batch_create_cluster_tags.py │ ├── batch_delete_cluster_tags.py │ ├── cluster_tags.py │ ├── create_cluster.py │ ├── create_cluster_tag.py │ ├── create_snapshot.py │ ├── delete_cluster.py │ ├── delete_cluster_tag.py │ ├── delete_snapshot.py │ ├── find_cluster.py │ ├── find_snapshot.py │ ├── get_cluster.py │ ├── get_snapshot.py │ ├── list_clusters.py │ ├── list_flavors.py │ ├── list_snapshots.py │ ├── reset_cluster_password.py │ ├── restart_cluster.py │ ├── restore_snapshot.py │ └── scale_out_cluster.py ├── elb │ ├── create_elb_cert.py │ ├── delete_lb.py │ ├── find_elb_cert.py │ └── list_elb_certs.py ├── function_graph │ ├── async_function_invocation.py │ ├── configure_async_notification.py │ ├── create_alias.py │ ├── create_dependency_version.py │ ├── create_event.py │ ├── create_function.py │ ├── create_resource_tags.py │ ├── create_trigger.py │ ├── delete_alias.py │ ├── delete_all_triggers.py │ ├── delete_async_notification.py │ ├── delete_dependency_version.py │ ├── delete_event.py │ ├── delete_function.py │ ├── delete_resource_tags.py │ ├── delete_trigger.py │ ├── enable_lts_log.py │ ├── export_function.py │ ├── get_alias.py │ ├── get_dependency_version.py │ ├── get_event.py │ ├── get_function_code.py │ ├── get_function_metadata.py │ ├── get_lts_log_detail.py │ ├── get_resource_tags.py │ ├── get_template.py │ ├── get_trigger.py │ ├── import_function.py │ ├── list_aliases.py │ ├── list_all_async_notifications.py │ ├── list_async_invocation_requests.py │ ├── list_async_notifications.py │ ├── list_dependencies.py │ ├── list_dependency_versions.py │ ├── list_events.py │ ├── list_function_metrics.py │ ├── list_functions.py │ ├── list_metrics.py │ ├── list_quotas.py │ ├── list_reserved_instances.py │ ├── list_reserved_instances_config.py │ ├── list_triggers.py │ ├── list_versions.py │ ├── publish_version.py │ ├── stop_async_invocation_request.py │ ├── sync_function_invocation.py │ ├── update_alias.py │ ├── update_event.py │ ├── update_function_code.py │ ├── update_function_instances.py │ ├── update_function_metadata.py │ ├── update_reserved_instances.py │ └── update_trigger.py ├── identity │ ├── __init__.py │ ├── create_credential.py │ ├── create_security_token.py │ ├── delete_credential.py │ ├── find_credential.py │ ├── get_credential.py │ ├── list.py │ ├── list_credentials.py │ └── update_credential.py ├── image │ ├── __init__.py │ ├── create.py │ ├── delete.py │ ├── download.py │ └── list.py ├── ims │ ├── __init__.py │ ├── create_image_from_obs.py │ └── query_async_job.py ├── key_manager │ ├── __init__.py │ ├── create.py │ ├── get.py │ └── list.py ├── kms │ ├── cancel_key_deletion.py │ ├── create_datakey.py │ ├── create_datakey_without_plaintext.py │ ├── create_key.py │ ├── decrypt_datakey.py │ ├── disable_key.py │ ├── enable_key.py │ ├── encrypt_datakey.py │ ├── find_key.py │ ├── generate_random_data.py │ ├── get_instance_number.py │ ├── get_key.py │ ├── list_keys.py │ ├── list_quotas.py │ └── schedule_key_deletion.py ├── lts │ ├── create_log_group.py │ ├── create_log_stream.py │ ├── delete_log_group.py │ ├── delete_log_stream.py │ ├── list_log_group.py │ ├── list_log_stream.py │ └── update_log_group.py ├── modelartsv1 │ ├── create_devenv_instance.py │ ├── create_model.py │ ├── create_service.py │ ├── create_training_job.py │ ├── create_training_job_config.py │ ├── create_training_job_version.py │ ├── create_visualization_job.py │ ├── delete_devenv_instance.py │ ├── delete_model.py │ ├── delete_service.py │ ├── delete_training_job.py │ ├── delete_training_job_config.py │ ├── delete_training_job_version.py │ ├── delete_visualization_job.py │ ├── find_devenv_instance.py │ ├── find_model.py │ ├── find_service.py │ ├── get_builtin_algorithm.py │ ├── get_devenv_instance.py │ ├── get_model.py │ ├── get_service.py │ ├── get_service_event_logs.py │ ├── get_service_update_logs.py │ ├── get_training_job_config.py │ ├── get_training_job_version.py │ ├── get_trainingjob_version_logfile_name.py │ ├── get_visualization_job.py │ ├── list_devenv_instances.py │ ├── list_job_engine_specifications.py │ ├── list_job_resource_specifications.py │ ├── list_models.py │ ├── list_service_clusters.py │ ├── list_service_flavors.py │ ├── list_services.py │ ├── list_training_job_configs.py │ ├── list_training_job_versions.py │ ├── list_training_jobs.py │ ├── list_trainingjob_version_logs.py │ ├── list_visualization_jobs.py │ ├── restart_visualization_job.py │ ├── service_monitor.py │ ├── start_devenv_instance.py │ ├── start_service.py │ ├── stop_devenv_instance.py │ ├── stop_service.py │ ├── stop_training_job_version.py │ ├── stop_visualization_job.py │ ├── update_devenv_instance.py │ ├── update_service.py │ ├── update_training_job.py │ ├── update_training_job_config.py │ ├── update_visualization_job.py │ └── update_visualizationjob.py ├── modelartsv2 │ ├── add_samples.py │ ├── create_dataset.py │ ├── create_dataset_export_task.py │ ├── create_dataset_import_task.py │ ├── create_dataset_label.py │ ├── create_dataset_version.py │ ├── dataset_sync.py │ ├── delete_dataset.py │ ├── delete_dataset_version.py │ ├── delete_labels.py │ ├── delete_samples.py │ ├── get_dataset.py │ ├── get_dataset_export_task.py │ ├── get_dataset_import_task.py │ ├── get_dataset_sample.py │ ├── get_dataset_statistics.py │ ├── get_dataset_sync_status.py │ ├── get_dataset_version.py │ ├── list_dataset_export_task.py │ ├── list_dataset_import_task.py │ ├── list_dataset_labels.py │ ├── list_dataset_samples.py │ ├── list_dataset_versions.py │ ├── list_datasets.py │ ├── update_dataset.py │ └── update_dataset_labels.py ├── mrs │ ├── create_datasource.py │ ├── create_job.py │ ├── create_jobbinary.py │ ├── delete_cluster.py │ ├── delete_datasource.py │ ├── delete_job.py │ ├── delete_jobbinary.py │ ├── find_cluster.py │ ├── find_datasource.py │ ├── find_job.py │ ├── find_jobbinary.py │ ├── get_cluster.py │ ├── get_datasource.py │ ├── get_job.py │ ├── get_jobbinary.py │ ├── list_clusters.py │ ├── list_datasources.py │ ├── list_hosts.py │ ├── list_jobbinaries.py │ ├── list_jobs.py │ ├── update_cluster.py │ ├── update_datasource.py │ ├── update_job.py │ └── update_jobbinary.py ├── nat │ ├── create_dnat_rule.py │ ├── create_gateway.py │ ├── create_snat_rule.py │ ├── delete_dnat_rule.py │ ├── delete_gateway.py │ ├── delete_snat_rule.py │ ├── find_gateway.py │ ├── get_dnat_rule.py │ ├── get_gateway.py │ ├── get_snat_rule.py │ ├── list_dnat_rules.py │ ├── list_gateways.py │ ├── list_snat_rules.py │ └── update_gateway.py ├── network │ ├── __init__.py │ ├── create.py │ ├── delete.py │ ├── find.py │ ├── list.py │ └── security_group_rules.py ├── obs │ └── multipart_upload.py ├── rds │ ├── apply_configuration.py │ ├── create_backup.py │ ├── create_configuration.py │ ├── create_instance.py │ ├── delete_configuration.py │ ├── find_backup.py │ ├── find_configuration.py │ ├── find_instance.py │ ├── get_configuration.py │ ├── get_instance.py │ ├── get_instance_backup_policy.py │ ├── get_instance_restore_time.py │ ├── list_backup_download_links.py │ ├── list_backups.py │ ├── list_configurations.py │ ├── list_datastore_types.py │ ├── list_datastores.py │ ├── list_flavors.py │ ├── list_instances.py │ ├── restore_instance.py │ ├── set_instance_backup_policy.py │ ├── update_configuration.py │ └── wait_for_backup.py ├── sfsturbo │ ├── create_share.py │ ├── delete_share.py │ ├── find_share.py │ ├── get_share.py │ ├── share_change_security_group.py │ ├── share_extend_capacity.py │ └── shares.py ├── smn │ ├── create_subscription.py │ ├── create_template.py │ ├── create_topic.py │ ├── delete_subscription.py │ ├── delete_template.py │ ├── delete_topic.py │ ├── delete_topic_attribute.py │ ├── find_template.py │ ├── get_template.py │ ├── get_topic.py │ ├── list_subscriptions.py │ ├── list_templates.py │ ├── list_topic_attributes.py │ ├── list_topics.py │ ├── publish_message.py │ ├── send_sms.py │ ├── update_template.py │ ├── update_topic.py │ └── update_topic_attribute.py ├── swr │ ├── create_domain.py │ ├── create_organization.py │ ├── create_organization_permissions.py │ ├── create_repository.py │ ├── delete_domain.py │ ├── delete_organization.py │ ├── delete_organization_permissions.py │ ├── delete_repository.py │ ├── get_domain.py │ ├── get_organization.py │ ├── get_repository.py │ ├── list_domain.py │ ├── list_organization_permissions.py │ ├── list_organizations.py │ ├── list_repository.py │ ├── update_domain.py │ ├── update_organization_permissions.py │ └── update_repository.py ├── tms │ ├── add_predefined_tag.py │ ├── add_resource_tag.py │ ├── delete_predefined_tag.py │ ├── delete_resource_tag.py │ ├── list_predefined_tags.py │ ├── list_resource_tag.py │ └── update_predefined_tag.py ├── vlb │ ├── create_ip_address_group.py │ ├── create_security_policy.py │ ├── delete_ip_address_group.py │ ├── delete_security_policy.py │ ├── find_ip_address_group.py │ ├── find_security_policy.py │ ├── get_ip_address_group.py │ ├── get_security_policy.py │ ├── list_ip_address_groups.py │ ├── list_security_policies.py │ ├── update_ip_address_group.py │ └── update_security_policy.py ├── vpc │ ├── add_eip_to_bandwidth.py │ ├── add_route.py │ ├── assign_bandwidth.py │ ├── create_peering.py │ ├── create_vpc.py │ ├── delete_bandwidth.py │ ├── delete_peering.py │ ├── delete_route.py │ ├── delete_vpc.py │ ├── find_bandwidth.py │ ├── find_peering.py │ ├── find_vpc.py │ ├── get_peering.py │ ├── get_route.py │ ├── get_vpc.py │ ├── list_peerings.py │ ├── list_routes.py │ ├── list_vpc.py │ ├── remove_eip_from_bandwidth.py │ ├── set_peering.py │ ├── update_bandwidth.py │ ├── update_peering.py │ └── update_vpc.py └── vpcep │ ├── create_endpoint.py │ ├── create_service.py │ ├── delete_endpoint.py │ ├── delete_service.py │ ├── find_service.py │ ├── get_endpoint.py │ ├── get_public_services.py │ ├── get_service.py │ ├── get_target_service.py │ ├── list_endpoints.py │ ├── list_resource_quota.py │ ├── list_service_connections.py │ ├── list_service_whitelist.py │ ├── list_services.py │ ├── manage_service_connections.py │ └── manage_service_whitelist.py ├── openstack └── tests │ └── unit │ └── fixtures │ ├── baremetal.json │ ├── catalog-v2.json │ ├── catalog-v3-suburl.json │ ├── catalog-v3.json │ ├── clouds │ ├── clouds.yaml │ └── clouds_cache.yaml │ ├── discovery.json │ ├── dns.json │ ├── image-version-broken.json │ ├── image-version-suburl.json │ ├── image-version-v1.json │ ├── image-version-v2.json │ └── image-version.json ├── otcextensions ├── __init__.py ├── _hacking.py ├── common │ ├── __init__.py │ ├── agency_auth.py │ ├── cli_utils.py │ ├── errors.py │ ├── exc.py │ ├── format.py │ ├── sdk_utils.py │ └── utils.py ├── i18n.py ├── osclient │ ├── __init__.py │ ├── anti_ddos │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── floating_ip.py │ │ │ └── status.py │ ├── auto_scaling │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── activity.py │ │ │ ├── config.py │ │ │ ├── group.py │ │ │ ├── instance.py │ │ │ ├── policy.py │ │ │ └── quota.py │ ├── cbr │ │ ├── __init__.py │ │ ├── client.py │ │ └── v3 │ │ │ ├── backup.py │ │ │ ├── checkpoint.py │ │ │ ├── member.py │ │ │ ├── policy.py │ │ │ ├── task.py │ │ │ └── vault.py │ ├── cce │ │ ├── __init__.py │ │ ├── client.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── cluster.py │ │ │ └── cluster_node.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── cluster.py │ │ │ ├── cluster_certificate.py │ │ │ ├── cluster_node.py │ │ │ └── node_pool.py │ ├── ces │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── alarm.py │ │ │ ├── event_data.py │ │ │ ├── metric.py │ │ │ ├── metric_data.py │ │ │ └── quota.py │ ├── compute │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── server.py │ ├── css │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── certificate.py │ │ │ ├── cluster.py │ │ │ ├── flavor.py │ │ │ └── snapshot.py │ ├── cts │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── trace.py │ │ │ └── tracker.py │ ├── dcaas │ │ ├── __init__.py │ │ ├── client.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── endpoint_group.py │ │ │ └── virtual_gateway.py │ ├── dcs │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── backup.py │ │ │ ├── config.py │ │ │ ├── instance.py │ │ │ ├── quota.py │ │ │ ├── restore_record.py │ │ │ └── statistic.py │ ├── deh │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── host.py │ ├── dis │ │ ├── __init__.py │ │ ├── client.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── checkpoint.py │ │ │ ├── data.py │ │ │ ├── dump_task.py │ │ │ └── stream.py │ ├── dms │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── az.py │ │ │ ├── group.py │ │ │ ├── instance.py │ │ │ ├── maintenance_window.py │ │ │ ├── product.py │ │ │ ├── queue.py │ │ │ ├── quota.py │ │ │ └── topic.py │ ├── dns │ │ ├── __init__.py │ │ ├── client.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── ptr.py │ │ │ ├── recordset.py │ │ │ └── zone.py │ ├── dws │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── cluster.py │ │ │ ├── flavor.py │ │ │ └── snapshot.py │ ├── identity │ │ ├── __init__.py │ │ ├── client.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── credential.py │ │ │ └── custom_role.py │ ├── kms │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── cmk.py │ │ │ └── quota.py │ ├── load_balancer │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── health_monitor.py │ │ │ ├── listener.py │ │ │ ├── load_balancer.py │ │ │ ├── pool.py │ │ │ └── pool_member.py │ ├── modelartsv1 │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── builtin_model.py │ │ │ ├── devenv.py │ │ │ ├── job_engine.py │ │ │ ├── job_flavor.py │ │ │ ├── model.py │ │ │ ├── service.py │ │ │ ├── service_cluster.py │ │ │ ├── service_event.py │ │ │ ├── service_flavor.py │ │ │ ├── service_log.py │ │ │ ├── service_monitor.py │ │ │ ├── training_job.py │ │ │ ├── training_job_config.py │ │ │ ├── training_job_version.py │ │ │ ├── trainingjob_version_logfile.py │ │ │ ├── trainingjob_version_logs.py │ │ │ └── visualization_job.py │ ├── modelartsv2 │ │ ├── client.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── dataset.py │ │ │ ├── dataset_export_task.py │ │ │ ├── dataset_import_task.py │ │ │ ├── dataset_label.py │ │ │ ├── dataset_sample.py │ │ │ ├── dataset_statistics.py │ │ │ ├── dataset_sync.py │ │ │ ├── dataset_version.py │ │ │ └── utils.py │ ├── mrs │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── cluster.py │ │ │ ├── datasource.py │ │ │ ├── job.py │ │ │ └── jobbinary.py │ ├── nat │ │ ├── __init__.py │ │ ├── client.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── dnat.py │ │ │ ├── gateway.py │ │ │ └── snat.py │ ├── obs │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── container.py │ │ │ ├── object.py │ │ │ └── utils.py │ ├── rds │ │ ├── __init__.py │ │ ├── client.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── backup.py │ │ │ ├── configuration.py │ │ │ ├── datastore.py │ │ │ ├── flavor.py │ │ │ └── instance.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── backup.py │ │ │ ├── configuration.py │ │ │ ├── datastore.py │ │ │ ├── flavor.py │ │ │ └── instance.py │ ├── sdrs │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── active_domains.py │ │ │ └── job.py │ ├── smn │ │ ├── __init__.py │ │ ├── client.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── message.py │ │ │ ├── sms.py │ │ │ ├── subscription.py │ │ │ ├── template.py │ │ │ └── topic.py │ ├── vlb │ │ ├── __init__.py │ │ ├── client.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── listener.py │ │ │ └── load_balancer.py │ ├── volume_backup │ │ ├── __init__.py │ │ ├── client.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── policy.py │ ├── vpc │ │ ├── __init__.py │ │ ├── client.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── peering.py │ │ │ └── route.py │ └── vpcep │ │ ├── __init__.py │ │ ├── client.py │ │ └── v1 │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── endpoint.py │ │ ├── quota.py │ │ ├── service.py │ │ └── whitelist.py ├── sdk │ ├── __init__.py │ ├── ak_auth.py │ ├── anti_ddos │ │ ├── __init__.py │ │ ├── anti_ddos_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── alert_config.py │ │ │ ├── config.py │ │ │ ├── floating_ip.py │ │ │ └── status.py │ ├── aomv1 │ │ ├── __init__.py │ │ ├── aomv1_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── aomv2 │ │ ├── __init__.py │ │ ├── aomv2_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── apig │ │ ├── __init__.py │ │ ├── apig_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── acl_api_binding.py │ │ │ ├── acl_policy.py │ │ │ ├── api.py │ │ │ ├── api_auth.py │ │ │ ├── api_supplements.py │ │ │ ├── apienvironment.py │ │ │ ├── apienvironmentvar.py │ │ │ ├── apigroup.py │ │ │ ├── app.py │ │ │ ├── appcode.py │ │ │ ├── az.py │ │ │ ├── backend_server.py │ │ │ ├── backend_server_group.py │ │ │ ├── certificate.py │ │ │ ├── custom_authorizer.py │ │ │ ├── domain_name.py │ │ │ ├── export_api.py │ │ │ ├── gateway.py │ │ │ ├── gateway_features.py │ │ │ ├── resource_query.py │ │ │ ├── signature.py │ │ │ ├── signature_binding.py │ │ │ ├── throttling_excluded.py │ │ │ ├── throttling_policy.py │ │ │ ├── throttling_policy_binding.py │ │ │ └── vpc_channel.py │ ├── auto_scaling │ │ ├── __init__.py │ │ ├── auto_scaling_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── activity.py │ │ │ ├── config.py │ │ │ ├── group.py │ │ │ ├── instance.py │ │ │ ├── policy.py │ │ │ └── quota.py │ ├── bms │ │ ├── __init__.py │ │ ├── bms_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── cbr │ │ ├── __init__.py │ │ ├── cbr_service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── backup.py │ │ │ ├── checkpoint.py │ │ │ ├── member.py │ │ │ ├── policy.py │ │ │ ├── restore.py │ │ │ ├── task.py │ │ │ └── vault.py │ ├── cce │ │ ├── __init__.py │ │ ├── cce_service.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── cluster.py │ │ │ └── cluster_node.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── cluster.py │ │ │ ├── cluster_cert.py │ │ │ ├── cluster_node.py │ │ │ ├── job.py │ │ │ └── node_pool.py │ ├── ces │ │ ├── __init__.py │ │ ├── ces_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── alarm.py │ │ │ ├── event_data.py │ │ │ ├── metric.py │ │ │ ├── metric_data.py │ │ │ └── quota.py │ ├── cfwv1 │ │ ├── __init__.py │ │ ├── cfwv1_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── cfwv2 │ │ ├── __init__.py │ │ ├── cfwv2_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── cfwv3 │ │ ├── __init__.py │ │ ├── cfwv3_service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── cloud │ │ ├── __init__.py │ │ ├── cce.py │ │ ├── dds.py │ │ └── rds.py │ ├── compute │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ └── server.py │ ├── csbs │ │ ├── __init__.py │ │ ├── csbs_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── css │ │ ├── __init__.py │ │ ├── css_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── cluster.py │ │ │ ├── cluster_image.py │ │ │ ├── cluster_upgrade_status.py │ │ │ ├── flavor.py │ │ │ └── snapshot.py │ ├── cts │ │ ├── __init__.py │ │ ├── cts_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── trace.py │ │ │ └── tracker.py │ ├── ctsv2 │ │ ├── __init__.py │ │ ├── ctsv2_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ └── trace.py │ ├── ctsv3 │ │ ├── __init__.py │ │ ├── ctsv3_service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── key_event.py │ │ │ ├── quota.py │ │ │ ├── trace.py │ │ │ └── tracker.py │ ├── dataarts │ │ ├── __init__.py │ │ ├── dataarts_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── dcaas │ │ ├── __init__.py │ │ ├── dcaas_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── connection.py │ │ │ ├── endpoint_group.py │ │ │ ├── virtual_gateway.py │ │ │ └── virtual_interface.py │ ├── dcs │ │ ├── __init__.py │ │ ├── dcs_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── availability_zone.py │ │ │ ├── backup.py │ │ │ ├── config.py │ │ │ ├── instance.py │ │ │ ├── maintenance_time_window.py │ │ │ ├── quota.py │ │ │ ├── restore_record.py │ │ │ ├── service_specification.py │ │ │ └── statistic.py │ ├── ddmv1 │ │ ├── __init__.py │ │ ├── ddmv1_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── ddmv2 │ │ ├── __init__.py │ │ ├── ddmv2_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── ddmv3 │ │ ├── __init__.py │ │ ├── ddmv3_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── dds │ │ ├── __init__.py │ │ ├── dds_service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── datastore.py │ │ │ ├── eip.py │ │ │ ├── flavor.py │ │ │ ├── instance.py │ │ │ ├── job.py │ │ │ ├── recycle_instance.py │ │ │ └── recycle_policy.py │ ├── deh │ │ ├── __init__.py │ │ ├── deh_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── host.py │ │ │ ├── host_type.py │ │ │ └── server.py │ ├── dis │ │ ├── __init__.py │ │ ├── dis_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── app.py │ │ │ ├── checkpoint.py │ │ │ ├── data.py │ │ │ ├── dump_task.py │ │ │ └── stream.py │ ├── dli │ │ ├── __init__.py │ │ ├── dli_service.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── dms │ │ ├── __init__.py │ │ ├── dms_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── az.py │ │ │ ├── group.py │ │ │ ├── group_message.py │ │ │ ├── instance.py │ │ │ ├── maintenance_window.py │ │ │ ├── message.py │ │ │ ├── product.py │ │ │ ├── queue.py │ │ │ ├── quota.py │ │ │ └── topic.py │ ├── dmsv2 │ │ ├── __init__.py │ │ ├── dmsv2_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── dns │ │ ├── __init__.py │ │ ├── dns_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── floating_ip.py │ │ │ ├── nameserver.py │ │ │ ├── recordset.py │ │ │ └── zone.py │ ├── dnsmixin.py │ ├── drs │ │ ├── __init__.py │ │ ├── drs_service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── dws │ │ ├── __init__.py │ │ ├── dws_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── cluster.py │ │ │ ├── flavor.py │ │ │ ├── snapshot.py │ │ │ └── tag.py │ ├── ecs │ │ ├── __init__.py │ │ ├── ecs_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── elb │ │ ├── __init__.py │ │ ├── elb_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _base_tag.py │ │ │ ├── _proxy.py │ │ │ ├── elb_certificate.py │ │ │ ├── listener_tag.py │ │ │ ├── load_balancer.py │ │ │ └── load_balancer_tag.py │ ├── enterprise_dashboard │ │ ├── __init__.py │ │ ├── enterprise_dashboard_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── enterprise_dashboard_v1 │ │ ├── __init__.py │ │ ├── enterprise_dashboard_v1_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── er │ │ ├── __init__.py │ │ ├── er_service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── evpn │ │ ├── __init__.py │ │ ├── evpn_service.py │ │ └── v5 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── function_graph │ │ ├── __init__.py │ │ ├── function_graph_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── alias.py │ │ │ ├── async_notification.py │ │ │ ├── dependency.py │ │ │ ├── event.py │ │ │ ├── export_function.py │ │ │ ├── function.py │ │ │ ├── function_invocation.py │ │ │ ├── import_function.py │ │ │ ├── log.py │ │ │ ├── metric.py │ │ │ ├── quota.py │ │ │ ├── reserved_instance.py │ │ │ ├── template.py │ │ │ ├── trigger.py │ │ │ └── version.py │ ├── gaussdb │ │ ├── __init__.py │ │ ├── gaussdb_service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── geminidb │ │ ├── __init__.py │ │ ├── geminidb_service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── hss │ │ ├── __init__.py │ │ ├── hss_service.py │ │ └── v5 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── identity │ │ ├── __init__.py │ │ ├── identity_service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── _bad_base.py │ │ │ ├── _proxy.py │ │ │ ├── agency.py │ │ │ ├── agency_role.py │ │ │ ├── credential.py │ │ │ ├── custom_role.py │ │ │ └── security_token.py │ ├── imsv1 │ │ ├── __init__.py │ │ ├── imsv1_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── async_job.py │ │ │ └── image_export.py │ ├── imsv2 │ │ ├── __init__.py │ │ ├── imsv2_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ └── image.py │ ├── job.py │ ├── kms │ │ ├── __init__.py │ │ ├── kms_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── data_key.py │ │ │ ├── key.py │ │ │ ├── misc.py │ │ │ └── quota.py │ ├── lts │ │ ├── __init__.py │ │ ├── lts_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── group.py │ │ │ └── stream.py │ ├── modelartsv1 │ │ ├── __init__.py │ │ ├── modelartsv1_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── builtin_model.py │ │ │ ├── devenv.py │ │ │ ├── job_engine.py │ │ │ ├── job_flavor.py │ │ │ ├── job_resource_specifications.py │ │ │ ├── model.py │ │ │ ├── service.py │ │ │ ├── service_cluster.py │ │ │ ├── service_event.py │ │ │ ├── service_flavor.py │ │ │ ├── service_log.py │ │ │ ├── service_monitor.py │ │ │ ├── training_job.py │ │ │ ├── training_job_config.py │ │ │ ├── training_job_version.py │ │ │ └── visualization_job.py │ ├── modelartsv2 │ │ ├── __init__.py │ │ ├── modelartsv2_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── dataset.py │ │ │ ├── dataset_export_task.py │ │ │ ├── dataset_import_task.py │ │ │ ├── dataset_label.py │ │ │ ├── dataset_sample.py │ │ │ ├── dataset_statistics.py │ │ │ ├── dataset_sync.py │ │ │ └── dataset_version.py │ ├── mrs │ │ ├── __init__.py │ │ ├── mrs_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── cluster.py │ │ │ ├── datasource.py │ │ │ ├── job.py │ │ │ └── jobbinary.py │ ├── nat │ │ ├── __init__.py │ │ ├── nat_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── dnat.py │ │ │ ├── gateway.py │ │ │ └── snat.py │ ├── network │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ └── service_provider.py │ ├── obs │ │ ├── __init__.py │ │ ├── obs_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── container.py │ │ │ └── obj.py │ ├── ocr │ │ ├── __init__.py │ │ ├── ocr_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── plas │ │ ├── __init__.py │ │ ├── plas_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── proxy.py │ ├── quotamixin.py │ ├── rds │ │ ├── __init__.py │ │ ├── rds_service.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── backup.py │ │ │ ├── configuration.py │ │ │ ├── datastore.py │ │ │ ├── flavor.py │ │ │ └── instance.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── backup.py │ │ │ ├── configuration.py │ │ │ ├── datastore.py │ │ │ ├── flavor.py │ │ │ ├── instance.py │ │ │ └── storage_type.py │ ├── rms │ │ ├── __init__.py │ │ ├── rms_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── rts │ │ ├── __init__.py │ │ ├── rts_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ ├── sdk_make_proxy.py │ ├── sdk_proxy.py │ ├── sdk_resource.py │ ├── sdrs │ │ ├── __init__.py │ │ ├── sdrs_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── active_domains.py │ │ │ ├── dr_drill.py │ │ │ ├── job.py │ │ │ ├── protected_instance.py │ │ │ ├── protection_group.py │ │ │ ├── quota.py │ │ │ ├── replication_pair.py │ │ │ └── task_center.py │ ├── sfsturbo │ │ ├── __init__.py │ │ ├── sfsturbo_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ └── share.py │ ├── smn │ │ ├── __init__.py │ │ ├── smn_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── message.py │ │ │ ├── sms.py │ │ │ ├── subscription.py │ │ │ ├── template.py │ │ │ └── topic.py │ ├── swr │ │ ├── __init__.py │ │ ├── swr_service.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── domain.py │ │ │ ├── organization.py │ │ │ └── repository.py │ ├── tms │ │ ├── __init__.py │ │ ├── tms_service.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── predefined_tag.py │ │ │ └── resource_tag.py │ ├── vlb │ │ ├── __init__.py │ │ ├── v3 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── availability_zone.py │ │ │ ├── certificate.py │ │ │ ├── flavor.py │ │ │ ├── health_monitor.py │ │ │ ├── ip_address_group.py │ │ │ ├── l7_policy.py │ │ │ ├── l7_rule.py │ │ │ ├── listener.py │ │ │ ├── load_balancer.py │ │ │ ├── load_balancer_status.py │ │ │ ├── member.py │ │ │ ├── pool.py │ │ │ ├── quota.py │ │ │ └── security_policy.py │ │ └── vlb_service.py │ ├── volume_backup │ │ ├── __init__.py │ │ ├── v2 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── backup_policy.py │ │ │ ├── backup_task.py │ │ │ └── job.py │ │ └── volume_backup_service.py │ ├── vpc │ │ ├── __init__.py │ │ ├── v1 │ │ │ ├── _proxy.py │ │ │ ├── bandwidth.py │ │ │ ├── peering.py │ │ │ ├── route.py │ │ │ ├── subnet.py │ │ │ └── vpc.py │ │ └── vpc_service.py │ ├── vpcep │ │ ├── __init__.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── _proxy.py │ │ │ ├── connection.py │ │ │ ├── endpoint.py │ │ │ ├── public_service.py │ │ │ ├── quota.py │ │ │ ├── service.py │ │ │ ├── target_service.py │ │ │ └── whitelist.py │ │ └── vpcep_service.py │ ├── vpn │ │ ├── __init__.py │ │ ├── v2 │ │ │ ├── __init__.py │ │ │ └── _proxy.py │ │ └── vpn_service.py │ ├── waf │ │ ├── __init__.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _proxy.py │ │ │ ├── certificate.py │ │ │ └── domain.py │ │ └── waf_service.py │ └── wafd │ │ ├── __init__.py │ │ ├── v1 │ │ ├── __init__.py │ │ └── _proxy.py │ │ └── wafd_service.py └── tests │ ├── __init__.py │ ├── functional │ ├── __init__.py │ ├── base.py │ ├── osclient │ │ ├── __init__.py │ │ ├── cbr │ │ │ └── v3 │ │ │ │ ├── test_task.py │ │ │ │ └── test_vault.py │ │ ├── cce │ │ │ ├── __init__.py │ │ │ └── v3 │ │ │ │ ├── __init__.py │ │ │ │ └── test_cluster.py │ │ ├── dcaas │ │ │ ├── __init__.py │ │ │ └── v2 │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_endpoint_group.py │ │ │ │ └── test_virtual_gateway.py │ │ ├── dns │ │ │ ├── __init__.py │ │ │ └── v2 │ │ │ │ ├── __init__.py │ │ │ │ └── test_zone.py │ │ ├── identity │ │ │ ├── __init__.py │ │ │ └── v3 │ │ │ │ ├── __init__.py │ │ │ │ └── test_custom_role.py │ │ ├── kms │ │ │ ├── __init__.py │ │ │ └── v1 │ │ │ │ └── test_cmk.py │ │ ├── nat │ │ │ ├── __init__.py │ │ │ └── v2 │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── test_dnat.py │ │ │ │ ├── test_gateway.py │ │ │ │ └── test_snat.py │ │ ├── obs │ │ │ ├── __init__.py │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── test_container.py │ │ │ │ └── test_obj.py │ │ ├── rds │ │ │ ├── __init__.py │ │ │ └── v3 │ │ │ │ ├── __init__.py │ │ │ │ ├── test_configuration.py │ │ │ │ ├── test_datastore.py │ │ │ │ ├── test_flavor.py │ │ │ │ └── test_instance.py │ │ ├── volume_backup │ │ │ ├── __init__.py │ │ │ └── v2 │ │ │ │ ├── __init__.py │ │ │ │ └── test_policy.py │ │ └── vpc │ │ │ ├── __init__.py │ │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ └── test_peering.py │ ├── run_stestr.sh │ └── sdk │ │ ├── __init__.py │ │ ├── anti_ddos │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── aomv1 │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── aomv2 │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── apig │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_access_control.py │ │ │ ├── test_acl_api_binding.py │ │ │ ├── test_acl_policy.py │ │ │ ├── test_api.py │ │ │ ├── test_api_group.py │ │ │ ├── test_app.py │ │ │ ├── test_app_code.py │ │ │ ├── test_auth.py │ │ │ ├── test_az.py │ │ │ ├── test_backend_server.py │ │ │ ├── test_backend_server_group.py │ │ │ ├── test_custom_authorizer.py │ │ │ ├── test_domain.py │ │ │ ├── test_environment.py │ │ │ ├── test_environment_var.py │ │ │ ├── test_export_api.py │ │ │ ├── test_features.py │ │ │ ├── test_gateway.py │ │ │ ├── test_quota.py │ │ │ ├── test_resource_query.py │ │ │ ├── test_service.py │ │ │ ├── test_signature.py │ │ │ ├── test_signature_bind.py │ │ │ ├── test_throttle_bind.py │ │ │ ├── test_throttling_excluded_policy.py │ │ │ ├── test_throttling_policy.py │ │ │ └── test_vpc_channel.py │ │ ├── auto_scaling │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── test_quota.py │ │ │ ├── test_service.py │ │ │ └── test_workflow.py │ │ ├── bms │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── cbr │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── test_service.py │ │ │ └── test_task.py │ │ ├── cce │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_cluster.py │ │ │ ├── test_cluster_nodes.py │ │ │ └── test_service.py │ │ ├── ces │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── compute │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_server_tag.py │ │ │ └── test_service.py │ │ ├── csbs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── css │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── cts │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_service.py │ │ │ └── test_tracker.py │ │ ├── ctsv3 │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── test_key_event.py │ │ │ ├── test_quotas.py │ │ │ ├── test_traces.py │ │ │ └── test_tracker.py │ │ ├── dataarts │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── dcaas │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── test_endpoint_group.py │ │ │ └── test_service.py │ │ ├── dcs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_availability_zone.py │ │ │ ├── test_maintenance_time_window.py │ │ │ ├── test_quota.py │ │ │ ├── test_service.py │ │ │ └── test_service_specification.py │ │ ├── ddm │ │ ├── __init__.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── v2 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── dds │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── test_datastore.py │ │ │ ├── test_flavor.py │ │ │ ├── test_instance.py │ │ │ ├── test_recycle_instance.py │ │ │ ├── test_recycle_policy.py │ │ │ └── test_service.py │ │ ├── deh │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_host.py │ │ │ └── test_service.py │ │ ├── dis │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── dli │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── dms │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── test_cleanup.py │ │ │ ├── test_instance.py │ │ │ ├── test_message.py │ │ │ ├── test_misc.py │ │ │ ├── test_queue.py │ │ │ └── test_service.py │ │ ├── dns │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_floatingips.py │ │ │ ├── test_nameservers.py │ │ │ ├── test_recordsets.py │ │ │ ├── test_service.py │ │ │ └── test_zone.py │ │ ├── dws │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_cleanup.py │ │ │ ├── test_service.py │ │ │ └── test_tag.py │ │ ├── elb │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_certificate.py │ │ │ ├── test_listener_tag.py │ │ │ └── test_load_balancer_tag.py │ │ ├── er │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── function_graph │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_alias.py │ │ │ ├── test_async_notification.py │ │ │ ├── test_dependency.py │ │ │ ├── test_event.py │ │ │ ├── test_function.py │ │ │ ├── test_function_invocation.py │ │ │ ├── test_import_export.py │ │ │ ├── test_log.py │ │ │ ├── test_metric.py │ │ │ ├── test_quota.py │ │ │ ├── test_reserved_instances.py │ │ │ ├── test_service.py │ │ │ ├── test_template.py │ │ │ └── test_trigger.py │ │ ├── gaussdb │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── identity │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ └── test_custom_roles.py │ │ ├── imsv1 │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_async_job.py │ │ │ └── test_service.py │ │ ├── imsv2 │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_image.py │ │ │ └── test_service.py │ │ ├── kms │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_data_key.py │ │ │ ├── test_key.py │ │ │ ├── test_misc.py │ │ │ ├── test_quota.py │ │ │ └── test_service.py │ │ ├── lts │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_group.py │ │ │ ├── test_service.py │ │ │ └── test_stream.py │ │ ├── modelartsv1 │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── modelartsv2 │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── mrs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_cluster.py │ │ │ ├── test_datasource.py │ │ │ ├── test_host.py │ │ │ ├── test_job.py │ │ │ ├── test_jobbinary.py │ │ │ └── test_service.py │ │ ├── nat │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_cleanup.py │ │ │ ├── test_dnat.py │ │ │ ├── test_gateway.py │ │ │ ├── test_service.py │ │ │ └── test_snat.py │ │ ├── network │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── test_cleanup.py │ │ ├── obs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_container.py │ │ │ ├── test_object.py │ │ │ └── test_service.py │ │ ├── ocr │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── plas │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── rds │ │ ├── __init__.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ └── test_cleanup.py │ │ ├── rts │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── sdrs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_active_domains.py │ │ │ ├── test_dr_drill.py │ │ │ ├── test_protected_instance.py │ │ │ ├── test_protection_group.py │ │ │ ├── test_quotas.py │ │ │ ├── test_replication_pair.py │ │ │ └── test_service.py │ │ ├── sfsturbo │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_service.py │ │ │ └── test_share.py │ │ ├── smn │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── swr │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_domain.py │ │ │ ├── test_organization.py │ │ │ ├── test_repository.py │ │ │ └── test_service.py │ │ ├── test_openstacksdk_init.py │ │ ├── tms │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_predefined_tags.py │ │ │ ├── test_resource_tags.py │ │ │ └── test_service.py │ │ ├── vlb │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── test_az.py │ │ │ ├── test_certificate.py │ │ │ ├── test_flavor.py │ │ │ ├── test_health_monitor.py │ │ │ ├── test_ip_address_group.py │ │ │ ├── test_l7_policy.py │ │ │ ├── test_l7_rule.py │ │ │ ├── test_listener.py │ │ │ ├── test_loadbalancer.py │ │ │ ├── test_member.py │ │ │ ├── test_pool.py │ │ │ ├── test_quota.py │ │ │ ├── test_security_policy.py │ │ │ └── test_service.py │ │ ├── volume_backup │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_backup.py │ │ │ ├── test_backup_policy.py │ │ │ └── test_job.py │ │ ├── vpc │ │ ├── __init__.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── test_subnet.py │ │ │ └── test_vpc.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── vpcep │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── vpn │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── test_service.py │ │ ├── waf │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_certificate.py │ │ │ ├── test_domain.py │ │ │ └── test_service.py │ │ └── wafd │ │ ├── __init__.py │ │ └── v1 │ │ ├── __init__.py │ │ └── test_service.py │ ├── ssl.py │ └── unit │ ├── __init__.py │ ├── base.py │ ├── common │ ├── __init__.py │ ├── test_agency_auth.py │ └── test_format.py │ ├── osclient │ ├── __init__.py │ ├── anti_ddos │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_config.py │ │ │ ├── test_floating_ip.py │ │ │ └── test_status.py │ ├── auto_scaling │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_activity.py │ │ │ ├── test_config.py │ │ │ ├── test_group.py │ │ │ ├── test_instance.py │ │ │ ├── test_policy.py │ │ │ └── test_quota.py │ ├── cbr │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_backup.py │ │ │ ├── test_checkpoint.py │ │ │ ├── test_member.py │ │ │ ├── test_policy.py │ │ │ ├── test_task.py │ │ │ └── test_vault.py │ ├── cce │ │ ├── __init__.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_cluster.py │ │ │ └── test_cluster_node.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_cluster.py │ │ │ ├── test_cluster_certificate.py │ │ │ ├── test_cluster_node.py │ │ │ └── test_node_pool.py │ ├── css │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_certificate.py │ │ │ ├── test_cluster.py │ │ │ ├── test_flavor.py │ │ │ └── test_snapshot.py │ ├── cts │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_trace.py │ │ │ └── test_tracker.py │ ├── dcaas │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_connection.py │ │ │ ├── test_endpoint_group.py │ │ │ └── test_virtual_gateway.py │ ├── dcs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_backup.py │ │ │ ├── test_config.py │ │ │ ├── test_instance.py │ │ │ ├── test_quota.py │ │ │ ├── test_restore.py │ │ │ └── test_statistic.py │ ├── deh │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ └── test_host.py │ ├── dis │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_app.py │ │ │ ├── test_checkpoint.py │ │ │ ├── test_dump_task.py │ │ │ └── test_stream.py │ ├── dms │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_group.py │ │ │ ├── test_instance.py │ │ │ ├── test_queue.py │ │ │ ├── test_quota.py │ │ │ └── test_topic.py │ ├── dns │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_ptr.py │ │ │ ├── test_recordset.py │ │ │ └── test_zone.py │ ├── dws │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_cluster.py │ │ │ ├── test_flavor.py │ │ │ └── test_snapshot.py │ ├── identity │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_credential.py │ │ │ └── test_custom_role.py │ ├── kms │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_cmk.py │ │ │ └── test_quota.py │ ├── load_balancer │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_health_monitor.py │ │ │ ├── test_listener.py │ │ │ ├── test_load_balancer.py │ │ │ ├── test_pool.py │ │ │ └── test_pool_member.py │ ├── modelartsv1 │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_builtin_model.py │ │ │ ├── test_devenv.py │ │ │ ├── test_job_engine.py │ │ │ ├── test_job_flavor.py │ │ │ ├── test_model.py │ │ │ ├── test_service.py │ │ │ ├── test_service_cluster.py │ │ │ ├── test_service_event.py │ │ │ ├── test_service_flavor.py │ │ │ ├── test_service_log.py │ │ │ ├── test_service_monitor.py │ │ │ ├── test_training_job.py │ │ │ ├── test_training_job_config.py │ │ │ ├── test_training_job_version.py │ │ │ └── test_visualization_job.py │ ├── modelartsv2 │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_dataset.py │ │ │ ├── test_dataset_export_task.py │ │ │ ├── test_dataset_import_task.py │ │ │ ├── test_dataset_sample.py │ │ │ ├── test_dataset_sync.py │ │ │ └── test_statistics.py │ ├── mrs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_cluster.py │ │ │ ├── test_datasource.py │ │ │ ├── test_host.py │ │ │ ├── test_job.py │ │ │ └── test_jobbinary.py │ ├── nat │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_dnat.py │ │ │ ├── test_gateway.py │ │ │ └── test_snat.py │ ├── obs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── fakes.py │ ├── rds │ │ ├── __init__.py │ │ ├── v1 │ │ │ ├── fakes.py │ │ │ ├── test_backup.py │ │ │ ├── test_configuration.py │ │ │ ├── test_datastore.py │ │ │ ├── test_flavor.py │ │ │ └── test_instance.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_backup.py │ │ │ ├── test_configuration.py │ │ │ ├── test_datastore.py │ │ │ ├── test_flavor.py │ │ │ └── test_instance.py │ ├── sdrs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_active_domains.py │ │ │ └── test_job.py │ ├── smn │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_subscription.py │ │ │ ├── test_template.py │ │ │ └── test_topic.py │ ├── test_base.py │ ├── vlb │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_listener.py │ │ │ └── test_load_balancer.py │ ├── volume_backup │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ └── test_policy.py │ ├── vpc │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── fakes.py │ │ │ ├── test_peering.py │ │ │ └── test_route.py │ └── vpcep │ │ ├── __init__.py │ │ └── v1 │ │ ├── __init__.py │ │ ├── fakes.py │ │ ├── test_connection.py │ │ ├── test_endpoint.py │ │ ├── test_quota.py │ │ ├── test_service.py │ │ └── test_whitelist.py │ ├── sdk │ ├── __init__.py │ ├── anti_ddos │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_config.py │ │ │ ├── test_floating_ip.py │ │ │ ├── test_proxy.py │ │ │ └── test_status.py │ ├── apig │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_acl_api_binding.py │ │ │ ├── test_acl_policy.py │ │ │ ├── test_api.py │ │ │ ├── test_api_group.py │ │ │ ├── test_app.py │ │ │ ├── test_app_code.py │ │ │ ├── test_auth.py │ │ │ ├── test_az.py │ │ │ ├── test_backend_server.py │ │ │ ├── test_backend_server_group.py │ │ │ ├── test_custom_authorizer.py │ │ │ ├── test_domain.py │ │ │ ├── test_env.py │ │ │ ├── test_env_var.py │ │ │ ├── test_export_api.py │ │ │ ├── test_gateway.py │ │ │ ├── test_gateway_features.py │ │ │ ├── test_proxy.py │ │ │ ├── test_quota.py │ │ │ ├── test_resource_query.py │ │ │ ├── test_signature.py │ │ │ ├── test_signature_bind.py │ │ │ ├── test_throttle_bind.py │ │ │ ├── test_throttling_excluded_policy.py │ │ │ ├── test_throttling_policy.py │ │ │ └── test_vpc_channel.py │ ├── auto_scaling │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_activity.py │ │ │ ├── test_config.py │ │ │ ├── test_group.py │ │ │ ├── test_instance.py │ │ │ ├── test_policy.py │ │ │ ├── test_proxy.py │ │ │ └── test_quota.py │ ├── base.py │ ├── bms │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── test_proxy.py │ ├── cbr │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── test_backup.py │ │ │ ├── test_checkpoint.py │ │ │ ├── test_member.py │ │ │ ├── test_policy.py │ │ │ ├── test_proxy.py │ │ │ ├── test_restore.py │ │ │ ├── test_task.py │ │ │ └── test_vault.py │ ├── cce │ │ ├── __init__.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── test_cluster.py │ │ │ ├── test_cluster_node.py │ │ │ └── test_proxy.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── test_cluster.py │ │ │ ├── test_cluster_cert.py │ │ │ ├── test_cluster_node.py │ │ │ ├── test_job.py │ │ │ ├── test_node_pool.py │ │ │ ├── test_proxy.py │ │ │ └── test_turbo_cluster.py │ ├── ces │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_alarm.py │ │ │ ├── test_event_data.py │ │ │ ├── test_metric.py │ │ │ ├── test_metric_data.py │ │ │ ├── test_proxy.py │ │ │ └── test_quota.py │ ├── cloud │ │ ├── __init__.py │ │ ├── test_cce.py │ │ ├── test_dds.py │ │ └── test_rds.py │ ├── compute │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── test_server.py │ ├── css │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_cluster.py │ │ │ ├── test_flavor.py │ │ │ ├── test_get_cluster_version_upgrades.py │ │ │ ├── test_proxy.py │ │ │ └── test_snapshot.py │ ├── cts │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_proxy.py │ │ │ ├── test_trace.py │ │ │ └── test_tracker.py │ ├── ctsv3 │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── test_key_event.py │ │ │ ├── test_proxy.py │ │ │ ├── test_quota.py │ │ │ ├── test_traces.py │ │ │ └── test_tracker.py │ ├── dcaas │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── test_endpoint_group.py │ │ │ ├── test_proxy.py │ │ │ └── test_virtual_interface.py │ ├── dcs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_availability_zone.py │ │ │ ├── test_backup.py │ │ │ ├── test_config.py │ │ │ ├── test_instance.py │ │ │ ├── test_maintenance_time_window.py │ │ │ ├── test_proxy.py │ │ │ ├── test_quota.py │ │ │ ├── test_restore_record.py │ │ │ ├── test_service_specification.py │ │ │ └── test_statistic.py │ ├── dds │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── test_datastore.py │ │ │ ├── test_eip.py │ │ │ ├── test_flavor.py │ │ │ ├── test_instance.py │ │ │ ├── test_proxy.py │ │ │ ├── test_recycle_instance.py │ │ │ └── test_recycle_policy.py │ ├── deh │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_host.py │ │ │ ├── test_host_type.py │ │ │ ├── test_proxy.py │ │ │ └── test_server.py │ ├── dis │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_app.py │ │ │ ├── test_checkpoint.py │ │ │ ├── test_dump_task.py │ │ │ ├── test_proxy.py │ │ │ └── test_stream.py │ ├── dms │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_az.py │ │ │ ├── test_group.py │ │ │ ├── test_instance.py │ │ │ ├── test_message.py │ │ │ ├── test_mw.py │ │ │ ├── test_product_spec.py │ │ │ ├── test_proxy.py │ │ │ ├── test_queue.py │ │ │ ├── test_quota.py │ │ │ └── test_topic.py │ ├── dns │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_floating_ip.py │ │ │ ├── test_nameserver.py │ │ │ ├── test_proxy.py │ │ │ ├── test_recordset.py │ │ │ └── test_zone.py │ ├── dws │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_cluster.py │ │ │ ├── test_flavor.py │ │ │ ├── test_proxy.py │ │ │ ├── test_snapshot.py │ │ │ └── test_tag.py │ ├── elb │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── test_certificate.py │ │ │ ├── test_listener_tag.py │ │ │ ├── test_load_balancer_tag.py │ │ │ └── test_proxy.py │ ├── function_graph │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_alias.py │ │ │ ├── test_async_notification.py │ │ │ ├── test_dependency.py │ │ │ ├── test_event.py │ │ │ ├── test_function.py │ │ │ ├── test_function_invocation.py │ │ │ ├── test_import_export.py │ │ │ ├── test_log.py │ │ │ ├── test_metric.py │ │ │ ├── test_proxy.py │ │ │ ├── test_quotas.py │ │ │ ├── test_reserved_instances.py │ │ │ ├── test_template.py │ │ │ ├── test_trigger.py │ │ │ └── test_version.py │ ├── identity │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── test_agency.py │ │ │ ├── test_agency_role.py │ │ │ ├── test_credential.py │ │ │ ├── test_custom_role.py │ │ │ └── test_proxy.py │ ├── imsv1 │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_async_job.py │ │ │ └── test_proxy.py │ ├── imsv2 │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_image.py │ │ │ └── test_proxy.py │ ├── kms │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_data_key.py │ │ │ ├── test_key.py │ │ │ ├── test_misc.py │ │ │ ├── test_proxy.py │ │ │ └── test_quota.py │ ├── lts │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── test_group.py │ │ │ ├── test_proxy.py │ │ │ └── test_stream.py │ ├── modelartsv1 │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── examples.py │ │ │ ├── test_builtin_model.py │ │ │ ├── test_devenv.py │ │ │ ├── test_job_flavor.py │ │ │ ├── test_model.py │ │ │ ├── test_proxy.py │ │ │ ├── test_service.py │ │ │ ├── test_service_cluster.py │ │ │ ├── test_service_event.py │ │ │ ├── test_service_flavor.py │ │ │ ├── test_service_log.py │ │ │ ├── test_service_monitor.py │ │ │ ├── test_training_job.py │ │ │ ├── test_training_job_config.py │ │ │ ├── test_training_job_version.py │ │ │ └── test_visualization_job.py │ ├── modelartsv2 │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── 8710109684_e2c5ef6aeb_n.jpg │ │ │ ├── __init__.py │ │ │ ├── examples.py │ │ │ ├── test_dataset.py │ │ │ ├── test_dataset_export_task.py │ │ │ ├── test_dataset_import_task.py │ │ │ ├── test_dataset_label.py │ │ │ ├── test_dataset_sample.py │ │ │ ├── test_dataset_statistics.py │ │ │ ├── test_dataset_sync.py │ │ │ ├── test_dataset_version.py │ │ │ └── test_proxy.py │ ├── mrs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── test_datasource.py │ │ │ ├── test_host.py │ │ │ ├── test_job.py │ │ │ ├── test_jobbinary.py │ │ │ └── test_proxy.py │ ├── nat │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_dnat.py │ │ │ ├── test_gateway.py │ │ │ ├── test_proxy.py │ │ │ └── test_snat.py │ ├── obs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_container.py │ │ │ ├── test_obj.py │ │ │ └── test_proxy.py │ ├── ocr │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ └── test_proxy.py │ ├── plas │ │ ├── __init__.py │ │ └── v1 │ │ │ └── test_proxy.py │ ├── rds │ │ ├── __init__.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── test_backup.py │ │ │ ├── test_configuration.py │ │ │ ├── test_datastore.py │ │ │ ├── test_flavor.py │ │ │ ├── test_instance.py │ │ │ └── test_proxy.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── test_backup.py │ │ │ ├── test_base.py │ │ │ ├── test_config.py │ │ │ ├── test_datastore.py │ │ │ ├── test_flavor.py │ │ │ ├── test_instance.py │ │ │ ├── test_proxy.py │ │ │ └── test_storage_type.py │ ├── sdrs │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_active_domains.py │ │ │ ├── test_dr_drill.py │ │ │ ├── test_job.py │ │ │ ├── test_protected_instance.py │ │ │ ├── test_protection_group.py │ │ │ ├── test_proxy.py │ │ │ ├── test_quotas.py │ │ │ ├── test_replication_pair.py │ │ │ └── test_task_center.py │ ├── sfsturbo │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_proxy.py │ │ │ └── test_share.py │ ├── smn │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_message.py │ │ │ ├── test_proxy.py │ │ │ ├── test_sms.py │ │ │ ├── test_subscription.py │ │ │ ├── test_template.py │ │ │ └── test_topic.py │ ├── swr │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_domain.py │ │ │ ├── test_organization.py │ │ │ ├── test_proxy.py │ │ │ └── test_repository.py │ ├── test_sdk_resource.py │ ├── tms │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_predefined_tag.py │ │ │ ├── test_proxy.py │ │ │ └── test_resource_tag.py │ ├── utils.py │ ├── vlb │ │ ├── __init__.py │ │ └── v3 │ │ │ ├── __init__.py │ │ │ ├── test_az.py │ │ │ ├── test_certificate.py │ │ │ ├── test_flavor.py │ │ │ ├── test_health_monitor.py │ │ │ ├── test_ip_address_group.py │ │ │ ├── test_l7_policy.py │ │ │ ├── test_l7_rule.py │ │ │ ├── test_listener.py │ │ │ ├── test_load_balancer.py │ │ │ ├── test_load_balancer_status.py │ │ │ ├── test_member.py │ │ │ ├── test_pool.py │ │ │ ├── test_proxy.py │ │ │ ├── test_quota.py │ │ │ └── test_security_policy.py │ ├── volume_backup │ │ ├── __init__.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── data_files │ │ │ ├── create_native_backup_response.json │ │ │ ├── get_backup.json │ │ │ ├── link_resources.json │ │ │ ├── list_backup_details.json │ │ │ ├── list_backup_policies.json │ │ │ ├── list_backups.json │ │ │ ├── list_tasks.json │ │ │ ├── unlink_resources.json │ │ │ └── update_policy.json │ │ │ ├── test_backup_policy.py │ │ │ ├── test_backup_policy_task.py │ │ │ ├── test_job.py │ │ │ └── test_proxy.py │ ├── vpc │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_bandwidth.py │ │ │ ├── test_peering.py │ │ │ ├── test_proxy.py │ │ │ ├── test_route.py │ │ │ ├── test_subnet.py │ │ │ └── test_vpc.py │ ├── vpcep │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── test_connection.py │ │ │ ├── test_endpoint.py │ │ │ ├── test_proxy.py │ │ │ ├── test_public_service.py │ │ │ ├── test_quota.py │ │ │ ├── test_service.py │ │ │ ├── test_target_service.py │ │ │ └── test_whitelist.py │ └── waf │ │ ├── __init__.py │ │ └── v1 │ │ ├── test_certificate.py │ │ ├── test_domain.py │ │ └── test_proxy.py │ └── test_stats.py ├── releasenotes ├── notes │ ├── add-agency-restrict-e569897146acc5fc.yaml │ ├── add-cbr-vault-cli-57c3851e400f409c.yaml │ ├── add-dds-ds-1caf43182ef219fd.yaml │ ├── add-dds-flavors-2c48049ac2a06330.yaml │ ├── add-dds-instance-580b2ae9deee7850.yaml │ ├── add-rds-v3-operations-8bb9237548466010.yaml │ ├── add_v3_cts-5243f93d53d2fcbb.yaml │ ├── apig-acl-binding-306f6cbe04a41517.yaml │ ├── apig-acl-policies-315a133458aed8b8.yaml │ ├── apig-api-auth-304638880d32255d.yaml │ ├── apig-api-supplement-endpoints-8f235c0fa0b97438.yaml │ ├── apig-custom-authorizer-22489300889e0cb3.yaml │ ├── apig-domain-name-bc5abb123c0ab71c.yaml │ ├── apig-env-management-eeda3e00a791043b.yaml │ ├── apig-environment-variables-ce4615fbf091dcf8.yaml │ ├── apig-export-e4cc71de919c0b43.yaml │ ├── apig-group-management-9416e9bfeaf5e9b3.yaml │ ├── apig-gw-features-f53b025851246eac.yaml │ ├── apig-resource-query-bf3f1eac5b23a4fb.yaml │ ├── apig-signature-key-93971afc986fa60f.yaml │ ├── apig-signature-key-binding-d3ab3f81c70933ce.yaml │ ├── apig-throttling-bind-233e62cba4440a7c.yaml │ ├── apig-throttling-exclude-c2e3b041e76c18e9.yaml │ ├── apig-throttling-policy-7b16352f6357e45d.yaml │ ├── apig-vpc-channel-3b5c5720fdae04bb.yaml │ ├── as_refactoring-6d2dbfc4f1dab94e.yaml │ ├── autocreate_aksk-c7466916b013077d.yaml │ ├── bms-fix-3aeaa6fb589457ee.yaml │ ├── cbr-backup-cli-08487f91b9d6a408.yaml │ ├── cbr-member-cli-393e2df2eeb058cf.yaml │ ├── cbr-task-4d0fb07b027f7b7b.yaml │ ├── cce-7c0b21fcf765ff70.yaml │ ├── cleanup-signature-fix-6a1b63706bce6675.yaml │ ├── cli-cce-cluster-certificates-2b69ec34f2f0d9f1.yaml │ ├── css-backup-fix-54bd43ee4b36e303.yaml │ ├── css-backup-path-fix-a6a4549da12d5aef.yaml │ ├── css-certificate-download-f462dc48e69a485b.yaml │ ├── css-cluster-class-update-af55cf7e6a73ad77.yaml │ ├── css-hotfixs-394f00db7cd97333.yaml │ ├── css-module-73006246d239b86a.yaml │ ├── css-tags-fix-fb9516246cd15b22.yaml │ ├── css_cluster_new_apis-eef38191a0b8a144.yaml │ ├── css_osclient_updates-b183e88bfc3ec2c1.yaml │ ├── css_refactoring-d9800684b75bfaf7.yaml │ ├── ctssplit-8539df512707dfde.yaml │ ├── dcaas-connection-resource-implementation-143b2e6b87c4dd34.yaml │ ├── dcaas-osclient-connection-fad700076f796817.yaml │ ├── dcaas-osclient-gateway-6e7c8a110f101ec7.yaml │ ├── dcaas-virtual-gateway-936f572b937b9382.yaml │ ├── dcaas_osclient_ep_group-e0372b0ded1a62d2.yaml │ ├── dcaas_sdk_endpoint_group-59fa0e29900ebb25.yaml │ ├── dcs_az-d21940ce435fed61.yaml │ ├── dcs_maintenance_time_window-bbe714551d4d3a7b.yaml │ ├── dcs_quota-2b8e740be0d4294a.yaml │ ├── dcs_service_specification-441cb6457574645d.yaml │ ├── ddm-proxies-0df8caad363ff6b8.yaml │ ├── dis-sdk-cli-operations-2c6890d82d0c0fde.yaml │ ├── dws-fixes-160aa74dad1e92c8.yaml │ ├── dws-fixes-ignore-missing-67f8f2a50587f1f7.yaml │ ├── dws-list-flavors-update-6580e2e9538b5d74.yaml │ ├── dws-module-6ab89a5446c66697.yaml │ ├── dws-sdk-add-tag-support-c8d61a25af9d6c35.yaml │ ├── fg-aliases-versions-c0ffbc3d9cda043f.yaml │ ├── fg-dependencies-and-quotas-308d9a07a42a5df7.yaml │ ├── fg-events-2c91f9554d5e386c.yaml │ ├── fg-functions-4f48049ac2a56331.yaml │ ├── fg-functions-589e04d2107c7f1f.yaml │ ├── fg-invocation-f5ae6ea83642438c.yaml │ ├── fg-metrics-53f38539a61a84b4.yaml │ ├── fg-notification-7c7bf9611687fc8f.yaml │ ├── fg-templates-and-logs-b2a8abd26aaa0a16.yaml │ ├── fg-triggers-e9d7744b9dedbd10.yaml │ ├── fix-allow-get-bdf74725a5cfa2d4.yaml │ ├── fix-base_path-for-vpc-route-9b6f5131af05f86b.yaml │ ├── fix-ces-metrics-f8a306b410114651.yaml │ ├── gateway-management-bbd7c6def29bcb02.yaml │ ├── gaussdb-service-fix-cf29eb96c5974a0d.yaml │ ├── image-create-50c9534fa6155496.yaml │ ├── ims-async-job-entities-a7495e1930509f33.yaml │ ├── imsv1_wait_for_async_job-a5d40daf582b1b3b.yaml │ ├── imsv2_listing_images-542c27a5e8948bd7.yaml │ ├── init-releasenotes-4a5cb66ad7d34c38.yaml │ ├── kms-quota-c71dbf42c03fa268.yaml │ ├── lts-7ea702d68f7ab4db.yaml │ ├── lts-fix-6f12d866d963a4d3.yaml │ ├── modelarts-modules-29d69650f1d247c3.yaml │ ├── mrs-implementation-0581b7e835de480c.yaml │ ├── new-services-5f07d0547e52a254.yaml │ ├── new-services-ca3d4bb3ba90b259.yaml │ ├── obs-large-object-88d2eb3c78408073.yaml │ ├── obs-multipart-fix-bc1cbba753bfafbd.yaml │ ├── obs-multipart-header-5265d7921c0d657a.yaml │ ├── obs-region-fix-a69ebb00bdc6d4a4.yaml │ ├── obs-security-token-fc6ed572dab0c31d.yaml │ ├── ocr_sdk_proxy-c4cd12d963a7aa13.yaml │ ├── predefined-tags-33f86dc72569448e.yaml │ ├── proxies-apig-fg-er-f939b4523f23b031.yaml │ ├── release-notes-daa7695682776809.yaml │ ├── resource_tags-5e45d9f7de9ec463.yaml │ ├── sdk-update-fixes-cdd4305163b05f8f.yaml │ ├── sdrs_cli-259baf2004fba67c.yaml │ ├── smn-msg-publish-fix-7c6b3546e79fcf35.yaml │ ├── swr-domain-f440d14f651aad18.yaml │ ├── swr-repository-3b69cd079b613528.yaml │ ├── swr-repository-permissions-e27a95e4e1b18a6b.yaml │ ├── vpc-fix-ed8a0f8d31916506.yaml │ ├── vpc-rework-1efbbc5f5d17342c.yaml │ ├── vpc-subnet-cb292afbc16d2266.yaml │ ├── vpc-subnet-list-4fcb4fe4fecbdac2.yaml │ ├── vpcep-module-d76cfde52e8e1711.yaml │ ├── vpcep-target-endpoint-services-ddbab96f411fe1bc.yaml │ └── vpcep_endpoint_create_fix-03b19d669cd1428c.yaml └── source │ ├── conf.py │ └── index.rst ├── requirements.txt ├── setup.cfg ├── setup.py ├── spec └── python-otcextensions.spec ├── test-requirements.txt └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | source = otcextensions 4 | omit = otcextensions/tests/* 5 | 6 | [report] 7 | ignore_errors = True 8 | -------------------------------------------------------------------------------- /.stestr.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | test_path=${OS_TEST_PATH:-./otcextensions/tests/unit} 3 | top_dir=./ 4 | -------------------------------------------------------------------------------- /babel.cfg: -------------------------------------------------------------------------------- 1 | [python: **.py] 2 | -------------------------------------------------------------------------------- /doc/source/appendices/index.rst: -------------------------------------------------------------------------------- 1 | Appendices 2 | ========== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | releasenotes 8 | history 9 | issues 10 | glossary 11 | -------------------------------------------------------------------------------- /doc/source/appendices/releasenotes.rst: -------------------------------------------------------------------------------- 1 | Release Notes 2 | ============= 3 | 4 | Release notes for are currently not implemented for OTC Extensions. 5 | -------------------------------------------------------------------------------- /doc/source/contributor/create/examples/resource/fake_service.py: -------------------------------------------------------------------------------- 1 | # Apache 2 header omitted for brevity 2 | 3 | from openstack import service_description 4 | from openstack.fake.v2 import _proxy as _proxy_v2 5 | 6 | 7 | class FakeService(service_description.ServiceDescription): 8 | """The fake service.""" 9 | 10 | supported_versions = { 11 | '2': _proxy_v2.Proxy, 12 | } 13 | -------------------------------------------------------------------------------- /doc/source/contributor/layout.txt: -------------------------------------------------------------------------------- 1 | openstack/ 2 | connection.py 3 | resource.py 4 | compute/ 5 | compute_service.py 6 | v2/ 7 | server.py 8 | _proxy.py 9 | tests/ 10 | compute/ 11 | v2/ 12 | test_server.py 13 | -------------------------------------------------------------------------------- /doc/source/sdk/examples: -------------------------------------------------------------------------------- 1 | ../../../examples/ -------------------------------------------------------------------------------- /doc/source/sdk/resources/anti_ddos/index.rst: -------------------------------------------------------------------------------- 1 | Anti DDoS Resources 2 | =================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/config 8 | v1/floating_ip 9 | v1/status 10 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/apig/v2/az.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.apig.v2.az 2 | ============================ 3 | 4 | .. automodule:: otcextensions.sdk.apig.v2.az 5 | 6 | The AZ Class 7 | ------------------ 8 | 9 | The ``AZ`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.apig.v2.az.AZ 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/auto_scaling/index.rst: -------------------------------------------------------------------------------- 1 | AutoScaling Resources 2 | ===================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/group 8 | v1/config 9 | v1/policy 10 | v1/instance 11 | v1/quota 12 | v1/activity 13 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/cbr/index.rst: -------------------------------------------------------------------------------- 1 | Cloud Backup and Recovery Resources 2 | =================================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v3/backup 8 | v3/checkpoint 9 | v3/member 10 | v3/policy 11 | v3/restore 12 | v3/vault 13 | v3/task 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/cce/index.rst: -------------------------------------------------------------------------------- 1 | Cloud Container Engine Resources 2 | ================================ 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/cluster 8 | v1/cluster_node 9 | v3/cluster 10 | v3/cluster_node 11 | v3/node_pool 12 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/ces/index.rst: -------------------------------------------------------------------------------- 1 | CES Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/alarm 8 | v1/event_data 9 | v1/metric 10 | v1/metric_data 11 | v1/quota 12 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/css/index.rst: -------------------------------------------------------------------------------- 1 | CSS Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/cluster 8 | v1/snapshot 9 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/cts/index.rst: -------------------------------------------------------------------------------- 1 | CTS Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/trace 8 | v1/tracker 9 | v3/key_event 10 | v3/trace 11 | v3/tracker 12 | v3/quota 13 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dcaas/index.rst: -------------------------------------------------------------------------------- 1 | DCAAS Resources 2 | =============== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v2/connection 8 | v2/virtual_gateway 9 | v2/virtual_interface 10 | v2/endpoint_group 11 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dcs/index.rst: -------------------------------------------------------------------------------- 1 | DCS Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/backup 8 | v1/config 9 | v1/instance 10 | v1/restore_record 11 | v1/statistic 12 | v1/service_specification 13 | v1/availability_zone 14 | v1/quota 15 | v1/maintenance_time_window 16 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dds/index.rst: -------------------------------------------------------------------------------- 1 | DDS Resources 2 | ============= 3 | 4 | DDS v3 5 | ^^^^^^ 6 | 7 | .. toctree:: 8 | :maxdepth: 1 9 | 10 | v3/datastore 11 | v3/flavor 12 | v3/instance 13 | v3/eip 14 | v3/job 15 | v3/recycle_instance 16 | v3/recycle_policy 17 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dds/v3/eip.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.dds.v3.eip 2 | ================================ 3 | 4 | .. automodule:: otcextensions.sdk.dds.v3.eip 5 | 6 | The Eip Class 7 | ------------------- 8 | 9 | The ``Eip`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.dds.v3.eip.Eip 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dds/v3/job.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.dds.v3.job 2 | ================================ 3 | 4 | .. automodule:: otcextensions.sdk.dds.v3.job 5 | 6 | The Job Class 7 | ------------------- 8 | 9 | The ``Job`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.dds.v3.job.Job 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/deh/index.rst: -------------------------------------------------------------------------------- 1 | DeH Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/host 8 | v1/host_type 9 | v1/server 10 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/deh/v1/host.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.deh.v1.host 2 | ============================= 3 | 4 | .. automodule:: otcextensions.sdk.deh.v1.host 5 | 6 | The DeH Host Class 7 | ------------------ 8 | 9 | The ``Host`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.deh.v1.host.Host 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dis/index.rst: -------------------------------------------------------------------------------- 1 | DIS Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v2/app 8 | v2/checkpoint 9 | v2/data 10 | v2/dump_task 11 | v2/stream 12 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dis/v2/app.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.dis.v2.app 2 | ============================ 3 | 4 | .. automodule:: otcextensions.sdk.dis.v2.app 5 | 6 | The DIS App Class 7 | ----------------- 8 | 9 | The ``App`` class inherits from 10 | :class:`~openstack.sdk.resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.dis.v2.app.App 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dis/v2/data.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.dis.v2.data 2 | ============================= 3 | 4 | .. automodule:: otcextensions.sdk.dis.v2.data 5 | 6 | The DIS Data Class 7 | ------------------ 8 | 9 | The ``Data`` class inherits from 10 | :class:`~openstack.sdk.resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.dis.v2.data.Data 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dms/index.rst: -------------------------------------------------------------------------------- 1 | DMS Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/group 8 | v1/message 9 | v1/queue 10 | v1/instance 11 | v1/topic 12 | v1/misc 13 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dns/index.rst: -------------------------------------------------------------------------------- 1 | Anti DDoS Resources 2 | =================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v2/zone 8 | v2/nameserver 9 | v2/floating_ip 10 | v2/recordset 11 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dns/v2/zone.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.dns.v2.zone 2 | ============================= 3 | 4 | .. automodule:: otcextensions.sdk.dns.v2.zone 5 | 6 | The DNS Zone Class 7 | ------------------ 8 | 9 | The ``Zone`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.dns.v2.zone.Zone 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/dws/index.rst: -------------------------------------------------------------------------------- 1 | DWS Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/cluster 8 | v1/snapshot 9 | v1/flavor 10 | v1/tag 11 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/identity/index.rst: -------------------------------------------------------------------------------- 1 | Identity v3 Resources 2 | ===================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v3/agency 8 | v3/agency_role 9 | v3/credential 10 | v3/domain 11 | v3/endpoint 12 | v3/group 13 | v3/policy 14 | v3/project 15 | v3/service 16 | v3/user 17 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/identity/v3/domain.rst: -------------------------------------------------------------------------------- 1 | openstack.identity.v3.domain 2 | ============================ 3 | 4 | .. automodule:: openstack.identity.v3.domain 5 | 6 | The Domain Class 7 | ---------------- 8 | 9 | The ``Domain`` class inherits from :class:`~openstack.resource.Resource`. 10 | 11 | .. autoclass:: openstack.identity.v3.domain.Domain 12 | :members: 13 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/identity/v3/endpoint.rst: -------------------------------------------------------------------------------- 1 | openstack.identity.v3.endpoint 2 | ============================== 3 | 4 | .. automodule:: openstack.identity.v3.endpoint 5 | 6 | The Endpoint Class 7 | ------------------ 8 | 9 | The ``Endpoint`` class inherits from :class:`~openstack.resource.Resource`. 10 | 11 | .. autoclass:: openstack.identity.v3.endpoint.Endpoint 12 | :members: 13 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/identity/v3/group.rst: -------------------------------------------------------------------------------- 1 | openstack.identity.v3.group 2 | =========================== 3 | 4 | .. automodule:: openstack.identity.v3.group 5 | 6 | The Group Class 7 | --------------- 8 | 9 | The ``Group`` class inherits from :class:`~openstack.resource.Resource`. 10 | 11 | .. autoclass:: openstack.identity.v3.group.Group 12 | :members: 13 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/identity/v3/policy.rst: -------------------------------------------------------------------------------- 1 | openstack.identity.v3.policy 2 | ============================ 3 | 4 | .. automodule:: openstack.identity.v3.policy 5 | 6 | The Policy Class 7 | ---------------- 8 | 9 | The ``Policy`` class inherits from :class:`~openstack.resource.Resource`. 10 | 11 | .. autoclass:: openstack.identity.v3.policy.Policy 12 | :members: 13 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/identity/v3/project.rst: -------------------------------------------------------------------------------- 1 | openstack.identity.v3.project 2 | ============================= 3 | 4 | .. automodule:: openstack.identity.v3.project 5 | 6 | The Project Class 7 | ----------------- 8 | 9 | The ``Project`` class inherits from :class:`~openstack.resource.Resource`. 10 | 11 | .. autoclass:: openstack.identity.v3.project.Project 12 | :members: 13 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/identity/v3/service.rst: -------------------------------------------------------------------------------- 1 | openstack.identity.v3.service 2 | ============================= 3 | 4 | .. automodule:: openstack.identity.v3.service 5 | 6 | The Service Class 7 | ----------------- 8 | 9 | The ``Service`` class inherits from :class:`~openstack.resource.Resource`. 10 | 11 | .. autoclass:: openstack.identity.v3.service.Service 12 | :members: 13 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/identity/v3/user.rst: -------------------------------------------------------------------------------- 1 | openstack.identity.v3.user 2 | ========================== 3 | 4 | .. automodule:: openstack.identity.v3.user 5 | 6 | The User Class 7 | -------------- 8 | 9 | The ``User`` class inherits from :class:`~openstack.resource.Resource`. 10 | 11 | .. autoclass:: openstack.identity.v3.user.User 12 | :members: 13 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/ims/index.rst: -------------------------------------------------------------------------------- 1 | IMS Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/async_job 8 | v2/image 9 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/kms/index.rst: -------------------------------------------------------------------------------- 1 | AutoScaling Resources 2 | ===================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/key 8 | v1/data_key 9 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/kms/v1/key.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.kms.v1.key 2 | ============================ 3 | 4 | .. automodule:: otcextensions.sdk.kms.v1.key 5 | 6 | The KMS CMK Class 7 | ----------------- 8 | 9 | The ``Key`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.kms.v1.key.Key 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/lts/index.rst: -------------------------------------------------------------------------------- 1 | Log Tank Resources 2 | ================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v2/group 8 | v2/stream 9 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/mrs/index.rst: -------------------------------------------------------------------------------- 1 | MapReduce Service Resources 2 | =========================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/cluster 8 | v1/datasource 9 | v1/job 10 | v1/jobbinary 11 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/mrs/v1/job.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.mrs.v1.job 2 | ============================ 3 | 4 | .. automodule:: otcextensions.sdk.mrs.v1.job 5 | 6 | The MRS Job Class 7 | ----------------- 8 | 9 | The ``Job`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.mrs.v1.job.Job 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/nat/index.rst: -------------------------------------------------------------------------------- 1 | NAT Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v2/gateway 8 | v2/snat 9 | v2/dnat 10 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/nat/v2/dnat.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.nat.v2.dnat 2 | ============================= 3 | 4 | .. automodule:: otcextensions.sdk.nat.v2.dnat 5 | 6 | The DNAT Rule Class 7 | -------------------- 8 | 9 | The ``Dnat`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.nat.v2.dnat.Dnat 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/nat/v2/snat.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.nat.v2.snat 2 | ============================= 3 | 4 | .. automodule:: otcextensions.sdk.nat.v2.snat 5 | 6 | The SNAT Rule Class 7 | -------------------- 8 | 9 | The ``Snat`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.nat.v2.snat.Snat 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/obs/index.rst: -------------------------------------------------------------------------------- 1 | OBS Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/container 8 | v1/obj 9 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/obs/v1/obj.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.obs.v1.obj 2 | ============================ 3 | 4 | .. automodule:: otcextensions.sdk.obs.v1.obj 5 | 6 | The OBS Object Class 7 | -------------------- 8 | 9 | The ``Object`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.obs.v1.obj.Object 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/rds/index.rst: -------------------------------------------------------------------------------- 1 | RDS Resources 2 | ============= 3 | 4 | RDS v1 5 | ^^^^^^ 6 | 7 | .. toctree:: 8 | :maxdepth: 1 9 | 10 | v1/configuration 11 | v1/flavor 12 | v1/instance 13 | 14 | RDS v3 15 | ^^^^^^ 16 | 17 | .. toctree:: 18 | :maxdepth: 1 19 | 20 | v3/configuration 21 | v3/flavor 22 | v3/instance 23 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/sdrs/index.rst: -------------------------------------------------------------------------------- 1 | Storage Disaster Recovery Service Resources 2 | =========================================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/active_domains 8 | v1/dr_drill 9 | v1/job 10 | v1/protected_instance 11 | v1/protection_group 12 | v1/quota 13 | v1/replication_pair 14 | v1/task_center 15 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/sfsturbo/index.rst: -------------------------------------------------------------------------------- 1 | SFSTurbo Resources 2 | ================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/share 8 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/smn/index.rst: -------------------------------------------------------------------------------- 1 | Simple Message Notification Service Resources 2 | ============================================= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v2/message 8 | v2/sms 9 | v2/subscription 10 | v2/template 11 | v2/topic 12 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/smn/v2/sms.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.smn.v2.sms 2 | ============================ 3 | 4 | .. automodule:: otcextensions.sdk.smn.v2.sms 5 | 6 | The SMN Sms Class 7 | ----------------- 8 | 9 | The ``Sms`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.smn.v2.sms.Sms 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/swr/index.rst: -------------------------------------------------------------------------------- 1 | SWR Resources 2 | ============= 3 | 4 | SWR v2 5 | ^^^^^^ 6 | 7 | .. toctree:: 8 | :maxdepth: 1 9 | 10 | v2/organization 11 | v2/repository 12 | v2/domain 13 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/tms/index.rst: -------------------------------------------------------------------------------- 1 | TMS Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/predefined_tag 8 | v1/resource_tag 9 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/vlb/v3/pool.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.vlb.v3.pool 2 | ================================= 3 | 4 | .. automodule:: otcextensions.sdk.vlb.v3.pool 5 | 6 | The Pool Class 7 | ------------------ 8 | 9 | The ``Pool`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.vlb.v3.pool.Pool 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/vlb/v3/quota.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.vlb.v3.quota 2 | ============================== 3 | 4 | .. automodule:: otcextensions.sdk.vlb.v3.quota 5 | 6 | The Quota Class 7 | --------------- 8 | 9 | The ``Quota`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.vlb.v3.quota.Quota 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/vpc/index.rst: -------------------------------------------------------------------------------- 1 | VPC Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/bandwidth 8 | v1/vpc 9 | v1/subnet 10 | v2/peering 11 | v2/route 12 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/vpc/v1/vpc.rst: -------------------------------------------------------------------------------- 1 | otcextensions.sdk.vpc.v1.vpc 2 | ================================ 3 | 4 | .. automodule:: otcextensions.sdk.vpc.v1.vpc 5 | 6 | The VPC Class 7 | ------------------- 8 | 9 | The ``Vpc`` class inherits from 10 | :class:`~otcextensions.sdk.sdk_resource.Resource`. 11 | 12 | .. autoclass:: otcextensions.sdk.vpc.v1.vpc.Vpc 13 | :members: 14 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/vpcep/index.rst: -------------------------------------------------------------------------------- 1 | VPCEP Resources 2 | =============== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/endpoint 8 | v1/service 9 | v1/connection 10 | v1/whitelist 11 | v1/quota 12 | -------------------------------------------------------------------------------- /doc/source/sdk/resources/waf/index.rst: -------------------------------------------------------------------------------- 1 | WAF Resources 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | v1/certificate 8 | v1/domain 9 | -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/__init__.py -------------------------------------------------------------------------------- /examples/auto_scaling/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/auto_scaling/init.py -------------------------------------------------------------------------------- /examples/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/clustering/__init__.py -------------------------------------------------------------------------------- /examples/compute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/compute/__init__.py -------------------------------------------------------------------------------- /examples/ctsv3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/ctsv3/__init__.py -------------------------------------------------------------------------------- /examples/dcaas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/dcaas/__init__.py -------------------------------------------------------------------------------- /examples/dds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/dds/__init__.py -------------------------------------------------------------------------------- /examples/deh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/deh/__init__.py -------------------------------------------------------------------------------- /examples/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/identity/__init__.py -------------------------------------------------------------------------------- /examples/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/image/__init__.py -------------------------------------------------------------------------------- /examples/ims/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/ims/__init__.py -------------------------------------------------------------------------------- /examples/key_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/key_manager/__init__.py -------------------------------------------------------------------------------- /examples/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/examples/network/__init__.py -------------------------------------------------------------------------------- /otcextensions/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/common/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/anti_ddos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/anti_ddos/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/anti_ddos/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/anti_ddos/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/auto_scaling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/auto_scaling/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/auto_scaling/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/auto_scaling/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/cbr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/cbr/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/cce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/cce/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/cce/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/cce/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/cce/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/cce/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/ces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/ces/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/ces/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/ces/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/compute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/compute/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/compute/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/compute/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/css/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/css/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/css/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/css/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/cts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/cts/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/cts/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/cts/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dcaas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dcaas/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dcaas/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dcaas/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dcs/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dcs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dcs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/deh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/deh/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/deh/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/deh/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dis/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dis/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dis/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dms/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dns/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dns/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dns/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dws/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/dws/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/dws/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/identity/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/identity/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/identity/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/kms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/kms/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/kms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/kms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/load_balancer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/load_balancer/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/load_balancer/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/load_balancer/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/modelartsv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/modelartsv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/modelartsv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/modelartsv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/modelartsv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/modelartsv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/mrs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/mrs/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/mrs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/mrs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/nat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/nat/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/nat/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/nat/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/obs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/obs/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/obs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/obs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/rds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/rds/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/rds/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/rds/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/rds/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/rds/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/sdrs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/sdrs/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/sdrs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/sdrs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/smn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/smn/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/smn/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/smn/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/vlb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/vlb/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/vlb/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/vlb/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/volume_backup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/volume_backup/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/volume_backup/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/volume_backup/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/vpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/vpc/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/vpc/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/vpc/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/vpcep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/vpcep/__init__.py -------------------------------------------------------------------------------- /otcextensions/osclient/vpcep/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/osclient/vpcep/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/anti_ddos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/anti_ddos/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/anti_ddos/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/anti_ddos/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/aomv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/aomv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/aomv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/aomv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/aomv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/aomv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/aomv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/aomv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/apig/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/apig/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/apig/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/apig/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/auto_scaling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/auto_scaling/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/bms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/bms/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/bms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/bms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cbr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cbr/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cbr/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cbr/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cce/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cce/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cce/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cce/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cce/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ces/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ces/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ces/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cfwv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cfwv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cfwv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cfwv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cfwv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cfwv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cfwv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cfwv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cfwv3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cfwv3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cfwv3/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cfwv3/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cloud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cloud/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/compute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/compute/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/compute/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/compute/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/csbs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/csbs/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/csbs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/csbs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/css/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/css/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/css/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/css/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cts/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/cts/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/cts/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ctsv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ctsv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ctsv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ctsv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ctsv3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ctsv3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ctsv3/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ctsv3/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dataarts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dataarts/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dataarts/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dataarts/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dcaas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dcaas/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dcaas/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dcaas/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dcs/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dcs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dcs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ddmv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ddmv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ddmv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ddmv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ddmv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ddmv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ddmv2/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ddmv2/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ddmv3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ddmv3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ddmv3/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ddmv3/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dds/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dds/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dds/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/deh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/deh/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/deh/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/deh/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dis/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dis/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dis/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dli/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dli/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dli/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dli/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dli/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dms/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dmsv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dmsv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dmsv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dmsv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dns/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dns/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dns/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/drs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/drs/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/drs/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/drs/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dws/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/dws/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/dws/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ecs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ecs/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ecs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ecs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/elb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/elb/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/elb/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/elb/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/enterprise_dashboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/enterprise_dashboard/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/enterprise_dashboard/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/enterprise_dashboard/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/enterprise_dashboard_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/enterprise_dashboard_v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/enterprise_dashboard_v1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/enterprise_dashboard_v1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/er/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/er/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/er/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/er/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/evpn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/evpn/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/evpn/v5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/evpn/v5/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/function_graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/function_graph/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/function_graph/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/function_graph/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/gaussdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/gaussdb/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/gaussdb/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/gaussdb/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/geminidb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/geminidb/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/geminidb/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/geminidb/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/hss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/hss/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/hss/v5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/hss/v5/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/identity/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/identity/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/identity/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/imsv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/imsv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/imsv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/imsv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/imsv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/imsv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/imsv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/imsv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/kms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/kms/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/kms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/kms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/lts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/lts/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/lts/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/lts/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/modelartsv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/modelartsv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/modelartsv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/modelartsv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/modelartsv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/modelartsv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/modelartsv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/modelartsv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/mrs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/mrs/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/mrs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/mrs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/nat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/nat/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/nat/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/nat/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/network/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/network/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/network/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/obs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/obs/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/obs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/obs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ocr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ocr/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/ocr/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/ocr/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/plas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/plas/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/plas/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/plas/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/rds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/rds/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/rds/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/rds/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/rds/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/rds/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/rms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/rms/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/rms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/rms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/rts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/rts/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/rts/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/rts/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/sdrs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/sdrs/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/sdrs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/sdrs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/sfsturbo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/sfsturbo/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/sfsturbo/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/sfsturbo/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/smn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/smn/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/smn/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/smn/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/swr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/swr/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/swr/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/swr/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/tms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/tms/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/tms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/tms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/vlb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/vlb/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/vlb/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/vlb/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/volume_backup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/volume_backup/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/volume_backup/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/volume_backup/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/vpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/vpc/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/vpcep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/vpcep/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/vpcep/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/vpcep/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/vpn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/vpn/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/vpn/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/vpn/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/waf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/waf/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/waf/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/waf/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/wafd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/wafd/__init__.py -------------------------------------------------------------------------------- /otcextensions/sdk/wafd/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/sdk/wafd/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/cce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/cce/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/cce/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/cce/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/dcaas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/dcaas/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/dcaas/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/dcaas/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/dns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/dns/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/dns/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/dns/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/identity/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/identity/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/identity/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/kms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/kms/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/nat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/nat/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/nat/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/nat/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/obs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/obs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/obs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/obs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/rds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/rds/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/rds/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/rds/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/volume_backup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/volume_backup/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/volume_backup/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/volume_backup/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/vpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/vpc/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/osclient/vpc/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/osclient/vpc/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/anti_ddos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/anti_ddos/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/anti_ddos/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/anti_ddos/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/aomv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/aomv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/aomv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/aomv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/aomv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/aomv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/aomv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/aomv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/apig/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/apig/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/auto_scaling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/auto_scaling/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/auto_scaling/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/auto_scaling/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/bms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/bms/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/bms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/bms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/cbr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/cbr/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/cbr/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/cbr/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/cce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/cce/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/cce/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/cce/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/ces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/ces/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/ces/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/ces/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/compute/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/compute/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/csbs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/csbs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/csbs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/csbs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/css/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/css/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/css/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/css/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/cts/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/cts/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/ctsv3/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/ctsv3/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dataarts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dataarts/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dataarts/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dataarts/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dcaas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dcaas/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dcaas/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dcaas/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dcs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dcs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dcs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/ddm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/ddm/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/ddm/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/ddm/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/ddm/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/ddm/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/ddm/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/ddm/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dds/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dds/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/deh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/deh/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/deh/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/deh/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dis/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dis/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dis/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dli/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dli/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dli/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dms/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dns/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dns/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dws/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/dws/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/dws/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/elb/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/elb/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/er/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/er/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/er/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/er/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/function_graph/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/function_graph/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/gaussdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/gaussdb/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/gaussdb/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/gaussdb/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/identity/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/identity/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/identity/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/imsv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/imsv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/imsv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/imsv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/imsv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/imsv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/imsv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/imsv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/kms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/kms/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/kms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/kms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/lts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/lts/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/lts/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/lts/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/modelartsv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/modelartsv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/modelartsv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/modelartsv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/modelartsv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/modelartsv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/modelartsv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/modelartsv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/mrs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/mrs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/nat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/nat/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/nat/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/nat/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/network/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/network/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/network/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/obs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/obs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/obs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/obs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/ocr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/ocr/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/ocr/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/ocr/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/plas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/plas/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/plas/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/plas/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/rds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/rds/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/rds/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/rds/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/rts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/rts/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/rts/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/rts/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/sdrs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/sdrs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/sdrs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/sdrs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/sfsturbo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/sfsturbo/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/sfsturbo/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/sfsturbo/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/smn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/smn/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/smn/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/smn/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/swr/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/swr/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/tms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/tms/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/tms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/tms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/vlb/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/vlb/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/volume_backup/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/volume_backup/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/vpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/vpc/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/vpc/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/vpc/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/vpc/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/vpc/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/vpcep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/vpcep/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/vpcep/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/vpcep/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/vpn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/vpn/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/vpn/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/vpn/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/waf/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/waf/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/wafd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/wafd/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/functional/sdk/wafd/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/functional/sdk/wafd/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/common/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/anti_ddos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/anti_ddos/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/anti_ddos/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/anti_ddos/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/auto_scaling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/auto_scaling/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/auto_scaling/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/auto_scaling/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/cbr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/cbr/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/cbr/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/cbr/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/cce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/cce/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/cce/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/cce/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/cce/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/cce/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/css/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/css/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/css/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/css/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/cts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/cts/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/cts/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/cts/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dcaas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dcaas/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dcaas/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dcaas/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dcs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dcs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dcs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/deh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/deh/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/deh/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/deh/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dis/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dis/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dis/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dms/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dns/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dns/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dns/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dws/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/dws/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/dws/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/identity/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/identity/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/identity/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/kms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/kms/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/kms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/kms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/load_balancer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/load_balancer/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/load_balancer/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/load_balancer/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/modelartsv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/modelartsv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/modelartsv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/modelartsv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/modelartsv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/modelartsv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/modelartsv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/modelartsv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/mrs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/mrs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/mrs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/mrs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/nat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/nat/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/nat/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/nat/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/obs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/obs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/obs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/obs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/rds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/rds/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/rds/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/rds/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/sdrs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/sdrs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/sdrs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/sdrs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/smn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/smn/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/smn/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/smn/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/vlb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/vlb/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/vlb/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/vlb/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/volume_backup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/volume_backup/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/volume_backup/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/volume_backup/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/vpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/vpc/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/vpc/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/vpc/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/vpcep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/vpcep/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/osclient/vpcep/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/osclient/vpcep/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/anti_ddos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/anti_ddos/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/anti_ddos/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/anti_ddos/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/apig/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/apig/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/apig/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/apig/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/auto_scaling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/auto_scaling/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/auto_scaling/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/auto_scaling/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/bms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/bms/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/bms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/bms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/cbr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/cbr/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/cbr/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/cbr/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/cce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/cce/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/cce/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/cce/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/cce/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/cce/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/ces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/ces/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/ces/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/ces/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/cloud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/cloud/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/compute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/compute/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/compute/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/compute/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/css/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/css/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/css/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/css/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/cts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/cts/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/cts/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/cts/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/ctsv3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/ctsv3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/ctsv3/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/ctsv3/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dcaas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dcaas/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dcs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dcs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dcs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dds/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dds/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dds/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/deh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/deh/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/deh/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/deh/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dis/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dis/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dis/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dms/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dns/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dns/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dns/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dws/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/dws/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/dws/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/elb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/elb/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/function_graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/function_graph/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/function_graph/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/function_graph/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/identity/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/identity/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/identity/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/imsv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/imsv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/imsv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/imsv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/imsv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/imsv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/imsv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/imsv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/kms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/kms/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/kms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/kms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/lts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/lts/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/modelartsv1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/modelartsv1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/modelartsv1/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/modelartsv1/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/modelartsv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/modelartsv2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/modelartsv2/v2/8710109684_e2c5ef6aeb_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/modelartsv2/v2/8710109684_e2c5ef6aeb_n.jpg -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/modelartsv2/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/modelartsv2/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/mrs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/mrs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/nat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/nat/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/nat/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/nat/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/obs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/obs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/obs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/obs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/ocr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/ocr/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/ocr/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/ocr/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/plas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/plas/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/rds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/rds/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/rds/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/rds/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/rds/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/rds/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/sdrs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/sdrs/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/sdrs/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/sdrs/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/sfsturbo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/sfsturbo/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/sfsturbo/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/sfsturbo/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/smn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/smn/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/smn/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/smn/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/swr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/swr/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/swr/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/swr/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/tms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/tms/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/tms/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/tms/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/vlb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/vlb/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/vlb/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/vlb/v3/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/volume_backup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/volume_backup/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/volume_backup/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/volume_backup/v2/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/volume_backup/v2/data_files/unlink_resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "success_resources": [ 3 | { 4 | "resource_id": "bce8d47a-af17-4169-901f-4c7ae9f29c2c" 5 | } 6 | ], 7 | "fail_resources": [ 8 | { 9 | "resource_id": "volume-id-2", 10 | "code": "VBS.0002", 11 | "message": "xxxxx" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/volume_backup/v2/data_files/update_policy.json: -------------------------------------------------------------------------------- 1 | { 2 | "backup_policy_name": "policy_01", 3 | "scheduled_policy": { 4 | "remain_first_backup_of_curMonth": true, 5 | "rentention_num": 10, 6 | "frequency": 1, 7 | "start_time": "12:00", 8 | "status": "ON" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/vpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/vpc/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/vpc/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/vpc/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/vpcep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/vpcep/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/vpcep/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/vpcep/v1/__init__.py -------------------------------------------------------------------------------- /otcextensions/tests/unit/sdk/waf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelekomcloud/python-otcextensions/7a98a5235c0cedc9658d76fed8a48646834bee86/otcextensions/tests/unit/sdk/waf/__init__.py -------------------------------------------------------------------------------- /releasenotes/notes/add-agency-restrict-e569897146acc5fc.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Agency auth now also support undocumented "restrict" setting for requesting 5 | explicit roles in the scope. This is really undocumented feature, therefore 6 | it is not documented there. Really. 7 | -------------------------------------------------------------------------------- /releasenotes/notes/add-cbr-vault-cli-57c3851e400f409c.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | CLI CBR Vault operations (List, Show, Create, Update, Delete, Associate/Dissociate resources, Bind/Unbind policy) 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add-dds-ds-1caf43182ef219fd.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DDS datastore type/version support. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add-dds-flavors-2c48049ac2a06330.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DDS flavors list support. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add-dds-instance-580b2ae9deee7850.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DDS instance operations support. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add-rds-v3-operations-8bb9237548466010.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add RDS v3 SDK support for the following instance operations: restart, resize volume, change flavor, query logs, add/remove tag. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add_v3_cts-5243f93d53d2fcbb.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add CTS v3 SDK support for the following operations: create, update, list and delete key events, 5 | query traces, create, update, list and delete trackers, list quotas. 6 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-acl-binding-306f6cbe04a41517.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add Binding/Unbinding ACL Management support for API Gateway 5 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-acl-policies-315a133458aed8b8.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add Access Control Policy Management support for API Gateway 5 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-api-auth-304638880d32255d.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add App Authorization Management support for API Gateway -------------------------------------------------------------------------------- /releasenotes/notes/apig-api-supplement-endpoints-8f235c0fa0b97438.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add api supplementary management support for API Gateway -------------------------------------------------------------------------------- /releasenotes/notes/apig-custom-authorizer-22489300889e0cb3.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add Custom Authorizer Management support for API Gateway -------------------------------------------------------------------------------- /releasenotes/notes/apig-domain-name-bc5abb123c0ab71c.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add domain names support for API Gateway 5 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-env-management-eeda3e00a791043b.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add environment management support for API Gateway 5 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-export-e4cc71de919c0b43.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add export and import API for API Gateway -------------------------------------------------------------------------------- /releasenotes/notes/apig-group-management-9416e9bfeaf5e9b3.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add API group management support for API Gateway 5 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-gw-features-f53b025851246eac.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add Gateway Features support for API Gateway 5 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-resource-query-bf3f1eac5b23a4fb.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add Resource Query support for API Gateway 5 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-signature-key-93971afc986fa60f.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add API signature key management support for API Gateway 5 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-signature-key-binding-d3ab3f81c70933ce.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add API signature key bindings management support for API Gateway 5 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-throttling-bind-233e62cba4440a7c.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add API throttling policy bindings management support for API Gateway 5 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-throttling-exclude-c2e3b041e76c18e9.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add excluded request throttling configuration support for API Gateway 5 | -------------------------------------------------------------------------------- /releasenotes/notes/apig-throttling-policy-7b16352f6357e45d.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add environment variables management support for API Gateway -------------------------------------------------------------------------------- /releasenotes/notes/apig-vpc-channel-3b5c5720fdae04bb.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add VPC Channel management support for API Gateway -------------------------------------------------------------------------------- /releasenotes/notes/as_refactoring-6d2dbfc4f1dab94e.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | other: 3 | - | 4 | Auto_scaling quota refactoring was done. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/bms-fix-3aeaa6fb589457ee.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - Bms fix in exact_name function. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/cbr-backup-cli-08487f91b9d6a408.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add cbr backup support into CLI. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/cbr-member-cli-393e2df2eeb058cf.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | CLI implemetation for cbr member resource. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/cbr-task-4d0fb07b027f7b7b.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | SDK CBR Task list operation support. 5 | - | 6 | CLI List/Show CBR Task 7 | -------------------------------------------------------------------------------- /releasenotes/notes/cce-7c0b21fcf765ff70.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | **[CCE]** Support ENI network for turbo clusters. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/cleanup-signature-fix-6a1b63706bce6675.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | Cleanup functions signature fixes. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/cli-cce-cluster-certificates-2b69ec34f2f0d9f1.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add CCE certificates show support into CLI. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/css-backup-fix-54bd43ee4b36e303.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | CSS cluster creation backup attr fix. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/css-backup-path-fix-a6a4549da12d5aef.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | CSS snapshot configuration backup_path (basePath) required attr fix. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/css-certificate-download-f462dc48e69a485b.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | Updated the following methods in the CSS module: 5 | - Fixed CSS certificate download method. 6 | - Removed the `override_endpoint` logic from the `scale_in_by_node_type` method. 7 | - Added a `frequency` parameter to the snapshot policy configuration. 8 | -------------------------------------------------------------------------------- /releasenotes/notes/css-cluster-class-update-af55cf7e6a73ad77.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | upgraded otcextensions.sdk.css.v1.Cluster class. 5 | fixes: 6 | - | 7 | Fixed css sdk wait_for_cluster method. 8 | -------------------------------------------------------------------------------- /releasenotes/notes/css-hotfixs-394f00db7cd97333.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | CSS service attributes fixes. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/css-module-73006246d239b86a.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | The update contains all SDK and OpenStack Client parts for the 'Cloud 5 | Search Service' module and the unit tests. 6 | -------------------------------------------------------------------------------- /releasenotes/notes/css-tags-fix-fb9516246cd15b22.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | CSS cluster tags creation fix. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/css_refactoring-d9800684b75bfaf7.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | Refactored CSS sdk and osclient modules. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/ctssplit-8539df512707dfde.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | CTS was splited by versions to provide opportunity to use all of them. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/dcaas-connection-resource-implementation-143b2e6b87c4dd34.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DCAAS Connection resource implemetation. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/dcaas-osclient-connection-fad700076f796817.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DCAAS Connection CLI implementation. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/dcaas-osclient-gateway-6e7c8a110f101ec7.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DCAAS Virtual Gateway CLI implementation. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/dcaas-virtual-gateway-936f572b937b9382.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DCAAS Virtual Gateway resource implemetation. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/dcaas_osclient_ep_group-e0372b0ded1a62d2.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DCAAS Endpoint Group CLI implementation. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/dcaas_sdk_endpoint_group-59fa0e29900ebb25.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | New SDK DCAAS Direct Connection Endpoint Group Resource implemetation. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/dcs_az-d21940ce435fed61.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DCS Availability Zones information support. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/dcs_maintenance_time_window-bbe714551d4d3a7b.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DCS Maintenance Time Window list support. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/dcs_quota-2b8e740be0d4294a.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DCS Quota list operation support. 5 | Add new mixin class for quotas. 6 | -------------------------------------------------------------------------------- /releasenotes/notes/dcs_service_specification-441cb6457574645d.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DCS Service Specification list support. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/ddm-proxies-0df8caad363ff6b8.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DDM Service proxies. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/dis-sdk-cli-operations-2c6890d82d0c0fde.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | The update contains all SDK and OpenStack Client parts for the 'Data 5 | Ingestion Service' (DIS) module and the unit tests. 6 | -------------------------------------------------------------------------------- /releasenotes/notes/dws-fixes-160aa74dad1e92c8.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | Added missing attr to dws sdk Cluster class and 5 | improved delete_cluster method exception handling. 6 | -------------------------------------------------------------------------------- /releasenotes/notes/dws-fixes-ignore-missing-67f8f2a50587f1f7.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | Set the default value of ignore_missing to True for the 5 | find and delete SDK methods in DWS. 6 | -------------------------------------------------------------------------------- /releasenotes/notes/dws-list-flavors-update-6580e2e9538b5d74.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | other: 3 | - | 4 | Update DWS list flavors raw response for simplification. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/dws-module-6ab89a5446c66697.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | The update contains all SDK and OpenStack Client parts for the 'Data 5 | Warehouse Service' module and the unit tests. 6 | -------------------------------------------------------------------------------- /releasenotes/notes/dws-sdk-add-tag-support-c8d61a25af9d6c35.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add DWS v1 SDK support for the following cluster tag operations: list, create, delete, batch create, batch delete 5 | -------------------------------------------------------------------------------- /releasenotes/notes/fg-aliases-versions-c0ffbc3d9cda043f.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add FGS versions support. 5 | - | 6 | Add FGS aliases support. 7 | -------------------------------------------------------------------------------- /releasenotes/notes/fg-dependencies-and-quotas-308d9a07a42a5df7.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add FGS quotas support. 5 | - | 6 | Add FGS dependencies support. 7 | -------------------------------------------------------------------------------- /releasenotes/notes/fg-events-2c91f9554d5e386c.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add FGS events support. -------------------------------------------------------------------------------- /releasenotes/notes/fg-functions-4f48049ac2a56331.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add FGS functions support. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/fg-functions-589e04d2107c7f1f.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | Fixed FGS to return correct values for 5 | _get_function_metadata 6 | _get_function_code -------------------------------------------------------------------------------- /releasenotes/notes/fg-invocation-f5ae6ea83642438c.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add FGS functions invocation support. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/fg-metrics-53f38539a61a84b4.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add FGS metrics support. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/fg-notification-7c7bf9611687fc8f.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add FGS async notification support. 5 | - | 6 | Add FGS async requests support. 7 | -------------------------------------------------------------------------------- /releasenotes/notes/fg-templates-and-logs-b2a8abd26aaa0a16.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add FGS templates support. 5 | - | 6 | Add FGS logs support. 7 | -------------------------------------------------------------------------------- /releasenotes/notes/fg-triggers-e9d7744b9dedbd10.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add FGS triggers support. -------------------------------------------------------------------------------- /releasenotes/notes/fix-allow-get-bdf74725a5cfa2d4.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | Allow get operation fix according removal from openstack.resource 5 | -------------------------------------------------------------------------------- /releasenotes/notes/fix-base_path-for-vpc-route-9b6f5131af05f86b.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | Fix base_path for Vpc route. 5 | 6 | -------------------------------------------------------------------------------- /releasenotes/notes/fix-ces-metrics-f8a306b410114651.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | Fixes metric naming for the CES service. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/gateway-management-bbd7c6def29bcb02.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add gateway management support for API Gateway -------------------------------------------------------------------------------- /releasenotes/notes/gaussdb-service-fix-cf29eb96c5974a0d.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | Fixed gaussdb-mysql service initialization 5 | -------------------------------------------------------------------------------- /releasenotes/notes/image-create-50c9534fa6155496.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add IMS v1 Image Operation support for the create from OBS source -------------------------------------------------------------------------------- /releasenotes/notes/ims-async-job-entities-a7495e1930509f33.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | The AsyncJobEntities type allows easier access to the entities of an IMS job. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/imsv1_wait_for_async_job-a5d40daf582b1b3b.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add wait_for_async_job to imsv1 to wait for a asynchronous job to finish. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/imsv2_listing_images-542c27a5e8948bd7.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | added listing images in imsv2 5 | -------------------------------------------------------------------------------- /releasenotes/notes/init-releasenotes-4a5cb66ad7d34c38.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | other: 3 | - | 4 | Initializes releasenotes building. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/kms-quota-c71dbf42c03fa268.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | SDK KMS Quota list operation support. 5 | CLI List KMS Quotas 6 | -------------------------------------------------------------------------------- /releasenotes/notes/lts-7ea702d68f7ab4db.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - LTS fixes 4 | -------------------------------------------------------------------------------- /releasenotes/notes/lts-fix-6f12d866d963a4d3.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - Fix list function for lts stream. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/modelarts-modules-29d69650f1d247c3.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | The update contains all SDK and OpenStack Client parts for the 5 | 'ModelartsV1' and 'ModelartsV2' modules and the unit tests. 6 | -------------------------------------------------------------------------------- /releasenotes/notes/mrs-implementation-0581b7e835de480c.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | SDK MRS Job, Jobbinary, Data Source, Cluster(not creation by now). 5 | - | 6 | CLI MRS Job, Jobbinary, Data Source, Cluster(not creation by now). 7 | -------------------------------------------------------------------------------- /releasenotes/notes/new-services-5f07d0547e52a254.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Proxies for lts, vpcep, csbs, dataarts, dli, gaussdb were added 4 | -------------------------------------------------------------------------------- /releasenotes/notes/new-services-ca3d4bb3ba90b259.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - New services were added swr, rms, drs, ctsv2 4 | -------------------------------------------------------------------------------- /releasenotes/notes/obs-large-object-88d2eb3c78408073.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | SDK OBS large objects upload 5 | fixes: 6 | - | 7 | SDK OBS file permissions assigning 8 | -------------------------------------------------------------------------------- /releasenotes/notes/obs-multipart-fix-bc1cbba753bfafbd.yaml: -------------------------------------------------------------------------------- 1 | fixes: 2 | - | 3 | SDK OBS container headers assigning 4 | - | 5 | SDK OBS object multipart upload fix 6 | -------------------------------------------------------------------------------- /releasenotes/notes/obs-multipart-header-5265d7921c0d657a.yaml: -------------------------------------------------------------------------------- 1 | fixes: 2 | - | 3 | SDK OBS object multipart header fix 4 | -------------------------------------------------------------------------------- /releasenotes/notes/obs-region-fix-a69ebb00bdc6d4a4.yaml: -------------------------------------------------------------------------------- 1 | fixes: 2 | - | 3 | SDK OBS region selection fixes 4 | -------------------------------------------------------------------------------- /releasenotes/notes/obs-security-token-fc6ed572dab0c31d.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | SDK OBS can use generated temporary ak/sk/token with 5 | env variables S3_SECURITY_TOKEN | OS_SECURITY_TOKEN 6 | -------------------------------------------------------------------------------- /releasenotes/notes/ocr_sdk_proxy-c4cd12d963a7aa13.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Added OCR sdk proxy implementation. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/predefined-tags-33f86dc72569448e.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add TMS v1 Predefined Tag Operations support for the following operations: list, create, delete, update 5 | -------------------------------------------------------------------------------- /releasenotes/notes/proxies-apig-fg-er-f939b4523f23b031.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add APIG v2 proxy 5 | - | 6 | Add EnterpriseRouter v3 proxy 7 | - | 8 | Add FunctionGraph v2 proxy 9 | -------------------------------------------------------------------------------- /releasenotes/notes/release-notes-daa7695682776809.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Release notes tutorial added to documentation. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/resource_tags-5e45d9f7de9ec463.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add TMS v1 Resource Tag Operations support for the following operations: list, create, delete 5 | -------------------------------------------------------------------------------- /releasenotes/notes/sdk-update-fixes-cdd4305163b05f8f.yaml: -------------------------------------------------------------------------------- 1 | fixes: 2 | - | 3 | SDK method overrides fixes according openstacksdk signatures. 4 | - | 5 | Update requirements, now necessary to install python-novaclient for OSC functioning. 6 | -------------------------------------------------------------------------------- /releasenotes/notes/sdrs_cli-259baf2004fba67c.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | CLI SDRS: List Active Domain, Show Job 5 | -------------------------------------------------------------------------------- /releasenotes/notes/smn-msg-publish-fix-7c6b3546e79fcf35.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - | 4 | SMN message publishing fix. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/swr-domain-f440d14f651aad18.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add SWR v2 Domain SDK support for the following operations: list, create, delete, update, get 5 | -------------------------------------------------------------------------------- /releasenotes/notes/swr-repository-3b69cd079b613528.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add SWR v2 Repository SDK support for the following operations: list, create, delete, update, get 5 | -------------------------------------------------------------------------------- /releasenotes/notes/swr-repository-permissions-e27a95e4e1b18a6b.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add SWR v2 Repository Permissions SDK support for the following operations: list, create, delete, update 5 | -------------------------------------------------------------------------------- /releasenotes/notes/vpc-fix-ed8a0f8d31916506.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add find_vpc method to the proxy layer for the VPC service. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/vpc-rework-1efbbc5f5d17342c.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add VPC resource implementation. 4 | other: 5 | - VPC proxy contain all supported resources as v1. 6 | -------------------------------------------------------------------------------- /releasenotes/notes/vpc-subnet-cb292afbc16d2266.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add VPC Subnet resource implementation 5 | -------------------------------------------------------------------------------- /releasenotes/notes/vpc-subnet-list-4fcb4fe4fecbdac2.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Allow passing ``vpc_id`` when listing subnets 5 | -------------------------------------------------------------------------------- /releasenotes/notes/vpcep-module-d76cfde52e8e1711.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | The update contains all SDK and OpenStack Client parts for the 5 | 'VPC Endpoint' module and the unit tests. 6 | -------------------------------------------------------------------------------- /releasenotes/notes/vpcep-target-endpoint-services-ddbab96f411fe1bc.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add query operations for public VPC endpoint services and target VPC endpoint service. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/vpcep_endpoint_create_fix-03b19d669cd1428c.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - Fixes for VPC endpoint creation to include the port_ip parameter. 4 | -------------------------------------------------------------------------------- /releasenotes/source/index.rst: -------------------------------------------------------------------------------- 1 | ============================ 2 | otcextensions Release Notes 3 | ============================ 4 | 5 | .. release-notes:: 6 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # The order of packages is significant, because pip processes them in the order 2 | # of appearance. Changing the order has an impact on the overall integration 3 | # process, which may cause wedges in the gate later. 4 | 5 | openstacksdk>=0.100.0 # Apache-2.0 6 | oslo.i18n>3.15.3 # Apache-2.0 7 | python-novaclient>=18.9.0 # Apache-2.0 8 | --------------------------------------------------------------------------------